标题:
CISCO2950交换机配置 <续> [精]
[打印本页]
作者:
woshihaike
时间:
2005-6-4 05:45
标题:
CISCO2950交换机配置 <续> [精]
命令 目的
Step 1 configure terminal 进入配置状态
Step 2 no vlan vlan-id 删除某一VLAN.
Step 3 end 退出
Step 4 show vlan brief 验证
Step 5 copy running-config startup config 保存
也可用vlan database 进入VLAN配置状态,用no vlan vlan-id 来删除。
将端口分配给一个VLAN
命令 目的
Step 1 configure terminal 进入配置状态
Step 2 interface interface-id 进入要分配的端口
Step 3 switchport mode access 定义二层口
Step 4 switchport access vlan vlan-id 把端口分配给某一VLAN
Step 5 end 退出
Step 6 show running-config interface interface-id 验证端口的VLAN号
Step 7 show interfaces interface-id switchport 验证端口的管理模式和VLAN
情况
Step 8 copy running-config startup-config 保存配置
使用 default interface interface-id 还原到缺省配置状态。
举例如下:
Switch# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)# interface fastethernet0/1
Switch(config-if)# switchport mode access
Switch(config-if)# switchport access vlan 2
Switch(config-if)# end
Switch#
配置VLAN Trunks
命令 目的
Step 1 configure terminal 进入配置状态
Step 2 interface interface-id 进入端口配置状态
Step 3 switchport mode {dynamic {auto | desirable} | trunk} 配置二层trunk
模式。· dynamic auto-自动协商是否成为trunk· dynamic desirable-把端口
设置为trunk如果对方端口是trunk, desirable, 或自动模式· trunk-设置端口为强制
的trunk方式,而不理会对方端口是否为trunk
Step 4 switchport access vlan vlan-id (可选) 指定一个缺省VLAN, 如果此端口不
再是trunk
Step 5 switchport trunk native vlan vlan-id 指定802.1Q native VLAN号
Step 6 end 退出
Step 7 show interfaces interface-id switchport 显示有关switchport 的配置
Step 8 show interfaces interface-id trunk 显示有关trunk的配置
Step 9 copy running-config startup-config 保存配置
举例:
Switch# configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)# interface fastethernet0/4
Switch(config-if)# switchport mode trunk
Switch(config-if)# end
定义trunk允许的VLAN
缺省情况下trunk允许所有的VLAN通过。可以使用 switchport trunk allowed vlan
remove vlan-list 来去掉某一VLAN
Command Purpose
Step 1 configure terminal 进入配置状态
Step 2 interface interface-id 进入端口配置
Step 3 switchport mode trunk 配置二层口为trunk
Step 4 switchport trunk allowed vlan {add | all | except | remove}
vlan-list (可选) 配置trunk允许的VLAN. 使用add, all, except, remove关健字
Step 5 end 退出
Step 6 show interfaces interface-id switchport 验证VLAN配置情况.
Step 7 copy running-config startup-config 保存配置
回到允许所有VLAN通过时, 可用no switchport trunk allowed vlan 端口配置命令.
举例如下:
Switch(config)# interface fastethernet0/1
Switch(config-if)# switchport trunk allowed vlan remove 2
Switch(config-if)# end
配置Native VLAN(802.1q)
封装802.1q的trunk端口可以接受带有标签和不带标签的数据流,交换机向native vlan
传送不带标签的数据流,缺省情况下native VLAN是1。
命令 目的
Step 1 configure terminal 进入配置状态
Step 2 interface interface-id 进入配置成802.1qtrunk的端口
Step 3 switchport trunk native vlan vlan-id 配置native VLAN号
Step 4 end 退出
Step 5 show interfaces interface-id switchport 验证native VLAN配置
Step 6 copy running-config startup-config 保存配置
使用no switchport trunk native vlan 端口配置命令回到缺省的状态
使用STP实现负载均衡
负载均衡可以使用流量分流到其它平行的trunks上去. 交换机为了避免环路, STP通常
是阻断所有端口交换机之间只留一条链路 。使用负载均衡后, 可以把不同VLAN的流量分
配到不同的trunk上。
可以通过配置STP端口权值STP路径值来实现负载均衡. 如果使用STP端口权值来配置那么
二条负载均衡的trunk必须联同一交换机上。使用路径值则即可以联相同的交换机与可以
联不同的交换机。
使用STP端口权值的负载均衡
当同一台交换机的二个口形成环路时, STP端口权值用来决定那个口是enable的,那个
口是阻断的。 可以通过配置端口权值来决定二对trunk各走那些VLAN, 有较高权值的端
口(数字较小的)vlan, 将处于转发状态,同一个VLAN在另一个trunk有较低的权值(数
字较大)则将处在阻断状态。 即同一VLAN只在一个trunk上发送接受。
基于端口权值的负载均衡示意图
trunk1将发送和接收VLAN8-10的数据,trunk2将发送和接收VLAN3-6的数据
配置如下:
Command Purpose
Step 1 configure terminal 进入Switch 1配置状态
Step 2 vtp domain domain-name 配置VTP域
Step 3 vtp server 将Switch 1配置成VTP server.
Step 4 end 退出
Step 5 show vtp status 验证VTP的配置
Step 6 show vlan 验证VLAN
Step 7 configure terminal 进入配置状态
Step 8 interface fastethernet 0/1 进入F0/1端口
Step 9 switchport mode trunk 配置成trunk端口
Step 10 end 退出
Step 11 show interfaces fastethernet0/1 switchport 验证VLAN配置
Step 12 在switch1上的F0/2上重复7到11步骤
Step 13 在Switch 2的F0/1,F0/2上重复7到11步骤。
Step 14 show vlan 当trunk已经起来,在switch2上验证已经学到相关的vlan配
置
Step 15 configure terminal 在Switch 1上进入配置状态
Step 16 interface fastethernet0/1 进入要配置的端口
Step 17 spanning-tree vlan 8 port-priority 10 将端口权值10赋与VLAN 8.
Step 18 spanning-tree vlan 9 port-priority 10 将端口权值10赋与VLAN 9.
Step 19 spanning-tree vlan 10 port-priority 10 将端口权值10赋与VLAN 10.
Step 20 exit 退回.
Step 21 interface fastethernet0/2 进入F0/2
Step 22 spanning-tree vlan 3 port-priority 10 将端口权值10赋与VLAN 3.
Step 23 spanning-tree vlan 4 port-priority 10 将端口权值10赋与VLAN 4.
Step 24 spanning-tree vlan 5 port-priority 10 将端口权值10赋与VLAN 5.
Step 25 spanning-tree vlan 6 port-priority 10 将端口权值10赋与VLAN 10.
Step 26 end 退出
Step 27 show running-config 验证配置
Step 28 copy running-config startup-config 保存配置
配置STP路径值的负载均衡
也可以通过配置配置STP路径值来实现负载均衡,如下图所示
Trunk1走VLAN8-10,Trunk2走VLAN2-4
命令 目的
Step 1 configure terminal 进入 Switch 1配置状态
Step 2 interface fastethernet 0/1 进入F0/1
Step 3 switchport mode trunk 配置Trunk,只能是dot1q模式
Step 4 exit 退回
Step 5 在F0/2口上重复2-4步骤
Step 6 end 退出
Step 7 show running-config 验证配置
Step 8 show vlan 验证switch1已经学到Vlan
Step 9 configure terminal 进入配置状态
Step 10 interface fastethernet 0/1 进入F0/1
Step 11 spanning-tree vlan 2 cost 30 设置Vlan2生成树路径值为30
Step 12 spanning-tree vlan 3 cost 30 设置Vlan3生成树路径值为30
Step 13 spanning-tree vlan 4 cost 30 设置Vlan4生成树路径值为30
Step 14 end 退出
Step 15 在switch1的F0/2上重复9-11步骤设置VLAN8,9,10生成树路径值为30
Step 16 exit 退出
Step 17 show running-config 验证配置
Step 18 copy running-config startup-config 保存配置
配置Cluster
ZL-10th -Floor-1中的MAC地址为:000a.f404.ad80
ZL-10th -Floor-2中的MAC地址为:ZL-10th -Floor-3中的MAC地址为:000a.f404.ab80
ZL-10th -Floor-4中的MAC地址为:000a.f404.ac0
欢迎光临 黑色海岸线论坛 (http://bbs.thysea.com/)
Powered by Discuz! 7.2