如何在 Cisco 4900M(模块:ws-x4908-10g-rj45)上将 TenGig2/1 配置为千兆上行链路?

如何在 Cisco 4900M(模块:ws-x4908-10g-rj45)上将 TenGig2/1 配置为千兆上行链路?

设想:

我们正在交换模块 2思科 4900M来自20 端口千兆8 端口 TenGig, Aws-x4908-10g-rj45要准确。

热插拔进行得很顺利,TenGig2/1-8 sho ip int bri向我们展示了新识别的端口,但这不仅仅是TenGig2/1-8, 反而TenGig2/1-8- 和 -Gig2/9-16(共 16 个端口)。

4900M#sho ip interface  bri
Interface              IP-Address      OK? Method Status                Protocol
...
TenGigabitEthernet2/1  unassigned      YES unset  down                  down    
TenGigabitEthernet2/2  unassigned      YES unset  down                  down    
TenGigabitEthernet2/3  unassigned      YES unset  down                  down    
TenGigabitEthernet2/4  unassigned      YES unset  down                  down    
TenGigabitEthernet2/5  unassigned      YES unset  down                  down    
TenGigabitEthernet2/6  unassigned      YES unset  down                  down    
TenGigabitEthernet2/7  unassigned      YES unset  down                  down    
TenGigabitEthernet2/8  unassigned      YES unset  down                  down    
GigabitEthernet2/9     unassigned      YES unset  down                  down    
GigabitEthernet2/10    unassigned      YES unset  down                  down    
GigabitEthernet2/11    unassigned      YES unset  down                  down    
GigabitEthernet2/12    unassigned      YES unset  down                  down    
GigabitEthernet2/13    unassigned      YES unset  down                  down    
GigabitEthernet2/14    unassigned      YES unset  down                  down    
GigabitEthernet2/15    unassigned      YES unset  down                  down    
GigabitEthernet2/16    unassigned      YES unset  down                  down
...

问题:

如何将 TenGig2/1 配置为千兆上行链路?

我立即注意到,连接上行链路电缆什么也没做,没有活动端口指示灯亮。

te2/1无论如何,继续进行配置。

4900M(config)#int te2/1
4900M(config-if)#description Uplink to Router
4900M(config-if)#switchport access vlan 1
4900M(config-if)#switchport mode access
4900M(config-if)#l2protocol-tunnel cdp
4900M(config-if)#l2protocol-tunnel lldp
4900M(config-if)#l2protocol-tunnel stp
4900M(config-if)#l2protocol-tunnel vtp
4900M(config-if)#no cdp enable
4900M(config-if)#no shutdown

端口上仍然没有活动...

4900M#sho int ten2/1 status
Port      Name                 Status       Vlan       Duplex  Speed Type
Te2/1     Uplink to Router     inactive     1            full   auto 10GBaseT

我认为这gi2/9对应于te2/1Gig 功能,因为该模块上只有 8 个端口,但总共显示 16 个。

所以,我gi2/9也配置了。

4900M(config)#int gi2/9
4900M(config-if)#description Uplink to Router
4900M(config-if)#switchport access vlan 1
4900M(config-if)#switchport mode access
4900M(config-if)#l2protocol-tunnel cdp
4900M(config-if)#l2protocol-tunnel lldp
4900M(config-if)#l2protocol-tunnel stp
4900M(config-if)#l2protocol-tunnel vtp
4900M(config-if)#no cdp enable
4900M(config-if)#no shutdown

再次,该端口没有任何活动。我们尝试更换电缆,甚至采取了reload更妥善的措施。

如何使该端口成为上行链路的活动千兆端口?

答案1

我花了一些时间,但我在文档中找到了答案;当然,所有的答案都在那里。

简短回答:

4900M#conf t
4900M#(config)#hw-module module 2 port-group 1 select gigabitethernet

解释:

sho hw-module module 2 port-group将向您显示Active端口组接口及其Inactive对应接口。

4900M#sho hw-module module 2 port-group
Module Port-group Active                         Inactive
-------------------------------------------------------------
   2        1     Te2/1-2                        Gi2/9-10                      
   2        2     Te2/3-4                        Gi2/11-12                     
   2        3     Te2/5-6                        Gi2/13-14                     
   2        4     Te2/7-8                        Gi2/15-16  

所以模块组端口连接在一起,在这种情况下1-23-45-6, 和7-8。 你可以选择端口组活动接口十亿演出通过hw-module module <#> port-group <#> select <port-group's int>

4900M#(config)#hw-module module 2 port-group 1 select ?
  gigabitethernet     Select this port-group's gigabit interfaces
  tengigabitethernet  Select this port-group's 10G interfaces

为了满足我们的需求,我更改了module 2 port-group 1选定的接口十亿演出

4900M#conf t
4900M#(config)#hw-module module 2 port-group 1 select gigabitethernet

现在我有一个活动连接为了gig2/9

4900M#sho int gi2/9 status
Port      Name               Status       Vlan       Duplex  Speed Type
Gi2/9     Uplink to Router   connected    1            full   1000 1000BaseT

sho hw-module module 2 port-group显示更新端口组的活动接口

4900M#sho hw-module module 2 port-group
Module Port-group Active                         Inactive
-------------------------------------------------------------
   2        1     Gi2/9-10                       Te2/1-2                       
   2        2     Te2/3-4                        Gi2/11-12                     
   2        3     Te2/5-6                        Gi2/13-14                     
   2        4     Te2/7-8                        Gi2/15-16 

重要的提示Gi2/9-10均设置为演出,所以如果你只打算使用一个演出端口,那么你仍然需要二(2) 十亿端口来执行此操作。

相关内容