在本教程中,我们将通过具体的配置示例来演示如何在两台路由器之间设置PPP PAP认证。此配置适用于需要验证远程连接身份的安全网络环境。
DCE端配置:
首先,确保您的路由器处于特权执行模式:
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
为路由器命名并进入线路配置模式:
Router(config)#hostname R1
R1(config)#line vty 0 4
R1(config-line)#no ip domain-lookup
R1(config-line)#no exec-timeout
R1(config-line)#logging synchronous
R1(config-line)#exit
配置串行接口并启用PPP封装:
R1(config)#interface serial0/0
R1(config-if)#ip address 1.1.1.1 255.255.255.0
R1(config-if)#clock rate 64000
R1(config-if)#no shutdown
R1(config-if)#encapsulation ppp
R1(config-if)#exit
设置PAP认证用户名和密码:
R1(config)#username R1 password Cisco
R1(config)#interface serial0/0
R1(config-if)#ppp authentication pap
DTE端配置:
同样地,确保DTE端的路由器也处于特权执行模式,并进行相应的配置:
Router>enable
Router#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
为DTE端路由器命名并进行基本设置:
Router(config)#hostname R2
R2(config)#line vty 0 4
R2(config-line)#no ip domain-lookup
R2(config-line)#no exec-timeout
R2(config-line)#logging synchronous
R2(config-line)#exit
配置串行接口以匹配DCE端,并发送PAP认证请求:
R2(config)#interface serial0/0
R2(config-if)#ip address 1.1.1.2 255.255.255.0
R2(config-if)#no shutdown
R2(config-if)#encapsulation ppp
R2(config-if)#ppp pap sent-username R1 password Cisco
最后,从DTE端向DCE端发起ping测试,验证连接是否成功:
R2(config-if)#do ping 1.1.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 1.1.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 24/38/64 ms
以上步骤完成后,您应该能够看到两台路由器之间的PPP PAP认证已成功建立,并且可以通过IP地址相互访问。