Friday, August 11, 2017

KONFIGURASI KONEKSI WAN dengan ENCAPSULASI PPP AUTHENTICATION PAP

TOPOLOGI


Konfigurasi interface
Konfigurasi interface R0
Router>
      >enable
Router#conf terminal
Router(config)#hostname R0
R0(config)#interface fa0/0
R0(config-if)#ip address 192.168.10.254 255.255.255.0
             #no shutdown
             #exit
R0(config)#interface serial 0/0/0
R0(config-if)#ip address 10.10.10.1 255.255.255.252
             #clock rate 64000
             #no shutdown
             #exit
R0(config)#exit
R0#write

Konfigurasi interface R1
Router>
Router>enable
Router#config terminal
Router(config)#hostname R1
R1(config)#intefacefa0/0
R1(config-if)#ip address 192.168.20.254 255.255.255.0
             #no shutdown
             #exit
R1(config)#interface serial 0/0/1
R1(config-if)#ip address 10.10.10.2 255.255.255.252
             #no shutdown
             #exit
R1(config)#exit
R1#write

Konfigurasi Routing Dynamic --> EIGRP

R0#configure terminal
R0(config)#router eigrp 10
R0(config-router)#network 192.168.10.0 255.255.255.0
                 #network 10.10.10.0 255.255.255.252
                 #no auto-summary
                 #end
R0#write

R1#configure terminal
R1(config)#router eigrp 10
R1(config-router)#network 192.168.20.0 255.255.255.0
                 #network 10.10.10.0 255.255.255.252
                 #no auto-summary
                 #end
R1#write



Konfigurasi PPP

R0#username router0 password router0
R0#configure terminal
R0(config)#username router0 password router0
R0(config)#interface serial 0/0/0
R0(config-if)#encapsulation ppp
             #ppp authentication pap
             #ppp pap sent-username router1 password router1
R0(config-if)#end
R0#write


R1#username router1 password router1
R1#configure terminal
R1(config)#username router1 password router1
R1(config)#interface serial 0/0/1
R1(config-if)#encapsulation ppp
             #ppp authentication pap
             #ppp pap sent-username router0 password router0
             #end
R1#write

No comments:

Post a Comment