TCP/IP路由协议- OSPF虚链路的作用与实验

1- 虚链路设计初衷

TCP/IP路由协议- OSPF虚链路的作用与实验_第1张图片

当R1和R2的直连线短路时,Area 0 作为主干网会被Area 1 分隔开,为了避免主干网被分离才设计了虚链路。在R1和R2之间监理一条虚链路作为备用链路以避免上述情况发生。

因此,在做网络规划设计时不应该包含虚链路,虚链路只能作为临时补救方案出现。

2- 实验操作

TCP/IP路由协议- OSPF虚链路的作用与实验_第2张图片

ospf基础配置

R1:
enable
config t
inter lo 0
ip add 1.1.1.1 255.255.255.255
inter f 0/0
no shutdown
ip add 12.1.1.1 255.255.255.0
inter lo 100
ip add 100.100.100.100 255.255.255.255
router ospf 100
network 12.1.1.1 0.0.0.0 a 1
network 100.100.100.100 0.0.0.0 a 1
router-id 1.1.1.1

R2:
enable
config t
inter lo 0
ip add 2.2.2.2 255.255.255.255
inter f 0/0
no shutdown
ip add 12.1.1.2 255.255.255.0
inter f 1/0
no shutdown
ip add 23.1.1.2 255.255.255.0
router ospf 100
network 12.1.1.2 0.0.0.0 a 1
network 23.1.1.2 0.0.0.0 a 2
router-id 2.2.2.2

R3:
enable
config t
inter lo 0
ip add 3.3.3.3 255.255.255.255
inter f 0/0
no shutdown
ip add 23.1.1.3 255.255.255.0
router ospf 100
router-id 3.3.3.3
network 23.1.1.3 0.0.0.0 a 2

配置虚链路

R1:
router ospf 100
area 1 virtual-links 2.2.2.2
network 1.1.1.1 0.0.0.0 a 0
R2:
router ospf 
area 1 virtual-links 1.1.1.1

注意:
1)area 1后面的virtual-links IP地址必须是area 1中的可达地址;
2)network中宣告为area 0的地址不能是2.2.2.2,因为2.2.2.2处于area 1和area 2的交界处。

根据上述操作配置好了之后就可以在R3上看到100.100.100.100的路由(show ip route)!

你可能感兴趣的:(NETWORK,OSPF虚链路)