Dynamic Host Configuration Protocol DHCP Dynamic Host Configuration Protocol
DHCP Dynamic Host Configuration Protocol mengkonfigurasi Pemberian IP ke jaringan secara dinamis Konfigurasi ke PC Ip address Mask Gateway DNS (jika ada) Konfigurasi DHCP Scope: jangkauan IP Address Gateway: IP Address
Dimana Penempatan DHCP Server Windows 2000 server, Windows 2003 server Mikrotik Linux, dll Router Cisco Mikotik dll
Cara Kerja
How does it work? DHCP DHCP DHCP DHCP DHCP discover DHCP offer (1) (0) IP scope DHCP discover DHCP SERVER DHCP CLIENT MAC address DHCP offer DHCP DATABASE IP#, lease time (2) DHCP request DHCP CLIENT IP#, MAC address MAC address, IP#, lease time DHCP ack IP#, lease time
Konfigurasi DHCP Server Secara default, CISCO IOS telah mengaktifkan fitur DHCP server dan relay agent pada router. Akan tetapi, untuk contoh kasus bila service tersebut belum aktif maka harus memasukkan perintah "service dhcp" pada global configuration mode.
Untuk Router Tentukan alamat IP yang akan di-lease (diberikan secara dinamis ke network devices) dan alamat IP apa saja yang tidak akan di- lease. Alamat IP yang tidak akan di-lease alamat interface router yang berfungsi sebagai default gateway-nya network devices dalam jaringan komputer alamat server misalnya FTP server, HTTP server dsb.
Perintah Perintah untuk meng-exclude-kan alamat IP adalah "ip dhcp excluded-address x.x.x.x“ ip dhcp excluded-address 192.168.20.81 ip dhcp excluded-address 192.168.20.65 ip dhcp excluded-address 192.168.20.1 "ip dhcp pool xxx". (xxx = nama pool) Dilanjutkan dengan mengisi network yang akan di-lease-kan: " network x.x.x.x y.y.y.y" (x = alamat network, y = network mask) Dan diakhiri dengan pemberian default-gateway pada dhcp client: "default-router x.x.x.x " (x = alamat IP interface router yang dijadikan default-gateway)
Contoh ip dhcp pool PC0 network 192.168.20.0 255.255.255.192 Memberi nama pool dhcp network 192.168.20.0 255.255.255.192 Menentukan ip untuk jaringan dari 192.168.20.1 s.d 192.168.20.63 default-router 192.168.20.1 alamat IP interface router yang dijadikan default-gateway
Contoh R1#conf t R1#(config)host R1 R1#(config)int fa0/0 R1#(config-if)ip add 192.168.10.1 255.255.255.0 R1#(config-if)no shut R1#(config-if)exit R1#(config)ip dhcp pool IP10 R1#(dhcp-config)net 192.168.10.0 255.255.255.0 R1#(dhcp-config)default 192.168.10.1 R1#(dhcp-config)exit R1#(config)ip dhcp exc 192.168.10.1 192.168.10.10 R1#(config)exit R1#copy run start