Created
July 16, 2018 20:03
-
-
Save glennswest/273aee06799cf2f731593d10f088eebf to your computer and use it in GitHub Desktop.
Example dhcpd.conf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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