Configuring DHCP Services - jude-lindale/Wiki GitHub Wiki
Configuring DHCP Services
- Run the
sudo -i
command, - open the dhcp configuration
vi /etc/dhcp/dhcpd.conf
-
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; }
-
Once written press [Esc] and the type
:wq