两种方法可以为交换机分配IP地址:
1 OOB(out of band) port --通过CMC内部网络(同数据流量隔离)
2 可管理VLAN接口--通过正常的外部接口访问
通过OOB端口分配IP地址:
1 使用cmc图形界面, 定位到"I/O Modules\Setup tab"如下图所示:
2 通过命令行模式查看交换机IP地址: 键入"show ip interface out-of-band"
console# show ip interface out-of-band
IP Address. . . . . . . . . . . . . . . . . . . . . 192.168.1.10
Subnet Mask . . . . . . . . . . . . . . . . . . . . 255.255.255.0
Default Gateway . . . . . . . . . . . . . . . . . . 192.168.1.10
ServPort Configured Protocol Current. . . . . . . . None
Burned In MAC Address . . . . . .. . . . . . . . . 001C.237B.E316
console#
通过管理VLAN:
1 通过cmc命令行(OOB port)或usb 串口线连接到交换机
按<enter>连接后,通过键入" configure"进入全局配置模式并回车
键入" en"进入特权模式(#标记)
console# configure(或config)
console#(config)
2 为VLAN1(management VLAN)键入IP地址并回车
形如:"ip address [ip address] [subnet mask]"
console# configure
console#(config) ip address 10.0.0.10 255.0.0.0
console#(config)
3 键入"exit"退回到EXEC模式,键入"show ip interface" 查看分配的IP地址
console#configure
console#(config) ip address 10.0.0.10 255.0.0.0
console# exit
console# show ip interface
IP Address. . . . . . . . . . . . . . . . . . . . . 10.0.0.10
Subnet Mask . . . . . . . . . . . . . . . . . . . . 255.0.0.0
Default Gateway . . . . . . . . . . . . . . . . . . 10.0.0.1
Burned In MAC Address . . . . . . . . . . . . . . . 001C.237B.E316
ServPort Configured Protocol Current. . . . . . . . None
Management VLAN ID. . . . . . . . . . . . . . . . . 1
Routing Interfaces:
Interface IP Address IP Mask Bcast Netdir BcastMulticastFwd
----------- ------------- ------------- ------------- -----------
console#