Created
February 26, 2009 00:58
-
-
Save macros/70561 to your computer and use it in GitHub Desktop.
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
auto lo | |
iface lo inet loopback | |
auto bond0 | |
iface bond0 inet static | |
slaves eth2 eth3 | |
address 10.6.2.102 | |
netmask 255.255.255.0 | |
auto bond1 | |
iface bond1 inet static | |
slaves eth4 eth5 | |
address 10.6.2.102 | |
netmask 255.255.255.0 | |
auto vlan4 | |
iface vlan4 inet static | |
vlan_raw_device bond0 | |
address 0.0.0.0 | |
netmask 0.0.0.0 | |
auto vlan3 | |
iface vlan3 inet static | |
vlan_raw_device bond1 | |
address 0.0.0.0 | |
netmask 0.0.0.0 | |
auto xenbr0 | |
iface xenbr0 inet static | |
bridge_ports vlan4 | |
address 0.0.0.0 | |
netmask 0.0.0.0 | |
auto xenbr1 | |
iface xenbr1 inet static | |
bridge_ports vlan3 | |
address 0.0.0.0 | |
netmask 0.0.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment