电子文档交易市场
安卓APP | ios版本
电子文档交易市场
安卓APP | ios版本

帧中继网络中配置OSPF

6页
  • 卖家[上传人]:ji****72
  • 文档编号:37707446
  • 上传时间:2018-04-21
  • 文档格式:DOCX
  • 文档大小:95.96KB
  • / 6 举报 版权申诉 马上下载
  • 文本预览
  • 下载提示
  • 常见问题
    • 1、默认情况下帧中继网络是无法运行默认情况下帧中继网络是无法运行 OSPFOSPF 协议的,为什么?协议的,为什么?【原因】:帧中继(fram-relay)网络属于非广播型多路访问,而 OSPF 协议规定路由器之间的 Hello 包是通过组播来传输(组播也属于非广播类型)因此帧中继上默认情况是无法运行 OSPF 协议的。下面有下面有 4 4 种解决方法:种解决方法:方法一,手工设置 ospf 网络类型为广播型,在指定 fram-relay map 时 设置为 broadcast (Fram-relay 广播)方法二,默认非广播类型,使用 neighbor 手工指定邻居,并且手工指定 DR 为中心路由器 (fram-relay 非广播)方法三,手工设置 OSPF 网络类型为:点到多点型广播型,在指定 fram- relay map 时设置为 broadcast (fram-relay 点对多点广播)方法四:手工设置 OSPF 网络类型为:点到多点非广播,使用 neighbor 手工指定邻居 (fram-relay 点对多点非广播)再看解决方法之前,先理解以下内容再看解决方法之前,先理解以下内

      2、容1. OSPF 中的“neighborneighbor” 可以手动指定邻居路由器的 IP 地址,使得它不 用组播也能和邻居交换路由信息。 2. 哪些网络需要选举 DR,哪些网络不用选举 DROSPFOSPF 网络类型网络类型 特征特征 是否选举是否选举 DRDR广播型多路访问 以太网、令牌环或 FDDI 是非广播型多路访问 帧中继、X.25、SMDS 是点对点 PPP、HDLC 否点对多点 由管理员配置 否3.fram-relay map 中 broadcast 关键词允许路由器通过指定的 DLCI 号 将广播分组分送给所映射的路由器【实验拓扑】:中心-分支帧中继网络拓扑结构方法一,手工设置 ospf 网络类型为广播型,在指定 fram-relay map 时 设置为 broadcastR1: 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-relayip ospf network broadcast fr

      3、ame-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 0R5: interface Ethernet0/0 ip a

      4、ddress 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

      5、 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 ! interfac

      6、e 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 时设置为 broadcastR1: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 broad

      7、cast 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.

      8、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/0ip 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 netwo

      9、rk 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

      《帧中继网络中配置OSPF》由会员ji****72分享,可在线阅读,更多相关《帧中继网络中配置OSPF》请在金锄头文库上搜索。

      点击阅读更多内容
    最新标签
    发车时刻表 长途客运 入党志愿书填写模板精品 庆祝建党101周年多体裁诗歌朗诵素材汇编10篇唯一微庆祝 智能家居系统本科论文 心得感悟 雁楠中学 20230513224122 2022 公安主题党日 部编版四年级第三单元综合性学习课件 机关事务中心2022年全面依法治区工作总结及来年工作安排 入党积极分子自我推荐 世界水日ppt 关于构建更高水平的全民健身公共服务体系的意见 空气单元分析 哈里德课件 2022年乡村振兴驻村工作计划 空气教材分析 五年级下册科学教材分析 退役军人事务局季度工作总结 集装箱房合同 2021年财务报表 2022年继续教育公需课 2022年公需课 2022年日历每月一张 名词性从句在写作中的应用 局域网技术与局域网组建 施工网格 薪资体系 运维实施方案 硫酸安全技术 柔韧训练 既有居住建筑节能改造技术规程 建筑工地疫情防控 大型工程技术风险 磷酸二氢钾 2022年小学三年级语文下册教学总结例文 少儿美术-小花 2022年环保倡议书模板六篇 2022年监理辞职报告精选 2022年畅想未来记叙文精品 企业信息化建设与管理课程实验指导书范本 草房子读后感-第1篇 小数乘整数教学PPT课件人教版五年级数学上册 2022年教师个人工作计划范本-工作计划 国学小名士经典诵读电视大赛观后感诵读经典传承美德 医疗质量管理制度 2 2022年小学体育教师学期工作总结 2022年家长会心得体会集合15篇
    关于金锄头网 - 版权申诉 - 免责声明 - 诚邀英才 - 联系我们
    手机版 | 川公网安备 51140202000112号 | 经营许可证(蜀ICP备13022795号)
    ©2008-2016 by Sichuan Goldhoe Inc. All Rights Reserved.