帧中继(frame-relay)简介及配置详解

帧中继(Frame-Relay) 采用分组交换的方式 使用虚电路进行连接 提供面向对象的服务

帧中继的交换设备在用户路由器间建立虚电路,提供基于分组的二层通道。

相关术语

虚电路(virtual circuit,VC)

1、通过帧中继网络实现的逻辑连接叫虚电路

2、利用虚电路,帧中继允许多个用户共享带宽而无需使用多条专用物理网络,

虚电路以DLCI标识

DLCI(date link connect identity)数据链路连接标识 1、通常由帧中继服务提供商分配

2、帧中继DLCI仅具有本地意义(本地标识)

3、DLCI 0 ~ 15和1008 ~ 1023留作特殊用途,服务提供商分配的DLCI的范围通常为16 ~ 1007

LMI(本地管理接口)

1、是一种信令标准,用于管理链路连接和keeplive机制

2、终端路由器(DTE)和帧中继交换机(DCE)之间的帧中继设备每10秒(或大概)轮询一次网络。

3、Cisco路由器支持一下三种LMI:Cisco、Ansi、Q933A 帧中继的拓扑:星型结构、全互联、部分互联

帧中继的地址映射

帧中继提供的是基于分组交换的二层通道

1、帧中继的映射不是IP与mac的映射,而是IP与DLCI的映射,DLCI从运营商处获取,映射关系为远端IP

地址到本地DLCI之间的关系。(DLCI仅具有本地意义)

2、可以通过手动配置或 inverse-arp自动发现。

帧中继(用路由器模拟)配置

对于帧中继交换机: (三个接口都要配置)

frame-relay switching 将路由器模拟成帧中继交换机

int s0/1 进入serial 0/1接口

no ip address 帧中继交换机不需要IP地址

encapsulation frame-relay 设置接口的封装模式为frame-relay

no shutdown 开启接口

frame-relay intf-type dce 设置接口类型为DCE

clock rate 64000 设置始终频率为64000

frame-relay route 102 int s0/2 201 搭建虚电路,对于s0/1来说,来源的DLCI标识为102,发出的接口为serial0/2,目的 DLCI为201

frame-relay route 103 int s0/3 301 搭建虚电路,对于s0/1来说,来源的DLCI标识为103,发出的接口为serial0/3,目的 DLCI为301

int s0/2

no ip address

encapsulation frame-relay

no shutdown 开启接口

frame-relay intf-type dce 设置接口类型为DCE

clock rate 64000 设置始终频率为64000

frame-relay route 201 int s0/1 102 对于serial0/2来说,数据来源的DLCI为201,发出接口为serial0/1,目的DLCI为102

int s0/3

no ip address

encapsulation frame-relay

no shutdown 开启接口

frame-relay intf-type dce 设置接口类型为DCE

clock rate 64000 设置始终频率为64000

frame-relay route 301 int s0/1 103 对于serial0/3来说,数据来源的DLCI为301,发出接口为serial0/1,目的DLCI为103

R1的配置: (center) int s0/0

ip address 10.1.123.1 255.255.255.0 encapsulation frame-relay

no shutdown

no frame-relay inverse-arp 关闭inverse-arp

frame-relay map ip 10.1.123.2 102 broadcast 手动配置帧中继映射,对端IP为10.1.123.2,映射的虚电路的本地DLCI为102

frame-relay map ip 10.1.123.3 103 broadcast 手动配置帧中继映射,对端IP为10.1.123.3,映射的虚电路的本地DLCI为103

R2的配置: int s0/0

ip address 10.1.123.2 255.255.255.0 encapsulation frame-relay

no shutdown

no frame-relay inverse-arp 关闭inverse-arp

frame-relay map ip 10.1.123.1 201 broadcast 手动配置帧中继映射,对端IP为10.1.123.2,映射的虚电路的本地DLCI为201

R3的配置: int s0/0

ip address 10.1.123.3 255.255.255.0 encapsulation frame-relay

no shutdown

no frame-relay inverse-arp 关闭inverse-arp

frame-relay map ip 10.1.123.1 301 broadcast 手动配置帧中继映射,对端IP为10.1.123.3,映射的虚电路的本地DLCI为301

在帧中继上运行EIGRP

默认情况下inverse-arp为开启状态,且支持广播 若手动配置则必须加上broadcast关键字段。

使用rip时,要在中心路由器上的接口关闭水平分割,不然不能把从该接口学习到路由信息从该

接口再发送出去。 no ip split-horizon

使用eigrp时,要在中心路由器上的接口关闭水平分割 no ip split-horizon eigrp x(自治号)

联系客服:779662525#qq.com(#替换为@) 苏ICP备20003344号-4