আমি একটি ডেবিয়ান 6.0.3 স্কুইজ মেশিনে একটি পিএক্সসি বুট সার্ভার স্থাপন করার চেষ্টা করছি যা পিএলওপি লিনাক্সের চিত্র দেয়। আমি এই টিউটোরিয়াল অনুসরণ করছিলাম ।
আমি যখন ডিএইচসিপিডি (প্যাকেজ ডিএইচসিপিএন-সার্ভার থেকে) শুরু করার চেষ্টা করি তখন আমি নিম্নলিখিতগুলি পাই:
No subnet declaration for eth0 (10.0.0.0).
**Ignoring requests on eth0. If this is not what
you want, please write a subnet delclaration
in your dhcpd.conf file for the network segment
to which interface eth0 is attached. **
Not configured to listen on any interfaces!
আমার /etc/dhcpd.conf
কিছু পরিবর্তনগুলির জন্য টিউটোরিয়ালটিতে সেটির অনুরূপ:
host testpc {
hardware ethernet 00:0C:6E:A6:1A:E6;
fixed-address 10.0.0.250;
}
পরিবর্তে হয়
host tablet {
hardware ethernet 00:02:3F:FB:E2:6F;
fixed-address 10.0.0.249;
}
আমার /etc/network/interfaces
হ'ল:
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 10.0.0.0
netmask 255.255.255.0
এবং এটি আমার /etc/default/isc-dhcp-server
:
# Defaults for dhcp initscript
# sourced by /etc/init.d/dhcp
# installed at /etc/default/isc-dhcp-server by the maintainer scripts
#
# This is a POSIX shell fragment
#
# On what interfaces should the DHCP server (dhcpd) serve DHCP requests?
# Separate multiple interfaces with spaces, e.g. "eth0 eth1".
INTERFACES="eth0"
যা আমি /etc/default/dhcp3-server
পাশাপাশি অনুলিপি করেছি, এটি চেক করবে কিনা তাও নিশ্চিত।
আমি /etc/network/interfaces
আইপিটি 10.0.0.1 এবং 10.0.0.2 হিসাবে সেট করার চেষ্টা করেছি , তবে এটি একই ফলাফল প্রকাশ করেছে।