File:  [ELWIX - Embedded LightWeight unIX -] / elwix / config / etc / default / Attic / dhcpd.conf
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Jul 5 23:43:00 2011 UTC (13 years ago) by misho
Branches: misho
CVS tags: start, elwix1_6, elwix1_5, elwix1_4, Patch1, ELWIX1_5
ELWIX project

option domain-name "aitnet.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 Lubo {
	option domain-name "aitnet.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>