- Update 30s, Router Rip melakukan update secara periodik dalam waktu 30s
- Invalid 180s, sebuah route akan invalid / dinyatakan inaccessible dan diadvertise unreachable apabila selama 180s router tidak menerima update mengenai route tersebut. namun route tetap ada pada routing tabel.
- Holdown 180s, apabila nilai matric sebuah route berubah maka router tidak akan menerima update dari router lain selama waktu holddown ini
- Flush 240s, apabila selama 240s router tetap tidak mendapatkan update mengenai sebuah route maka route tersebut akan benar-benar dihapus dari routing tabel.
pada lab ini kita akan mempelajari mengubah timer basic pada RIP
topologi yang digunakan :
kita akan rubah default update time pada R1 ke R2 menjadi 10s sedangkan R2 ke R3 tetap ke defaultnya yaitu 30s.
Konfigurasi R1
R1(config)#int f0/0
R1(config-if)#ip add 12.12.12.1 255.255.255.0
R1(config-if)#no shut
R1(config-if)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.255
R1(config-if)#router rip
R1(config-router)#version 2
R1(config-router)#network 0.0.0.0
R1(config-router)#no auto-summary
Konfigurasi R2
R2(config)#int f0/0
R2(config-if)#ip add 12.12.12.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int f0/1
R2(config-if)#ip add 23.23.23.2 255.255.255.0
R2(config-if)#no shut
R2(config-if)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.255
R2(config-if)#router rip
R2(config-router)#version 2
R2(config-router)#network 0.0.0.0
R2(config-router)#no auto-summary
Konfigurasi R3
R3(config)#int f0/0
R3(config-if)#ip add 23.23.23.3 255.255.255.0
R3(config-if)#no shut
R3(config-if)#int lo0
R3(config-if)#ip add 3.3.3.3 255.255.255.255
R3(config-if)#router rip
R3(config-router)#version 2
R3(config-router)#network 0.0.0.0
R3(config-router)#no auto-summary
pastikan terlebih dahulu dengan ping ke IP Loopback masing-masing router berhasil.
kemudian kita akan rubah basic timernya menggunakan perintah "timer basic
<update><invalid><hold><flush>"
R1(config-router)#timer basic ?
<0-4294967295> Interval between updates
R1(config-router)#timer basic 10 ?
<1-4294967295> Invalid
R1(config-router)#timer basic 10 180 ?
<0-4294967295> Holddown
R1(config-router)#timer basic 10 180 180 ?
<1-4294967295> Flush
R1(config-router)#timer basic 10 180 180 240
R2(config-router)#timer basic 10 180 180 240
sampai disini apabila update time nya berbeda maka akan menimbulkan masalah neighboring, R3 update time nya masih default yaitu 30s, untuk itu perlu kita spesifikasikan R2-R3
R2(config-router)#int f0/1
R2(config-if)#ip rip advertise 30
kita bisa menggunakan command "show ip protocol" untuk melihat apakah konfigurasi sudah berhasil
R1(config-router)#do show ip protocol
Routing Protocol is "rip"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Sending updates every 10 seconds, next due in 6 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
R2(config-if)#do show ip protocol
Routing Protocol is "rip"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Sending updates every 10 seconds, next due in 8 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
terlihat untuk update time R1 dan R2 sudah berubah menjadi 10s, bagaimana dengan R3
R3#show ip protocol
Routing Protocol is "rip"
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Sending updates every 30 seconds, next due in 26 seconds
Invalid after 180 seconds, hold down 180, flushed after 240
update timenya masih default yaitu 30s.
sekarang test ping ke ip loopback router
R1(config-router)#do ping 2.2.2.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 2.2.2.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 4/6/8 ms
R1(config-router)#do ping 3.3.3.3
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 8/18/52 ms