Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting time from public time server using TimeTCPClient

Tags:

java

ntp

I try to use the following code to obtain time from public time server.

package aaa;

import java.util.Arrays;
import java.util.List;

import org.apache.commons.net.TimeTCPClient;

public final class Main
{
    public static java.util.Date getNTPDate() {
        List<String> hosts = Arrays.asList("0.pool.ntp.org");

        for (String host : hosts) {
            TimeTCPClient client = new TimeTCPClient();
            // We want to timeout if a response takes longer than 5 seconds
            client.setDefaultTimeout(5000);
            try {
                client.connect(host);
                java.util.Date ntpDate = client.getDate();
                client.disconnect();
                // Just to be extra caution.
                if (ntpDate != null) {
                    return ntpDate;
                }
            }
            catch (java.net.SocketException exp) {
                exp.printStackTrace();
            }
            catch (java.io.IOException exp) {
                exp.printStackTrace();
            }
        }
        return null;
    }

    public static final void main(String[] args)
    {
        System.out.println(getNTPDate());
    }

}

However, all the time, I am getting java.net.ConnectException: Connection timed out: connect

I had tried to google for several different time server. However, non of them work. I was wondering, is the problem lies on my code, or the server I choose?

like image 520
Cheok Yan Cheng Avatar asked Dec 04 '22 07:12

Cheok Yan Cheng


1 Answers

NTP is a different protocol than the time protocol. NTP servers only talk over port UDP/123. Time servers use TCP/37 (which TimeTCPClient appears to implement correctly).

If you want to get a remote time, use an appropriate server (ntp.xs4all.nl appears to be listening on the time port).

like image 130
Friek Avatar answered Dec 21 '22 09:12

Friek