实验16-1. 帧中继多点子接口

Ø    实验目的
通过本实验,读者可以掌握如下技能:
(1) 帧中继的基本配置
(2) 帧中继的静态映射
(3) 多点子接口的应用
Ø     实验拓扑

实验步骤
n  步骤1:配置R4模拟FRSW
R4(config)#no ip routing
R4(config)#frame-relay switching
//启用帧中继交换

R4(config)#int s1/0
R4(config-if)#no sh
R4(config-if)#encapsulation frame-relay
R4(config-if)#frame-relay intf-type dce
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay lmi-type cisco
R4(config-if)#frame-relay route 102 interface s1/1 201
R4(config-if)#frame-relay route 103 interface s1/2 301
//配置帧中继路由

R4(config)#int s1/1
R4(config-if)#no sh
R4(config-if)#encapsulation frame-relay
R4(config-if)#frame-relay lmi-type cisco
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay intf-type dce
R4(config-if)#frame-relay route 201 interface s1/0 102

R4(config)#int s1/2
R4(config-if)#no sh
R4(config-if)#encapsulation frame-relay
R4(config-if)#frame-relay lmi-type cisco
R4(config-if)#clock rate 64000
R4(config-if)#frame-relay intf-type dce
R4(config-if)#frame-relay route 301 interface s1/0 103

n  步骤2: DTE的配置
R1(config)#int s1/0
R1(config-if)#no ip address   //主接口下不需要IP 地址
R1(config-if)#encap frame-relay    //封装帧中继
R1(config-if)#no frame-relay inverse-arp //关闭自动映射
R1(config-if)#no shut

R1(config)#int s1/0.2 multipoint   //创建点到多点子接口
R1(config-subif)#ip add 192.168.1.1 255.255.255.0
R1(config-subif)#frame-relay map ip 192.168.1.2 102 broadcast  
R1(config-subif)#frame-relay map ip 192.168.1.3 103 broadcast
  //配置帧中继映射

【提示】可以使用“no interface s1/0.2”命令来删除子接口,然而需要重新启动路由器,该子接口才真正被删除。
R1(config-if)#frame-relay lmi-type cisco
//如果采用的是cisco 路由器且IOS 是11.2 及以后版本的,路由器可以自动适应LMI 的类型,则本步骤可不做。国内帧中继线路一般采用ansi 的LMI 信令类型,我们这里采用的是cisco。
  R2(config)#int s1/1
  R2(config-if)#ip address 192.168.1.2 255.255.255.0
R2(config-if)#encapsulation frame-relay
R2(config-if)#no shutdown
R2(config-if)#no frame-relay inverse-arp //关闭自动映射
R2(config-if)#frame-relay map ip 192.168.1.1 201 broadcast

R3(config)#int s1/2
R3(config-if)#ip address 192.168.1.3 255.255.255.0
R3(config-if)#encapsulation frame-relay
R3(config-if)#no shutdown
R3(config-if)#no frame-relay inverse-arp //关闭自动映射
R3(config-if)#frame-relay map ip 192.168.1.1 301 broadcast

n     步骤3:测试连通性
从各个路由器ping 其他路由器:
R1#ping 192.168.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/34/84 ms
R1#ping 192.168.1.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.2.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/27/96 ms

Ø    实验调试
   可以使用“show frame-relay map”、“show frame pvc”、“show frame lmi”等命令检查帧中继交换机是否正常
R1#show frame-relay map
Serial1/0.2 (up): ip 192.168.1.2 dlci 102(0x66,0x1860), static,
              broadcast,
              CISCO, status defined, active
Serial1/0.2 (up): ip 192.168.1.3 dlci 103(0x67,0x1870), static,
              broadcast,
              CISCO, status defined, active

从命令输出中可以得到的信息有:
n    192.168.1.2 映射到102
n    Static:表明是静态手工的
n    Broadcast:该PVC 允许广播包的通过
n    Active:该PVC 是激活的
该命令是很重要的一条命令,如果在映射表中不存在映射,路由器将无法通信。可以使用名命令“clear frame-relay inarp”命令清除无效的帧中继映射表。

R1#show frame-relay pvc

PVC Statistics for interface Serial1/0 (Frame Relay DTE)

Active     Inactive      Deleted       Static
  Local          2            0            0            0
  Switched       0            0            0            0
  Unused         4            0            0            0

DLCI = 102, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial1/0.2

input pkts 15            output pkts 15           in bytes 1560      
  out bytes 1560           dropped pkts 0           in pkts dropped 0         
  out pkts dropped 0                out bytes dropped 0         
  in FECN pkts 0           in BECN pkts 0           out FECN pkts 0         
  out BECN pkts 0          in DE pkts 0             out DE pkts 0         
  out bcast pkts 0         out bcast bytes 0         
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
  pvc create time 00:15:23, last time pvc status changed 00:14:23
          
DLCI = 103, DLCI USAGE = LOCAL, PVC STATUS = ACTIVE, INTERFACE = Serial1/0.2
          
  input pkts 21            output pkts 30           in bytes 2114      
  out bytes 3120           dropped pkts 0           in pkts dropped 0         
  out pkts dropped 0                out bytes dropped 0         
  in FECN pkts 0           in BECN pkts 0           out FECN pkts 0         
  out BECN pkts 0          in DE pkts 0             out DE pkts 0         
  out bcast pkts 0         out bcast bytes 0         
  5 minute input rate 0 bits/sec, 0 packets/sec
  5 minute output rate 0 bits/sec, 0 packets/sec
  pvc create time 00:15:35, last time pvc status changed 00:14:35
从命令输出中可以得到的信息有:
n    DLCI = 102:表明该PVC 的DLCI 为102
n    PVC STATUS = ACTIVE:表明PVC 的状态是激活的;若PVC STATUS = INACTIVE—表明远端路由器没正确配置;若PVC STATUS = DELETED—表明输入了错误的DLCI,该PVC 不存在。

R1#show frame-relay lmi

LMI Statistics for interface Serial1/0(Frame Relay DTE) LMI TYPE = ANSI
  Invalid Unnumbered info 0             Invalid Prot Disc 0
  Invalid dummy Call Ref 0              Invalid Msg Type 0
  Invalid Status Message 0              Invalid Lock Shift 0
  Invalid Information ID 0              Invalid Report IE Len 0
  Invalid Report Request 0              Invalid Keep IE Len 0
  Num Status Enq. Sent 103              Num Status msgs Rcvd 104
  Num Update Status Rcvd 0              Num Status Timeouts 0
  Last Full Status Req 00:00:17         Last Full Status Rcvd 00:00:17

从命令输出中可以得到的信息有:
n    LMI TYPE = ANSI:表明帧中继LMI 类型为ANSI;
n    Frame Relay DTE:这是帧中继DTE
n    Num Status Enq. Sent 103:表明路由器向帧中继交换机发送的LMI 状态查询消息的数量;
n    Num Status msgs Rcvd 104:表明路由器从帧中继交换机收到的LMI 状态信息数量

【提示】
在R1,R2,R3上运行RIP ,在R2上添加回环接口并宣告网段,在R3上查看是否能学到该网段
R2(config-if)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config)#router rip
R2(config-router)#net 2.0.0.0

注意:如果路由协议运行RIP,封装Frame-relay的物理接口默认关闭水平分割,multipoint默认启用水平分割
R3#show ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2

Gateway of last resort is not set

R    2.0.0.0/8 [120/1] via 192.168.2.1, 00:00:47, Serial1/2
C    192.168.1.0/24 is directly connected, Serial1/2

实验16-2:帧中继点到点子接口

Ø     实验目的
通过本实验,读者可以掌握点到点子接口的配置
Ø     实验拓扑

实验步骤
n      步骤1:R1配置如下
R1(config)#interface serial1/0
R1(config-if)#no ip address
R1(config-if)#encap frame-relay
R1(config-if)#no frame-relay inverse-arp
R1(config-if)#no shutdown
R1(config)#int s1/0.2 point-to-point      //创建点到点子接口
R1(config-subif)#ip address 192.168.1.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 102
R1(config)#int s1/0.3 point-to-point
R1(config-subif)#ip address 192.168.2.1 255.255.255.0
R1(config-subif)#frame-relay interface-dlci 103

R1(config)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.0
R1(config)#router rip
R1(config-router)#network 1.0.0.0
R1(config-router)#network 192.168.1.0
R1(config-router)#network 192.168.2.0

n     步骤2:R2配置如下:
R2(config)#interface serial 1/1
R2(config-if)#no ip address
R2(config-if)#encapsulation frame-relay
R2(config-if)#no frame-relay inverse-arp
R2(config-if)#no shutdown
R2(config-if)#exit
R2(config)#int s1/1.1 point-to-point
R2(config-subif)#ip address 192.168.1.2 255.255.255.0
R2(config-subif)#frame-relay interface-dlci 201
R2(config-subif)#exit
R2(config)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config)#router rip
R2(config-router)#network 2.0.0.0
R2(config-router)#network 192.168.1.0

n      步骤3:R3配置如下:
R3(config)#interface serial 1/2
R3(config-if)#no ip address
R3(config-if)#encapsulation frame-relay
R3(config-if)#no frame-relay inverse-arp
R3(config-if)#no shutdown
R3(config-if)#exit
R3(config)#interface serial 1/2.1 point-to-point
R3(config-subif)#ip address 192.168.2.3 255.255.255.0
R3(config-subif)#frame-relay interface-dlci 301
R3(config-subif)#exit
R3(config)#int lo0
R3(config-if)#ip add 3.3.3.3 255.255.255.0
R3(config)#router rip
R3(config-router)#network 3.0.0.0
R3(config-router)#network 192.168.2.0

Ø    实验调试
在各个路由器上检查路由表,注意路由的下一跳。
R3#show ip route
R3#show ip rou
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route

Gateway of last resort is not set

R    1.0.0.0/8 [120/1] via 192.168.2.1, 00:00:02, Serial1/2.1
R    2.0.0.0/8 [120/1] via 192.168.2.1, 00:00:02, Serial1/2.1
     3.0.0.0/24 is subnetted, 1 subnets
C       3.3.3.0 is directly connected, Loopback0
R    192.168.1.0/24 [120/1] via 192.168.2.1, 00:00:02, Serial1/2.1
C    192.168.2.0/24 is directly connected, Serial1/2.1

转载于:https://www.cnblogs.com/zhongguiyao/p/8012396.html

实验19:Frame-Relay相关推荐

  1. CCNA实验(9) -- Frame Relay

    帧中继的一些特点: 1.中小企业常用的广域网线路 2.通信费用较低 3.配置较为复杂 1.将Cisco路由器配置为帧中继交换机 2.帧中继基本配置.帧中继映射 3.在帧中继的链路上运行RIPv2 4. ...

  2. Packet Tracer 5.0建构CCNA实验攻略——帧中继Frame Relay

    Packet Tracer 5.0是一款非常不错的Cisco(思科)网络设备模拟器,对于想考思科初级认证(如CCNA)的朋友们来说,Packet Tracer 5.0是非常不错的选择.通常我们周围并没 ...

  3. PPP Over Frame Relay配置

    PPP Over Frame Relay配置 实验要求: 将R1,R2,R3 配置为帧中继网络,R2 模拟为帧中继交换机,要求实现R1 与R3 之间能互相通信且使 用PPP的CHAP 加密认证.将R1 ...

  4. Cisco PT模拟实验(19) 路由器的NAT功能配置

    Cisco PT模拟实验(19) 路由器的NAT功能配置 实验目的: 掌握NAT网络地址转换的原理及功能 掌握NAT地址映射和端口映射的配置方法 掌握广域网(WAN)接入技术的原理 实验背景: 情景一 ...

  5. 详解X.25、帧中继(Frame Relay)和ATM

    零.基础 我们都知道,交换系统可以分为电路交换.报文交换和分组交换,其中分组交换由于其高效率.开销小等特点更加适用于广域网而逐渐地发展起来. X.25.帧中继(FR).ATM 是流行的三种分组交换系统 ...

  6. 帧中继(Frame relay /FR)

    帧中继(Frame relay /FR) 基础知识 (1)OSI模型中,它处于第二层.它是一个二层协议. (2)一般使用星型拓扑 一台路由器作为Hub节点,多台路由器作为Spoke节点 它们之间连通需 ...

  7. 帧中继(Frame Relay)实验

    本实验还是在Cisco Packet Tracer里练习: 1.实验环境的搭建: 三台2811路由器,都加上HWIC-2T板卡,然后与Cloud0串口相连,如下图 2.Cloud0 DLCI及LMI配 ...

  8. 山东大学软件学院数据库实验1-9

    SDU 数据库系统实验 实验一 1-1创建test1_student表 1-2创建test1_course表 1-3创建teset1_student_course表 1-4表test1_student ...

  9. 实验19:光敏传感器+继电器=光控智能灯实验

    欧克 在讲实验前 先讲讲安全教育 我们做弱电实验是不是会买一些电池,如果电池随意丢 如果电池的+和-被导体连通,就会导电发热,最后可能引起火灾,所以大家一定重视合理放置电池哈,这也是我今天做实验突然想 ...

  10. 潘多拉 IOT 开发板学习(RT-Thread)—— 实验19 MQTT 协议通信实验(学习笔记)

    本文代码参考 RT-Thread 官方 BSP 文章目录 实验功能 代码剖析 rt_wlan_register_event_handler() mq_start() mqtt_sub_callback ...

最新文章

  1. 移动 Web 开发技巧
  2. Flutter开发之SimpleDialog对话框组件-1(40)
  3. 通过访问列表实现MAC地址绑定,实现包过滤
  4. cache 的设计与实现--转载
  5. kafka consumer配置拉取速度慢_Kafka分区分配策略(Partition Assignment Strategy)
  6. postman中设置关联点
  7. entity framework5 sqlserver2005 事务(TransactionScope)报未启用MSDTC错误解决办法
  8. 纪念品分组java_纪念品分组 ——易懂、简介、技巧(Java代码)
  9. Android——基于监听器的事件处理(转)
  10. kali linux工具词典,Kali字典神器—Crunch
  11. 3.6 矩阵秩的其它重要关系
  12. CAD如何使用全屏显示
  13. 世界上手机号码最长和最短的国家
  14. 计算机信息单位中1GB等于,1gb等于多少mb 1gb换算多少mb
  15. 假设检验的一般步骤(t检验/z检验)
  16. Kubernetes(七)Pod进阶之Downward API和PodPreset
  17. 软件测试(敏捷开发、迭代模型)
  18. 【翻译】GRAIL-手写识别 1
  19. Excel一键将批注内容显示,替换单元格内容
  20. 和我的清华室友经过20天得出的python爬取网站数据!!!

热门文章

  1. 聆听python之父诠释python的精神和文化
  2. 2017年最受欢迎的10个编程挑战网站,值得收藏!
  3. 是的,解禁了,是胜利还是嘲讽?
  4. 我和一位快递小哥的故事
  5. onSaveInstanceState onRestoreInstanceState
  6. mongodb 集群shard_MongoDB 分片集群环境搭建
  7. Openvswitch手册(2): OpenFlow Controller
  8. ActiveMQ下载与安装(Linux环境下进行)
  9. js setInterval() 用法示例
  10. Sublime Text (崇高文本)