Skip to content

Instantly share code, notes, and snippets.

@fernandojunior
Last active November 24, 2015 18:28
Show Gist options
  • Select an option

  • Save fernandojunior/2f014c2f7ffa4adc03ed to your computer and use it in GitHub Desktop.

Select an option

Save fernandojunior/2f014c2f7ffa4adc03ed to your computer and use it in GitHub Desktop.
Virtualbox internal network
vboxmanage dhcpserver add --netname intnet --ip 192.168.1.1 --netmask 255.255.255.0 --lowerip 192.168.1.2 --upperip 192.168.1.10 --enable
vboxmanage dhcpserver add --netname intnet --ip 10.10.10.1 --netmask 255.255.255.0 --lowerip 10.10.10.2 --upperip 10.10.10.10 --enable
vboxmanage dhcpserver remove --netname intnet
# ref
# https://www.virtualbox.org/manual/ch06.html
# https://www.virtualbox.org/manual/ch08.html#vboxmanage-dhcpserver
# https://www.youtube.com/watch?v=lhOY-KilEeE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment