Difference between revisions of "FreePBX/en/dhcp server"
From Teknologisk videncenter
m (Created page with "=Install DHCP server on Centos= =File /etc/dhcpd.conf= Configure /etc/dhcpd.conf using your favorite UNIX editor. * <source lang=cli> ddns-update-style none; option tftp code 15...") |
(No difference)
|
Revision as of 11:34, 8 May 2013
Install DHCP server on Centos
File /etc/dhcpd.conf
Configure /etc/dhcpd.conf using your favorite UNIX editor.
ddns-update-style none;
option tftp code 150 = ip-address;
server-name "freepbx.henrik.dk";
subnet 172.24.0.0 netmask 255.255.0.0 {
range dynamic-bootp 172.24.100.1 172.24.199.255;
option routers 172.24.0.1;
option subnet-mask 255.255.0.0;
option tftp 172.24.0.1;
option domain-name "Hold2.tekkom.dk";
option domain-name-servers 208.67.222.222;
}