Cisco思科光纤交换机配置说明的方法
1.初始化信息
首次设置,必须通过console进行连接(需要U口转DB9针的接口线,专门卖接口线的有卖大约30元),然后进行初始化设计,以后设定IP后可通过LAN进行登陆
具体步骤:(红色字体部分着重注意,需要进行设置,大部分按照默认设置即可,而且设置的部分进入管理工具软件可以更改)
----SystemAdminAccountSetup----
Enterthepasswordfor"admin":password
Confirmthepasswordfor"admin":password
---BasicSystemConfigurationDialog---
Thissetuputilitywillguideyouthroughthebasicconfigurationofthesystem.Setupconfiguresonlyenoughconnectivityformanagementofthesystem.
PressEnteratanytimetoskipanydialog.Usectrl-catanytimetoskiptheremainingdialogs.
Wouldyouliketoenterthebasicconfigurationdialog(yes/no):y
Createanotherloginaccount(yes/no)[n]:
Configureread-onlySNMPcommunitystring(yes/no)[n]:
Configureread-writeSNMPcommunitystring(yes/no)[n]:
Entertheswitchname:Pxx-MDS-x(wherexxisyourpodnumberandxistheswitchnumber;forexample:P01-MDS-1)
ContinuewithOut-of-band(mgmt0)managementconfiguration?(yes/no)[y]:
Mgmt0IPv4address:<10.0.x.y>(wherexisyourpodnumberandyis5forMDS-1and3forMDS-2)(客户)0.16
Mgmt0IPv4netmask:255.255.255.0
Configurethedefaultgateway?(yes/no)[y]:
IPv4addressofthedefaultgateway:10.0.x.254(wherexisyourpodnumber)
ConfigureadvancedIPoptions?(yes/no)[n]:
Enablethetelnetservice?(yes/no)[y]:
Enablethesshservice?(yes/no)[n]:
Configurethentpserver?(yes/no)[n]:
Configuredefaultswitchportinterfacestate(shut/noshut)[shut]:(注意一下)noshut
Configuredefaultswitchporttrunkmode(on/off/auto)[on]:
Configuredefaultzonepolicy(permit/deny)[deny]:
Enablefullzonesetdistribution(yes/no)[n]:
NOTE:初始设定的配置对新的VSAN起作用,即原始VSAN1无这些配置
解决办法:1zonedefault-zonepermitVSAN
2新建NEWVSAN2将port转移VSAN2里面
。建议创建VSAN2把端口放置在VSAN2中
2.交换机配置
2.1.配置交换机管理地址
switch#configt(按tab命令可以补全的或者输入命令后空格加?
可以出来命令的使用方法)
switch(config)#switchnameswitchswitch(config)#switch(config)#interfacemgmt0switch(config-if)#ipadress192.168.100.108255.255.255.0switch(config-if)#noshutdown
interfacemgmt0表示的是交换机的管理端口。
2.2.配置VSAN
接下来配置VSAN
switch#configt
switch(config)#vsandatabase
switch(config-vsan-db)#vsan2
switch(config-vsan-db)#end
2.3.配置ZONESET
switch#configt
switch(config)#zonesetnameset10vsan2
switch(config-zoneset)#memberZONE_NAME把ZONE填加到该ZONESET中
注:在交换机处于正常运行时,如果配置了新的ZONE,并且填加到了ZONESET中,此时需要Acitvate才能生效,命令如下:
switch#configt
switch(config)#zonesetactivatenameset10vsan2
2.4.配置ZONE
下面配置ZONE
基本命令如下:
switch#configt
switch(config)#zonenamezone_namevsan2
switch(config)#memberinterfacefc#/#
switch(config)#memberinterfacefc#/#
交换机端口都是以fc表示,fc1/1表示第一个模块上的第一个端口。由于像cisco9506之类的交换机是模块化的,所以其每个端口就是fc模块号/端口号。像cisco9120,cisco9140,不是模块化的,但其接口默认是fc1/端口号。
2.5.TRUNKING的配置
默认情况下,交换机每个端口的TRUNKING协议都是启用的,交换机互连的端口应工作在Emode下,如果有两台交换机互相连接的情况,则要启用TRUNKING,以FC1/1和FC1/2为例。
配置命令如下:
switch#configt
switch(config)#interfacefc1/1switch(config-if)#switchportmodee
switch(config)#interfacefc1/2switch(config-if)#switchportmodee
3.常用命令
showrun显示当前配置
showzone显示当前配置的ZONE的信息
showzoneset显示当前配置的ZONESET的信息
showinterfacefc1/1显示端口fc1/1信息
showzoneactivate显示当前活动的ZONE信息
showzonesetactivate显示当前活动的ZONESET信息
copyrunstart保存当前配置
showvsan查看交换机的vsan信息
showvsanxmembership查看某个vsan下面的端口
showtopology级联成功后查看对端交换机信息
showfcdomaindomain-list查看级联信息
showfcsdatabase查看本地交换机注册的WWN号
showfcnsdatabase查看级联后整个fabric注册的WWN号
Showinterfacebrief确认设置trunk的端口已经启用成功
Showwwnswitch查看交换机的WWN号码
4.常用技巧
4.1.修改交换机IP地址
建议通过串口线修改
switch#conft
switch(config)#intmgmt0
switch(config)-if#ipaddress<192.168.1.1><255.255.255.0>输入修改后的IP和掩码
switch(config-if)#switchportspeed10/100/100如果必要,可以指定网口的速率
switch(config)#ipdefault-gateway<192.168.1.254>
4.2.解决网口不亮的方法
通过串口连接
switch#conftswitch(config)#intmgmt0
switch(config-if)#shutdown提示是否继续,选择y
switch(config-if)#noshut
4.3.修改用户密码
switch#conft
switch(config)#username<用户名>password<密码>
4.4.修改交换机名字
switch#conft
switch(config)#switchname
4.5.启动关闭服务
如果你接手的交换机没有开启TELNET功能,可以参考启停方法如下,其他服务也类似
switch#conft
switch(config)#telnetserverenable开启
switch(config)#notelnetserverenable关闭
5.实例交换机级联跨交换机化zone
A交换机端口1,端口2分别连接B交换机得端口1,端口2
5.1.首先初始化按照1初始化两台交换机
在每个交换机上创建VSAN2,把端口1-48加入到vsan2中
(config)#vsandatabase进入
(config-vsan-db)#vsan2nameVSAN2创建名字为VSAN2的vsan
(config-vsan-db)#vsan2interfacefc1/1–48将光纤口绑定在vsan2上
(config-vsan-db)#exit退出config-vsan-db模式
查看VSAN2中的端口信息
showvsan2membership
是否两个交换机得VSAN2中加入了1-48个端口(可以根据需要加端口)
5.2.交换机开启modeE
在两个交换机上开启端口模式E,关闭TRUNK(只是级联不是跨交换机跨VSAN化zoneTRUNK可以关闭)根据可需要选择开启的端口,这里是开启fc1/1,fc1/2
switch#configt
switch(config)#interfacefc1/1switch(config-if)#switchportmodee
switch(config-if)#switchporttrunkmodeoff
switch(config)#interfacefc1/2switch(config-if)#switchportmodeeswitch(config-if)#switchporttrunkmodeoff
switch(config-if)#showintbrief
5.3.查看是否级联成功
输入
switch#showfcdomaindomain-list
local和Principal在一行的是主交换机,出现如下的提示是级联成功了
查看交换机的WWN号码并记录
switch#showwwnswitch
或者用
switch#showfcsdatabase
端口1和端口2启用modee所以fc1/1上的号码就是对端的交换机的WWN号码记录下来
20:00:00:05:73:ba:21:f0
20:00:00:05:73:e5:fb:d8
这两个就是交换机的WWN号码
其中的fc1/5是我们的连接的设备的WWN号码也需要记录
21:00:00:24:ff:00:2e:f3
50:06:0e:80:05:8a:ee:00
5.4.配置zone及zoneset并激活
在主交换机上(输入switch#showfcdomaindomain-list
local和Principal在一行的是主交换机)配置zone
这个地方有两种配置方式,
一种是配置端口在一个zone里面,
一种是配置设备号在一个zone里面
配置端口在一个zone里面,
switch#configt
switch(config)#zonenamezone5_namevsan2
switch(config)#memberinterfacefc1/5swwn20:00:00:05:73:ba:21:f0
switch(config)#memberinterfacefc1/5swwn20:00:00:05:73:e5:fb:d8
进入zoneset
switch(config)#zonesetnameset10vsan2
switch(config-zoneset)#memberzone5把ZONE填加到该ZONESET中
注:在交换机处于正常运行时,如果配置了新的ZONE,并且填加到了ZONESET中,此时需要Acitvate才能生效,命令如下:
switch#configt
switch(config)#zonesetactivatenameset10vsan2
switch#showzone
switch#showzoneset
去另一台交换机查看是否也同步出现了相关的zone及zoneset的信息。
如果一样那就已经配置成功了
配置连接的设备号在一个zone里面(当设备更换端口的时候不需要配置还是可以通信的),
switch#configt
switch(config)#zonenamezone5_namevsan2
switch(config)#memberpwwn21:00:00:24:ff:00:2e:f3
switch(config)#memberpwwn50:06:0e:80:05:8a:ee:00
进入zoneset
switch(config)#zonesetnameset10vsan2
switch(config-zoneset)#memberzone5把ZONE填加到该ZONESET中
注:在交换机处于正常运行时,如果配置了新的ZONE,并且填加到了ZONESET中,此时需要Acitvate才能生效,命令如下:
switch#configt
switch(config)#zonesetactivatenameset10vsan2
switch#showzone
switch#showzoneset
去另一台交换机查看是否也同步出现了相关的zone及zoneset的信息。