Instalasi SNMP di Linux

Instalasi SNMP dan SNMPD

Buka terminal dan jalankan perintah berikut:

sudo apt update sudo apt install snmp snmpd -y

Edit file konfigurasi utama SNMP

sudo nano /etc/snmp/snmpd.conf

Masukan Konfigurasi Berikut :

agentAddress udp:{IP Address Server}:161

# Community string 'public', dengan akses read-only

rocommunity public {IP Address NMS}


# Identifikasi sistem

sysLocation {Lokasi Perangkat}

sysContact admin@example.com


Comments