ssahani / rpms / dhcp

Forked from rpms/dhcp 5 years ago
Clone
dc724d5
ddns-update-style interim;
dc724d5
ignore client-updates;
dc724d5
dc724d5
subnet 192.168.0.0 netmask 255.255.255.0 {
dc724d5
dc724d5
# --- default gateway
dc724d5
	option routers			192.168.0.1;
dc724d5
	option subnet-mask		255.255.255.0;
dc724d5
dc724d5
	option nis-domain		"domain.org";
dc724d5
	option domain-name		"domain.org";
dc724d5
	option domain-name-servers	192.168.1.1;
dc724d5
dc724d5
	option time-offset		-18000;	# Eastern Standard Time
dc724d5
#	option ntp-servers		192.168.1.1;
dc724d5
#	option netbios-name-servers	192.168.1.1;
dc724d5
# --- Selects point-to-point node (default is hybrid). Don't change this unless
dc724d5
# -- you understand Netbios very well
dc724d5
#	option netbios-node-type 2;
dc724d5
dc724d5
	range dynamic-bootp 192.168.0.128 192.168.0.254;
dc724d5
	default-lease-time 21600;
dc724d5
	max-lease-time 43200;
dc724d5
dc724d5
	# we want the nameserver to appear at a fixed address
dc724d5
	host ns {
dc724d5
		next-server marvin.redhat.com;
dc724d5
		hardware ethernet 12:34:56:78:AB:CD;
dc724d5
		fixed-address 207.175.42.254;
dc724d5
	}
dc724d5
}