Time Protocol
Internet protocol suite |
---|
Application layer |
Transport layer |
Internet layer |
Link layer |
The TIME service is an Internet protocol defined in RFC 868. Its purpose is to provide a site-independent, machine readable date and time.
TIME can operate over either TCP or UDP. When operating over TCP, a host connects to a server that supports the TIME protocol on TCP port 37. The server then sends the time as a 32-bit unsigned binary number in network byte order representing a number of seconds since 00:00 (midnight) 1 January, 1900 GMT and closes the connection. The host receives the time and closes the connection.
When operating over UDP, the client sends a (typically empty) datagram to UDP port 37. The server responds with a single datagram of length 4 containing the time. There is no connection setup or teardown.
The TIME protocol has been superseded by the Network Time Protocol (NTP).
inetd/xinetd implementation of TIME
On Linux, FreeBSD, and other UNIX-like operating systems a time server is often built into the inetd daemon. The time service is usually not enabled by default. It may be enabled by adding the following lines to the file /etc/inetd.conf
time stream tcp nowait root internal time dgram udp wait root internal
and (as root) telling inetd to reload its configuration:
killall -HUP inetd
On OpenBSD, inetd configured to support TIME service by default.
Modern versions of Linux use xinetd instead of inetd. On modern Red Hat Linux systems there are text files /etc/xinetd.d/time or /etc/xinetd.d/time-stream (for TCP version) and /etc/xinetd.d/time-udp or /etc/xinetd.d/time-dgram (for UDP version). Changing the disable parameter to disable = no will enable the service. Restart the service using the service xinetd restart command. Note, if these files don't exist then you may need to install xinetd (yum install xinetd).
In [Windows] you can try freeware[ http://freestone-group.com/fg-time-sync.htm FG Time Sync]
See also
External links
- RFC 868