二层链路聚合

二层链路聚合
网络拓扑:

PHP?refimg= + this.src)" height="185" alt="" src="http://img.jb51.cc/vcimg/static/loading.png" width="554" border="0" src="http://img1.51cto.com/attachment/201004/201004121271042563531.jpg">

交换机S3550-24:
SWITCH#configure terminal
SWITCH(config)# vlan 10
SWITCH(config-vlan)# name test10
SWITCH(config-vlan)#exit
SWITCH(config)# vlan 20
SWITCH(config-vlan)# name test20
SWITCH(config-vlan)#exit
SWITCH(config-if)# interface fastethernet 0/5
SWITCH(config-if)# switch access vlan 10
SWITCH(config-if)#exit
SWITCH(config)# interface fastethernet 0/15
SWITCH(config-if)# switch access vlan 20
SWITCH(config-if)#exit
switch(config)#interface aggregateport 1
switch(config-if)#switchport mode trunk
switch(config-if)#exit
switch(config)#interface range fastethernet 0/23-24
switch(config-if-range)#port-group 1
switch(config-if-range)#exit
交换机S 2126G :
SWITCH#configure terminal
SWITCH(config)# vlan 10
SWITCH(config-vlan)# name test10
SWITCH(config-vlan)#exit
SWITCH(config-if)# interface fastethernet 0/5
SWITCH(config-if)# switch access vlan 10
SWITCH(config-if)#exit
switchB(config)#interface aggregateport 1
switchB(config-if)#switchport mode trunk
switchB(config-if)#exit
switchB(config)#interface range fastethernet 0/23-24
switchB(config-if-range)#port-group 1
switchB(config-if-range)#exit

相关文章

迭代器模式(Iterator)迭代器模式(Iterator)[Cursor]意图...
高性能IO模型浅析服务器端编程经常需要构造高性能的IO模型,...
策略模式(Strategy)策略模式(Strategy)[Policy]意图:定...
访问者模式(Visitor)访问者模式(Visitor)意图:表示一个...
命令模式(Command)命令模式(Command)[Action/Transactio...
生成器模式(Builder)生成器模式(Builder)意图:将一个对...