Wednesday, April 19, 2017

Konfigurasi IP SLA di Router Cisco dan Send SNMP Trap ke NMS

Objective dari konfigurasi ini ialah konfigurasi IP SLA dari Router Cisco ke sebuah IP Address dengan teknik IP SLA Tracking dan statusnya tersebut dikirim ke NMS (Network Monitoring System).

Topologi yang digunakan ialah seperti dibawah ini.


















Keterangan Masing2 Nodes :


  • R1 : 192.168.1.111 (Ada Konfigurasi IP SLA ke IP R3 192.168.1.113)
  • R2 : 192.168.1.112 (Ada Konfigurasi IP SLA ke IP R3 192.168.1.113)
  • NMS : 192.168.1.102 (NMS Zabbix)


Notes :
  • Konfigurasi R1 pada dasarnya sama dengan Konfigurasi di R2, namun yang membedakan hanya IP Address saja.


Konfigurasi IP SLA di R1 ialah sebagai berikut ini.
ip sla monitor logging traps
ip sla monitor 1
 type echo protocol ipIcmpEcho 192.168.1.113
 timeout 2000
 frequency 10
ip sla monitor reaction-configuration 1 react timeout threshold-type immediate action-type trapOnly
ip sla monitor schedule 1 life forever start-time now

Konfigurasi SNMP Trap di R1 ialah sebagai berikut ini.
snmp-server community public RW
snmp-server enable traps rtr
snmp-server enable traps syslog
snmp-server host 192.168.1.102 version 2c RW
snmp-server host 192.168.1.102 version 2c public syslog

Cek IP SLA Statistik

R1#sh ip sla monitor statistics
Round trip time (RTT)   Index 1
        Latest RTT: NoConnection/Busy/Timeout
Latest operation start time: *00:00:17.327 UTC Fri Mar 1 2002
Latest operation return code: Timeout
Number of successes: 0
Number of failures: 2
Operation time to live: Forever

Contoh Trap yang Diterima NMS dari R1 (/tmp/zabbix_traps.tmp)

1. Ketika Interface R3 UP (No Shutdown)

22:32:27 2017/04/18 ZBXTRAP 192.168.1.111
PDU INFO:
  notificationtype               TRAP
  version                        1
  receivedfrom                   UDP: [192.168.1.111]:49542->[192.168.1.102]
  errorstatus                    0
  messageid                      0
  community                      public
  transactionid                  24
  errorindex                     0
  requestid                      16
VARBINDS:
  iso.3.6.1.2.1.1.3.0            type=67 value=Timeticks: (497724) 1:22:57.24
  iso.3.6.1.6.3.1.1.4.1.0        type=6  value=OID: iso.3.6.1.4.1.9.9.42.2.0.2
  iso.3.6.1.4.1.9.9.42.1.2.1.1.3.1 type=4  value=""
  iso.3.6.1.4.1.9.9.42.1.4.1.1.5.1 type=4  value=Hex-STRING: C0 A8 01 71
  iso.3.6.1.4.1.9.9.42.1.2.9.1.6.1 type=2  value=INTEGER: 2

2. Ketika R3 Down (Shutdown)

22:33:27 2017/04/18 ZBXTRAP 192.168.1.111
PDU INFO:
  notificationtype               TRAP
  version                        1
  receivedfrom                   UDP: [192.168.1.111]:49542->[192.168.1.102]
  errorstatus                    0
  messageid                      0
  community                      public
  transactionid                  24
  errorindex                     0
  requestid                      16
VARBINDS:
  iso.3.6.1.2.1.1.3.0            type=67 value=Timeticks: (497724) 1:22:57.24
  iso.3.6.1.6.3.1.1.4.1.0        type=6  value=OID: iso.3.6.1.4.1.9.9.42.2.0.2
  iso.3.6.1.4.1.9.9.42.1.2.1.1.3.1 type=4  value=""
  iso.3.6.1.4.1.9.9.42.1.4.1.1.5.1 type=4  value=Hex-STRING: C0 A8 01 71
  iso.3.6.1.4.1.9.9.42.1.2.9.1.6.1 type=2  value=INTEGER: 1


Done.....
Di catetan selanjutnya akan bahas cara konfigurasi SNMP Traps di Zabbix.
......

No comments:

Post a Comment