source: hybrid/branches/RELENG_7/nanobsd/misc/testing-server/dhcpd.conf@ 10119

Last change on this file since 10119 was 10119, checked in by richardvm, 13 years ago

vpn, node, proxy and future other stuff

File size: 423 bytes
Line 
1# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates.
2ddns-update-style ad-hoc;
3
4default-lease-time 600;
5max-lease-time 7200;
6authoritative;
7
8option domain-name "example.com";
9option domain-name-servers 208.67.222.222;
10option routers 192.168.4.1;
11
12subnet 192.168.4.0 netmask 255.255.255.0 {
13 range 192.168.4.10 192.168.4.100;
14
15 filename "pxeboot";
16 option root-path "192.168.4.1:/usr/data/base/";
17}
Note: See TracBrowser for help on using the repository browser.