技术领域
问题描述
逻辑拓扑结构
配置说明
替换后的拓扑结构
诊断步骤
总结
用户尝试使用FWSM 模块替换一个第三方的透明防火墙设备,在替换后发现网络中断。
在用FWSM替换第三方防火墙前/后的拓扑结构:
数据流量从B到A流经防火墙的控制。
在用FWSM替换前,VLAN 15 的SVI 起在6509交换机的MSFC上,第三方防火墙工作于透明模式,从主机B的默认网关指向interface vlan 15的IP 地址。
在用FWSM替换后,用户先no掉VLAN 15的SVI的地址,将相同地址配置到Interface Vlan 16上。
主机B的默认网关不变。
vlan15 为inside vlan,vlan 16为 outside vlan。
工作在透明模式下的配置如下:interface Vlan15 nameif inside bridge-group 1 security-level 100 ! interface Vlan16 nameif outside bridge-group 1 security-level 0 ! interface BVI1 ip address 192.168.100.254 255.255.255.0 route outside 0.0.0.0 0.0.0.0 192.168.100.1 1
防火墙的策略配置允许IP,及二层BPDU报文全部通过。
access-list permitany extended permit ip any any access-list BPDU ethertype permit bpdu access-group BPDU in interface inside access-group BPDU in interface outside access-group permitany in interface outside access-group permitany in interface inside
6509交换机和4506交换机间有port channel,Trunk 放行来自4506下层的VLAN。
10.10.10.1 是6509交换机上interface vlan 17 的IP 地址,在交换机上,所有的VLAN三层接口的MAC地址都是一样的,在本环境下为 0012:4470:7c00。
192.168.100.100是6509下联的4506交换机下vlan 15的一个主机,其MAC地址为001d.454c.03c2.
65-2#show mac-address-table | include 03c2(查看192.168.100.100的MAC地址) * 15 001d.454c.03c2 dynamic Yes 100 Po15
当从192.168.100.100 ping 10.10.10.1的时候,192.168.100.100的mac 地址会被交换机从4506和6509之间的trunk接口动态地学到,此为正常情况。
65-2#show mac-address-table | include 7c00 (查看int VLAN 17 的MAC 地址) * 16 0012.4470.7c00 static No - Router * 17 0012.4470.7c00 static No - Router * 15 0012.4470.7c00 static No - Router
Vlan15 is up, line protocol is up Hardware is EtherSVI, address is 0012.4470.7c00 (bia 0012.4470.7c00)
65-2#show mac-address-table | include 03c2 * 16 001d.454c.03c2 dynamic Yes 315 Po271 * 15 001d.454c.03c2 dynamic Yes 315 po15 65-2#show mac-address-table | include 7c00 * 16 0012.4470.7c00 static No - Router * 17 0012.4470.7c00 static No - Router * 13 0012.4470.7c00 static No - Router * 15 0012.4470.7c00 dynamic Yes 380 Po271
最佳实践就是,划入FWSM的VLAN中只能有一个VLAN具有SVI。其他vlan 如果起了SVI,但是没有配IP地址,最好将该SVI删除。