मैं डेबियन 6.0.3 स्क्वीज़ मशीन पर एक पीएक्सई बूट सर्वर स्थापित करने की कोशिश कर रहा हूं जो PLoP लिनक्स की छवियां देता है। मैं इस ट्यूटोरियल का अनुसरण कर रहा था ।
जब मैं dhcpd (पैकेज dhcp3- सर्वर से) शुरू करने की कोशिश करता हूं, तो मुझे निम्नलिखित मिलते हैं:
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 के रूप में आईपी को स्थापित करने की भी कोशिश की , लेकिन यह उसी परिणाम का उत्पादन करता है।