路由器基础配置之单臂路由实现vlan间通信
Posted wuhaohao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了路由器基础配置之单臂路由实现vlan间通信相关的知识,希望对你有一定的参考价值。
我们将以上面的拓扑图开始进行配置,目的为设置单臂路由实现vlan间通信,设置4个vlan,pc0,1,2为vlan10
pc3,4,5为vlan20;pc6,7,8为vlan30;server0,1为vlan40,为求方便,我们使用vtp来配置vlan
先配置switch0
enable 进入特权模式
configure terminal 进入全局配置模式
vtp domain abc(设置vtp的域为abc)
vtp mode server 设置switch0为server模式
vlan 10 创建vlan
vlan 20
vlan 30
vlan 40
interface f0/4
switchport mode trunk
exit
interface f0/3
switchport mode trunk
exit
interface f0/5
switchport mode trunk
exit
interface f0/1
switchport mode access
switchport access vlan 40
exit
interface f0/2
switchport mode access
switchport access vlan 40
配置switch1
enable 进入特权模式
configure terminal 进入全局配置模式
vtp domain abc 进入abc域
vtp mode client 设置为client客户模式
interface f0/2
switchport mode access
switchport access vlan 30
exit
interface f0/3
switchport mode access
switchport access vlan 20
exit
interface f0/4
switchport mode access
switchport access vlan 10
exit
配置switch2
enable 进入特权模式
configure terminal 进入全局配置模式
vtp domain abc 进入abc域
vtp mode client 设置为client客户模式
interface f0/2
switchport mode access
switchport access vlan 30
exit
interface f0/3
switchport mode access
switchport access vlan 20
exit
interface f0/4
switchport mode access
switchport access vlan 10
exit
配置switch3
enable 进入特权模式
configure terminal 进入全局配置模式
vtp domain abc 进入abc域
vtp mode client 设置为client客户模式
interface f0/2
switchport mode access
switchport access vlan 30
exit
interface f0/3
switchport mode access
switchport access vlan 20
exit
interface f0/4
switchport mode access
switchport access vlan 10
exit
配置路由器
enable 进入特权模式
configure terminal 进入全局配置模式
interface f0/0
no shutdown 先激活接口
exit
interface f0/0.1 进入虚拟子接口
encapsulation dot1Q 10 封装vlan 10
ip address 192.168.1.254 255.255.255.0
exit
interface f0/0.2 进入虚拟子接口
encapsulation dot1Q 20 封装vlan 20
ip address 192.168.2.254 255.255.255.0
exit
interface f0/0.3 进入虚拟子接口
encapsulation dot1Q 30 封装vlan 30
ip address 192.168.3.254 255.255.255.0
exit
interface f0/0.4 进入虚拟子接口
encapsulation dot1Q 40 封装vlan 40
ip address 192.168.4.254 255.255.255.0
exit
这样单臂路由间vlan通信就完成了
以上是关于路由器基础配置之单臂路由实现vlan间通信的主要内容,如果未能解决你的问题,请参考以下文章