SNMP v.2c
snmp-server enable
snmp-server host serverlab 10.33.32.31 poll community 0 ZFzBymAfuuVV version 2c
SNMP v.3You need to define a user , a group associated to that user, and the host s that are allowed to poll the firewall. You also need to enable the snmp-server when your done. snmp-server group prtg_monitoring v3 priv
snmp-server user prtg prtg_monitoring v3 auth md5 pass123 priv des word123
snmp-server host inside 10.113.32.161 poll version 3 prtg
snmp-server enable
Where 10.133.32.161 is the device allowed to poll the firewallpass123 is the auth passwordword123 is the encryption passwordpriv means that we will both encrypt the auth and the data being sent back and forth
and you can test with the following unix command: snmpwalk -v3 -u prtg -A pass123 -l authPriv -a MD5 -x DES -X word123 172.16.0.10 | more
where 172.16.0.16 is the IP of the firewall (assuming that you are polling from 10.133.32.161, otherwise your traffic will be filtered.
References: |