Tuesday, May 20, 2014

Simple DHCP with Cisco Packet Tracer

Mumpung lagi ga da kerjaan, iseng-iseng post lg... :)

Kali ini mau coba konfigurasi dhcp di Cisco Packet Tracer.
yang simple aja namanya juga newbie... #malus

oke mari kita ke topologi :


Confignya :

Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int g0/0
Router(config-if)#ip address 192.168.10.1 255.255.255.0
Router(config-if)#end
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#ip dhcp pool test
Router(dhcp-config)#network 192.168.10.0 255.255.255.0
Router(dhcp-config)#defa
Router(dhcp-config)#default-router 192.168.10.1
Router(dhcp-config)#end
Router#
%SYS-5-CONFIG_I: Configured from console by console

Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#ip dhcp e
Router(config)#ip dhcp excluded-address 192.168.10.1
Router(config)#
Router#

ini langsung copas aja dari packet tracertnya.... :v

ket:
test : nama pool
network : block network yang nanti diistribusikan buat ip dhcp, kalo config diatas karena pake subnet /24 berarti nanti yang distribusikan itu ipnya dari 192.168.10.1 s/d 192.168.10.254
default-router : ip gatewaynya
ip dhcp excluded-address 192.168.10.1 : ini maksudnya biar ip gatewaynya ga ikut2an didistribusikan, jadi di exclude.

sekarang coba cek di masing-masing pc, apakah sudah dapet ip dhcp :




Nah udh dapet tuh tiga-tiganya, selesai deh... hhe
sebenernya masih banyak option buat dhcp ini, tapi .. ya sesuai judul... "simple dhcp" berarti yang simple aja... :D

Oh ya, gimana kalo dhcpnya itu punya server sendiri, kayak gini :


Bisa pake ip helper, setting di interface routernya :

Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int g0/0
Router(config-if)#ip helper
Router(config-if)#ip helper-address 172.16.10.2
Router(config-if)#

oke, sekarang cek di masing-masing pc dah dapet belum ip dhcpnya :




Udah dapet tuh.. hehe... tapi kok mulainya dari 10?
iya soale tak setting di servernya mulai dari 10... :


Selesai juga... huft...
Sekian dan terima kasih, kalau ada kesalahan mohon dikoreksi..