Thursday, March 17, 2016

Configuring and Verifying PPP (Point to Point Protocol) on CISCO Routers

Enable PPP to an interface
=============================
On R1
=====
R1(config)#interface se0/0/0
R1(config-if)#encapsulation ppp


On R2
=====
R2config)#interface se0/0/0
R2config-if)#encapsulation ppp

===============================
Enable Authentication
===============================
on Router R1
===============
R1(config)#username R2 password cisco
R1(config)#interface se0/0/0
R1(config-if)#ppp authentication chap

on Router R2
=================
R2(config)#username R1 password cisco
R2(config)#int se0/0/0
R2(config-if)#ppp authentication chap


If you wnat to verify the PPP authentication
==================================================
R1#debug ppp authentication

No comments:

Post a Comment