VSS交换机集群配置步骤

摘要:
CiscoVSS(VirtualSwitchSystem)配置步骤:1、备份原交换机设备,SW1和SW2相同Switch-1#copyrunning-configstartup-configSwitch-1#copystartup-configdisk0:old-startup-config2、指定虚拟交换机名称及交换机编号Switch-1(config)#switchvirtualdomain1

Cisco VSS(Virtual Switch System)配置步骤:

1、备份原交换机设备,SW1和SW2相同
Switch-1# copy running-config startup-config
Switch-1# copy startup-config disk0:old-startup-config
2、指定虚拟交换机名称及交换机编号
Switch-1(config)# switch virtual domain 100
Switch-1(config-vs-domain)# switch 1
Switch-1(config-vs-domain)# exit

Switch-2(config)# switch virtual domain 100
Switch-2(config-vs-domain)# switch 2
Switch-2(config-vs-domain)# exit

3、配置VSL Port Channel和端口
Switch-1(config)# interface port-channel 10
Switch-1(config)# switchport
Switch-1(config-if)# switch virtual link 1
Switch-1(config-if)# no shutdown
Switch-1(config-if)# exit
Switch-1(config)# interface range tengigabitethernet 3/1-2
Switch-1(config-if)# channel-group 10 mode on

Switch-2(config)# interface port-channel 20
Switch-2(config)# switchport
Switch-2(config-if)# switch virtual link 2
Switch-2(config-if)# no shutdown
Switch-2(config-if)# exit
Switch-2(config)# interface range tengigabitethernet 5/2-3
Switch-2(config-if)# channel-group 20 mode on

4、调整交换机到虚拟交换机模式
Switch-1# switch convert mode virtual
Switch-2# switch convert mode virtual
5、查看VSS信息
Switch# show switch virtual
Switch# show switch virtual role
Switch# show switch virtual link
6、将VSS交换机转换为stand-alone交换机
Switch-1# switch convert mode stand-alone
7、设置交换机优先级
Switch(config)# switch virtual domain 100
Switch(config-vs-domain)# switch [1 | 2] priority [priority_num] 1-255,255位最高优先级
Switch# show switch virtual role

VSS在4500和6500系列交换机上才能支持,不需要额外的堆叠子和线缆;普通接口即可支持。

免责声明:文章转载自《VSS交换机集群配置步骤》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Bluetooth: 抓取手机的HCI logAcWing 算法提高课题解目录下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

eNSP——利用单臂路由实现VLAN间路由

原理: 以太网中,通常会使用VLAN技术隔离二层广播域来减少广播的影响,并增强网络的安全性和可管理性。其缺点是同时也严格地隔离了不同VLAN之间的任何二层流量,使分属于不同VLAN的用户不能直接互相通信。在现实中,经常会出现某些用户需要跨越VLAN实现通信的情况,单臂路由技术就是解决VLAN间通信的一种方法。 单臂路由的原理是通过一台路由器, 使VLAN间...

visual studio 2010 和 VSS(Visual SourceSafe)的连接使用

visual studio 2010 和 VSS(Visual SourceSafe)的连接使用 1. 在visual vstudio中选择使用VSS插件:           2.       使用VSS进行源码管理:在已经打开的solutions中右键点击工程文件,在弹出菜单上点“add solutions to source contronl”就会...

VLAN实验(2)Trunk接口

1.选择1台S5700、2台S3700和4台pc机,并根据实验编址完成此拓扑图。       2.启动设备,检查设备的连通性: 由于现在我们还没有划分VLAN,这5台PC,还在同一个VLAN中,现在我们启动所有的设备,这是所有的主机应该是可以ping通的   mengyu-PC1可以与其他3台PCping通        3.对交换机mengyu-S1...

实验1:SDN拓扑实践

实验1:SDN拓扑实践 一、实验目的 能够使用源码安装Mininet; 能够使用Mininet的可视化工具生成拓扑; 能够使用Mininet的命令行生成特定拓扑; 能够使用Mininet交互界面管理SDN拓扑; 能够使用Python脚本构建SDN拓扑。 二、实验环境 下载虚拟机软件Oracle VisualBox 或 VMware; 在虚拟机中安装U...

网线制作(直通线、交叉线)

直通线和交叉线的制作方法 标准双绞线做法有两种,分别是EIA/TIA568A和EIA/TIA568B。制作时把弹簧朝下,另一面朝自己。EIA/TIA568A的8根线排列顺序是:绿白 绿 橙白 蓝 蓝白 橙 棕白 棕EIA/TIA568B的8根线排列顺序是:橙白 橙 绿白 蓝 蓝白 绿 棕白 棕即同一条网线的两端的线序要么都采用EIA/TIA568A所规定的...

[.net 面向对象程序设计进阶] (22) 团队开发利器(一)简单易用的代码管理工具VSS

[.net 面向对象程序设计进阶] (22) 团队开发利器(一)简单易用的代码管理工具VSS 本篇要点:在进阶篇快要结束的时候说说源代码管理器,我们的开发,不是一个人可以完成的事,团队协作很重要,而且要对产品生命周期和开发过程进行规范管理才行。那么源代码管理器是必不可少的。本篇主要介绍一款非常简单易用,且有一定普及率的源代码管理工具VSS. 1.VSS简介...