Instalasi DHCP Server

From OnnoWiki
Revision as of 06:26, 6 February 2008 by Onnowpurbo (talk | contribs) (New page: Instal DHCP Server # apt-get install dhcp3-server Konfigurasi dhcpd.conf # vi /etc/dhcp3/dhcpd.conf option domain-name "warnet.net" option domain-name-servers 202.134.2.5, 203.130...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Instal DHCP Server

# apt-get install dhcp3-server

Konfigurasi dhcpd.conf

# vi /etc/dhcp3/dhcpd.conf
	option domain-name "warnet.net"
	option domain-name-servers 202.134.2.5, 203.130.196.5; 
	subnet 192.168.0.0 netmask 255.255.255.0 {
	  range 192.168.0.100 192.168.0.200
	  options routers 192.168.0.1;
	}

Restart DHCP Server

# /etc/init.d/dhcp3-server restart