Created
August 23, 2016 08:45
-
-
Save Sid3y1/b29a8835daac51937a112588b6ac78eb to your computer and use it in GitHub Desktop.
proxmox interfaces
This file contains 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
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
iface eth0 inet manual | |
iface eth1 inet manual | |
auto vmbr0 | |
iface vmbr0 inet static | |
address PUBLIC IP | |
netmask 255.255.255.0 | |
gateway PUBLIC GW | |
bridge_ports eth0 | |
bridge_stp off | |
bridge_fd 0 | |
auto vmbr1 | |
iface vmbr1 inet static | |
address 10.0.0.1 | |
netmask 255.255.255.0 | |
bridge_ports none | |
bridge_stp off | |
bridge_fd 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment