switch二层etherchannel的配置案例及 PAGP,LACP

前端之家收集整理的这篇文章主要介绍了switch二层etherchannel的配置案例及 PAGP,LACP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

一 拓扑图

wKioL1Ug-nCjGp4BAAEPXr6IAA0111.jpg

二 配置过程

switchA的配置:

Switch>en

Switch#config

Switch(config)#

Switch(config)#interface range fa0/1-3

Switch(config-if-range)#channel-group 1 mode active

Switch(config-if-range)#interface port-channel 1

Switch(config-if)#switchport mode trunk

Switch(config-if)#switchport trunk native vlan 99

Switch(config-if)#switchport trunk allowed vlan 1,10,20,99

Switch(config-if)#exit

Switch(config)#port-channel load-balance dst-ip(配置负载方式为dst-ip,负载方式有dst-ip,dst- mac,src-dst-ip,src-dst-mac,src-ip,src-mac)

Switch(config)#vlan 10

Switch(config-vlan)#vlan 20

Switch(config-vlan)#exit

Switch(config)#interface fa0/4

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 10

Switch(config-if)#interface fa0/5

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 20

Switch(config-if)#do show running-config

Switch(config-if)# do show etherchannel summary

switchB的配置:

Switch>en

Switch#config

Switch(config)#

Switch(config)#interface range fa0/1-3

Switch(config-if-range)#channel-group 1 mode active

Switch(config-if-range)#interface port-channel 1 (注释:此处的1可以和switchA中的1不同)

Switch(config-if)#switchport mode trunk

Switch(config-if)#switchport trunk native vlan 99 (注释:此处的99必须和switchA中的99相 同,当然为其他的vlan)

Switch(config-if)#switchport trunk allowed vlan 1,99

Switch(config-if)#exit

Switch(config)#port-channel load-balance dst-ip (配置负载方式为dst-ip,src-mac)

Switch(config)#vlan 10

Switch(config-vlan)#vlan 20

Switch(config-vlan)#exit

Switch(config)#interface fa0/4

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 10

Switch(config-if)#interface fa0/5

Switch(config-if)#switchport mode access

Switch(config-if)#switchport access vlan 20

Switch(config-if)#do show running-config

Switch(config-if)# do show etherchannel summary

三 保存与重新加载命令
Switch#write

Switch#reload


自动协商etherchannel的配置,协商的协议有PAGP和LACP两种

wKiom1Us-3Ph86xZAABNuPvTDIA952.jpg

1配置PAGP(端口汇聚协议)

Switch>en

Switch#config

Switch(config)#default interface range fa0/1-3 (将端口fa0/1-3 的配置恢复到出厂状态)

Switch(config)#interface range fa0/1-3

Switch(config-if-range)#channel-protocol pagp

Switch(config-if-range)#channel-group 1 mode {desirable|auto}

Switch(config-if-range)#switchport trunk encapsulation dot1q

Switch(config-if-range)#switchport mode trunk


2配置LACP(链路汇聚协议)

Switch>en

Switch#config

Switch(config)#default interface range fa0/1-3 (将端口fa0/1-3 的配置恢复到出厂状态)

Switch(config)#interface range fa0/1-3

Switch(config-if-range)#channel-protocol lacp

Switch(config-if-range)#channel-group 1 mode {active|passive}

Switch(config-if-range)#switchport trunk encapsulation dot1q

Switch(config-if-range)#switchport mode trunk

Switch(config-if-range)#lacp port-priority 100 (配置交换机接口的优先级。例如,如果绑定接口超过8个,由于最多只能有8个接口是活动的,这时优先级决定哪些接口是活动的。优先级数值越小,优先级越高。如果优先级相同,则进一步比较接口的MAC地址,值小的优先级高)

3查看结果

Switch#show etherchannel summary

原文链接:https://www.f2er.com/javaschema/284864.html

猜你在找的设计模式相关文章