2002年7月14日
DHCPd
(/etc/dhcpd.conf)
option domain-name "hogehoge.jp";
option domain-name-servers 192.168.1.53;
option subnet-mask 255.255.255.0;
# option netbios-name-servers 192.168.1.53;
default-lease-time 43200;
max-lease-time 86400;
ddns-update-style none;
subnet 192.168.1.0 netmask 255.255.255.0 {
range 192.168.1.100 192.168.1.199;
option routers 192.168.1.1;
option broadcast-address 192.168.1.255;
# host levin {
# hardware ethernet 00:90:97:50:EE:F3;
# fixed-address 172.21.245.10;
# }
# host levin {
# hardware ethernet 00:60:7A:1C:E1:31;
# fixed-address 192.168.1.101;
# }
}