博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单臂路由实现vlan之间的通信
阅读量:5874 次
发布时间:2019-06-19

本文共 1330 字,大约阅读时间需要 4 分钟。

 

 

实验拓扑如上图所示 

实验准备:配置好两台PC的IP地址

switch1的配置如下

switch1#vlan database     进入vlan数据库模式

switch1(vlan)#vlan 2      创建一个vlan 2

VLAN 2 added:

    Name: VLAN0002

switch1(vlan)#vlan 3     创建一个vlan 3

VLAN 3 added:

    Name: VLAN0003

switch1(vlan)#exit

 

switch1(config)#int f0/1

switch1(config-if)#switchport mode ac  将端口变为 access模式

switch1(config-if)#switchport access vlan 2 将端口放入vlan2

switch1(config-if)#exit

switch1(config)#int f0/2

switch1(config-if)#switchport mode ac  将端口变为 access 模式

switch1(config-if)#switchport access vlan 3 将端口划入 vlan3

switch1(config-if)#end

switch1(config)#int f0/3

switch1(config-if)#switchport mode trunk   将接口封装成为 trunk

switch1(config-if)#exit

 

路由器配置如下

Router(config)#hostname router1   更改路由器名字

router1(config)#int lo 0

router1(config-if)#ip add 1.1.1.1 255.255.255.255   为环回接口配置IP地址

router1(config-if)#int f0/0       

router1(config-if)#no shut     将接口 f0/0开启

router1(config-if)#exit

router1(config)#int f0/0.1     进入子接口配置模式

router1(config-subif)#encapsulation dot1Q 2    将子接口封装为802.1q 

router1(config-subif)#ip add 192.168.100.1 255.255.255.0   配置IP地址

router1(config-subif)#no shut    开启端口

router1(config-subif)#exit

router1(config)#int f0/0.2                      进入子接口配置模式

router1(config-subif)#encapsulation dot1Q 3     将接口封装为 802.1q

router1(config-subif)#ip add 192.168.200.1 255.255.255.0   配置IP地址

router1(config-subif)#no shut    开启端口

 

设备配置完成

 

pc1 和网关通信成功

 

 

PC2和网关通信成功

 

 

两台PC通信成功  单臂路由实现vlan之间通信成功

转载地址:http://fyzix.baihongyu.com/

你可能感兴趣的文章
LevelDB:Bloom源码精读——数据结构
查看>>
一个设置访问权限的实例
查看>>
【Android】 banner+tab吸顶+viewpager切换+刷新加载之实现
查看>>
找零问题与动态规划
查看>>
Leetcode279完全平方数
查看>>
jTopo学习笔记5——动画
查看>>
透析阿里3亿元投资的如涵:孵化张大奕,吸金但苦逼
查看>>
CSS实现镂空效果
查看>>
一个树状结构列表封装
查看>>
翻译: JavaScript中对象解构的3种实际应用
查看>>
iOS 下拉刷新组件原理及简单实现
查看>>
java调用kotlin注意事项
查看>>
nginx 配置ssl实现https
查看>>
APP消息推送:通知和透传
查看>>
通过Gradle Plugin实现Git Hooks检测机制
查看>>
css里那些可以继承的属性
查看>>
卖人参
查看>>
react, webpack4,json-server, 模拟前端数据(POST+自定义数据)
查看>>
JVM系列(二):深入讲解JVM内存溢出分析!
查看>>
讯飞开放平台开春福利:17种方言全配齐 让你的AI“语种”不同
查看>>