多区域OSPF配置

配置命令步骤:

1.使用router ospf 进程ID编号启用OSPF路由

2.使用network 直连网络地址 反掩码 area 区域号将其归于对应区域

注意:

1.进程ID编号可任意(1-65535)

2.反掩码用4个255相减得到

3.area 0 为主干区域

4.连接不同区域之间的路由器是ABR(区域边界路由器)

5.OSPF区域与其他外部路由连接之间的路由器是ASBR(自治系统边界路由器)


如下图,根据给出要求配置OSPF多区域路由,使得PC1和PC2互通:

具体配置:

一、在B路由器上配置接口的IP地址

B(config)#interface f0/1

B(config-if)#ip address 192.168.30.1 255.255.255.0

B(config-if)#no shutdown

B(config)#interface f0/0

B(config-if)#ip address 192.168.10.1 255.255.255.0

B(config-if)#no shutdown

B(config)#interface loopback 0

B(config-if)#ip address 10.1.1.1 255.0.0.0

B(config-if)#no shutdown

二、在A路由器上配置接口的IP地址

A(config)#interface f0/1

A(config-if)#ip address 192.168.10.2 255.255.255.0

A(config-if)#no shutdown

A(config)#interface f0/0

A(config-if)#ip address 192.168.20.1 255.255.255.0

A(config-if)#no shutdown

A(config)#interface loopback 0

A(config-if)#ip address 20.1.1.1 255.0.0.0

A(config-if)#no shutdown

三、在C路由器上配置IP地址

C(config)#interface f0/0

C(config-if)#ip address 192.168.20.2 255.255.255.0

C(config-if)#no shutdown

C(config)#interface f0/1

C(config-if)#ip address 192.168.40.1 255.255.255.0

C(config-if)#no shutdown

C(config)#interface loopback 0

C(config-if)#ip address 30.1.1.1 255.0.0.0

C(config-if)#no shutdown

四、为PC1和PC2配置IP地址和默认网关

五、在路由器B上配置OSPF多区域路由

B(config)#router ospf 1

B(config-router)#network 192.168.30.0 0.0.0.255 area 0

B(config-router)#network 192.168.10.0 0.0.0.255 area 0

B(config-router)#network 10.0.0.0 0.255.255.255 area 0

六、在路由器A上配置OSPF多区域路路由

A(config)#router ospf 1

A(config-router)#network 192.168.10.0 0.0.0.255 area 0

A(config-router)#network 192.168.20.0 0.0.0.255 area 1

A(config-router)#network 20.0.0.0 0.255.255.255 area 0

七、在路由器C上配置OSPF多区域路由

C(config)#router ospf 1

C(config-router)#network 192.168.20.0 0.0.0.255 area 1

C(config-router)#network 192.168.40.0 0.0.0.255 area 1

C(config-router)#network 30.0.0.0 0.255.255.255 area 1

八、验证PC1和PC2的互通性

上图表示成功互通

相关推荐
河北瑾航科技1 小时前
广西水资源遥测终端 广西水利遥测终端 广西用水监测遥测终端 河北瑾航科技遥测终端机HBJH-B01说明书
网络·科技·水文遥测终端机·遥测终端机·广西水资源遥测终端机·广西水利遥测终端·广西用水终端
羑悻的小杀马特2 小时前
轻量跨云·掌控无界:Portainer CE + cpolar 让远程容器运维像点外卖一样简单——免复杂配置,安全直达对应集群
运维·网络·安全·docker·cpolar
愚戏师2 小时前
Python3 Socket 网络编程复习笔记
网络·笔记
降临-max3 小时前
JavaSE---网络编程
java·开发语言·网络·笔记·学习
赖small强3 小时前
【Linux 网络基础】libwebsockets HTTPS 服务端实现机制详解
linux·网络·https·tls·libwebsockets
大白的编程日记.4 小时前
【计算网络学习笔记】MySql的多版本控制MVCC和Read View
网络·笔记·学习·mysql
shmexon5 小时前
上海兆越亮相无锡新能源盛会,以硬核通信科技赋能“能碳未来”
网络·人工智能
Lay_鑫辰7 小时前
西门子诊断-状态和错误位(“轴”工艺对象 V1...3)
服务器·网络·单片机·嵌入式硬件·自动化
车载测试工程师7 小时前
CAPL学习-IP API函数-2
网络·学习·tcp/ip·capl·canoe
Xの哲學7 小时前
Linux 指针工作原理深入解析
linux·服务器·网络·架构·边缘计算