1 实验目的
--本实验主要练习Frame-Relay — 点到点子接口配置。
2 实验环境和网络拓扑
3 实验步骤
3.1 绘制实验拓扑图
--首先利用Boson Network Designer 绘制好网络拓扑图。绘制好的拓扑图如图2所示:
其中,路由器1和路由器2之间的链路为FrameRelay链路,如图3所示:
并选择路由器1、2的连接接口,如图4所示。图5展示了基本帧中继配置中比较重要的一个参数的配置,即数据链路连接标识的配置:
3.2 基本参数配置
3.2.1配置路由器基本参数
--在绘制完成后,可以将保存并装入Boson Netsim中开始实验配置。通过Boson Netsim工具栏按钮“eRouters”选择“路由器1”,并按照下面的过程配置路由其的基本参数:
Router> enable
Router# config terminal
Router(config)# hostname Router1
Router1(config)# enable secret c1
Router1(config)# line vty 0 4
Router1(config-line)# pass c2
Router1(config-if)# end
Router1# copy run start
通过Boson Netsim工具栏按钮“eRouters”选择“路由器2”,并按照下面的过程进行帧中继基本配置:
Router> enable
Router# config terminal
Router(config)# hostname Router2
Router2(config)# enable secret c1
Router2(config)# line vty 0 4
Router2(config-line)# pass c2
Router2(config-if)# end
Router2# copy run start
通过Boson Netsim工具栏按钮“eRouters”选择“路由器3”,并按照下面的过程进行帧中继基本配置:
Router> enable
Router# config terminal
Router(config)# hostname Router3
Router3(config)# enable secret c1
Router3(config)# line vty 0 4
Router3(config-line)# pass c2
Router3(config-if)# end
Router3# copy run start
3.2.2 帧中继配置
--通过Boson Netsim工具栏按钮“eRouters”选择“路由器1”,并按照下面的过程进行帧中继配置:
Router1> enable
Router1# config t
Router1(config)# int serial 0
Router1(config-if)# encapsulation frame-relay
Router1(config-if)# frame-relay lmi ansi
Router1(config-if)# int s0.1 point-to-point
Router1(config-subif)# ip address 192.168.1.1 255.255.255.0
Router1(config-subif)# frame-relay interface-dlci 102
Router1(config-subif)# no shut
Router1(config-subif)# int s0.2 point-to-point
Router1(config-subif)# ip address 192.168.2.1 255.255.255.0
Router1(config-subif)# frame-relay interface-dlci 103
Router1(config-subif)# no shut
Router1(config-subif)# end
Router1# copy run start
通过Boson Netsim工具栏按钮“eRouters”选择“路由器2”,并按照下面的过程进行帧中继配置:
Router2# config t
Router2(config)# int Serial 0
Router2(config-if)# encapsulation frame-relay
Router2(config-if)# frame-relay lmi-type ansi
Router2(config-if)# ip address 192.168.1.2 255.255.255.0
Router2(config-if)# no fr inverse-arp
Router2(config-if)# fr interface-dlci 201
Router2(config-if)# no shut
Rouer2(config-if)# end
Router2# copy run start
通过Boson Netsim工具栏按钮“eRouters”选择“路由器3”,并按照下面的过程进行帧中继配置:
Router3# config t
Router3(config)# int Serial 0
Router3(config-if)# encapsulation frame-relay
Router3(config-if)# frame-relay lmi-type ansi
Router3(config-if)# ip address 192.168.2.2 255.255.255.0
Router3(config-if)# no fr inverse-arp
Router3(config-if)# fr interface-dlci 301
Router3(config-if)# no shut
Rouer3(config-if)# end
Router3# copy run start
3.2.3 测试帧中继
--通过Boson Netsim工具栏按钮“eRouters”选择“路由器1”,并按照下面的过程进行帧中继测试:
Router1> enable
Router1# show frame-relay map
Router1# show frame-relay pvc
Router1# show frame-relay lmi
Router1# ping 192.168.1.2
Router1# ping 192.168.2.2
测试的结果如下图所示:
|