Konfigurasi VOIP di Cisco Packet Tracer

voip

Secara umum pasti pembaca telah mengetahui apa itu VOIP. Kebanyakan perusahaan modern sudah menggunakan VOIP untuk layanan teleponnya. Pada artikel ini saya akan berikan tutorial sederhana membangun VOIP menggunakan Cisco Packet Tracer. Untuk lebih detail pada konfigurasi atau totorial ini, pembaca dapat melakukan eksplorasi sendiri. Untuk konfigurasi VOIP ini silahkan gunakan router seri 2811.

Konfigurasi

1. Tentukan VLAN untuk voice.

S1(config)# $ int range fa0/1-24
S1(config-if)# switchport voice vlan 1

2. Setting DHCP pada router.

R1(config)# ip dhcp pool voice
R1(dhcp-config)# network 192.168.1.0 255.255.255.0
R1(dhcp-config)# default-router 192.168.1.1
R1(dhcp-config)# option 150 ip 192.168.1.1

R1(config)# ip dhcp excluded-address 192.168.1.1

R1(config)# int fa0/0
R1(config-if)# ip add 192.168.1.1 255.255.255.0
R1(config-if)# no sh

3. Konfigurasi VOIP service-nya dengan asumsi maksimal terdapat 3 nomor telepon.

R1(config)# telephony-service
R1(config-telephony)# max-ephones 3
R1(config-telephony)# max-dn 3
R1(config-telephony)# ip source-address 192.168.1.1 port 2000

R1(config-telephony)# ephone-dn 1
R1(config-ephone-dn)# number 111
R1(config-telephony)# ephone-dn 2
R1(config-ephone-dn)# number 222
R1(config-telephony)# ephone-dn 3
R1(config-ephone-dn)# number 333

R1(config-telephony)# auto assign 1 to 3

Konfigurasi di atas akan membuat IP Phone mendapatkan nomor secara otomatis ketika disambungkan ke switch. Urutan nomor yang didapatkan tergantung pada IP Phone mana yang tersambung terlebih dahulu secara berurutan. Yang tersambung pertama kali akan mendapatkan nomor 111, yang kedua mendapatkan nomor 222 dan yang ketika mendapatkan nomor 333.

Jika ingin melakukan assignment urutan secara manual, maka konfigurasinya:

R1(config)# telephony-service
R1(config-telephony)# max-ephones 3
R1(config-telephony)# max-dn 3
R1(config-telephony)# ip source-address 192.168.1.1 port 2000

R1(config-telephony)# ephone-dn 1
R1(config-ephone-dn)# number 111
R1(config-telephony)# ephone-dn 2
R1(config-ephone-dn)# number 222
R1(config-telephony)# ephone-dn 3
R1(config-ephone-dn)# number 333

R1(config-telephony)# ephone 1
R1(config-ephone)# button 1:1
R1(config-telephony)# ephone 2
R1(config-ephone)# button 1:3

Konfigurasi tersebut akan membuat urutan berubah, yang tersambung pertama kali akan mendapatkan nomor 111 dan yang kedua mendapatkan nomor 333. Kemudian lakukan tes dengan melakukan panggilan antar nomor.

Kemudian jika ingin melakukan pemberian nomor secara manual pada telepon, maka kita harus mengetahui mac address dari masing-masing IP Phone. Konfigurasinya seperti di bawah ini:

R1(config)# telephony-service
R1(config-telephony)# max-ephones 3
R1(config-telephony)# max-dn 3
R1(config-telephony)# ip source-address 192.168.1.1 port 2000

R1(config-telephony)# ephone-dn 1
R1(config-ephone-dn)# number 111
R1(config-telephony)# ephone-dn 2
R1(config-ephone-dn)# number 222
R1(config-telephony)# ephone-dn 3
R1(config-ephone-dn)# number 333

R1(config-telephony)# ephone 1
R1(config-ephone)# mac-address 0090.0C7E.665B
R1(config-ephone)# mac-address type 7960
R1(config-ephone)# button 1:1

R1(config-telephony)# ephone 2
R1(config-ephone)# mac-address 0030.F243.ADC11
R1(config-ephone)# mac-address type 7960
R1(config-ephone)# button 1:2

Demikian tutorial ini saya tulis, jika ada kesalahan atau koreksi silahkan berkomentar di bawah. Terima kasih.

1 thought on “Konfigurasi VOIP di Cisco Packet Tracer

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.