# dhcpd.conf # option definitions common to all supported networks... option domain-name "rednecks.net"; option domain-name-servers 192.168.1.1, 65.119.234.10; ddns-update-style ad-hoc; default-lease-time 6000; max-lease-time 14400; # If this DHCP server is the official DHCP server for the local # network, the authoritative directive should be uncommented. authoritative; # Use this to send dhcp log messages to a different log file (you also # have to hack syslog.conf to complete the redirection). log-facility daemon; # A slightly different configuration for an internal subnet. subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.100 192.168.1.200; option domain-name-servers 192.168.1.1, 66.110.214.3; option domain-name "rednecks.net"; option routers 192.168.1.1; option broadcast-address 192.168.1.255; default-lease-time 6000; max-lease-time 14400; } host funk { hardware ethernet 00:02:B3:61:AF:1E; fixed-address 192.168.1.200; } group linbsd { option domain-name "linbsd.net"; host simple { hardware ethernet 00:02:B3:61:BF:0A; fixed-address 192.168.1.188; } host barney { hardware ethernet 00:02:B3:88:0E:A1; } } #subnet 192.168.254.0 netmask 255.255.255.0 { # range 192.168.254.100 192.168.254.200; # option domain-name-servers dns1.dwcinet.com, dns2.dwcinet.com; # option domain-name "dwcinet.com"; # option routers 192.168.254.1; # option broadcast-address 192.168.254.255; # default-lease-time 6000; # max-lease-time 14400; #}