单臂路由实现VLAN间通信
不同VLAN之间隔离广播域,不能直接在二层上通信,想要在VLAN间通信,需要通过路由器或者三层交换机。
单臂路由(router-on-a-stick)是指在路由器的一个接口上通过配置子接口(或“逻辑接口”,并不存在真正物理接口)的方式,实现原来相互隔离的不同VLA之间互联互通。
实验拓扑图:
实验环境:
Cisco Packet Tracer模拟器
实验说明:
PC0,PC1,PC2属于不同的网段和VlAN,通过SW1相连到路由器R1上,通过在R1上实现单臂路由功能来实现三台PC互通。
参考配置:
PC0:
PC1:
PC2:
SW配置:
Switch(config)
Switch(config)
Switch(config)
Switch(config)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
R1配置:
R1(config)
R1(config-if)
R1(config-if)
R1(config-subif)
R1(config-subif)
R1(config-if)
R1(config-subif)
R1(config-subif)
R1(config-if)
R1(config-subif)
R1(config-subif)
设置完之后,三台PC就可以互通了,不要忘记设置PC的网关。
PC0和PC1与PC2通信:
扩展:
因为连接PC要手动设置IP地址和网关,所以我在SW上启用了DHCP服务,又添加了一个VLAN5:
SW配置:
Switch(config)
Switch(config)
Switch(dhcp-config)
Switch(dhcp-config)
Switch(dhcp-config)
Switch(dhcp-config)
Switch(config)
Switch(config)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
PC3只要连接上f0/5口,ip改为dhcp就可以自动获取ip地址:
三层交换机实现VLAN间通信:
使用三层交换机也可以实现VLAN间通信,相比路由器来说更方便
实验拓扑:
只需要把R1和Switch替换成一个三层交换机即可,其他的PC配置不变:
参考配置:
SW:
三层交换机开启路由功能:ip routing
三层交换机二层端口开启三层:no switchport(可以添加ip地址)
Switch(config)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
Switch(config-if)
% Access VLAN does not exist. Creating vlan 3
Switch(config-if)
Switch(config-if)
Switch(config-if)
% Access VLAN does not exist. Creating vlan 4
Switch(config)
Switch(config-if)
%LINK-5-CHANGED: Interface Vlan2, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan2, changed state to up
Switch(config-if)
Switch(config-if)
%LINK-5-CHANGED: Interface Vlan3, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan3, changed state to up
Switch(config-if)
Switch(config-if)
Switch(config-if)
%LINK-5-CHANGED: Interface Vlan4, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Vlan4, changed state to up
Switch(config-if)
结果:
配置完成可以互相访问:
|