CCNA 之 十二 Frame Relay 帧中继
Fram Relay 帧中继
- 帧中继简介
- VC、LMI、DLCI的概念
- 帧中继映射
- Inverse-ARP的操作
- 帧中继配置
帧中继简介
分组交换广域网接入方式的一个代表,分组交换是以分组的形式在广域网的环境中穿梭的,
- 使用虚电路进行连接;
- 提供面向对象的服务;
介绍:
- 应用非常广泛的WAN(广域网)协议
- FR交换设备在用户路由器间建立虚电路,提供基于分组减缓的二层通道;
- 面向连接的数据链路技术
- 速率:56K - 2M
帧中继属于VC(虚电路):
- 通过帧中继网络实现的罗技连接叫做虚电路(VC);
- 利用虚电路,帧中继允许多个用户共享带宽,而无需使用多条专用物理链路,虚电路是以DLCI标识的;
DLCI(Data Link Connection Identifier) 数据链路连接标识:
- 通常由帧中继服务提供商(例如电话分公司)分配
- 帧中继DLCI仅具有本地意义
- DLCI 0 到 15 和 1008 到1023 留作特殊用途。服务提供商分配DCLI范围通常为 16 到1007
**帧中继术语LMI
LMI(本地管理接口)**
- 是一种信令标准,用于管理链路连接及keepalive的机制。
- 终端路由器(DTE)和帧中继交换机(DCE)之间的帧中继设备每10秒(或大概如此)轮训一次网络
- Cisco 路由器支持一下三种LMI:Cisco,Ansi,q933a
帧中继实验
根据下图拓扑,配置帧中继环境:
说明:
本次实验,使用路由器当做帧中继交换机,需要使用
frame-relay switching
命令,启动帧中继交换机,然后在进行配置;
先配置动态帧中继,是R1、R2、R3之间能够访问
首先配置帧中继交换机 R4配置:
R4>en
R4#conf t
R4(config)#frame-relay switching
R4(config)#int s 0/1
R4(config-if)#encapsulation frame-relay
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay intf-type dce
R4(config-if)#frame-relay route 102 interface s0/2 201
R4(config-if)#frame-relay route 103 interface s0/3 301
R4(config-if)#no sh
R4(config-if)#int s 0/2
R4(config-if)#encapsulation frame-relay
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay intf-type dce
R4(config-if)#frame-relay route 201 interface s0/1 102
R4(config-if)#int s 0/3
R4(config-if)#encapsulation frame-relay
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay intf-type dce
R4(config-if)#frame-relay route 301 interface s0/1 103
R4(config-if)#no sh
查看R4帧中继配置:
R4(config)#end
R4#show frame-relay route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/1 102 Serial0/2 201 inactive
Serial0/1 103 Serial0/3 301 inactive
Serial0/2 201 Serial0/1 102 inactive
Serial0/3 301 Serial0/1 103 inactive
说明:
可以到,所有s0/1 s0/2 s0/3 的帧中继配置都是
inactive
,毕竟其他的路由器都没有配置;
R1配置:
R1>en
R1#conf t
R1(config)#int s 0/0
R1(config-if)#encapsulation frame-relay
R1(config-if)#ip add 10.0.0.1 255.255.255.0
R1(config-if)#no sh
R2配置:
R2>en
R2#conf t
R2(config)#int s 0/0
R2(config-if)#encapsulation frame-relay
R2(config-if)#ip add 10.0.0.2 255.255.255.0
R2(config-if)#no sh
R3配置:
R3>en
R3#conf t
R3(config)#int s 0/0
R3(config-if)#encapsulation frame-relay
R3(config-if)#ip add 10.0.0.3 255.255.255.0
R3(config-if)#no sh
配置好后,再次查看R4帧中继交换机中的状态:
R4#show frame-relay route
Input Intf Input Dlci Output Intf Output Dlci Status
Serial0/1 102 Serial0/2 201 active
Serial0/1 103 Serial0/3 301 active
Serial0/2 201 Serial0/1 102 active
Serial0/3 301 Serial0/1 103 active
此时的状态都是active
;
测试ping
一下:
R1测试:
R1#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/22/48 ms
R1#ping 10.0.0.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/24/80 ms
R2测试:
R2#ping 10.0.0.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/20/44 ms
R2#ping 10.0.0.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.3, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R3测试:
R3#ping 10.0.0.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/16/40 ms
R3#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
结论:
1、可以从R1通向R2和R3
2、R2和R3之间无法通信
R2和R3之间的通信问题稍后解决
再配置静态的帧中继:
需要分别修改R1、R2和R3的配置;如下
R1静态帧中继修改:
R1(config)#int s 0/0
R1(config-if)#no frame-relay inverse-arp
R1(config-if)#frame-relay map ip 10.0.0.2 102 broadcast
R1(config-if)#frame-relay map ip 10.0.0.3 103 broadcast
R1(config-if)#end
R1#show fram
*Mar 1 07:07:04.150: %SYS-5-CONFIG_I: Configured from console by console
R1#show fram
R1#show frame-relay map
Serial0/0 (up): ip 10.0.0.2 dlci 102(0x66,0x1860), static,
broadcast,
CISCO, status defined, active
Serial0/0 (up): ip 10.0.0.3 dlci 103(0x67,0x1870), static,
broadcast,
CISCO, status defined, active
R2静态帧中继修改:
R2(config)#int s 0/0
R2(config-if)#no frame-relay inverse-arp
R2(config-if)#frame-relay map ip 10.0.0.1 201 broadcast
R2(config-if)#end
R2#show frame-relay
*Mar 1 07:09:09.882: %SYS-5-CONFIG_I: Configured from console by console
R2#show frame-relay map
Serial0/0 (up): ip 10.0.0.1 dlci 201(0xC9,0x3090), static,
broadcast,
CISCO, status defined, active
R3静态帧中继修改:
R3(config)#int s 0/0
R3(config-if)#no frame-relay inverse-arp
R3(config-if)#frame-relay map ip 10.0.0.1 301 broadcast
R3(config-if)#end
R3#show frame-relay
*Mar 1 07:09:54.534: %SYS-5-CONFIG_I: Configured from console by console
R3#show frame-relay map
Serial0/0 (up): ip 10.0.0.1 dlci 301(0x12D,0x48D0), static,
broadcast,
CISCO, status defined, active
此时就配置好了,下面进行测试:
R1测试:
R1#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/28/72 ms
R1#ping 10.0.0.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/30/92 ms
R2测试:
R2#ping 10.0.0.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/24/84 ms
R2#ping 10.0.0.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.3, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
R3测试:
R3#ping 10.0.0.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/24/52 ms
R3#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
.....
Success rate is 0 percent (0/5)
测试结果和动态是一样的,那么下面解决两个问题:
1、R2和R3的通信
2、不能ping通自己
解决:
R2配置:
R2(config)#int s 0/0
R2(config-if)#frame-relay map ip 10.0.0.2 201 broadcast
R2(config-if)#frame-relay map ip 10.0.0.3 201 broadcast
R2(config-if)#end
R2#show frame-relay map
Serial0/0 (up): ip 10.0.0.1 dlci 201(0xC9,0x3090), static,
broadcast,
CISCO, status defined, active
Serial0/0 (up): ip 10.0.0.2 dlci 201(0xC9,0x3090), static,
broadcast,
CISCO, status defined, active
Serial0/0 (up): ip 10.0.0.3 dlci 201(0xC9,0x3090), static,
broadcast,
CISCO, status defined, active
R3配置:
R3(config)#int s 0/0
R3(config-if)#frame-relay map ip 10.0.0.3 301 broadcast
R3(config-if)#frame-relay map ip 10.0.0.2 301 broadcast
R3(config-if)#end
R3#show frame-relay map
Serial0/0 (up): ip 10.0.0.1 dlci 301(0x12D,0x48D0), static,
broadcast,
CISCO, status defined, active
Serial0/0 (up): ip 10.0.0.2 dlci 301(0x12D,0x48D0), static,
broadcast,
CISCO, status defined, active
Serial0/0 (up): ip 10.0.0.3 dlci 301(0x12D,0x48D0), static,
broadcast,
CISCO, status defined, active
此时就解决了R2和R3的通信和ping自己的问题了,下面进行测试:
R2测试:
R2#ping 10.0.0.02
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/34/108 ms
R2#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/28/76 ms
R3测试:
R3#ping 10.0.0.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/38/120 ms
R3#ping 10.0.0.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.0.0.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/36/104 ms
解决
帧中继环境中的动态路由协议 问题1
- 问题1:帧中继是典型的NBMA网络,也就是非广播多路访问网络,并不支持广播,然而包括RIP、EIGRP、OSPF等在内的路由协议都需要组播或广播的支持,那么在帧中继环境下运行上述动态路由协议,会否有问题?
- 帧中继虽然不支持广播,但是可以”模拟“广播的操作,做法即是通过向所有PVC发送一份数据的靠背。
- 在建立PVC的时候,通过invers-arp自动建立的映射,默认就开启上述特性;如果是手工配置映射,则必须加上broadcast关键字;
CCNA 之 十二 Frame Relay 帧中继的更多相关文章
- CCNP路由实验之十二 MPLS
个.第3个数据包„„同样的操作.包含查询路由表.重写MAC地址,CRC校验等. 系列路由器.或者12000系列路由器. Netflow switching 通过一种标准的交换机制,处理了流的第一 ...
- 第三十二篇 -- CreateFile、ReadFile、WriteFile
一.CreateFile 这是一个多功能的函数,可打开或创建文件或者I/O设备,并返回可访问的句柄:控制台,通信资源,目录(只读打开),磁盘驱动器,文件,邮槽,管道. 函数原型: HANDLE WIN ...
- 无废话ExtJs 入门教程十二[下拉列表联动:Combobox_Two]
无废话ExtJs 入门教程十二[下拉列表联动:Combobox_Two] extjs技术交流,欢迎加群(201926085) 不管是几级下拉列表的联动实现本质上都是根据某个下拉列表的变化,去动态加载其 ...
- NeHe OpenGL教程 第三十二课:拾取游戏
转自[翻译]NeHe OpenGL 教程 前言 声明,此 NeHe OpenGL教程系列文章由51博客yarin翻译(2010-08-19),本博客为转载并稍加整理与修改.对NeHe的OpenGL管线 ...
- 疯狂JAVA讲义---第十二章:Swing编程(五)进度条和滑动条
http://blog.csdn.net/terryzero/article/details/3797782 疯狂JAVA讲义---第十二章:Swing编程(五)进度条和滑动条 标签: swing编程 ...
- 201771010126 王燕《面向对象程序设计(Java)》第十二周学习总结
实验十二 图形程序设计 实验时间 2018-11-14 1.实验目的与要求 (1) 掌握Java GUI中框架创建及属性设置中常用类的API: 创建空框架 . 在Java中,常采用框架(Frame) ...
- 马凯军201771010116《面向对象与程序设计Java》第十二周学习总结
一.理论与知识学习部分 Java的抽象窗口工具箱(Abstract Window Toolkit, AWT)包含在java.awt包中,它提供了许多用来设计GUI的组件类和容器类. 大部分AWT组件都 ...
- 刘志梅2017710101152.《面向对象程序设计(java)》第十二周学习总结
实验十二 图形程序设计 实验时间 2018-11-14 1.理论知识 (1) 基本AWT库采用将处理用户界面元素的任务委派给每个目标平台的本地GUI工具箱的方式,由本地GUI工具箱负责用户界面元素的 ...
- 201771010134杨其菊《面向对象程序设计java》第十二周学习总结
第十二周学习总结 第一部分:理论知识 内容概要: AWT与Swing简介:框架的创建:图形程序设计: 显示图像: 1.AWT组件: 2.Swing 组件层次关系 3 .AWT与Swing的关系:大部分 ...
随机推荐
- Mustache 入门教程
Mustache 简介: Mustache 是一个轻逻辑模板解析引擎,它的优势在于可以应用在 Javascript.PHP.Python.Perl 等多种编程语言中. Mustache 语法: Mus ...
- Unity调用Android相册
最近有一个项目有这个需求,让用户上传自己的交易凭证的截图,之前因为对调Android原生的东西不太熟悉,就先放了一边 因为项目已经上线,只不过是该功能未开放而已,那么现在为什么要写这篇博客呢,是因为. ...
- 关于生成器generator
generator:个人认为是产生值的,和列表生成式类似,但是比列表生成式更加节省空间 我们平常自己构造的函数中,一般返回值时都会使用return,在generator中,我们使用的是yield yi ...
- 有关logistic(sigmoid)函数回归
在神经网络中,经常用到sigmoid函数,y = 1 / (1+e-x) 作为下一级神经元的激活函数,x也就是WX(下文,W以θ符号代替)矩阵计算结果. 这个函数通常用在进行分类,通常分为1或0的逻辑 ...
- 安装requests遇到的坑
通过pip install requests命令安装,报错,提示“SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed”.百思不得其解,后 ...
- 网络安全-主动信息收集篇第二章SNMP扫描
SNMP扫描: snmp在中大型企业中可以用来做网络管理和网络监控的使用,当开启了snmp简单网络管理后,那么客户机就可以通过这个协议向该设备发送snmp协议内容可以轻松查询到目标主机的相关信息. 以 ...
- Codeforces 1183F - Topforces Strikes Back
Div. 3的题,竟然卡了好久,自闭.jpg 好像我的思路不太一样呢QAQ 首先注意到,如果一个数是另一个的因子,那它肯定不会出现在答案中. 我们先把所有数排序,然后对每个数,我们要往前再找两个数(或 ...
- CSPS模拟 83
紧张起来,集训已过半! 稍微有点惆怅.. T1 什么玩意,神仙树形dp? 没思路,先去T2. (遇到难题就绕过去是真的爽啊) T2 $n^2$暴力很好打 组合数是不是有规律? 找一下规律,发现十分眼熟 ...
- 二、netcore跨平台之 Linux部署nginx代理webapi
上一章,我们讲了在linux上安装netcore环境,以及让netcore在linux上运行. 这一章我们开始讲在linux上配置nginx,以及让nginx反向代理我们的webapi. 什么ngin ...
- lqb 基础练习 特殊回文数
基础练习 特殊回文数 时间限制:1.0s 内存限制:512.0MB 问题描述 123321是一个非常特殊的数,它从左边读和从右边读是一样的. 输入一个正整数n, 编程求所有这样的五位和六位 ...