动态路由 虚链路的简单配置 (简单,易懂)
程序员文章站
2024-02-11 13:32:22
...
虚链路
指一条通过一个非骨干区域连接到骨干区域的链路
虚链路的目的
通过一个非骨干区域连接一个区域到骨干区域
通过一个非骨干区域连接一个分段的骨干区域
配置虚链路的规则及特点
(1)虚链路必须配置在两台ABR路由器之间
(2)传送区域不能是一个末梢区域
(3)虚链路的稳定性取决于其经过的区域的稳定性
(4)虚链路由助于提供逻辑冗余
虚链路的配置命令
Router(config-router)# area area-ide vritual-link router-id
虚链路的配置实例
项目图和具体实行要求
公司网络扩容
由于涉及问题导致新区域与骨干区域无法相连
通过配置虚链路弥补涉及问题
虚链路玩过了结构拓扑图
R1
配置2个接口的IP地址和子网掩码
进入回环网卡,设置固定IP地址
配置OSPF路由协议
conf t
int f0/0
ip add 192.168.10.1 255.255.255.0
no shut
int f0/1
ip add 192.168.20.1 255.255.255.0
no shut
ex
int lo 0
ip add 1.1.1.1 255.255.255.255
no shut
ex
router ospf 1
router-id 1.1.1.1
network 192.168.10.0 0.0.0.255 area 2
network 192.168.20.0 0.0.0.255 area 2
R2
配置2个接口的IP地址和子网掩码
进入回环网卡,设置固定IP地址
配置OSPF路由协议
conf t
int f0/0
ip add 192.168.20.2 255.255.255.0
no shut
int f0/1
ip add 192.168.30.1 255.255.255.0
no shut
ex
int lo 0
ip add 2.2.2.2 255.255.255.255
no shut
ex
router ospf 1
router-id 2.2.2.2
network 192.168.20.0 0.0.0.255 area 2
network 192.168.30.0 0.0.0.255 area 1
ex
router ospf 1
area 1 virtual-link 3.3.3.3
R3
配置2个接口的IP地址和子网掩码
进入回环网卡,设置固定IP地址
配置OSPF路由协议
conf t
int f0/0
ip add 192.168.30.2 255.255.255.0
no shut
ex
int f0/1
ip add 192.168.40.1 255.255.255.0
no shut
int lo 0
ip add 3.3.3.3 255.255.255.255
no shut
ex
router ospf 1
router-id 3.3.3.3
network 192.168.30.0 0.0.0.255 area 1
network 192.168.40.0 0.0.0.255 area 0
ex
router ospf 1
area 1 virtual-link 2.2.2.2
R4
配置2个接口的IP地址和子网掩码
进入回环网卡,设置固定IP地址
配置OSPF路由协议
conf t
int f0/0
ip add 192.168.40.2 255.255.255.0
no shut
int f0/1
ip add 192.168.50.1 255.255.255.0
no shut
ex
int lo 0
ip add 4.4.4.4 255.255.255.255
no shut
ex
router ospf 1
router-id 4.4.4.4
network 192.168.40.0 0.0.0.255 area 0
network 192.168.50.0 0.0.0.255 area 0
配置PC1、PC2的IP地址和网关
测试全网互通
上一篇: javap命令的使用技巧