Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Create an external SNMPv3 monitor

Dunkov
Nimbostratus
Nimbostratus

Hello guys!
We need to implement a specific combination of monitors for our backend servers: One https check and one SNMPv3 monitor.

Sad thing is that F5 predefined SNMP monitors do not support SNMPv3 so we have been conidering the option to use an external monitor in the form of bash script, performing the SNMPv3 query and based on the response we shall mark the backend as UP or DOWN...

Unfortunately I was not able to find much info on this topic.. Has anyone of you ever had the need to use SNMPv3 for monitoring pool members?

Cheers!
Dunkov

1 ACCEPTED SOLUTION

PeteWhite
F5 Employee
F5 Employee

Do this in two stages:

  1. Use snmpget on the BIG-IP to perform the snmpv3 get that you want to perform, and check the response
  2. Modify the example external monitors to perform the snmp get as per step 1

https://www.linickx.com/snmpwalk-v3-and-snmpget-v3-examples

 

View solution in original post

3 REPLIES 3

PeteWhite
F5 Employee
F5 Employee

Do this in two stages:

  1. Use snmpget on the BIG-IP to perform the snmpv3 get that you want to perform, and check the response
  2. Modify the example external monitors to perform the snmp get as per step 1

https://www.linickx.com/snmpwalk-v3-and-snmpget-v3-examples

 

JRahm
Community Manager
Community Manager

You can work that excellent info from @PeteWhite into the external monitor that is already templatized for you in the codeshare: https://community.f5.com/t5/codeshare/snmp-check-external-monitor/ta-p/285358

HTH...Jason

Dunkov
Nimbostratus
Nimbostratus

Thank you guys! The solutions suggested by @PeteWhite really helped us out!

Cheers!