Configuring DHCP Services - jude-lindale/Wiki GitHub Wiki

Configuring DHCP Services

  1. Run the sudo -i command,
  2. open the dhcp configuration
  • vi /etc/dhcp/dhcpd.conf
  1. Typing very carefully, enter the following into your new file below 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 "jude.local";
            domain-name-servers 10.0.5.5;
            range 10.0.5.100 10.0.5.150;
     }
    
  2. Once written press [Esc] and the type :wq

Now it is time for Starting DCHP Services