Skip to content

Instantly share code, notes, and snippets.

@lurepheonix
Created May 5, 2022 09:30
Show Gist options
  • Save lurepheonix/fc57adea7715a9f326e71e9f76bc46c1 to your computer and use it in GitHub Desktop.
Save lurepheonix/fc57adea7715a9f326e71e9f76bc46c1 to your computer and use it in GitHub Desktop.
Virtualbox bridge configuration
# /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