一、实验拓扑
二、实验要求
1、R5为ISP,只能进行IP地址配置,其所有地址均配为公有IP地址;
2、R1和R5间使用PPP的PAP认证,R5为主认证方;R2与R5之间使用ppp的CHAP认证,R5为主认证方;R3与R5之间使用HDLC封装;
3、R1、R2、R3构建一个MGRE环境,R1为中心站点,R1、R4间为点到点的GRE;
4.整个私有网络基本RIP全网可达;
5、所有Pc设置私有IP为源IP,可以访问R5环回,达到全网通。
三、实验思路
1、划分网段,按要求配置各设备的ip地址
2、
四、实验步骤
1、配置各个设备的ip地址
[R1-GigabitEthernet0/0/0]ip add 192.168.1.254 24
[R1-Serial4/0/0]ip add 15.1.1.1 24
[R2-GigabitEthernet0/0/0]ip add 192.168.2.254 24
[R2-Serial4/0/0]ip add 25.1.1.1 24
[R3-GigabitEthernet0/0/0]int s4/0/0
[R3-Serial4/0/0]ip add 35.1.1.3 24
[R4-GigabitEthernet0/0/0]ip add 45.1.1.2 24
[R4-GigabitEthernet0/0/1]ip add 192.168.4.1 24
[R5-Serial4/0/1]ip add 15.1.1.2 24
[R5-Serial3/0/1]ip add 25.1.1.2 24
[R5-Serial4/0/0]ip add 35.1.1.2 24
[R5-GigabitEthernet0/0/1]ip add 45.1.1.1 24
[R5-LoopBack0]ip add 5.5.5.5 24
2、完成R1和R5间使用PPP的PAP认证,R5为主认证方
[R5-aaa]local-user zhangtao password cipher zt123456
[R5-aaa]local-user zhangtao service-type ppp
[R5-aaa]quit
[R5]int s4/0/1
[R5-Serial4/0/1]ppp authentication-mode pap
测试结果:
3、完成R2与R5之间使用ppp的CHAP认证,R5为主认证方
[R2]int s4/0/0
[R2-Serial4/0/0]ppp chap user zhangtao
[R2-Serial4/0/0]ppp chap password cipher zt123456
[R2-Serial4/0/0]shutdown
[R5]int s3/0/1
[R5-Serial3/0/1]ppp authentication-mode chap
[R5-Serial3/0/1]
测试结果:
4、R3与R5之间使用HDLC封装
[R5]int s4/0/0
[R5-Serial4/0/0]link-protocol hdlc
Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N]
:y
[R3-Serial4/0/0]link-protocol hdlc
Warning: The encapsulation protocol of the link will be changed. Continue? [Y/N]
:y