问题

问题

操作系统:CentOS 6.6 / 64bit / Kernel 2.6.32-504.30.3.el6.x86_64

我有bond0以下配置的界面。

Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)

Bonding Mode: IEEE 802.3ad Dynamic link aggregation
Transmit Hash Policy: layer2 (0)
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0

802.3ad info
LACP rate: slow
Aggregator selection policy (ad_select): stable
Active Aggregator Info:
    Aggregator ID: 7
    Number of ports: 2
    Actor Key: 17
    Partner Key: 3
    Partner Mac Address: a4:56:30:c6:0d:00

Slave Interface: eth0
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 2
Permanent HW addr: 9c:8e:99:0d:1a:f2
Aggregator ID: 7
Slave queue ID: 0

Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 2
Permanent HW addr: 9c:8e:99:0d:1a:f4
Aggregator ID: 7
Slave queue ID: 0

modprobe.conf

alias bond0 bonding
options bond0 mode=4 miimon=100

思科交换机配置:

interface Port-channel1
 description Linux-bond0
 switchport access vlan 10

interface GigabitEthernet0/7
 switchport access vlan 10
 spanning-tree portfast
 spanning-tree guard root
 channel-protocol lacp
 channel-group 1 mode active
!
interface GigabitEthernet0/8
 switchport access vlan 10
 spanning-tree portfast
 spanning-tree guard root
 channel-protocol lacp
 channel-group 1 mode active
!

问题

bond0我在 Linux 上和接口上收到 RX 数据包丢失eth0(但在 eth1 上没有)

bond0 : RX packets:575214161 errors:0 dropped:6407 overruns:0 frame:0
eth0 : RX packets:573623915 errors:0 dropped:6410 overruns:0 frame:0
eth1 : RX packets:1590356 errors:0 dropped:0 overruns:0 frame:0

我检查了 MRTG 以查看流量​​,大约为 30mbps

但有趣的事情。我看到 eth0 上的所有流量均为 30mbps,而 eth1 上的流量只有很少的 kbps。这意味着我的链接没有进行负载平衡,对吧?

仙人掌报告以下数据。 LACP 应该共享两个链路上的流量,对吗?

eth0: 30mbps
eth1: 600kbps 

答案1

我不会担心丢包。计算一下,您丢失的数据包总数不到 0.001%。

就负载平衡而言,您可能需要(重新)配置交换机上使用的负载分配算法(因为它是不平衡的服务器流量的交换机)。思科有一些关于这方面的很好的文档这里但复制到这个答案中的内容太多了。另请注意,分配算法将流量流分配给物理接口,这意味着如果只有一个流,它将仅使用一个物理接口。

相关内容