Skip to content

Instantly share code, notes, and snippets.

@glennswest
Created July 16, 2018 20:03
Show Gist options
  • Save glennswest/273aee06799cf2f731593d10f088eebf to your computer and use it in GitHub Desktop.
Save glennswest/273aee06799cf2f731593d10f088eebf to your computer and use it in GitHub Desktop.
Example dhcpd.conf
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.example
# see dhcpd.conf(5) man page
#
subnet 147.75.39.72 netmask 255.255.255.248 {
option routers 147.75.39.73;
option subnet-mask 255.255.255.248;
option domain-name "ncc9.com";
option domain-name-servers 8.8.8.8;
range 147.75.39.77 147.75.39.77;
host winnode01 {
option host-name "winnode01.ncc9.com";
hardware ethernet 00:0c:29:f8:f4:54;
fixed-address 147.75.39.76;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment