码迷,mamicode.com
首页 > 其他好文 > 详细

帧中继

时间:2015-08-19 17:38:09      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:帧中继

Frame Relay:——MSTP

 广域网串口上运行的二层协议(分组交换),典型的非广播型多路访问(NBMA)

帧中继重要的几个知识点:

  1.PVC:虚拟电路,运营商内部做的虚拟通道,在实际中不需要自己去配置

  2.DLCI:数据链路标识,只有在本地才有意义

  3.LMI:管理接口,工作在帧中继交换机和路由器之间

地址映射:

     IP    DLCI     (DLCI是自己本地的)

帧中继本来是不支持广播的,所以不能运行动态路由协议,但是它可以伪广播:

  1:在配置的frame relay 后加broadcast

  2:默认下开启 frame relay inverse-arp

配置命令:

路由器模拟的帧中继交换机:

R11(config)#frame-relay switching 

R11(config)#int s1/1

R11(config-if)#no sh

R11(config-if)#en frame-relay 

R11(config-if)#clock rate 64000

R11(config-if)#frame-relay intf-type dce 

R11(config-if)#frame-relay route 100 int s1/0 200

R11(config-if)#frame-relay route 101 int s1/2 300

路由器的配置:

R13(config)#int s1/0

R13(config-if)#no ip add

R13(config)#int s1/0.2 point-to-point 

R13(config-subif)#ip add 1.1.1.1 255.255.255.0

R13(config-subif)#frame-relay interface-dlci 100

R13(config-fr-dlci)#no sh

R13(config)#int s1/0.3

R13(config)#int s1/0.3 point-to-point 

R13(config-subif)#ip add 2.2.2.1 255.255.255.0 

R13(config-subif)#frame-relay interface-dlci 101

直接在接口配置:

R15(config)#int s1/0

R15(config-if)#ip add 1.1.1.1 255.255.255.0

R15(config-if)#no sh

R15(config-if)#en frame-relay 

R15(config-if)#no frame-relay inverse-arp 

R15(config-if)#frame-relay map ip 1.1.1.2 204 broadcast 

R15(config-if)#frame-relay map ip 1.1.1.3 205 broadcast 

有关各种show 命令:

  1. R15#sh frame-relay map

  2. R11#sh frame-relay route 

帧中继

标签:帧中继

原文地址:http://llzzgg.blog.51cto.com/10535395/1685882

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!