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, 8 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

option domain-name "elwix.org";
option domain-name-servers 192.168.1.1;

default-lease-time 600;
max-lease-time 7200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;

# ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates.
ddns-update-style none;

use-host-decl-names on;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

shared-network elwix_net {
	option domain-name "elwix.org";
	option domain-name-servers 192.168.1.1 192.168.1.2;

	subnet 192.168.1.0 netmask 255.255.255.0 {
		option routers 192.168.1.1;

		pool {
			range 192.168.1.100 192.168.1.254;
		}
	}
}

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