# $OpenBSD: dhcpd.conf,v 1.1 1998/08/19 04:25:45 form Exp $ # # DHCP server options. # See dhcpd.conf(5) and dhcpd(8) for more information. # # Network: 192.168.1.0/255.255.255.0 # Domain name: my.domain # Name servers: 192.168.1.3 and 192.168.1.5 # Default router: 192.168.1.1 # Addresses: 192.168.1.32 - 192.168.1.127 # shared-network LOCAL-NET { option domain-name "kirknet.net"; option domain-name-servers 66.92.163.1, 216.231.41.2; default-lease-time 604800; subnet 192.168.2.0 netmask 255.255.255.0 { option routers 192.168.2.69; range 192.168.2.70 192.168.2.99; host dreamcast { hardware ethernet 00:D0:F1:02:AE:B1; fixed-address 192.168.2.42; option host-name "dreamcast"; next-server 192.168.2.69; option dhcp-max-message-size 1024; option broadcast-address 192.168.2.255; option domain-name-servers 66.92.159.2; option domain-name "kirknet.net"; option root-path "/home/alex/dreamcast/dc"; } } }