Здравствуйте! Наблюдаю проблемы при создании моста br1 с интерфейсом bond1. Если руками:
root@adam:~# ifconfig bond1 up
root@adam:~# ifenslave bond1 eth1
root@adam:~# brctl addbr br1
root@adam:~# brctl addif br1 bond1
root@adam:~# brctl show
bridge name bridge id STP enabled interfaces
br0 8000.20cf30e2ab05 no eth0
vnet0
br1 8000.20cf30e28f46 no bond1
virbr0 8000.000000000000 yes
root@adam:~# ifconfig br1 192.168.201.44
C:\Users\Александр>ping 192.168.201.44
Обмен пакетами с 192.168.201.44 по с 32 байтами данных:
Ответ от 192.168.201.44: число байт=32 время=171мс TTL=62
Ответ от 192.168.201.44: число байт=32 время=214мс TTL=62
Ответ от 192.168.201.44: число байт=32 время=524мс TTL=62
~# nano /etc/network/interfaces
# 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
# The primary network interface
auto eth0
iface eth0 inet manual
# The following network interface
auto eth1
iface eth1 inet manual
# The following network interface
auto eth2
iface eth2 inet manual
# The following network interface
auto eth3
iface eth3 inet manual
# The following network interface
auto eth4
iface eth4 inet manual
# The following network interface
auto eth5
iface eth5 inet manual
# Bond
auto bond1
iface bond1 inet manual
bond-slaves eth0 eth1
up /sbin/ifenslave bond1 eth0 eth1
down /sbin/ifenslave bond1 eth0 eth1
bond_mode 802.3ad
bond_miimon 100
bond_lacp_rate 1
# Bridge with the primary network interface
auto br0
iface br0 inet static
address 192.168.201.6
netmask 255.255.255.0
network 192.168.201.0
#broadcast 192.168.201.155
gateway 192.168.201.75
bridge_ports bond1
bridge_fd 9
bridge_hello 2
bridge_maxage 12
bridge_stp off
# Bonding with the remaining interfaces
auto bond0
iface bond0 inet static
address 10.10.10.1
netmask 255.255.255.0
bond-slaves eth2 eth3 eth4 eth5
up /sbin/ifenslave bond0 eth2 eth3 eth4 eth5
down /sbin/ifenslave bond0 eth2 eth3 eth4 eth5
bond_mode balance-rr
bond_miimon 100
bond_lacp_rate 1
mtu 9000
~# nano /etc/modprobe.d/bonding.conf
alias bond0 bonding
alias bond1 bonding
options bonding max_bonds=2