首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Linux LACP (802.3ad)只用于入口通信?

Linux LACP (802.3ad)只用于入口通信?
EN

Network Engineering用户
提问于 2017-06-10 17:55:04
回答 1查看 655关注 0票数 0

我们已经在我们的Juniper交换机和一个Linux主机上设置了LACP (802.3ad),用3x1Gbps链接连接到交换机。我们可以以3 Gbps的速度从多个来源下载,但是当将文件上传到不同的目的地时,我们最多可以获得1 Gbps。有趣的是,Linux主机似乎只使用了一个上行链路来上传(到不同的目的地):

代码语言:javascript
复制
Interface: ge-0/0/34, Enabled, Link is Up
Encapsulation: Ethernet, Speed: 1000mbps
Traffic statistics:
  Input bytes:             9874189047641 (981736896 bps)
  Output bytes:            5641687864781 (440210816 bps)

Interface: ge-0/0/36, Enabled, Link is Up
Encapsulation: Ethernet, Speed: 1000mbps
Traffic statistics:
  Input bytes:                6194266205 (1016 bps)                    
  Output bytes:            5368956712475 (400087456 bps)

Interface: ge-0/0/44, Enabled, Link is Up
Encapsulation: Ethernet, Speed: 1000mbps
Traffic statistics:
  Input bytes:             1494878289802 (1016 bps)
  Output bytes:           11897014259103 (469673216 bps)

投入和输出被翻转。

我们基本上遵循了本教程:http://phreek.org/blog/2014/11/centos-7-lacp-network-bonding

像往常一样在我们的交换机上设置LACP。

代码语言:javascript
复制
# show system rollback 2 compare 1
[edit chassis]
-   aggregated-devices {
-       ethernet {
-           device-count 1;
-       }
-   }
[edit interfaces ge-0/0/34]
-    ether-options {
-        802.3ad ae0;
-    }
[edit interfaces ge-0/0/34]
+    unit 0 {
+        family ethernet-switching;
+    }
[edit interfaces ge-0/0/36]
-    ether-options {
-        802.3ad ae0;
-    }
[edit interfaces ge-0/0/36]
+    unit 0 {
+        family ethernet-switching;
+    }
[edit interfaces ge-0/0/44]
-    ether-options {
-        802.3ad ae0;
-    }
[edit interfaces ge-0/0/44]
+    unit 0 {
+        family ethernet-switching;
+    }
[edit interfaces]
-   ae0 {
-       aggregated-ether-options {
-           lacp {
-               active;
-               periodic fast;
-           }
-       }
-       unit 0 {
-           family ethernet-switching;
-       }
-   }
[edit vlans SERVER-130 interface]
+    ge-0/0/44.0;
+    ge-0/0/36.0;
+    ge-0/0/34.0;
-    ae0.0;

有什么想法吗?

EN

回答 1

Network Engineering用户

发布于 2017-06-10 20:18:44

尝试将传输哈希策略更改为layer3+4

更多信息,这里

票数 1
EN
页面原文内容由Network Engineering提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://networkengineering.stackexchange.com/questions/41820

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档