first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / database / configuration / dhcp / dhcpd.conf
1 # example dhcp configuration.
2
3 default-lease-time 600;
4 max-lease-time 1200;
5 option subnet-mask 255.255.255.0;
6 option broadcast-address 192.168.2.255;
7 option routers 192.168.2.1;
8 option domain-name-servers 14.28.42.1, 14.28.42.2;
9 option domain-name "fredulocorp.com";
10
11 subnet 192.168.2.0 netmask 255.255.255.0 {
12   range 192.168.2.200 192.168.2.253;
13 }
14
15 subnet 10.0.0.1 netmask 255.255.255.0 {
16 }
17
18
19