时间:2009-11-29 19:56来源:未知 作者:若雪 点击:
72次
端口聚合提供冗余备份 链路 【实验名称】 端口聚合提供冗余备份链路。 【 实验目的 】 理解链路聚合的配置及原理。 【 背景描述 】 假设某企业采用两台交换机组成一个局域网,由于很多数据流量是跨过交换机进行转发的,因此需要提高交换机之间的传输带宽,并
端口聚合提供冗余备份链路
【实验名称】
端口聚合提供冗余备份链路。 【实验目的】
理解链路聚合的配置及原理。 【背景描述】
假设某企业采用两台交换机组成一个局域网,由于很多数据流量是跨过交换机进行转发的,因此需要提高交换机之间的传输带宽,并实现链路冗余备份,为此网络管理员在两台交换机之间采用两根网线互连,并将相应的两个端口聚合为一个逻辑端口,现要在交换机上做适当配置来实现这一目标。 【技术原理】
端口聚合(Aggregate-port)又称链路聚合,是指两台交换机之间在物理上将多个端口连接起来,将多条链路聚合成一条逻辑链路。从而增大链路带宽,解决交换网络中因带宽引起的网络瓶颈问题。多条物理链路之间能够相互冗余备份,其中任意一条链路断开,不会影响其他链路的正常转发数据。
端口聚合遵循IEEE 802.3ad协议的标准。 【实现功能】
增加交换机之间的传输带宽,并实现链路冗余备份。 【实验设备】
S2126G(两台)、PC(两台)、直连线(4条) 【实验拓扑】 图 7
按照拓扑图连接网络时注意,两台交换机都配置完端口聚合后,再将两台交换机连接起来。如果先连线再配置会造成广播风暴,影响交换机的正常工作。 【实验步骤】
步骤1. 交换机A的基本配置。 SwitchA # configure terminal SwitchA(config)# vlan 10
SwitchA(config-vlan)# name sales SwitchA(config-vlan)#exit
SwitchA(config)#interface fastethernet0/5 SwitchA(config-if)#switchport access vlan 10
验证测试:验证已创建了Vlan 10,并将0/5端口已划分到Vlan 10中。 SwitchA#show vlan id 10
VLAN Name Status Ports ---------------------------------------------- 10 sales active Fa0/5
在交换机SwitchA上配置聚合端口。
SwitchA(config)#interface aggregateport 1 !创建聚合接口AG1
SwitchA(config-if)#switchport mode trunk !配置AG模式为trunk
SwitchA(config-if)#exit
SwitchA(config)#interface range fastethernet 0/1-2 !进入接口0/1和0/2
SwitchA(config-if-range)#port-group 1 !配置接口0/1和0/2属于AG1
验证测试:验证接口fastethernet 0/1和0/2属于AG1。
SwitchA#show aggregatePort 1 summary !查看端口聚合组1的信息
AggregatePort MaxPorts SwitchPort Mode Ports
--------------------------------------------------------- Ag1 8 Enabled Trunk Fa0/1 , Fa0/2
注:AG1,最大支持端口数为8个,当前VLAN模式为Trunk,组成员有F0/1、F0/2。
交换机B的基本配置。
SwitchB#configure terminal SwitchB(config)# vlan 10
SwitchB(config-vlan)# name sales SwitchB(config-vlan)#exit
SwitchB(config)#interface fastethernet0/5 SwitchB(config-if)#switchport access vlan 10
验证测试:验证已在SwitchB上创建了Vlan 10,并将0/5端口已划分到Vlan 10中。
SwitchB#show vlan id 10
VLAN Name Status Ports
--------------------------------------------------------------------- 10 sales active Fa0/5
在交换机SwitchB上配置聚合端口。
SwitchB(config)#interface aggregateport 1 !创建聚合接口AG1
SwitchB(config-if)#switchport mode trunk !配置AG模式为trunk
SwitchB(config-if)#exit
SwitchB(config)#interface range fastethernet 0/1-2 !进入接口0/1和0/2
SwitchB(config-if-range)#port-group 1 !配置接口0/1和0/2属于AG1
验证测试:验证接口fastethernet 0/1和0/2属于AG1。
SwitchB#show aggregatePort 1 summary
AggregatePort MaxPorts SwitchPort Mode Ports ------------------------------------------------ Ag1 8 Enabled Trunk Fa0/1 , Fa0/2
验证当交换机之间的一条链路断开时,PC1与PC2仍能互相通信。
C:\\>ping 192.168.10.30 -t !在PC1的命令行方式下验证能Ping通PC3
Pinging 192.168.10.30 with 32 bytes of data:
Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128
Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 Reply from 192.168.10.30: bytes=32 time<10ms TTL=128 【注意事项】
1、只有同类型端口才能聚合为一个AG端口。 2、所有物理端口必须属于同一个VLAN。
3、在锐捷交换机上最多支持8个物理端口聚合为一个AG。 4、在锐捷交换机上最多支持6组聚合端口。 【参考配置】
SwitchA#show running-config ! 显示交换机SwitchA的全部配置 Building configuration...
Current configuration : 497 bytes version 1.0 ! Vlan 10 name slaes !
hostname SwitchA
interface AggregatePort 1 !聚合端口1的VLAN模式为Trunk switchport mode trunk !
interface FastEthernet 0/1
port-group 1 !将F0/1加入聚合组1 interface FastEthernet 0/2
port-group 1 !F0/2加入聚合组1 !
interface FastEthernet 0/5 switchport access vlan 10 ! end
SwitchB#show running-config ! 显示交换机SwitchB的全部配置 Building configuration...
Current configuration : 497 bytes version 1.0 ! Vlan 10 name slaes !
hostname SwitchB
interface AggregatePort 1 switchport mode trunk !
interface FastEthernet 0/1 port-group 1
interface FastEthernet 0/2 port-group 1 !
interface FastEthernet 0/5 switchport access vlan 10 ! end
因篇幅问题不能全部显示,请点此查看更多更全内容