华为交换机 链路聚合

前言
随着网络规模不断扩大,用户对骨干链路的带宽和可靠性提出了越来越高的要求。在传统技术中,常用更换高速率的接口板或更换支持高速率接口板的设备的方式来增加带宽,但这种方案需要付出高额的费用,而且不够灵活。
采用链路聚合技术可以在不进行硬件升级的条件下,通过将多个物理接口捆绑为一个逻辑接口,来达到增加链路带宽的目的。在实现增大带宽目的的同时,链路聚合采用备份链路的机制,可以有效的提高设备之间链路的可靠性。

链路聚合应用场景
在企业网络中,所有设备的流量在转发到其他网络前都会汇聚到核心层,再由核心区设备转发到其他网络,或者转发到外网;
因此,在核心层设备负责数据的高速交换时,容易发生拥塞;
在核心层部署链路聚合,可以提升整个网络的数据吞吐量,解决拥塞问题。
链路聚合一般部署在核心节点,以便提升整个网络的数据吞吐量

手工负载分担模式

采用 CE12800 核心交换机(拓扑图)

1、CE1 交换机设置

<HUAWEI>sys
[~HUAWEI]un in en
[*HUAWEI]sys CE1
[*HUAWEI]commit

# 批量启用端口 
[~CE1]int range g1/0/1 to g1/0/4
[~CE1-port-group]undo shutdown   
[*CE1-port-group]quit

# g1/0/1切换三层接口并设置IP
[*CE1]int g1/0/1
[*CE1-GE1/0/1]undo portswitch
[*CE1-GE1/0/1]ip addr 192.168.10.254 24

# 创建 eth-trunk1 接口
[*CE1-GE1/0/1]int eth-trunk 1

# eth-trunk1 接口切换为三层接口
[*CE1-Eth-Trunk1]undo portswitch

# 把g2-4接口加入到eth-trunk1接口
[*CE1-Eth-Trunk1]trunkport g 1/0/2 to 1/0/4

# eth-trunk 接口设置 IP
[*CE1-Eth-Trunk1]ip addr 10.0.10.1 24
[*CE1-Eth-Trunk1]quit

# 配置静态路由
[*CE1]ip route-static 192.168.20.0 24 10.0.10.2
[*CE1]commit

2、CE2 交换机设置

<HUAWEI>sys
[~HUAWEI]un in en
[*HUAWEI]sys CE2
[*HUAWEI]commit

# 批量启用端口 
[~CE2]int range g1/0/1 to g1/0/4
[~CE2-port-group]undo shutdown   
[*CE2-port-group]quit

# g1/0/1切换三层接口 设置IP
[*CE2]int g1/0/1
[*CE2-GE1/0/1]undo portswitch
[*CE2-GE1/0/1]ip addr 192.168.20.254 24

# 创建 eth-trunk 接口
[*CE2-GE1/0/1]int eth-trunk 1

# eth-trunk1接口切换三层接口
[*CE2-Eth-Trunk1]undo portswitch

# 把g2-4接口加入到eth-trunk1接口
[*CE2-Eth-Trunk1]trunkport g 1/0/2 to 1/0/4

# eth-trunk 接口设置 IP
[*CE2-Eth-Trunk1]ip addr 10.0.10.2 24
[*CE2-Eth-Trunk1]quit

# 配置静态路由
[*CE2]ip route-static 192.168.10.0 24 10.0.10.1
[*CE2]commit

3、查看 eth-trunk

[~CE1]dis eth-trunk 1
Eth-Trunk1's state information is:
Working Mode: Normal        Hash Arithmetic: According to flow
Least Active-linknumber: 1  Max Bandwidth-affected-linknumber: 32
Operating Status: up        Number of Up Ports in Trunk: 3
--------------------------------------------------------------------------------
PortName                      Status      Weight
GE1/0/2                       Up          1          
GE1/0/3                       Up          1          
GE1/0/4                       Up          1 

4、验证网络互通

PC1>ping 192.168.20.1

Ping 192.168.20.1: 32 data bytes, Press Ctrl_C to break
From 192.168.20.1: bytes=32 seq=1 ttl=126 time=16 ms
From 192.168.20.1: bytes=32 seq=2 ttl=126 time=15 ms
From 192.168.20.1: bytes=32 seq=3 ttl=126 time=31 ms
From 192.168.20.1: bytes=32 seq=4 ttl=126 time=16 ms
From 192.168.20.1: bytes=32 seq=5 ttl=126 time=16 ms

--- 192.168.20.1 ping statistics ---
  5 packet(s) transmitted
  5 packet(s) received
  0.00% packet loss
  round-trip min/avg/max = 15/18/31 ms

LACP模式的链路聚合

组网需求
如图所示,在两台Switch设备上配置LACP模式链路聚合组,提高两设备之间的带宽与可靠性,具体要求如下:
两条活动链路具有负载分担的能力。
两设备间的链路具有1条冗余备份链路,当活动链路出现故障链路时,备份链路替代故障链路,保持数据传输的可靠性。

扫描二维码关注公众号,回复: 15526198 查看本文章

采用 S5700 三层交换机(拓扑图)

配置思路

采用如下的思路配置LACP模式链路聚合:
创建Eth-Trunk,配置Eth-Trunk为LACP模式,实现链路聚合功能。
将成员接口加入Eth-Trunk。

说明:
配置系统优先级,确定主动端,按照主动端设备的接口选择活动接口。
配置活动接口上限阈值,实现保证带宽的情况下提高网络的可靠性。
配置接口优先级,确定活动链路接口,优先级高的接口将被选作活动接口。 

1、SW1 设置

<Huawei>sys
[Huawei]un in en
[Huawei]sys SW1

# 批量创建 vlan
[SW1]vlan batch 10 100

# 设置网关IP
[SW1]int g0/0/1
[SW1-GigabitEthernet0/0/1]p l a
[SW1-GigabitEthernet0/0/1]p d v 10
[SW1-GigabitEthernet0/0/1]int vlanif 10
[SW1-Vlanif10]ip addr 192.168.10.254 24
[SW1-Vlanif10]quit

# 创建 eth-trunk1 接口
[SW1]int eth-trunk 1

# lacp 模式
[SW1-Eth-Trunk1]mode lacp

# 配置活动接口上限阈值为2
[SW1-Eth-Trunk1]max active-linknumber 2

# 把g3-g5接口加入eth-trunk1接口
[SW1-Eth-Trunk1]trunkport g 0/0/3 to 0/0/5
[SW1-Eth-Trunk1]p l a
[SW1-Eth-Trunk1]p d v 100
[SW1-Eth-Trunk1]quit

# 配置系统优先级为100,使其成为LACP主动端
[SW1]lacp priority 100

# 配置接口优先级确定活动链路
[SW1]int g0/0/3
[SW1-GigabitEthernet0/0/3]lacp priority 100
[SW1-GigabitEthernet0/0/3]int g0/0/4
[SW1-GigabitEthernet0/0/4]lacp priority 100
[SW1-GigabitEthernet0/0/4]quit

# eth-trunk 1 设置 IP
[SW1]int vlanif 100
[SW1-Vlanif100]ip addr 10.0.10.1 24

# 静态路由
[SW1-Vlanif100]ip route-static 192.168.20.0 24 10.0.10.2

2、SW2 设置

<Huawei>sys
[Huawei]un in en
[Huawei]sys SW2

# 批量创建 vlan
[SW2]vlan batch 20 100

# 设置网关 IP
[SW2]int g0/0/1
[SW2-GigabitEthernet0/0/1]p l a
[SW2-GigabitEthernet0/0/1]p d v 20
[SW2-GigabitEthernet0/0/1]int vlanif 20
[SW2-Vlanif20]ip addr 192.168.20.254 24

# 创建 eth-trunk1 接口
[SW2-Vlanif20]int eth-trunk 1

# 设置 lacp 模式
[SW2-Eth-Trunk1]mode lacp

# 把g3-g5接口加到eth-trunk1接口
[SW2-Eth-Trunk1]trunkport g 0/0/3 to 0/0/5
[SW2-Eth-Trunk1]p l a
[SW2-Eth-Trunk1]p d v 100
[SW2-Eth-Trunk1]quit

# 设置eth-trunk1接口IP
[SW2]int vlanif 100
[SW2-Vlanif100]ip addr 10.0.10.2 24

# 静态路由
[SW2-Vlanif100]ip route-static 192.168.10.0 24 10.0.10.1

3、查看链路聚合

  • SW1交换机可以看到  System Priority: 100
  • Max Active-linknumber: 2
  • GigabitEthernet0/0/3:Selected,GigabitEthernet0/0/4:Selected
[SW1]dis eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1                   WorkingMode: STATIC                               
Preempt Delay: Disabled     Hash arithmetic: According to SIP-XOR-DIP         
System Priority: 100        System ID: 4c1f-cc9a-3416                         
Least Active-linknumber: 1  Max Active-linknumber: 2                          
Operate status: up          Number Of Up Port In Trunk: 2                     
--------------------------------------------------------------------------------
ActorPortName          Status   PortType PortPri PortNo PortKey PortState Weight
GigabitEthernet0/0/3   Selected 1GE      100     4      305     10111100  1    # 默认选中
GigabitEthernet0/0/4   Selected 1GE      100     5      305     10111100  1    # 默认选中     
GigabitEthernet0/0/5   Unselect 1GE      32768   6      305     10100000  1     

Partner:
--------------------------------------------------------------------------------
ActorPortName          SysPri   SystemID        PortPri PortNo PortKey PortState
GigabitEthernet0/0/3   32768    4c1f-cc90-16c1  32768   4      305     10111100
GigabitEthernet0/0/4   32768    4c1f-cc90-16c1  32768   5      305     10111100
GigabitEthernet0/0/5   32768    4c1f-cc90-16c1  32768   6      305     10110000
  • SW2交换机可以看到  System Priority: 32768
  • Max Active-linknumber: 8  #S5700默认可以配置8个
  • GigabitEthernet0/0/3:Selected,GigabitEthernet0/0/4:Selected
[SW2]dis eth-trunk 1
Eth-Trunk1's state information is:
Local:
LAG ID: 1                   WorkingMode: STATIC                               
Preempt Delay: Disabled     Hash arithmetic: According to SIP-XOR-DIP         
System Priority: 32768      System ID: 4c1f-cc90-16c1                         
Least Active-linknumber: 1  Max Active-linknumber: 8                          
Operate status: up          Number Of Up Port In Trunk: 2                     
--------------------------------------------------------------------------------
ActorPortName          Status   PortType PortPri PortNo PortKey PortState Weight
GigabitEthernet0/0/3   Selected 1GE      32768   4      305     10111100  1     
GigabitEthernet0/0/4   Selected 1GE      32768   5      305     10111100  1     
GigabitEthernet0/0/5   Unselect 1GE      32768   6      305     10110000  1     

Partner:
--------------------------------------------------------------------------------
ActorPortName          SysPri   SystemID        PortPri PortNo PortKey PortState
GigabitEthernet0/0/3   100      4c1f-cc9a-3416  100     4      305     10111100
GigabitEthernet0/0/4   100      4c1f-cc9a-3416  100     5      305     10111100
GigabitEthernet0/0/5   100      4c1f-cc9a-3416  32768   6      305     10100000

猜你喜欢

转载自blog.csdn.net/mshxuyi/article/details/129841604