Created
March 10, 2019 00:27
-
-
Save FHRNet/c2f0d691e8a858b16268cf5be0bdba6b to your computer and use it in GitHub Desktop.
dhcp for routed VMs
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
| option domain-name-servers 9.9.9.10 8.8.8.8; | |
| option subnet-mask 255.255.255.255; | |
| option routers 172.16.0.1; | |
| shared-network "net1" { | |
| subnet 172.16.0.1 netmask 255.255.255.255 { | |
| } | |
| subnet 192.168.0.55 netmask 255.255.255.255 { | |
| authoritative; | |
| allow unknown-clients; | |
| range 192.168.0.55; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment