Created
May 5, 2022 09:30
-
-
Save lurepheonix/fc57adea7715a9f326e71e9f76bc46c1 to your computer and use it in GitHub Desktop.
Virtualbox bridge configuration
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
# /etc/network/interfaces | |
# target VM ip: 192.168.1.100 | |
# address - target VM IP | |
# netmask - subnet mask | |
# broadcast - network range | |
# network - subnet | |
# gateway - router | |
iface enp0s3 inet static | |
address 192.168.1.100 | |
netmask 255.255.255.0 | |
broadcast 192.168.1.255 | |
network 192.168.1.0 | |
gateway 192.168.1.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment