求一个真正行的通的,配置实现思科交换机端口聚合(以太信道)技术实现冗余备份链路

2025-01-01 08:24:35
推荐回答(3个)
回答1:

你好!

很简单的:

假设两台3560的1到4口互连。那么:

两台交换机都配置如下命令:

enable
configure terminal
no ip domain-lookup
interface range fa0/1 -4
switchport trunk encapsulation dot1q
switchport mode trunk
channel-protocol lacp
channel-group 1 mode active
exit
interface port-channel 1
switchport trunk encapsulation dot1q
switchport mode trunk

链路首先是红色,然后橙色。然后一边橙色,然后最后全绿。

全绿说明链路已经正常工作的。

回答2:

int port-channel 10
switchport
sw mode trunk
sw allow vlan all
no shut

int range gi 1/5 - 6
switchport
sw mode trunk
sw allow vlan all
channel-group 10 mode on
no shut

另外一台一样敲,一定要按顺序敲。下午刚敲的真机,没问题。敲完后sh ip int bri 聚合端口协议应该是UP的。

PT的聚合我没记错的话,是有问题的。敲完通10秒不到,会自动DOWN掉。

回答3:

interface rang f0/0 - f0/12
channel-group 1 mode on
两边交换机都用相同配置即可。