配置以太网通道,(路由器,交换机,三层交换机)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置以太网通道,(路由器,交换机,三层交换机)相关的知识,希望对你有一定的参考价值。
在网络的核心之间经常有这样的需要,希望两条链路能够实现负载均衡,提高链路带宽,并能够相互备份。EthernetChannel 可以曼珠这样的需求。
1.1 Ethernet Channel 的定义
Ethernet Channel 通过捆绑多条以太网链路来提高链路带宽,并运行一种机制,将多个以太网端口捆绑成一条逻辑链路。以太网通道最多可以捆绑八条物理链路,其中物理链路可以是双绞线的,也可以是光纤的。如图
但是,以太网通道必须遵循以下规则。
- 参与捆绑的端口必须属于同一个vlan,或把它们配置为trunk 中继接口。
- 如果端口配置的时中继模式,那么应该在链路两端将通道中的所有端口配置成相同的中继模式。需要所有端口支持相同的VLAN 范围许可,如果VLAN许可范围不一致,则端口不属于以太网通道。
- 所有参与捆绑的端口的物理参数设置必须相同,应该有同样的速率和全/半双工模式设置
1.2 以太网通道的配置(交换机)
交换机A的配置如下:
Switch>enable //进入特权模式
Switch#conf t //进入全局模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname S1 //该交换机名为S1
S1(config)#interface range gigabitEthernet 0/1-2 //进入G0/1-2接口
S1(config-if-range)#channel-group 1 mode on //配置以太网通道
S1(config-if-range)#
Creating a port-channel interface Port-channel 1
%LINK-5-CHANGED: Interface Port-channel1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up
S1(config-if-range)#exit //退出接口
S1(config)#interface port-channel 1 //进入port 1接口
S1(config-if)#swiS1(config-if)#switchport mode trunk //配置为trunk模式
S1(config-if)#exit //退出接口
交换机B的配置方法与交换机A相同 在此就不做演示了
查看以太网通道的配置,显示如下内容表示配置正确。
S2#show running-config //查看以太网通道配置命令
Building configuration...
Current configuration : 1198 bytes
!
version 12.2
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname S2
!
spanning-tree mode pvst
spanning-tree extend system-id
!
interface Port-channel1
switchport mode trunk //port 1已经是trunk模式
interface GigabitEthernet0/1 //接口G1和G2都已经是trunk
switchport mode trunk
channel-group 1 mode on
!
interface GigabitEthernet0/2
channel-group 1 mode on
1.3路由器配置以太网通道
Router>enable //进入特权模式
Router#conf t //进入全局模式
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname R1 //修改设备名称
R1(config)#int port-channel 1 //进入port 1
R1(config-if)#ip address 192.168.23.1 255.255.255.0 //配置IP和子网掩码
R1(config-if)#no shutdown //打开接口
R1(config-if)#exit //退出接口
R1(config)#interface range gigabitEthernet 0/0-1 //进入G0/0-1接口
R1(config-if-range)#channel-group 1 //配置接口
R1(config-if-range)#no shutdown //打开接口
R1(config-if-range)#
%LINK-5-CHANGED: Interface GigabitEthernet0/0, changed state to up
%LINK-5-CHANGED: Interface GigabitEthernet0/1, changed state to up
R1(config-if-range)#exit //退出接口
可以使用下列命令查看是否有去往23.0的路由
R1#show ip route //查看路由表
192.168.23.0/24 is variably subnetted, 2 subnets, 2 masks
C 192.168.23.0/24 is directly connected, Port-channel1
L 192.168.23.1/32 is directly connected, Port-channel1
R1#
B路由器跟A路由器配置相同 在此便不演示了
1.4 三层交换机配置以太网通道
Switch>enable //进入特权模式
Switch#conf t //进入全局模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#hostname S1 //修改设备名称
S1(config)#interface range gigabitEthernet 1/0/1-2 //进入G1/0/1-2接口
S1(config-if-range)#channel-group 1 mode on //配置以太网
Creating a port-channel interface Port-channel 1
%LINK-5-CHANGED: Interface Port-channel1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up
S1(config-if-range)#exit //退出接口
S1(config)#interface port-channel 1 //进入 port 1接口
S1(config-if)#no switchport //禁用二层设备
S1(config-if)#
%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Port-channel1, changed state to up
S1(config-if)#ip address 192.168.23.1 255.255.255.0 //配置IP子网掩码
S1(config-if)#no shutdown 打开接口
S1(config-if)#exit //退出接口
使用ping命令测试连通性
S1#ping 192.168.23.2 //测试连通性
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.23.2, timeout is 2 seconds:
!!!!! //!!!!表示通信成功
Success rate is 100 percent (5/5), round-trip min/avg/max = 0/0/1 ms
S1#
三层交换机B和A配置相同在此便不再演示了。
以上是关于配置以太网通道,(路由器,交换机,三层交换机)的主要内容,如果未能解决你的问题,请参考以下文章