CISCO-配置路由器的CHAP身份认证
一、拓扑图
二、IP地址规划表
设备 | 接口 | IP地址 |
R1 | S0/0/0 | 172.16.10.1/30 |
R1 | G0/0 | 192.168.10.254/24 |
R2 | S0/0/0 | 172.16.10.2/30 |
R2 | G0/0 | 192.168.20.254/24 |
pc0 | Fa0 | 192.168.10.1/24 |
pc1 | Fa0 | 192.168.20.1/24 |
三、配置(IP地址自己配置)
双向pap
1、创建用户(对等体设备名)
R1
R1(config)#username R2 password cisco
R2
R2(config)#username R1 password cisco
2、PPP封装技术,并使用PAP认证方式
R1
R1(config)#int s0/0/0
R1(config-if)#encapsulation ppp
R1(config-if)#ppp authentication pap
R1(config-if)#ppp pap sent-username R1 password cisco
R2
R2(config)#int s0/0/0
R2(config-if)#encapsulation ppp
R2(config-if)#ppp authentication pap
R2(config-if)#ppp pap sent-username R2 password cisco
3、配置静态路由
R1
R1(config)#ip route 192.168.20.0 255.255.255.0 172.16.10.2
R2
R2(config)#ip route 192.168.10.0 255.255.255.0 172.16.10.1
双向chap
1、创建用户(对等体设备名)
R1
R1(config)#username R2 password cisco
R2
R2(config)#username R1 password cisco
2、PPP封装技术,并使用chap认证方式
R1
R1(config)#int s0/0/0
R1(config-if)#encapsulation ppp
R1(config-if)#ppp authentication chap
R2
R2(config)#int s0/0/0
R2(config-if)#encapsulation ppp
R2(config-if)#ppp authentication chap
3、配置静态路由
R1
R1(config)#ip route 192.168.20.0 255.255.255.0 172.16.10.2
R2
R2(config)#ip route 192.168.10.0 255.255.255.0 172.16.10.1
标签:PAP,R1R1,CISCO,ip,username,CHAP,ppp,password,config From: https://blog.51cto.com/AriesTUT/6120116