华为交换机怎么打开组播协议(华为交换机配置链路聚合)
华为交换机怎么打开组播协议(华为交换机配置链路聚合)sys sys SW2 vlan batch 10 20 30 40 int g0/0/1 port link-type access port default vlan 30 int g0/0/2 port link-type access port default vlan 40 int vlanif 10 ip add 192.168.10.254 24 q int vlanif 20 ip add 192.168.20.254 24 q int vlanif 30 ip add 192.168.30.254 24 q int vlanif 40 ip add 192.168.40.254 24 q interface Eth-Trunk 1 mode lacp-static trunkport GigabitEthernet 0/0/3 to 0/0/5 port link-typ
2022年11月6日学习笔记
链路聚合(Eth-Trunk),是将多个物理接口捆绑为一个逻辑接口,实现增加链路带宽、提高可靠性、提供负载分担的目的。
链路聚合两种模式:手工负载分担模式(默认模式,默认负载均衡方式src-dst-ip),LACP模式(推荐)。
链路聚合技术三大优势:①增加带宽,②提高可靠性,③负载分担
eNSP模式实验
模式实验说明:pc1-pc4分别属于四个不同的vlan10、vlan20、vlan30、vlan40,LSW2是网关服务器,配置了网关地址,LSW1交换机和LSW2交换机之间通过链路聚合连接,LSW1交换机是主设备,两台交换机Eth-Trunk配置lacp模式,从而实现不同vlan间pc互访。
LSW1配置:
sys
sys SW1
vlan batch 10 20 30 40
int g0/0/1
port link-type access
port default vlan 10
int g0/0/2
port link-type access
port default vlan 20
interface Eth-Trunk 1
mode lacp-static
trunkport GigabitEthernet 0/0/3 to 0/0/5
port link-type trunk
port trunk allow-pass vlan 10 20 30 40
q
lacp priority 100
interface Eth-Trunk 1
max active-linknumber 2
least active-linknumber 2
lacp preempt enable
lacp preempt delay 10
q
LSW2配置:
sys
sys SW2
vlan batch 10 20 30 40
int g0/0/1
port link-type access
port default vlan 30
int g0/0/2
port link-type access
port default vlan 40
int vlanif 10
ip add 192.168.10.254 24
q
int vlanif 20
ip add 192.168.20.254 24
q
int vlanif 30
ip add 192.168.30.254 24
q
int vlanif 40
ip add 192.168.40.254 24
q
interface Eth-Trunk 1
mode lacp-static
trunkport GigabitEthernet 0/0/3 to 0/0/5
port link-type trunk
port trunk allow-pass vlan 10 20 30 40
q
interface Eth-Trunk 1
max active-linknumber 2
least active-linknumber 2
lacp preempt enable
lacp preempt delay 10
q
解释说明:LSW1与LSW2配置链路聚合最大活动链路2条,至少活动链路2条
查看链路聚合状态
实验结果①:pc1 ping pc3网络正常
实验结果②:断掉链路聚合其中一条链路,网络正常
g0/0/3断掉
链路状态
网络正常
实验结果③:断掉链路聚合其中两条链路,网络断掉
网络断开