Skip to content

Instantly share code, notes, and snippets.

@FHRNet
Created March 10, 2019 00:27
Show Gist options
  • Save FHRNet/c2f0d691e8a858b16268cf5be0bdba6b to your computer and use it in GitHub Desktop.
Save FHRNet/c2f0d691e8a858b16268cf5be0bdba6b to your computer and use it in GitHub Desktop.
dhcp for routed VMs
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