Check tcp/time service with "telnet <server address> 37"
Telnet is a very good test program for port access.
Check You system documentation if access fails.
Typical responses are (12AB and 12EF are placeholders for the real response
which are usually nonprintable). If You want to see the real data You can
pipe the data eg. to "od -c" like
"telnet <server address> 37 | od -c".
$ telnet localhost 37
Trying ::1...
Connected to localhost.
Escape character is '^]'.
12ABConnection closed by foreign host.
$
$ telnet 123.123.123.123 37
Trying 123.123.123.123...
Connected to 123.123.123.123.
Escape character is '^]'.
12EFConnection closed by foreign host.