Regarding to Juniper issue

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
siriideepak
Posts: 78
Joined: Tue Feb 28, 2012 7:21 am

Regarding to Juniper issue

Post by siriideepak »

Hi,
I need to monitor juniper firewall. i have taken a plugin for this check_snmp_juniper_sa.sh
When i run this from terminal it shows the following error

#./check_snmp_juniper_sa.sh -H 192.168.10.3 -V 2c -M disk -C =snmpDGRO -w 80 -c 90
Error - Not numeric value : nb_disk_system = Such

Thanks in advance.
Regards,
Deepak.P
siriideepak
Posts: 78
Joined: Tue Feb 28, 2012 7:21 am

Regarding to Juniper issue 1

Post by siriideepak »

Hi,
I need to monitor juniper firewall. i have taken a plugin for this check_snmp_juniper6500.pl
When i run this from terminal it shows the following error

#./check_snmp_juniper6500.pl -H 192.168.10.3 -C =snmpDGRO -T disk -w 80 -c 90
UNKNOWN : Value not given by the appliance: No response from remote host '192.168.10.3'

Thanks in advance.
Regards,
Deepak.P
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Regarding to Juniper issue

Post by scottwilkerson »

If your community string contains = you will likely need to escape it with a \ or place it in single quotes

Try

Code: Select all

./check_snmp_juniper_sa.sh -H 192.168.10.3 -V 2c -M disk -C \=snmpDGRO -w 80 -c 90
or

Code: Select all

./check_snmp_juniper_sa.sh -H 192.168.10.3 -V 2c -M disk -C '=snmpDGRO' -w 80 -c 90
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Locked