Monitoring of Domino server

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
chagrinboy2001
Posts: 16
Joined: Fri Mar 09, 2012 3:17 am

Monitoring of Domino server

Post by chagrinboy2001 »

Could someone please explain why I have received error when I checked average number of server hops for mail delivery ? I can check number of dead mail messages for example.
I used the same command for another Lotus/Notes Domino server and all was fine.

Thank you

Code: Select all


[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx -C public -P 2c -o 1.3.6.1.4.1.334.72.1.1.4.1.0 - l 'Number of dead (undeliverable) mail messages' -w 1 - c 5
SNMP OK - 0 | iso.3.6.1.4.1.334.72.1.1.4.1.0=0
[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx -C public -P 2c -o 1.3.6.1.4.1.334.72.1.1.4.10.0 -l 'Average number of server hops for mail delivery' -w 10 -c 15
Average number of server hops for mail delivery problem - [b]No data received from host[/b]
CMD: /usr/bin/snmpget -t 1 -r 5 -m '' -v 2c [authpriv] xxx.xxx.xxx.xxx:161  1.3.6.1.4.1.334.72.1.1.4.10.0

Cheers,
bb
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Monitoring of Domino server

Post by scottwilkerson »

This usually means the SNMP server (your Domino Server) doesn't recognize the OID or the community string.

You might want to try running an snmpwalk on the server starting at 1.3.6.1.4.1.334.72.1.1.4 to verify that the OID exists
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
chagrinboy2001
Posts: 16
Joined: Fri Mar 09, 2012 3:17 am

Re: Monitoring of Domino server

Post by chagrinboy2001 »

Server who works.

Code: Select all

[root@NagiosXi libexec]# snmpwalk -v 2c -c public xxx.xxx.xxx.xxx 1.3.6.1.4.1.334.72.1.1.4.1
SNMPv2-SMI::enterprises.334.72.1.1.4.1.0 = INTEGER: 6

Code: Select all

[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx  -o 1.3.6.1.4.1.334.72.1.1.4.1 -C public -P 2c
SNMP problem - No data received from host
CMD: /usr/bin/snmpget -t 1 -r 5 -m '' -v 2c [authpriv] xxx.xxx.xxx.xxx :161  1.3.6.1.4.1.334.72.1.1.4.1

Code: Select all

[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx  -o 1.3.6.1.4.1.334.72.1.1.4.1.0 -C public -P 2c
SNMP OK - 6 | iso.3.6.1.4.1.334.72.1.1.4.1.0=6



Server who doesn't works.

Code: Select all

[root@NagiosXi libexec]# snmpwalk -v 2c -c public xxx.xxx.xxx.xxx 1.3.6.1.4.1.334.72.1.1.4.1
SNMPv2-SMI::enterprises.334.72.1.1.4.1.0 = INTEGER: 0

Code: Select all

[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx -o 1.3.6.1.4.1.334.72.1.1.4.1 -C public -P 2c
SNMP problem - No data received from host
CMD: /usr/bin/snmpget -t 1 -r 5 -m '' -v 2c [authpriv] xxx.xxx.xxx.xxx :161  1.3.6.1.4.1.334.72.1.1.4.1

Code: Select all

[root@NagiosXi libexec]# ./check_snmp -H xxx.xxx.xxx.xxx  -o 1.3.6.1.4.1.334.72.1.1.4.1.0 -C public -P 2c
SNMP OK - 0 | iso.3.6.1.4.1.334.72.1.1.4.1.0=0
Cheers,
bb
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Monitoring of Domino server

Post by scottwilkerson »

As I mentioned before:
scottwilkerson wrote:This usually means the SNMP server (your Domino Server) doesn't recognize the OID or the community string.

You might want to try running an snmpwalk on the server starting at 1.3.6.1.4.1.334.72.1.1.4 to verify that the OID exists
Try the following on the machine that doesn't work

Code: Select all

snmpwalk -v 2c -c public xxx.xxx.xxx.xxx 1.3.6.1.4.1.334.72.1.1.4
report the output

Thanks
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
chagrinboy2001
Posts: 16
Joined: Fri Mar 09, 2012 3:17 am

Re: Monitoring of Domino server

Post by chagrinboy2001 »

Code: Select all


[root@NagiosXi libexec]# snmpwalk -v 2c -c public xxx.xxx.xxx.xxx 1.3.6.1.4.1.334.72.1.1.4
SNMPv2-SMI::enterprises.334.72.1.1.4.1.0 = INTEGER: 0
SNMPv2-SMI::enterprises.334.72.1.1.4.6.0 = INTEGER: 0
SNMPv2-SMI::enterprises.334.72.1.1.4.7.0 = INTEGER: 0
SNMPv2-SMI::enterprises.334.72.1.1.4.8.0 = STRING: "DOMAIN"
SNMPv2-SMI::enterprises.334.72.1.1.4.21.0 = INTEGER: 0
SNMPv2-SMI::enterprises.334.72.1.1.4.31.0 = INTEGER: 0
SNMPv2-SMI::enterprises.334.72.1.1.4.34.0 = INTEGER: 0

Cheers,
bb
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Monitoring of Domino server

Post by scottwilkerson »

So, as I suspected, this server isn't giving a value for the OID

Code: Select all

1.3.6.1.4.1.334.72.1.1.4.1
A quick search on Google makes it look like you aren't the only person experiencing this
http://www-01.ibm.com/support/docview.w ... wg1LO59292
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
chagrinboy2001
Posts: 16
Joined: Fri Mar 09, 2012 3:17 am

Re: Monitoring of Domino server

Post by chagrinboy2001 »

But I compared domino.mib files and are the same or not there should search the problem?
Cheers,
bb
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: Monitoring of Domino server

Post by scottwilkerson »

You may have the same .mib, but are the Domino Servers exactly the same? Same software version? Same hardware?
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
Locked