Through ovs-vsctl, bridges from physical interfaces are configured in the GUI
eno1 - Service NIC
eno2 - Man NIC
eno3 + eno4 - bond (LACP (balance-tcp))
Cisco shows the following error for server ports configured as bond:
Interfaces config:
Cisco config for PortChannel:
Cisco config for NICs:
Despite this, the channel bandwidth is not more than 1Gb/s, although it should have been 2Gb/s
What could be the problem?
eno1 - Service NIC
eno2 - Man NIC
eno3 + eno4 - bond (LACP (balance-tcp))
Cisco shows the following error for server ports configured as bond:
Code:
%EC-5-L3DONTBNDL2: Gi1/35 suspended: LACP currently not enabled on the remote port
%EC-5-L3DONTBNDL2: Gi1/36 suspended: LACP currently not enabled on the remote port
Interfaces config:
Code:
auto lo
iface lo inet loopback
auto eno1
iface eno1 inet manual
ovs_type OVSPort
ovs_bridge vmbr1
auto eno2
iface eno2 inet manual
ovs_type OVSPort
ovs_bridge vmbr0
auto eno3
iface eno3 inet manual
auto eno4
iface eno4 inet manual
auto vlan1185
iface vlan1185 inet static
address 10.225.2.21/24
ovs_type OVSIntPort
ovs_bridge vmbr2
ovs_options tag=1185
auto bond0
iface bond0 inet manual
ovs_bonds eno3 eno4
ovs_type OVSBond
ovs_bridge vmbr2
ovs_options lacp=active bond_mode=balance-tcp
auto vmbr1
iface vmbr1 inet static
address 10.225.1.21/24
gateway 10.225.1.1
ovs_type OVSBridge
ovs_ports eno1
#Management
auto vmbr0
iface vmbr0 inet manual
ovs_type OVSBridge
ovs_ports eno2
#Service
auto vmbr2
iface vmbr2 inet manual
ovs_type OVSBridge
ovs_ports bond0 vlan1185
#Backup and Migrations
Cisco config for PortChannel:
Code:
interface Port-channel1
description srv25 NIC 3,4
switchport
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1185
switchport mode trunk
spanning-tree bpdufilter enable
end
Cisco config for NICs:
Code:
interface GigabitEthernet1/3
description srv25 NIC3 (backup and migrate)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1185
switchport mode trunk
channel-protocol lacp
channel-group 1 mode active
end
interface GigabitEthernet1/4
description srv25 NIC4 (backup and migrate)
switchport trunk encapsulation dot1q
switchport trunk allowed vlan 1185
switchport mode trunk
channel-protocol lacp
channel-group 1 mode active
end
What could be the problem?