Configure DHCP Services with PuTTY - adaley0518/Tech_Journal GitHub Wiki

Become the system user or root:

* command 'sudo -i' will go to root
* (nano or vi) /etc/dhcp/dhcpd.conf
* Type carefully into file under the comments:

subnet 10.0.5.0 netmask 255.255.255.0 {

    option routers 10.0.5.2;
    option subnet-mask 255.255.255.0;
    option domain-name "amber.local";
    option domain-name-servers 10.0.5.5;
    range 10.0.5.100 10.0.5.150;

}