|
楼主 |
发表于 2009-6-17 15:09:19
|
显示全部楼层
DHCP正常了。但是TFTP不正常。
错误提示:
PXE-E11:ARP timeout
以下是我的配置文件
/etc/dhcpd.conf
ddns-update-style interim;
ddns-updates off;
ignore client-updates;
one-lease-per-client false;
allow bootp;
option T150 code 150 = string;
allow booting;
subnet 192.168.3.0 netmask 255.255.255.0 {
interface eth0;
range 192.168.3.10 192.168.3.100;
default-lease-time 21600;
max-lease-time 43200;
option domain-name "testsrv.netb.com";
option subnet-mask 255.255.255.0;
option routers 192.168.3.1;
option domain-name-servers 192.168.3.1;
next-server 192.168.3.1;
filename "pxelinux.0";
option root-path "/tftpboot/";
}
然后是:
/etc/xinetd.d/tftp
service tftp
{
socket_type = dgram
protocol = udp
wait = yes
user = root
server = /usr/sbin/in.tftpd
server_args = -s /tftpboot
disable = no
per_source = 11
cps = 100 2
flags = IPv4
}
怎么办……我已经把pexlinux.0 放在/tftpboot下了。为什么不能被加载呢 ? |
|