一、环境检查
(Domain ID、Firmware、清除GE端口原有状态)
1、 检查7800交换机Firmware版本。
> firmwareshow
2、检查本地生产Switch的Domain ID与7800的Domain ID是否冲突,根据实际情况修改7800的Domain ID
>switchshow 查看domain id
>switchdisable 停用
>configure 更改domain id
>switchenable 启用
3、清除7800端口原有配置(顺序:删除circuit—删除端口信息—删除隧道)
> portshow fcipcircuit all 显示电路信息
> portcfg fcipcircuit 16 delete 0删除电路
> portcfg fcipcircuit 16 delete 1
>portcfgdefault ge0 恢复ge0端口为出厂设置
> portcfgdefault ge1 恢复ge1端口未出厂设置
> portcfg fciptunnel 16 delete删除隧道
使用网线接口时设置为Copper模式,使用光纤时使用optical模式
> protcfggemediatype [端口] [copper/optical]
> portcfggemediatype ge0 copper
> portcfggemediatype ge1 copper
>switchshow
ge0 cu 1G Online FCIP Copper
ge1 cu 1G Online FCIP Copper
> portcfg ipif [端口] create [IP地址] [Mask] [MTU](MTU固定为1500)
> portcfg ipif ge0 create 10.10.10.1 255.255.255.0 1500
> portcfg ipif ge1 create 10.10.10.1 255.255.255.0 1500
> portshow ipif all
> protcfg iproute [端口] create [目标IP网段] [Mask] [本地网关]
> portcfg iproute ge0 create 10.29.0.0 255.255.255.0 10.29.10.1
> portcfg iproute ge1 create 10.29.0.0 255.255.255.0 10.29.10.1
> portshow iproute all
> portcmd –ping [端口] –s [源地址] [目标地址]
> portcmd --ping ge0 -s 10.10.10.1 -d 10.10.10.100
Pinging 10.10.10.1 from ip interface 10.10.10.100 on 0/ge0 with 64 bytes of data
Reply from 10.10.10.1: bytes=64 rtt=5ms ttl=20
创建Tunnel时会自动生成一条Circuit 0
> portcfg fciptunnel [VE端口] create [对端IP地址] [本端IP地址] –b [最低带宽] –B [最高带宽]
> portcfg fciptunnel 16 create 10.10.10.1 10.10.10.11 -b 30000 -B 155000
> portshow fciptunnel all
注意:创建完成后状态为InProg,需要在对端也同样正确建立了Tunnel后,状态才会变为Up
> portcfg fcipcircuit [VE端口] create [对端IP地址] [本端IP之地] –b [最低带宽] –B [最高带宽]
> portcfg fcipcircuit 16 create 1 10.10.10.2 10.10.10.1 -b 300 -B 155
> portshow fciptunnel all
配置数据传输压缩,两端必须配置相同。本次项目统一设置为2
> fciptunnel [tunnel] modify –c [压缩程度1、2、3]
> fciptunnel 16 modify -c 2
> portshow fciptunnel 16 –p
> zonecreate “[lsan_zonename]”,”[WWN:WWN]”
> zonecreate "lsan_zone","***************"’
可以使用nscamshow命令查看fabric中设备WWN号
> nscamshow
注意:两端要建立名字完全相同的lsan zone,才能联通。
这里需要查看环境中已经生效的cfg ,把新建的lsan_zone 加入到已经生效的cfg里面,不要建立新的cfg。
> cfgshow
> cfgadd “[已经生效的cfg]”,”[lsan_zonename]”
> cfgadd “cfg_1”,”lsan_zone”
> cfgenable “cfg_1”