|
|
发表于 2005-4-1 09:20:01
|
显示全部楼层
# dhcpd.conf
# Global options
option domain-name "surphy.ustc.edu.cn";
option domain-name-servers 202.38.64.1;
# Intranet
subnet 202.38.85.0 netmask 255.255.255.0{
}
subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.1 192.168.0.250;
default-lease-time -1;
# option root-path "/client/pc01";
option dhcp-server-identifier 192.168.0.254;
option broadcast-address 192.168.0.255;
# option routers 198.168.0.254;
server-name "server";
next-server 192.168.0.254;
filename "/boot/vmlinuz";
host pc01{
option root-path "/client/pc01";
hardware ethernet 00:01:02:96:25:92;
fixed-address 192.168.0.1;
}
host pc02{ option root-path "/client/pc07";
hardware ethernet 00:01:02:98:6D:42;
fixed-address 192.168.0.7;
}
}
再给你几个连接:
http://bbs.ustc.edu.cn/cgi/bbscon?bn=Linux&fn=M42350639&num=6077
http://micro.ustc.edu.cn/Linux/ |
|