Search found 19 matches

by pmnykh
Thu Mar 09, 2017 12:16 pm
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

[root@localhost libexec]# ./check_snmp -H 192.168.1.110 -o .1.3.6.1.4.1.4458.1000.1.5.56.2.0 -P 3 --seclevel=authPriv --secname=admin --authproto=md5 --authpasswd='netman123' --privpasswd='netman123' --privproto=des SNMP OK - -63 | iso.3.6.1.4.1.4458.1000.1.5.56.2.0=-63 How can I add this task to t...
by pmnykh
Thu Mar 09, 2017 11:35 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

I guess the debug output doesn't mean what I thought it was for the secLevel. At this point, I feel the device is not responding to that OID and it's configuration settings will have to be verified. Finally I found the issue. I scanned my radio by snmpwalk from SolarWinds https://support.solarwinds...
by pmnykh
Wed Mar 08, 2017 1:42 pm
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

One thing that should be fixed is that in the /usr/share/snmp/mibs/ folder, you have 2 copies if that MIB file. If they are the same, delete this copy WinLink1000.mib That doesn't seem to be the issue but that will stop the file from being loaded twice. The output from the snmpwalk looks like it is...
by pmnykh
Wed Mar 08, 2017 11:08 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

One more thing I though of, if the device doesn't respond to the OID you are checking, it will give the same error so run this as well to get a list of everything that device will respond to. snmpwalk 192.168.1.110 -v 3 -a MD5 -A netman123 -l authPriv -x des -X netman123 -u admin -M /usr/share/snmp...
by pmnykh
Wed Mar 08, 2017 11:07 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

[root@localhost ~]# ls -l /usr/share/snmp/mibs/ total 2512 -rw-r--r-- 1 root nagios 17455 Aug 23 2016 AGENTX-MIB.txt -rw-r--r-- 1 root nagios 50948 Aug 23 2016 BRIDGE-MIB.txt -rw-r--r-- 1 root nagios 68104 Aug 23 2016 DISMAN-EVENT-MIB.txt -rw-r--r-- 1 root nagios 24613 Aug 23 2016 DISMAN-SCHEDULE-M...
by pmnykh
Wed Mar 08, 2017 11:04 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

trace: parse_imports(): parse.c, 3692: parse-mibs: #### adding Module 26 'ucdExperimental' 14 trace: do_linkup(): parse.c, 1731: parse-mibs: Processing IMPORTS for module 26 UCD-IPFWACC-MIB trace: do_linkup(): parse.c, 1744: parse-mibs: Processing import: DisplayString trace: do_linkup(): parse.c, ...
by pmnykh
Wed Mar 08, 2017 11:03 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

parse-mibs: #### adding Module 19 'TimeInterval' 51 trace: parse_imports(): parse.c, 3692: parse-mibs: #### adding Module 19 'SnmpAdminString' 43 trace: parse_imports(): parse.c, 3692: parse-mibs: #### adding Module 19 'applIndex' 16 trace: parse_imports(): parse.c, 3692: parse-mibs: #### adding Mo...
by pmnykh
Wed Mar 08, 2017 11:02 am
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

snmpwalk 192.168.1.110 -v 3 -a MD5 -A netman123 -l authPriv -x des -X netman123 -u admin -M /usr/share/snmp/mibs/ 1.3.6.1.4.1.4458.1000.1.1.1 -D all No log handling enabled - turning on stderr logging trace: snmp_parse_args(): snmp_parse_args.c, 613: snmp_parse_args: finished: 19/21 trace: netsnmp_...
by pmnykh
Tue Mar 07, 2017 5:02 pm
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

The MIB file looks good as the output of the translate command shows. What I think the issue is that the check_snmp plugin is not searching through all of the MIB files in the /usr/share/snmp/mibs/ folder so to change that, you will have to to the following. Create the file /etc/snmp/snmp.conf, and...
by pmnykh
Fri Mar 03, 2017 5:07 pm
Forum: Open Source Nagios Projects
Topic: Radwin Radios SNMP
Replies: 21
Views: 9894

Re: Radwin Radios SNMP

It is my day for typo's, it is a lower case z so try running this instead. snmptranslate -m /usr/share/snmp/mibs/WinLink1000.mib -Tz snmptranslate -m /usr/share/snmp/mibs/WinLink1000.mib -Tz "org" "1.3" "dod" "1.3.6" "internet" "1.3.6.1" &...