Page 1 of 1

Regarding to Juniper issue

Posted: Sun May 27, 2012 2:04 am
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

Regarding to Juniper issue 1

Posted: Sun May 27, 2012 3:57 am
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

Re: Regarding to Juniper issue

Posted: Tue May 29, 2012 10:08 am
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