写一份华为交换机m-lag的配置脚本
时间: 2024-11-03 13:18:25 浏览: 34
CloudEngine 16800, 12800, 8800, 6800, 5800系列交换机 M-LAG最佳实践
5星 · 资源好评率100%
华为M-LAG(Multi-link Active-Active Group),也称为端口聚合组,是一种高可用技术,可以将两个或更多物理链路捆绑在一起提供冗余和带宽增加。以下是一个简单的M-LAG配置示例,假设你使用的是Huawei S5700系列交换机:
```bash
interface GigabitEthernet 1/0/1
link-aggregation mode on
lacp system-id <your_system_id>
channel-group 1 mode lacp
interface GigabitEthernet 1/0/2
link-aggregation mode on
lacp system-id <your_system_id>
channel-group 1 mode lacp
interface Eth-Trunk 1
mode lacp-static
port-channel transmit-mode on
undo shutdown
interface Eth-Trunk 1 port link-type trunk
interface Eth-Trunk 1 port channel-vlan enable
```
在这个脚本中,我们首先启用GiGabitEthernet 1/0/1 和 GiGabitEthernet 1/0/2 作为聚合成员,设置了LACP模式并指定了系统ID。接着创建Eth-Trunk 1,并设置其为静态LACP模式,允许跨VLAN通信。注意替换 `<your_system_id>` 为你实际需要的系统标识。
阅读全文