Cluster der kan alt/DHCP server

From Teknologisk videncenter
< Cluster der kan alt
Revision as of 14:27, 18 April 2012 by Astma (talk | contribs) (Konfigurer dhcpd.conf)
Jump to: navigation, search

Installation af DHCP-server

Følgende skal skrives for at installer DHCP-server på LINUX

sudo apt-get install dhcp3-server

Konfigurer dhcpd.conf

Nedenstående linjer skal tilføjes til dhcpd.conf Udkommenter alt andet!

 
ddns-update-style none;
authoritative;
 
option domain-name "dka.dk";
option domain-name-servers 10.0.0.1;
 
default-lease-time 3100;	# 51 minutes.
max-lease-time 604800;		# 1 week
 
 
subnet 10.0.0.0 netmask 255.255.255.0 {
	option routers 10.0.0.1;
	option subnet-mask 255.255.255.0;
	option broadcast-address 10.0.0.255;
 
	# The latest input from layer-9 required us to shift the dynamic
	# range from the top half of the subnet down to the bottom half.
	# This pool clause will elicit NAKs for the old leases while the
	# clients migrate.  Remember to remove this once they've all booted
	# once or expired.
	pool {
		range 10.0.0.1 10.0.0.20;
		deny all clients;
	}
	pool {
		range 10.0.0.21 10.0.0.254;
	}
}