首页 > 代码库 > Brocade 6450 配置
Brocade 6450 配置
简单说一下:
1. 如果使用Brocade 6450的10G端口作为uplink端口,它是需要license激活才能使用的,具体如何获得license文件可以去查看一下官网http://www.brocade.com/content/html/en/software-licensing-guide/FI_08030_LICENSING/GUID-583666BE-EB5B-4F68-A38B-563792B976F5.html .
2. 下载license文件后,不要对它重命名,否则传到设备上不被识别。具体导入license的步骤:
一、搭一个tftp服务器,这应该不难,下个tftp软件就行。
二、把license的.xml文件拷贝到tftp的目录下
三、在6450上运行 #copy tftp 10.10.0.1 20161220iuoo.xml unit 1
10.10.0.1 是tftp 服务器的IP, 20161220iuoo.xml 是license文件, unit 1是stack中的unit 1.
假如你的设备不是stack 模式,那”unit 1"可以不输入,直接"copy tftp xxx.xxx.xxx.xxx ****.xml"
导入后运行“show license"查看license是否已激活。
比如:
6th-6450-stack#show license
Index License Name Lid License Type Status License Period License Capacity
Stack unit 1:
1 ICX6450-10G-LIC-POD dbxxxxxxiJ Normal Active Unlimited 2
Stack unit 5:
1 ICX6450-10G-LIC-POD dbxxxxxxdo Normal Active Unlimited 2
使用"show pod"查看10G端口状态
6th-6450-stack#show pod
Unit-Id: 1
PoD-ports Lic-Available Lic-Used
1/2/2 Yes Yes
1/2/4 Yes Yes
Unit-Id: 2
PoD-ports Lic-Available Lic-Used
2/2/2 No No
2/2/4 No No
Unit-Id: 3
PoD-ports Lic-Available Lic-Used
3/2/2 No No
3/2/4 No No
Unit-Id: 4
PoD-ports Lic-Available Lic-Used
4/2/2 No No
4/2/4 No No
Unit-Id: 5
PoD-ports Lic-Available Lic-Used
5/2/2 Yes Yes
5/2/4 Yes Yes
6th-6450-stack#
Brocade 6450上创建多端口的channel使用的是lag命令(思科中的port-channel或etherchannel)
#lag "uplink-to-core" dynamic id 1
"uplink-to-core" 一个名称而已 , dynamic 是一种模式,类似于思科交换机中的协商模式,除dynamic之外还有”keep-alive" 和"static"
#ports ethe 1/2/2 ethe 5/2/2
这一行命令是指定哪些端口属于这个channel.
#primary-port 1/2/2
注意指定主端口的时候直接用序号
#deploy
应用
因为之前我在核心交换机上设置连接该stack的port-channel的模式trunk,那在这6450上的lag id 1,它就是个trunk模式。
配置管理IP和接入层端口
#conf t
(config)#vlan 2
(config-vlan2)#tagged ethe 1/2/2 ethe 5/2/2 (stack中哪些端口是uplink)
(config-vlan2)#management-vlan 我用vlan 2作为管理vlan
(config-vlan2)#default-gateway 10.10.2.1 1 注意最后面的“1”
(config-vlan2)#ip address 10.10.2.60 255.255.255.0
因为接入层在我的环境中是vlan 60,配置:
(config)#vlan 60
(config-vlan60)#tagged ethe 1/2/2 ethe 5/2/2
(config-vlan60)#untagged ethe 1/1/1 to 1/1/48
(config-vlan60)#untagged ethe 2/1/1 to 2/1/48
untagged命令是指定哪些端口是接入模式
(config)#ethe 1/1/1 to 1/1/48
(ethe-config)#loop-detection 环路检测
(...-config)#spanning-tree 802-1w admin-edge-port vlan树的接入口
(....-config)#stp-bpdu-guard
这个bpdu-gruad应该不需要多解释吧,CCNP里有哦。
启用DHCP Snooping
(config)#ip dhcp snooping vlan 2
(config)#ip dhcp snooping vlan 60
设置uplink端口为DHCP trust
(config)#ethe 1/2/2
(config-ethe1/2/2)#dhcp snooping trust
这样基本的配置就都差不多了,查看一下结果:
#show runn
#show lag id 1
本文出自 “想?不想!” 博客,谢绝转载!
Brocade 6450 配置