- 主题:请教大牛,迈普交换机配置链路聚合后不通---急!在线等
请教各位大牛,以下是问题详细描述,
一、在两个交换机上都配置了trunk、位于两个交换机上的两个vlan能够ping通
// 配置trunk
sw1(config)#interface gigabitethernet 0/25
sw1(config-if-gigabitethernet0/25)#switchport mode trunk
sw1(config-if-gigabitethernet0/25)#switchport trunk allowed vlan all
sw1(config-if-gigabitethernet0/25)#switchport trunk pvid vlan 1 //默认vlan
sw1(config-if-gigabitethernet0/25)#exit
sw1(config)#
二、将0/25~0/27配置为链路聚合后,两个交换机上的两个vlan就ping不通了
// 多接口link-aggregation
sw1(config)#link-aggregation 1 mode manual //group ID = 1
sw1(config)#interface gigabitethernet 0/25-0/27
sw1(config-if-range)#link-aggregation 1 manual
sw1(config-if-range)#no shutdown
sw1(config-if-range)#exit
sw1(config)#
三、问题分析:链路聚合是up、没看出有什么问题
link-aggregation 1 configuration information
Description :
Status : Enabled
Link : Up
Act Speed : 3000
Act Duplex : Full
Port Type : Nni
Pvid : 1
Link Aggregation 1
Mode: Manual Description:
Load balance method: src-mac
Number of ports in total: 3
Number of ports attached: 3
Root port: gigabitethernet0/25
gigabitethernet0/25: ATTACHED
gigabitethernet0/26: ATTACHED
gigabitethernet0/27: ATTACHED
--
FROM 114.242.206.*
追加描述:
以前的trunk信息变成link-aggr信息了
聚合前:
interface gigabitethernet0/25
switchport trunk vlan 1,10,20
exit
聚合后:
interface gigabitethernet0/25
link-aggregation 1 manual
exit
查不到相关资料呀,难呀
--
FROM 114.242.206.*
这么配置不是聚合组接口配置吗?
// 配置trunk
sw1(config)#interface gigabitethernet 0/25
sw1(config-if-gigabitethernet0/25)#switchport mode trunk
sw1(config-if-gigabitethernet0/25)#switchport trunk allowed vlan all
sw1(config-if-gigabitethernet0/25)#switchport trunk pvid vlan 1 //默认vlan
sw1(config-if-gigabitethernet0/25)#exit
sw1(config)#
【 在 leelou 的大作中提到: 】
: 聚合组借口配置了吗?
:
--
FROM 114.242.206.*
我应该是25 26 27都配了我再确认一下,谢谢
【 在 leelou 的大作中提到: 】
: 这样只配了25口,按道理应该是三个口先配置成相同的配置,再一期进聚合组的
:
--
FROM 117.136.38.*
汇聚组下再配置报错:
% Interface gigabitethernet0/25 is a member of link-aggregation 1, command rejected.
先将0/25~0/27加入汇聚组1,配置完成后,show run
interface gigabitethernet0/25
link-aggregation 1 manual
exit
interface gigabitethernet0/26
link-aggregation 1 manual
exit
interface gigabitethernet0/27
link-aggregation 1 manual
exit
再已加入汇聚组1的0/25端口配置trunk,报错:
sw2(config)#interface gigabitethernet 0/25
sw2(config-if-gigabitethernet0/25)#switchport mode trunk
% Interface gigabitethernet0/25 is a member of link-aggregation 1, command rejected.
端口加入汇聚组后,端口上带有的某些配置(如环回检测、VLAN等)将被清除。 一个接口不能同时配置:trunk和聚合?报错:
【 在 leelou 的大作中提到: 】
: 我觉得还是聚合组接口下再配置一下更合适,
:
:
--
FROM 114.242.206.*
输入 interface group 1报提示信息:
please pointed its interface
该怎么处理?
【 在 hiyachen1 的大作中提到: 】
: 汇聚组下再配置报错:
: % Interface gigabitethernet0/25 is a member of link-aggregation 1, command rejected.
:
: ...................
--
FROM 117.136.38.*
interface 0/25的port type是unknown,有问题,怎么改成nni?
--
FROM 117.136.38.*
没有interface link-aggregation 1
查看帮助:
sw1(config)#interface ?
vlan Switch interface
dc
null Null interface
loopback Loopback interface
gigabitethernet gigabitethernet
tengigabitethernet tengigabitethernet
group Interface group
【 在 leelou 的大作中提到: 】
: 感觉不是interface group 1吧
: 而应该是interface link-aggregation 1
: 感觉应该是
: ...................
--
FROM 117.136.38.*
交换机接口信息:
sw1#show interface switchport brief up
Interface Status Link ActSpeed ActDuplex VSL Type Pvid Desc
-----------------------------------------------------------------------------------------
gi0/4 Enabled Up 1000 Full Nni 10
gi0/5 Enabled Up 1000 Full Nni 20
gi0/20 Enabled Up 1000 Full Nni 1
gi0/25 Enabled Up 1000 Full Unknown 1
gi0/26 Enabled Up 1000 Full Unknown 1
gi0/27 Enabled Up 1000 Full Unknown 1
其中4,5是access,20是trunk,25-27是聚合
25-27绑是绑上了,就是不通:
sw1#show link-aggregation 1
link-aggregation 1 configuration information
Description :
Status : Enabled
Link : Up
Act Speed : 3000
Act Duplex : Full
Port Type : Nni
Pvid : 1
实际速率是3000M了,接口类型:不是access、trunk、hybrid中的一种,不通
--
FROM 117.136.38.*
请教下命令行?没百度出来
【 在 leelou 的大作中提到: 】
: 端口归入汇聚组后, 端口的独立操作肯定不行了,要通过汇聚组来配置
:
--
FROM 117.136.38.*