1 实验目的
--本实验主要练习PPP和CHAP的配置,验证PPP和CHAP的工作原理。
2 实验环境和网络拓扑
3 实验步骤
3.1 绘制实验拓扑图
--首先利用Boson Network Designer 绘制好网络拓扑图。绘制好的拓扑图如图2所示:
其中,路由器1和路由器2之间的链路为Serial链路,如图3所示:
并选择路由器2的S0为DCE端,如图4所示。注意DCE端可以任意选择,但是,对于DCE端路由器的接口S0,不要忘记设置时钟信号(这里选择路由器2的S0接口作为DCE端)。
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-line)# int serial 0
Router1(config-if)# ip address 192.168.0.1 255.255.255.0
Router1(config-if)# no shut
Router1(config-if)# int eth 0
Router1(config-if)# ip address 202.198.1.1 255.255.255.0
Router1(config-if)# no shut
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-line)# int eth 0
Router2(config-if)# ip address 202.198.2.1 255.255.255.0
Router2(config-if)# no shut
Router2(config-if)# int Serial 0
Router2(config-if)# ip address 192.168.0.2 255.255.255.0
Router2(config-if)# clock rate 64000
Router2(config-if)# no shut
Router2(config-if)# end
Router2# copy run start
3.2.2 配置PC机基本参数
--通过Boson Netsim工具栏按钮“eStations”选择“主机1”,并按照下面的过程进行基本的主机配置:
建立回车键继续;
键入winipcfg,以图形化的界面为主机1配置IP地址、子网掩码和 缺省网关等参数,如图5所示;
在主机1的命令提示符下键入ping 202.198.1.1,测试主机1与路由器1 的连通性,如图6所示:
通过Boson Netsim工具栏按钮“eStations”选择“主机2”,并按照下面的过程进行基本的主机配置:
键入回车键继续;
以字符界面为主机2配置IP地址、子网掩码和缺省网关等参数:
在主机2的命令提示符下键入ipconfig /ip 202.198.2.2 255.255.255.0;
在主机2的命令提示符下键入ipconfig /dg 202.198.2.1;
在主机2的命令提示符下键入ping 202.198.2.1,测试主机2与路由器2
的连通性,连通性结果类似于图6。
3.2.3 配置、测试PPP
--选择路由器1并配置PPP,如下所示:
Router1> enable
Router1# config terminal
Router1(config)# int serial 0
Router1(config-if)# encapsulation ppp
Router1(config-if)# end
Router1# copy run start
选择路由器2并配置PPP,如下所示:
Router2> enable
Router2# config terminal
Router2(config)# int serial 0
Router2(config-if)# encapsulation ppp
Router2(config-if)# end
Router2# copy run start
选择路由器1并按照下面的步骤测试并观察PPP诊断输出:
Router1> enable
Router1# ping 192.168.0.2
Router1# debug ppp negotiation
Router1# config t
Router1(config)# int serial 0
Router1(config-if)# shut
Router1(config-if)# no shut
Router1(config-if)# end
Router1# undebug all
shut后的debug输出如图7所示:
no shut 之后的debug输出如图8所示:
3.2.4 配置、测试CHAP
-- 选择路由器1并配置CHAP,如下所示:
Router1> enable
Router1# config terminal
Router1(config)# username R2 password samepwd
Router1(config)# int serial 0
Router1(config-if)# ppp authentication chap
Router1(config-if)# end
Router1# copy run start
选择路由器2并配置CHAP,如下所示:
Router2> enable
Router2# config terminal
Router2# username R1 password samepwd
Router2(config)# int serial 0
Router2(config-if)# ppp authentication chap
Router2(config-if)# end
Router2# copy run start
选择路由器1并按照下面的步骤测试CHAP配置:
Router1> enable
Router1# show ip interface brief
Router1# ping 192.168.0.2
通过察看S0接口状态,可以知道接口已经启动,且其协议也已经启动。
3.2.5 配置、测试全网通
--在Router1和Router2上配置相应的静态路由或缺省路由来实现全网连通的目的,以达到复习静态路由和缺省路由配置的目的。
|