单臂路由一般用在实现二层交换机VLAN间互访,需要一台路由器支持:
假设我们需要实现VLAN100和VLAN200间互访
一、单臂路由
拓扑 sw1 g0/0/1 ------g0/0/0 R1
配置:
SW1:interface g0/0/1
port link-type trunk
port trunk allow-pass vlan 100 200
R1: interface G 0/0/0.1//路由器上创建两个子接口,分别终结VLAN100和200,子接口号自己随意定义,两个IP地址分别作为VLAN100 200主机的网关地址
vlan dot1q vid 100
ip address 192.168.10.1 255.255.255.0
interface G0/0/0.2
vlan dot1q vid 200
ip address 192.168.20.1 255.255.255.0
二、创建三层接口
interface vlanif 100 //创建两个VLAN对应的VLAN(SVI)接口作为网关
ip add192.168.10.1 255.255.255.0
interface vlanif 200
ip add192.168.20.1 255.255.255.0
这样交换机上会为这两个网段产生两条直连路由,实现网段间互访。
由于S5700为三层交换机,本身支持三层功能,推荐使用第二种方法,比较简单。
1、配置PC1:IP: 192.168.1.2Submask: 255.255.255.0 Gageway:192.168.1.1。
2、配置PC2:IP: 192.168.2.2Submask: 255.255.255.0 Gageway:192.168.2.1。
3、测试连通性PC1 Ping PC2 ,Ping 192.168.2.2 。
4、设置交换机Switch:interface fastEthernet 0/2 //进入交换机0模块第2端口switchport access vlan 2 //加入vlan 2 exit int fa 0/3 //进入交换机0模块第3端口。
5、设置路由器:Router>en Router#conf t Router(config)#int fa0/0//进入路由器0模块第0端口 Router(config-if)#no shutdown //开启该端口。
6、测试连通性:PC1 Ping PC2 , Ping 192.168.2.2 。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)