PLoP Linux 이미지를 제공하는 Debian 6.0.3 Squeeze 시스템에서 pxe 부팅 서버를 설정하려고합니다. 이 튜토리얼 을 따르고있었습니다 .
패키지 dhcp3-server에서 dhcpd를 시작하려고하면 다음과 같은 결과가 나타납니다.
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!
My /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
했는지 확인하십시오.
또한 ip /etc/network/interfaces
를 10.0.0.1 및 10.0.0.2로 설정하려고 시도했지만 동일한 결과를 얻었습니다.