Net::NTP - Perl extension for decoding NTP server responses


Net-NTP documentation  | view source Contained in the Net-NTP distribution.

Index


NAME

Top

Net::NTP - Perl extension for decoding NTP server responses

SYNOPSIS

Top

  use Net::NTP qw(get_ntp_response);
  my %response = get_ntp_response();

ABSTRACT

Top

All this module does is send a packet to an NTP server and then decode the packet recieved into it's respective parts - as outlined in RFC1305 and RFC2030.

DESCRIPTION

Top

This module exports a single method (get_ntp_response) and returns an associative array based upon RFC1305 and RFC2030. The response from the server is "humanized" to a point that further processing of th information recieved from the server can be manipulated. For example: timestamps are in epoch, so one could use the localtime function to produce an even more "human" representation of the timestamp.

EXPORT

get_ntp_response(<server>, <port>);

This module exports a single method - get_ntp_response. It takes the server as the first argument (localhost is the default) and port to send/recieve the packets (ntp or 123 bu default). It returns an associative array of the various parts of the packet as outlined in RFC1305. It "normalizes" or "humanizes" various parts of the packet. For example: all the timestamps are in epoch, NOT hexidecimal.

SEE ALSO

Top

perl, IO::Socket, RFC1305, RFC2030

AUTHOR

Top

Now maintained by Ask Bjørn Hansen, <ask@develooper.com<gt>

Originally by James G. Willmore, <jwillmore (at) adelphia.net<gt> or <owner (at) ljcomputing.net<gt>

Special thanks to Ralf D. Kloth <ralf (at) qrq.de<gt> for the code to decode NTP packets.

COPYRIGHT AND LICENSE

Top


Net-NTP documentation  | view source Contained in the Net-NTP distribution.