Lab.23 CCNA Cara konfigurasi Point-to-Point Over Ethernet PPPoE with local authentication - PPPoE mungkin sudah tidak asing ditelinga kita. Point-to-point yang berjalan pada ethernet, itulah PPPoE. Paket PPP yang dibungkus menggunkaan frame ethernet.
Untuk konfigurasi PPPoE langkah pertama adalah membuat interface dialer, yang digunakan untuk melakukan dialing. PPPoE menggunakan autentikasi CHAP.Selanjutnya interface yang terhubung dengan PPPoE Server, diaktifkan fitur PPPoE clientnya. Jika authentikasi benar, otomatis interface pppoe mendapatkan IP Address dari PPPoE Server.
Konfigurasi ISP
Router#configure terminal 
Router(config)#hostname ISP
ISP(config)#username user1 password user1
ISP(config)#username user2 password user2
ISP(config)#ip local pool pppoePool1 172.17.1.10 172.17.1.100
ISP(config)#interface Virtual-Template 1
ISP(config-if)#ip unnumbered GigabitEthernet 0/0
ISP(config-if)#peer default ip address pool pppoePool1
ISP(config-if)#exit
ISP(config)#vpdn-group GROUP
ISP(config-vpdn)#accept-dialin 
ISP(config-vpdn-acc-in)#protocol pppoe 
ISP(config-vpdn-acc-in)#virtual-template 1
ISP(config-vpdn-acc-in)#exit
ISP(config)#interface GigabitEthernet 0/0
ISP(config-if)#pppoe enable
ISP(config-if)#ip address 172.17.1.1 255.255.255.0
Pengujian
# Untuk mengecek di ISP, 
# bisa dilihat menggunakan show ip interface brief
ISP#
%LINK-5-CHANGED: Interface Virtual-Access1.2, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Virtual-Access1.2, 
changed state to up
show ip inter brief 
Interface IP-Address OK? Method Status Protocol 
GigabitEthernet0/0 172.17.1.1 YES manual up up 
GigabitEthernet0/1 unassigned YES unset administratively down down 
GigabitEthernet0/2 unassigned YES unset administratively down down 
Virtual-Template1 unassigned YES TFTP down down 
Vlan1 unassigned YES unset administratively down down 
Virtual-Access1 unassigned YES unset up up 
Virtual-Access1.1 172.17.1.1 YES TFTP up up 
Virtual-Access1.2 172.17.1.1 YES TFTP up up


 
 
 
 
0 comments:
Post a Comment