Hi,
I'm having a little trouble configuring my network bonds. I'm using a linux bond bond0. This bond is using eno1 and eno3 for communication.
In my setup eno1 is a 10GBit port connected to a 10GBit Switch. eno3 Is a 1GBit Port connected to a 1GBit Switch. Both Switches are connected using a third switch (thats where the internet comes from, they are to provide redundant access too and make sure the cluster always can talk to itself to keep corosync happy).
Since I want bond0 to use eno1 as standard (I want to use my 10GBIT, we do get 10G internet access) I defined eno1 in bond0 as bond-primary.
The problem though, the bond only offers 1G. I checked and ethtool reports eno1 as 10G, eno3 as 1G and bond0 as 1G. (also tested using iperf and scp, capped at ~112MB/s)
How can I make bond0 utilize my 10G network?
I'm having a little trouble configuring my network bonds. I'm using a linux bond bond0. This bond is using eno1 and eno3 for communication.
In my setup eno1 is a 10GBit port connected to a 10GBit Switch. eno3 Is a 1GBit Port connected to a 1GBit Switch. Both Switches are connected using a third switch (thats where the internet comes from, they are to provide redundant access too and make sure the cluster always can talk to itself to keep corosync happy).
Since I want bond0 to use eno1 as standard (I want to use my 10GBIT, we do get 10G internet access) I defined eno1 in bond0 as bond-primary.
The problem though, the bond only offers 1G. I checked and ethtool reports eno1 as 10G, eno3 as 1G and bond0 as 1G. (also tested using iperf and scp, capped at ~112MB/s)
How can I make bond0 utilize my 10G network?
-- cat /etc/network/interfaces --
auto lo
iface lo inet loopback
iface eno1 inet manual
#10G Netzwerk
iface eno2 inet manual
#10G Ceph
iface eno3 inet manual
#1G Netzwerk
iface eno4 inet manual
#1G Ceph
auto bond0
iface bond0 inet manual
bond-slaves eno1 eno3
bond-miimon 100
bond-mode active-backup
bond-primary eno1
#Netzwerk
[...]
Settings for eno1:
Supported ports: [ TP ]
Supported link modes: 100baseT/Half 100baseT/Full
1000baseT/Full
10000baseT/Full
Supported pause frame use: Symmetric Receive-only
Supports auto-negotiation: Yes
Supported FEC modes: Not reported
Advertised link modes: 100baseT/Half 100baseT/Full
1000baseT/Full
10000baseT/Full
Advertised pause frame use: Symmetric Receive-only
Advertised auto-negotiation: Yes
Advertised FEC modes: Not reported
Link partner advertised link modes: 10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
10000baseT/Full
Link partner advertised pause frame use: No
Link partner advertised auto-negotiation: Yes
Link partner advertised FEC modes: Not reported
Speed: 10000Mb/s
Duplex: Full
Port: Twisted Pair
PHYAD: 17
Transceiver: internal
Auto-negotiation: on
MDI-X: Unknown
Supports Wake-on: g
Wake-on: d
Current message level: 0x00000000 (0)
Link detected: yes
root@pluto:~#
Settings for bond0:
Supported ports: [ ]
Supported link modes: Not reported
Supported pause frame use: No
Supports auto-negotiation: No
Supported FEC modes: Not reported
Advertised link modes: Not reported
Advertised pause frame use: No
Advertised auto-negotiation: No
Advertised FEC modes: Not reported
Speed: 1000Mb/s
Duplex: Full
Port: Other
PHYAD: 0
Transceiver: internal
Auto-negotiation: off
Link detected: yes
root@pluto:~#
Last edited: