侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

cisco路由器ppp认证

2023-01-20 星期五 / 0 评论 / 0 点赞 / 82 阅读 / 2523 字

R1(config)#int s1/0R1(config-if)#ip address 192.168.1.1 255.255.255.0R1(config-if)#clock rate 64000

.

                                             

R1(config)#int s1/0

R1(config-if)#ip address 192.168.1.1 255.255.255.0

R1(config-if)#clock rate 64000                              设置时钟频率

R1(config-if)#no shutdown

R1(config-if)#encapsulation ppp                            开启ppp认证

R1(config-if)#ppp pap sent-username R2 password cisco       认证用户及密码

 

 

 

R2(config)#username R2 password cisco

R2(config)#int s1/0

R2(config-if)#ip address 192.168.1.2 255.255.255.0

R2(config-if)#clock rate 64000

R2(config-if)#no shutdown

R2(config-if)#encapsulation ppp

R2(config-if)#ppp authentication pap                        开启pap认证服务

 

 

 

R3(config)#username R3 password cisco

R3(config)#int s1/0

R3(config-if)#ip address 192.168.1.1 255.255.255.0

R3(config-if)#clock rate 64000

R3(config-if)#no shutdown

R3(config-if)#encapsulation ppp

R3(config-if)#ppp authentication pap

R3(config-if)#ppp pap sent-username R4 password cisco

 

 

 

R4(config)#username R4 password cisco

R4(config)#int s1/0

R4(config-if)#ip address 192.168.1.2 255.255.255.0

R4(config-if)#clock rate 64000

R4(config-if)#no shutdown

R4(config-if)#encapsulation ppp

R4(config-if)#ppp authentication pap

R4(config-if)#ppp pap sent-username R3 password cisco


.

广告 广告

评论区