`

frame-reday

 
阅读更多

#####################
frame-reday底层配置##
R1为DR   主接口    ##
#####################

FRSWITCH

conf ter
fram sw
end

conf ter
interface Serial0/1
encapsulation frame-relay
frame-relay route 102 interface Serial0/2 201
frame-relay route 103 interface Serial0/3 301
frame-relay intf-type dce
clock rate 64000
no shut
end

conf ter
interface Serial0/2
encapsulation frame-relay
frame-relay route 201 interface Serial0/1 102
frame-relay intf-type dce
clock rate 64000
no shut
end

conf ter
interface Serial0/3
no ip address
encapsulation frame-relay
frame-relay route 301 interface Serial0/1 103
frame-relay intf-type dce
clock rate 64000
no shut
end

#############################################
R1

conf ter
interface Serial0/0
ip address 202.101.100.1 255.255.255.0
encapsulation frame-relay
frame-relay map ip 202.101.100.2 102
frame-relay map ip 202.101.100.3 103
no shut
end
#################
R2

conf ter
interface Serial0/0
ip address 202.101.100.2 255.255.255.0
encapsulation frame-relay
frame-relay map ip 202.101.100.1 201
no shut
end
#################
R3

conf ter
interface Serial0/0
ip address 202.101.100.3 255.255.255.0
encapsulation frame-relay
frame-relay map ip 202.101.100.1 301
no shut
end

 

#####################################
方法一:RIP                        ##
在R1 R2 R3配置loopback接口运行RIPv2##
#####################################
R1

conf ter
interface Loopback0
ip address 1.1.1.1 255.255.255.0
no shutdown
router rip
version 2
network 1.1.1.1
network 202.101.100.0
no auto-summary
###############
R2

conf ter
interface Loopback0
ip address 2.2.2.2 255.255.255.0
no shutdown
router rip
version 2
network 2.2.2.2
network 202.101.100.0
no auto-summary
##############
R3

conf ter
interface Loopback0
ip address 3.3.3.3 255.255.255.0
no shutdown
router rip
version 2
network 3.3.3.3
network 202.101.100.0
no auto-summary

############################################################################
没有理由表原因是frame-relay不支持广播的多路访问链路而RIPv2是基于组播的协议##
             修改frame-relay底层配置加broadcast使其支持广播               ##
              默认水平分割已关闭所以可以R2、R3可以互学路由                ##
############################################################################
R1

conf ter
interface Serial0/0
frame-relay map ip 202.101.100.2 102 broadcast
frame-relay map ip 202.101.100.3 103 broadcast
#################
R2

interface Serial0/0
frame-relay map ip 202.101.100.1 201 broadcast
#################
R3

interface Serial0/0
frame-relay map ip 202.101.100.1 301 broadcast

 

###############################################
方法二:ospf                                 ##
在R1 R2 R3配置loopback接口运行OSPF           ##
###############################################
R1

conf ter
interface Loopback0
ip address 1.1.1.1 255.255.255.0
no shutdown
router ospf 1
network 1.1.1.1 0.0.0.0 area 0
network 202.101.100.0 0.0.0.0 area 0

###############
R2

conf ter
interface Loopback0
ip address 2.2.2.2 255.255.255.0
no shutdown
router ospf 1
network 2.2.2.2 0.0.0.0 area 0
network 202.101.100.2 0.0.0.0 area 0

##############
R3

conf ter
interface Loopback0
ip address 3.3.3.3 255.255.255.0
no shutdown
router ospf 1
network 3.3.3.3 0.0.0.0 area 0
network 202.101.100.3 0.0.0.0 area 0

###############################################################################################################
没有收到邻居的hello包,ospf邻居关系没有建立,1.由于frame-relay不支持广播的多路访问链路 2.由于ospf基于网络类型##
###############################################################################################################
情况1.frame-relay主接口上 默认ospf为非广播
采用单播指定邻居及优先级(DR BDR BDRother) 可单向指定也可双向
R1

conf ter
int s 0/0
ip ospf priority 10
router ospf 1
neighbor 202.101.100.2 priority 1
neighbor 202.101.100.3 priority

情况2.frame-relay子接口上 子接口为点到点的 ospf是点到点的类型
修改frame-relay底层配置加broadcast使其支持广播
ospf默认是non-broadcast手动修改ospf的网络类型为broadcast
R1

conf ter
interface Serial0/0
ip ospf network broadcast
ip ospf priority 100
frame-relay map ip 202.101.100.2 102 broadcast
frame-relay map ip 202.101.100.3 103 broadcast

#################
R2
conf ter
interface Serial0/0
ip ospf network broadcast
frame-relay map ip 202.101.100.1 201 broadcast
#################
R3

conf ter
interface Serial0/0
ip ospf network broadcast
frame-relay map ip 202.101.100.1 301 broadcast

情况3.frame-relay子接口上 子接口为点到多点的 ospf是非广播
在情况二的基础上可以把网络类型broadcast修改为Point-to-multipoint这样就无需选举DR BDR BDRORTHER

 

 

 

#####################
frame-reday底层配置##
R1为DR   子接口    ##
#####################
FRSWITCH

conf ter
fram sw
end

conf ter
interface Serial0/1
encapsulation frame-relay
frame-relay route 102 interface Serial0/2 201
frame-relay route 103 interface Serial0/3 301
frame-relay intf-type dce
clock rate 64000
no shut
end

conf ter
interface Serial0/2
encapsulation frame-relay
frame-relay route 201 interface Serial0/1 102
frame-relay intf-type dce
clock rate 64000
no shut
end

conf ter
interface Serial0/3
no ip address
encapsulation frame-relay
frame-relay route 301 interface Serial0/1 103
frame-relay intf-type dce
clock rate 64000
no shut
end

 

#############################################
定义子接口网络类型 类型一致都为点到点
R1

conf ter
interface Serial0/0
encapsulation frame-relay
no shutdown
exit

interface serial 0/0.12 point-to-point
ip address 202.101.12.1 255.255.255.0
no shutdown
frame-relay interface-dlci 102

interface serial 0/0.13 point-to-point
ip address 202.101.13.1 255.255.255.0
no shutdown
frame-relay interface-dlci 103

#################
R2

conf ter
interface Serial0/0
ip address 202.101.12.2 255.255.255.0
encapsulation frame-relay
frame-relay map ip 202.101.12.1 201 broadcast
ip ospf network point-to-point
no shut
end
#################
R3

conf ter
interface Serial0/0
ip address 202.101.13.3 255.255.255.0
encapsulation frame-relay
frame-relay map ip 202.101.13.1 301 broadcast
ip ospf network point-to-point
no shut
end

 

 

###############################################
在R1 R2 R3配置loopback接口运行OSPF
R1

conf ter
interface Loopback0
ip address 1.1.1.1 255.255.255.0
no shutdown
exit
router ospf 1
router-id 1.1.1.1
network 1.1.1.1 0.0.0.0 area 0
network 202.12.1.0 0.0.0.0 area 0

###############
R2

conf ter
router ospf 1
router-id 2.2.2.2
network 2.2.2.2 0.0.0.0 area 0
network 202.101.12.2 0.0.0.0 area 0

##############
R3

conf ter
router ospf 1
router-id 3.3.3.3
network 3.3.3.3 0.0.0.0 area 0
network 202.101.13.3 0.0.0.0 area 0

 

 

分享到:
评论

相关推荐

    SIMATIC C7控制系统:自动化任务的小型解决方案.pdf

    SIMATIC C7控制系统是西门子公司推出的一款自动化控制系统,它被广泛应用于各种自动化任务中,尤其是在小型的解决方案中表现出色。SIMATIC C7控制系统以其实用性、灵活性和稳定性,在业界享有很高的声誉。...

    微机原理课后习题答案

    - 当存储器的读出时间大于CPU要求的时间时,为了确保两者之间的同步,会利用REDAY信号插入一个Tw状态,即等待周期,以延长时间,让存储器有足够的时间完成读取操作。 ### 6. 半导体RAM的存储原理 - **静态RAM(SRAM...

    cC++资源 处理机调度

    printf("\n**** now REDAY Formation Condition:\n"); while (pr != NULL) { disp(pr); pr = pr->link; } } ``` - `destroy()`:当进程运行完毕后,释放该进程占用的内存空间。 ```c void destroy() { ...

    HP M1522nf 刷机出现 Ready 2 Download解决过程

    HP M1522nf 打印机出现 Ready 2 Download 解决过程 本文将详细介绍 HP M1522nf 打印机出现 Ready 2 Download 解决过程的知识点,涵盖了固件更新、驱动卸载、USB 模式选择、固件升级、打印机重启、设备添加等多个...

    jQuery为DOM动态追加事件的方法

    当然这样是不起作用的,因为在document reday后,.btn-open 这个元素根本还不存在呢,列表没绑定,事件当然也帮不上的!  然后是这样的: $(".table").on("click", ".btn-open", function () { al

    小红书服饰行业内容合作策略.pdf

    6. **创新玩法**:为了保持新鲜感和吸引力,品牌可以尝试“创新玩法”,如“惊喜盒子”、“搜索彩蛋”、“定制H5”等,结合热门IP或活动,如“REDay”和“时尚IP联动”,增强用户参与度和品牌互动。 7. **博主营销...

    【编号21】黑金系企业通用开场快闪PPT模板.pptx

    2. **时间提示**:“REDAY3212018”这样的元素可能代表着倒计时或者时间轴,强调即将开始的重要时刻,增加紧迫感和期待感。 3. **内容概览**:快速闪过的关键点可以提供一个整体的概览,让观众知道接下来将讨论的...

    微机接口技术:第一章 概述.ppt

    CPU通过REDAY信号与外部设备进行同步,确保数据传输不会出现冲突。 在CPU与I/O设备之间,信号分为数据、状态和控制三类。CPU通过接口与外部设备通信,接口负责转换和传递这些信号。数据信息通过数据总线(DB)传输,...

Global site tag (gtag.js) - Google Analytics