帧中继网络中配置OSPF

简介:

默认情况下帧中继网络是无法运行OSPF协议的,为什么?


 
【原因】:帧中继(fram-relay)网络属于非广播型多路访问,
       而OSPF协议规定路由器之间的Hello包是通过组播来传输
    (组播也属于非广播类型)因此帧中继上默认情况是无法运行OSPF协议的。

 
下面有4种解决方法:
  • 方法一,手工设置ospf网络类型为广播型,在指定fram-relay map时设置为broadcast
    (Fram-relay 广播)
  • 方法二,默认非广播类型,使用neighbor手工指定邻居,并且手工指定DR为中心路由器
    (fram-relay非广播)
  • 方法三,手工设置OSPF网络类型为:点到多点型广播型,在指定fram-relay map时设置为broadcast
    (fram-relay 点对多点广播)
  • 方法四:手工设置OSPF网络类型为:点到多点非广播,使用neighbor手工指定邻居
    (fram-relay 点对多点非广播)

 
再看解决方法之前,先理解以下内容
  1. OSPF中的“neighbor” 可以手动指定邻居路由器的IP地址,使得它不用组播也能和邻居交换路由信息。
  2. 哪些网络需要选举DR,哪些网络不用选举DR
 OSPF网络类型  特征  是否选举DR
 广播型多路访问  以太网、令牌环或FDDI  是
 非广播型多路访问  帧中继、X.25、SMDS  是
 点对点  PPP、HDLC
 否
 点对多点  由管理员配置  否
     3.fram-relay map 中 broadcast 关键词允许路由器通过指定的DLCI号将广播分组分送给所映射的路由器

 
【实验拓扑】:中心-分支帧中继网络拓扑结构

 

 

  • 方法一,手工设置ospf网络类型为广播型,在指定fram-relay map时设置为broadcast
R1:
interface L0
ip address 1.0.0.1 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.1 255.0.0.0
encapsulation frame-relay
ip ospf network broadcast
frame-relay map ip 10.0.0.4 104  broadcast
frame-relay map ip 10.0.0.5 105  broadcast
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
R4:
interface Ethernet0/0
ip address 4.0.0.4 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.4 255.0.0.0
encapsulation frame-relay
ip ospf network broadcast
ip ospf priority 0
frame-relay map ip 10.0.0.1 401  broadcast
frame-relay map ip 10.0.0.5 401
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0

 
R5:
interface Ethernet0/0
ip address 5.0.0.5 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.5 255.0.0.0
encapsulation frame-relay
ip ospf network broadcast
ip ospf priority 0
frame-relay map ip 10.0.0.1 501  broadcast
frame-relay map ip 10.0.0.4 501
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
  • 方法二,默认非广播类型,使用neighbor手工指定邻居,并且手工指定DR为中心路由器
R1:
interface Ethernet0/0
ip address 1.0.0.1 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.1 255.0.0.0
encapsulation frame-relay
frame-relay map ip 10.0.0.4 104
frame-relay map ip 10.0.0.5 105
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
neighbor 10.0.0.4
neighbor 10.0.0.5
R4:
interface Ethernet0/0
ip address 4.0.0.4 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.4 255.0.0.0
encapsulation frame-relay
ip ospf priority 0
frame-relay map ip 10.0.0.1 401
frame-relay map ip 10.0.0.5 401
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
R5:
interface Ethernet0/0
ip address 5.0.0.5 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.5 255.0.0.0
encapsulation frame-relay
ip ospf priority 0
frame-relay map ip 10.0.0.1 501
frame-relay map ip 10.0.0.4 501
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
  • 方法三,手工设置OSPF网络类型为:点到多点型广播型,在指定fram-relay map时设置为broadcast
R1:
interface Ethernet0/0
ip address 1.0.0.1 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.1 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint
frame-relay map ip 10.0.0.4 104 broadcast
frame-relay map ip 10.0.0.5 105 broadcast
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
R4:
interface Ethernet0/0
ip address 4.0.0.4 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.4 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint
frame-relay map ip 10.0.0.1 401 broadcast
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
R5:
interface Ethernet0/0
ip address 5.0.0.5 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.5 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint
frame-relay map ip 10.0.0.1 501 broadcast
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
  • 方法四:手工设置OSPF网络类型为:点到多点非广播,使用neighbor手工指定邻居
R1:
interface Ethernet0/0
ip address 1.0.0.1 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.1 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint non-broadcast
frame-relay map ip 10.0.0.4 104
frame-relay map ip 10.0.0.5 105
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
neighbor 10.0.0.5
neighbor 10.0.0.4
R4:
interface Ethernet0/0
ip address 4.0.0.4 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.4 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint non-broadcast
frame-relay map ip 10.0.0.1 401
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0
R5:
interface Ethernet0/0
ip address 5.0.0.5 255.0.0.0
!
interface Serial0/0
ip address 10.0.0.5 255.0.0.0
encapsulation frame-relay
ip ospf network point-to-multipoint non-broadcast
frame-relay map ip 10.0.0.1 501
no frame-relay inverse-arp
!
router ospf 1
network 0.0.0.0 255.255.255.255 area 0

本文转自zcm8483 51CTO博客,原文链接:http://blog.51cto.com/haolun/993193

相关文章
|
8天前
|
Ubuntu Oracle 关系型数据库
Oracle VM VirtualBox之Ubuntu 22.04LTS双网卡网络模式配置
这篇文章是关于如何在Oracle VM VirtualBox中配置Ubuntu 22.04LTS虚拟机双网卡网络模式的详细指南,包括VirtualBox网络概述、双网卡网络模式的配置步骤以及Ubuntu系统网络配置。
35 3
|
10天前
|
Ubuntu
树莓派 —— ubuntu上通过netplan配置网络
树莓派 —— ubuntu上通过netplan配置网络
|
7天前
|
域名解析 负载均衡 网络协议
Linux网络接口配置不当所带来的影响
总而言之,Linux网络接口的恰当配置是保证网络稳定性、性能和安全性的基础。通过遵循最佳实践和定期维护,可以最大程度地减少配置错误带来的负面影响。
30 0
|
12天前
|
监控 安全 网络安全
|
13天前
|
缓存 负载均衡 网络协议
Haskell网络编程:深入理解代理和TLS配置
Haskell网络编程:深入理解代理和TLS配置
|
19天前
|
网络协议 网络架构
|
19天前
|
网络协议 算法 数据库
|
19天前
|
网络协议 算法 网络架构
OSPF 如何计算到目标网络的最佳路径
【8月更文挑战第24天】
24 0
|
19天前
|
监控 网络协议 网络架构
解决OSPF网络连接问题的综合指南
【8月更文挑战第24天】
32 0
|
2天前
|
安全 网络协议 网络安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
【9月更文挑战第10天】在数字化时代,网络安全和信息安全已成为我们生活中不可或缺的一部分。本文将介绍网络安全漏洞、加密技术和安全意识等方面的知识,帮助读者更好地了解网络安全的重要性,并提高自己的网络安全防护能力。
21 11