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
Regarding to Juniper issue
-
siriideepak
- Posts: 78
- Joined: Tue Feb 28, 2012 7:21 am
Regarding to Juniper issue 1
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
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
If your community string contains = you will likely need to escape it with a \ or place it in single quotes
Try
or
Try
Code: Select all
./check_snmp_juniper_sa.sh -H 192.168.10.3 -V 2c -M disk -C \=snmpDGRO -w 80 -c 90Code: Select all
./check_snmp_juniper_sa.sh -H 192.168.10.3 -V 2c -M disk -C '=snmpDGRO' -w 80 -c 90