Last active
November 24, 2015 18:28
-
-
Save fernandojunior/2f014c2f7ffa4adc03ed to your computer and use it in GitHub Desktop.
Virtualbox internal network
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
| 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