# ------------------------- # dhcpd.conf # # Sample configuration file for ISC dhcpd # # option definitions common to all supported networks... option domain-name "example.org"; # option domain-name-servers ns1.example.org, ns2.example.org; default-lease-time 1800; max-lease-time 7200; # We're going to be authoritative for the network we've # just created. authoritative; # No service will be given on this subnet, but we're telling # the DHCP server about it so it understands it's there and # not to hand out leases for it. subnet 10.14.8.195 netmask 255.255.255.0 { } # But we do want to hand out leases for the 192.168.1.0/24 # network for purposes of this test.. subnet 192.168.1.0 netmask 255.255.255.0 { range 192.168.1.100 192.168.1.150; option routers 192.168.1.1; } # -------------------------