Minggu, 04 Desember 2011

Day 2 - RIP - Convergence Timers

Hari kedua, kembali pada materi dari CCIE-RS Foundation topik siang ini adalah pembahasan routing RIP.

Lab 4 - RIP Convergence Timers
Lab ini mambahas bagaimana cara merubah convergence timres pada routing RIP.
Berikut ini topology yang digunakan :
Adapun initial konfig nya adalah sbb :

Router R1 :
interface Loopback0
 ip address 1.1.1.1 255.255.255.255
!
interface Serial0/0
 ip address 12.12.12.1 255.255.255.0
!
router rip
 version 2
 network 1.0.0.0 
 network 12.0.0.0
 no auto-summary

Router R2 :
interface Loopback0
 ip address 2.2.2.2 255.255.255.255
!
interface Serial0/0
 ip address 12.12.12.2 255.255.255.0
!
interface FastEthernet0/0
 ip address 23.23.23.2 255.255.255.0
!
router rip
 version 2
 network 2.0.0.0 
 network 12.0.0.0
 network 23.0.0.0
 no auto-summary

Router R3 :
interface Loopback0
 ip address 3.3.3.3 255.255.255.255
!
interface FastEthernet0/0
 ip address 23.23.23.3 255.255.255.0
!
router rip
 version 2
 network 3.0.0.0 
 network 23.0.0.0
 no auto-summary

Hasil cek default convergence timers :
R1#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 7 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240

Terlihat bahwa untuk update periodik adalah setiap 30 detik, invalid 180 detik, hold down 180 detik dan flush setelah 240 detik.

Bilamana antara R1 dan R2 updatenya ingin dibuat lebih cepat misalnya setiap 10 detik, berikut ini konfig di router R1 dan R2 :

Router R1 :
R1(config)#router rip
R1(config-router)#timers basic 10 60 60 80

Router R2 :
R2(config)#router rip
R2(config-router)#timers basic 10 60 60 80

Command "timers basic 10 60 60 80" mempunyai arti bahwa untuk update diset menjadi 10 detik, invalid 60 detik, hold down 60 detik dan flush setelah 80 detik.

Verifikasi sbb :
R2#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 60 seconds, hold down 60, flushed after 80

Terlihat bahwa untuk update, invalid, hold down dan flush timer sudah berubah sesuai dengan keinginan kita.

Bilamana link R2 dan R3 ingin tetap menggunakan timers default, maka konfigurasi tambahan pada R2 adalah sbb :

R2(config)#int fa0/0
R2(config-if)#ip rip advertise 30

Sehingga hasil verifikasi dirouter R3 adalah sbb :
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 29 seconds
  Invalid after 180 seconds, hold down 180, flushed after 240

Terlihat bahwa link R2 dan R3 tetap menggunakan default timers.

Tidak ada komentar:

Posting Komentar