在cisco2960和3650两个千兆网口上配置中继和通道

cisco2960 3650 两个千兆网口上配置中继和通道
两个交换机两个千兆网口都设置成 trunk 模式,因还要连接华为 3com 交换机,端口封装方式为 802.1q cisco 2960 默认封装方式为 dot1q ,而不是 cisco 私有的 ISL
配成以太网通道是,要保证端口的端口是连续的,在同一个 VLAN 、中继模式相同、物理参数相同(速率,双工)。
新购买的 cisco2960 交换机配置命令:通过 console 口连接到 switch
Switch>enable
Switch#show running-config
Switch#config terminal
Switch config #hostname  sw
Sw config #interface vlan1
Sw config-vlan #ip address 192.168.10.10 255.255.255.0
Sw config-vlan #no shutdown
Sw config-vlan #end
Sw#vlan database                    划分 vlan
Sw vlan #vlan 10 name test1         vlan 10 vlan test1
Sw vlan #vlan 20 name test2
Sw vlan #vlan 30 name test3
Sw vlan #exit                    exit 退出后,生成 vlan 数据库。
Sw#show vlan brief                  查看 vlan 简要信息
Sw vlan #no vlan vlan-id         删除 vlan 的操作命令
cisco2960 的千兆网口上配置 trunk 和以太网通道。
Sw config #interface  range  g0/0 �C 1
Sw config-if #switchport  mode  trunk      配置成 trunk
Sw config-if #encapsulation dot1q           封装为 dot1q
Sw config-if #speed 1000                  速率 1000M
Sw config-if # duplex  full                 双工 全双工
Sw config-if #channel-group 1 mode  on   配置以太网通道。编号为 1 ,只在本机有效
验证
Sw#show interface g0/0 switchport    查看端口信息
Sw#show show etherchannel 1 summary    查看以太网通道摘要信息
保存配置信息
Sw#copy running-config  startup-config
 
cisco 3650 上的操作
千兆网口上配置 trunk 和以太网通道。
Sw config #interface  range  g0/23 �C 24
Sw config-if #switchport  mode  trunk
Sw config-if #encapsulation dot1q
Sw config-if #speed 1000
Sw config-if # d          full
Sw config-if #channel-group 1 mode  on    
验证
Sw#show interface g0/0 switchport    查看端口信息
Sw#show show etherchannel 1 summary    查看以太网通道摘要信息
保存配置信息
Sw#copy running-config  startup-config
 
对应端口连接网线,可以采用超五类或六类网线。
注意 :在 cisco 2960 3650 上同时操作
Sw config #interface range g0/0 �C 1 g0/23 - 24
Sw(config-if)#shutdown
必须同时激活,才能是配置生效。
Sw config #interface range g0/0 �C 1 g0/23 - 24
Sw(config-if)# no  shutdown
 
至此便实现了在 cisco2960 3650 的千兆网口上实现 trunk 中继和以太网通道。根据需要以太网通道可以扩展到连续的八条线路。
 

你可能感兴趣的:(休闲,中继,千兆网口,以太网通道,cisco二层三层switch)