File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / Attic / dhcpd.conf
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Fri Oct 12 08:22:44 2012 UTC (11 years, 9 months ago) by misho
Branches: MAIN
CVS tags: elwix2_7, elwix2_6, elwix2_3, elwix2_2, elwix2_1, elwix2_0, elwix1_9_mips, elwix1_9, elwix1_8, elwix1_7, HEAD, ELWIX2_6, ELWIX2_5, ELWIX2_2p0, ELWIX2_1, ELWIX2_0, ELWIX1_9, ELWIX1_8, ELWIX1_7, ELWIX1_6
ELWIX 1.6

    1: option domain-name "elwix.org";
    2: option domain-name-servers 192.168.1.1;
    3: 
    4: default-lease-time 600;
    5: max-lease-time 7200;
    6: 
    7: # If this DHCP server is the official DHCP server for the local
    8: # network, the authoritative directive should be uncommented.
    9: authoritative;
   10: 
   11: # ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates.
   12: ddns-update-style none;
   13: 
   14: use-host-decl-names on;
   15: 
   16: # Use this to send dhcp log messages to a different log file (you also
   17: # have to hack syslog.conf to complete the redirection).
   18: log-facility local7;
   19: 
   20: shared-network elwix_net {
   21: 	option domain-name "elwix.org";
   22: 	option domain-name-servers 192.168.1.1 192.168.1.2;
   23: 
   24: 	subnet 192.168.1.0 netmask 255.255.255.0 {
   25: 		option routers 192.168.1.1;
   26: 
   27: 		pool {
   28: 			range 192.168.1.100 192.168.1.254;
   29: 		}
   30: 	}
   31: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>