Postingan

Menampilkan postingan dengan label Monitoring

Basic Install and Configure SNMP on Centos/RHEL

Dibawah ini adalah langkah-langkah untuk menginstall snmp di CentOS/RHEL server, pada tutorial ini  akan mengkonfigurasi snmp community agar perangkat bisa di monitoring dengan misalnya cacti,zabbix,nagios,dll. yum install net-snmp net-snmp-utils Berikut adalah contoh konfigurasi snmpd: # line 41: comment out #com2sec notConfigUser   default       public # line 74,75: uncomment and change # change to your local network for "mynetwork" section # change comunity name except public or private com2sec local localhost SECRET_NAME com2sec mynetwork 10.0.0.0/24 SECRET_NAME # line 78,79: uncomment and change group MyRWGroup v2c     local group MyROGroup v2c     mynetwork # line 85: uncomment view all    included  .1                     80 # line 93,94: uncomment and change access MyROGroup "" v2c   noauth  ...