测量远程服务器的系统时钟(时间)

测量远程服务器的系统时钟(时间)

哪些网络协议可用于测量远程服务器的系统时钟(时间)?到目前为止,我有:

还有其他的吗?

答案1

总有日间协议

来自请求函数

A useful debugging and measurement tool is a daytime service.  A daytime
service simply sends a the current date and time as a character string
without regard to the input.

TCP Based Daytime Service

One daytime service is defined as a connection based application on
TCP.  A server listens for TCP connections on TCP port 13.  Once a
connection is established the current date and time is sent out the
connection as a ascii character string (and any data received is
thrown away).  The service closes the connection after sending the
quote.

UDP Based Daytime Service

Another daytime service service is defined as a datagram based
application on UDP.  A server listens for UDP datagrams on UDP port
13.  When a datagram is received, an answering datagram is sent
containing the current date and time as a ASCII character string (the
data in the received datagram is ignored).

相关内容