Tôi đang cố gắng thiết lập máy chủ khởi động pxe trên máy Bóp Debian 6.0.3 cung cấp hình ảnh của PLoP Linux. Tôi đã làm theo một hướng dẫn này .
Khi tôi cố gắng khởi động dhcpd (từ gói dhcp3-server), tôi nhận được những điều sau:
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
giống hệt như trong hướng dẫn lưu cho một vài thay đổi:
host testpc {
hardware ethernet 00:0C:6E:A6:1A:E6;
fixed-address 10.0.0.250;
}
thay vào đó
host tablet {
hardware ethernet 00:02:3F:FB:E2:6F;
fixed-address 10.0.0.249;
}
Của tôi /etc/network/interfaces
là:
# 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
Và đây là /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"
mà tôi đã sao chép vào /etc/default/dhcp3-server
, không chắc nó sẽ kiểm tra.
Tôi cũng đã thử đặt ip /etc/network/interfaces
thành 10.0.0.1 và 10.0.0.2, nhưng nó cho kết quả tương tự.