PPPoE Dynamic IP on Cisco - NETBLOG

PPPoE Dynamic IP on Cisco

PPPoE Dynamic IP on Cisco

Oke guys, kali ini kita masih membahas tentang PPPoE, namun perbedaannya pada lab kali ini router client akan mendapatkan IP secara otomatis. Untuk memperjelas langsung masuk ke labnya.

Topology
Sekarang kita akan buat DHCP server sekaligus PPPoE server di R1.

Konfigurasi di R1:
R1(config)#bba-group pppoe IDN
R1(config-bba-group)#virtual-template 10
R1(config-bba-group)#int fa0/0
R1(config-if)#no sh
R1(config-if)#pppoe enable group IDN
R1(config-if)#int virtual-templat 10
R1(config-if)#ip add 12.12.12.1 255.255.255.0
Sekarang kita konfigurasikan DHCP untuk interface virtual-template R2.
R1(config)#ip dhcp pool IDN
R1(dhcp-config)#netwo 12.12.12.0 255.255.255.0
R1(dhcp-config)#def 12.12.12.1
R1(dhcp-config)#int virtual-template 10
R1(config-if)#peer default ip add dhcp-pool IDN
Fungsi dari "peer default ip address dhcp-pool" kita mendefinisikan DHCP ingin diadvertise kemana dan dengan menginduk ke list atau pool DHCP mana.

Sekarang kita konfigurasikan DHCP client dan PPPoE client di R2.

Konfigurasi di R2:
R2(config)#int fa0/0
R2(config-if)#no sh
R2(config-if)#pppoe enable group IDN
R2(config-if)#pppoe-client dial-pool-number 10
R2(config-if)#int dial 18
R2(config-if)#ip add dhcp
R2(config-if)#en ppp
R2(config-if)#dialer pool 10
Setelah itu kita lihat apakah interface dialernya sudah mendapatkan IP atau belum.

R2(config-if)#do sh ip int br
Interface                  IP-Address      OK? Method Status                Protocol
FastEthernet0/0            unassigned      YES unset  up                    up
Serial0/0                  unassigned      YES unset  administratively down down
FastEthernet0/1            unassigned      YES unset  administratively down down
Serial0/1                  unassigned      YES unset  administratively down down
Serial0/2                  unassigned      YES unset  administratively down down
Serial0/3                  unassigned      YES unset  administratively down down
Serial0/4                  unassigned      YES unset  administratively down down
Serial1/0                  unassigned      YES unset  administratively down down
Serial1/1                  unassigned      YES unset  administratively down down
Serial1/2                  unassigned      YES unset  administratively down down
Serial1/3                  unassigned      YES unset  administratively down down
Virtual-Access1            unassigned      YES unset  up                    up
Virtual-Access2            unassigned      YES unset  up                    up
Dialer18                   12.12.12.2      YES DHCP   up                    up

Setelah itu lakukan test ping antar router.


R1#ping 12.12.12.2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 12.12.12.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 16/20/24 ms

Oke dengan ini lab yang kita lakukan BERHASILL!!!!
Selesaiii.......


See u on the next post..........







Previous
Next Post »