# reboot # restart network interfaces in the contianer with # /etc/init.d/networking restart # Physical Interfaces (Slaves to the Bond) auto red0 iface red0 inet manual # bond0 auto green0 iface green0 inet manual # bond0 auto orange0 iface orange0 inet manual # bond0 # The Bond Interface (Link Aggregation) auto bond0 iface bond0 inet manual bond_slaves red0 green0 orange0 bond_mode 802.3ad # LACP - common mode, adjust as needed bond_miimon 100 # GREEN Network (VLAN 10 - LAN) auto bond0.10 iface bond0.10 inet static address 192.168.10.56 netmask 255.255.255.0 # Or use dhcp: iface bond0.10 inet dhcp # ORANGE Network (VLAN 20 - DMZ) auto bond0.20 iface bond0.20 inet static address 10.255.255.1 netmask 255.255.255.0 # Or use dhcp: iface bond0.20 inet dhcp