1. 单臂路由详解.
1.单臂路由概述
单臂路由是指在路由器的一个接口上通过配置子接口(或“逻辑接口”,并不存在真正物理接口)的方式,实现原来相互隔离的不同VLAN之间的互联互通
1.1单臂路由实现不同VLAN之间的通信
1.1.1 链路状态
- 交换机连接主机的端口为access链路
- 交换机连接路由器的端口为Trunk链路
1.1.2子接口
- 路由器的物理接口可以被划分成为多个逻辑接口
- 每个子接口对应一个VLAN网段网关
1.2 单臂路由的配置
- 首先检查您的主机IP地址是否配置完成
- 其次配置链路交换机和路由器的链路类型
- 配置VLAN标签的封装结构
- 配置路由器的子网接口
1.3 检查检查再检查 一定要确定你没有配置上的错误
2.1 单臂路由配置实验
2.1.1 PC的配置
2.1.2 交换机配置
- 我打的配置命令都是每个命令的简写 可能你们会看不懂 可以自己Tab出来理解
!Switch>en //进入全局配置模式
Switch#conf t //特权模式进入全局模式
Enter configuration commands, one per line. End with CNTL/Z.
Switch(config)#vlan 10 //创建VLAN
Switch(config-vlan)#vlan 20
Switch(config-vlan)#int f0/3
Switch(config-if)#sw m a //将链路模式设为access
Switch(config-if)#sw a vlan 10
Switch(config-if)#int f0/2
Switch(config-if)#sw m a
Switch(config-if)#sw a vlan 20
Switch(config-if)#int f0/1
Switch(config-if)#sw m t
Switch(config-if)#end
Switch#w //保存配置
2.1.3 路由器配置
Router#en
Router#conf t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#int f0/0.1
Router(config-subif)#en d 10 //接口封装dot1q协议,后面加上vlan ID
Router(config-subif)#ip add 192.168.10.254 255.255.255.0 配置子接口IP地址
Router(config-subif)#no sh
Router(config-subif)#int f0/0.2
Router(config-subif)#ip add 192.168.20.254 255.255.255.0
Router(config-subif)#no sh
Router(config-subif)#int f0/0
Router(config-if)#no sh
Router(config-if)#end
Router#w
%SYS-5-CONFIG_I: Configured from console by console
w
Building configuration...
[OK]
2.1.4 配置已经完成 测试PC1和PC2的通信是否成功
3.1 单臂路由的缺点
1. 优点:实现多vlan的通信,解决不同vlan之间的通信的问题。
2. 缺点:单臂出现单点故障对网络影响非常大,单臂路由链路负载过重,容易出现流量瓶颈文章来源:https://www.toymoban.com/news/detail-499356.html
感悟
第一次写文章 所以想尽量写多一点 希望大家能喜欢!文章来源地址https://www.toymoban.com/news/detail-499356.html
到了这里,关于单臂路由配置实验 详细教程的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!