Tuesday, December 5, 2017

Configuring PPP in Cisco Routers

This is the configuration of PPP (PAP) in Cisco Routers

 

  *** Mandalay Router ***

en
config t
username Mandalay password Mandalay
hostname Mandalay
int s0/0/0
ip address 223.200.100.1 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Naypyidaw password Naypyidaw
exit

int s0/0/1
ip address 223.200.100.9 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Yangon password Yangon
exit

router rip
version 2
network 223.200.100.0
end

copy run start

*** Naypyidaw Router ***

en
config t
username Naypyidaw password Naypyidaw
hostname Naypyidaw

int s0/0/0
ip address 223.200.100.2 255.255.255.252
no shut
encap ppp
ppp authentication pap
ppp pap sent-username Mandalay password Mandalay

exit


int s0/0/1
ip address 223.200.100.5 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Yangon password Yangon

exit

router rip
version 2
network 223.200.100.0
network 223.200.100.4
end
copy run start

*** Yangon Router ***

en
config t
username Yangon password Yangon
hostname Yagngon
int s0/0/1
ip address 223.200.100.6 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Naypyidaw password Naypyidaw

exit

int s0/0/0
ip address 223.200.100.10 255.255.255.252
no shut
encap ppp
ppp auth pap
ppp pap sent-username Mandalay password Mandalay

router rip
version 2
network 223.200.100.4

end 
copy run start

*** If you want to do testing of this configuration in Packet Tracer, please click here to download *.pkt file.


No comments:

Post a Comment