PPP Authentication

PPP Authentication

Task 1: PAP authentication
# debug ppp authentication
# debug ppp negotiation
# terminal monitor --> khusus telnet

Router-SBY:
# sh int s0/1 
# conf t
(config)# hostname Router-SBY                                è nama router kita
(config)# user Router-JKT password ppp-jkt        è nama router & ppp password lawan 
(config)# int s0/1
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication pap
(config-if)# ppp pap sent-username Router-SBY password ppp-sby         è nama router & ppp password kita
(config-if)# no shut
(config-if)# end

Router-JKT:
# sh int s0/1 
# conf t
(config)# hostname Router-JKT                 è nama router kita
(config)# user Router-SBY password ppp-sby     è nama router & ppp password lawan
(config)# user Router-MDN password ppp-mdn
(config)# int s0/1
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication pap
(config-if)# ppp pap sent-username Router-JKT password ppp-jkt           è nama router & ppp password kita
(config-if)# no shut
(config)# int s0/0
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication pap
(config-if)# ppp pap sent-username Router-JKT password ppp-jkt           è nama router & ppp password kita
(config-if)# no shut
(config-if)# end

Router-MDN:
# sh int s1/0
 # conf t
(config)# hostname Router-MDN
(config)# user Router-JKT password ppp-jkt
(config)# int s1/0
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication pap
(config-if)# ppp pap sent-username Router-MDN password ppp-mdn
(config-if)# no shut
(config-if)# end
 # sh int serial 0/0/0
# sh int serial 0/0/1
  
Task 2: CHAP authentication
# debug ppp authentication
# terminal monitor --> khusus telnet 
JKT:
# conf t
(config)# hostname Router-JKT
(config)# user Router-SBY password ppp-training
(config)# user Router-MDN password ppp-training
(config)# int s0/1
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication chap
(config-if)# no ppp pap sent-username Router-JKT password ppp-jkt
(config-if)# no shut
(config-if)# int s0/0
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication chap
(config-if)# no ppp pap sent-username Router-JKT password ppp-jkt
(config-if)# no shut
(config-if)# end

Router-SBY:
# conf t
(config)# hostname Router-SBY
(config)# user Router-JKT password ppp-training              è nama router lawan & shared password
(config)# int s0/1
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication chap
(config-if)# no ppp pap sent-username Router-SBY password ppp-sby
(config-if)# no shut
(config-if)# end

Router-MDN:
# conf t
(config)# hostname Router-MDN
(config)# user Router-JKT password ppp-training
(config)# int s1/0
(config-if)# shut
(config-if)# encap ppp
(config-if)# ppp authentication chap
(config-if)# no ppp pap sent-username Router-MDN password ppp-training
(config-if)# no shut
(config-if)# end
# sh int serial 0/0
# sh int serial 0/1

Task 3: menghapus konfigurasi PPP authentication
Router-MDN:
# conf t
(config)# no user Router-JKT
(config)# int s1/0
(config-if)# encap hdlc
(config-if)# no ppp authentication chap
(config-if)# end

Router-SBY:
# conf t
(config)# no user Router-JKT
(config)# int s0/1
(config-if)# encap hdlc
(config-if)# no ppp authentication chap
(config-if)# end

0 Comment for "PPP Authentication"

Back To Top