Search Exchange

Search All Sites

Nagios Live Webinars

Let our experts show you how Nagios can help your organization.

Contact Us

Phone: 1-888-NAGIOS-1
Email: sales@nagios.com

Login

Remember Me

Directory Tree

check_time_snmp

Rating
4 votes
Favoured:
1
Hits
148573
Files:
FileDescription
check_time_snmp.plcheck_time_snmp.pl
Nagios CSP

Meet The New Nagios Core Services Platform

Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.

Monitoring Made Magically Better

  • Nagios Core on Overdrive
  • Powerful Monitoring Dashboards
  • Time-Saving Configuration Wizards
  • Open Source Powered Monitoring On Steroids
  • And So Much More!
A Perl-based plugin to check the time on a remote system using SNMP.
A Perl-based plugin to check the time on a remote system using SNMP.
Reviews (2)
byrmeden, January 22, 2014
bad time offsets were preventing kerberos from working, now we can monitor it. (firewall blocks many ports)

one bug... UTC translates to an invalid offset of 00000 (5 zeros) fix:

143 $remote_tz="0000" if $remote_tz eq '00000'; #eden
144
145 $remote_ts=DateTime->new( year=>$r_year, month=>$r_month, day=>$r_day, hour=>$r_hour, minute=>$r_minute, second=>$r _sec, time_zone=>$remote_tz,formatter =>$formatter);
byjcooper, September 27, 2010
I just started using this to check the times on some Windows based DVR's. Sometimes the systems become out of sync and there is nothing harder than trying to find specific video when the times are all wrong. Thanks for creating this.