blob: 351d21f4c4f0a743d912a807140ff08feecf055e (
plain)
- # dhcpd.conf
- #
- # DHCP configuration file for xenux.local
- #
- default-lease-time 1200;
- max-lease-time 7200;
- option subnet-mask 255.255.255.0;
- option routers 192.168.200.1;
- option domain-name-servers 192.168.200.20, 212.54.64.170, 212.54.64.171;
- option domain-name "xenux.local";
- option netbios-name-servers 192.168.200.20;
- # According to our policy, the dynamic address space starts
- # at .60 and ends at .229 giving 170 client addresses.
- # (See "System Description --> Network Model")
- subnet 192.168.200.0 netmask 255.255.255.0 {
- range 192.168.200.60 192.168.200.229;
- }
- # According to our policy, the printers address space starts
- # at .40 and ends at .59 giving 20 printer addresses.
- # (See "System Description --> Network Model")
- host brother1270n {
- hardware ethernet 00:80:77:31:a2:6a;
- fixed-address 192.168.200.40;
- }
|