I am trying to synchronize my clock with a NTP server by following the instructions here http://support.ntp.org/bin/view/Support/GettingStarted , but this does not work.
I am on Mac OS X El Capitan 10.11.2, and here is what I do. I picked server ntp.your.org ( http://support.ntp.org/bin/view/Servers/PublicTimeServer000498 ) and I synchronize my computer with it:
XXX-macbook-pro-2:ntp-4.2.8p6 XXX$ sudo ntpdate -b ntp.your.org
31 Mar 20:05:04 ntpdate[43114]: step time server 204.9.54.119 offset -0.005629 sec
Then to check that it works, I do
XXX-macbook-pro-2:ntp-4.2.8p6 XXX$ ntpdc -c peers
nodename nor servname provided, or not known
Also, if I do ntpq I get
XXX-macbook-pro-2:ntp-4.2.8p6 XXX$ ntpq -pcrv
nodename nor servname provided, or not known
while if I do the same by switching my internet connection to a different WIFI network, I get a different output:
XXX-macbook-pro-2:XXX XXX$ ntpq -pcrv
remote refid st t when poll reach delay offset jitter
==============================================================================
ntp.your.org .INIT. 16 u - 64 0 0.000 0.000 0.000
associd=0 status=c012 leap_alarm, sync_unspec, 1 event, freq_set,
version="ntpd 4.2.6@1.2089-o Fri May 28 01:20:53 UTC 2010 (1)",
processor="x86_64", system="Darwin/15.2.0", leap=11, stratum=16,
precision=-20, rootdelay=0.000, rootdisp=0.075, refid=INIT,
reftime=00000000.00000000 Mon, Jan 1 1900 0:09:21.000,
clock=daa9468e.835891f4 Fri, Apr 1 2016 21:12:14.513, peer=0, tc=3,
mintc=3, offset=0.000, frequency=-47.221, sys_jitter=0.000,
clk_jitter=0.001, clk_wander=0.000
Do you have any idea of what is the issue at the bottom of this?
Thank you.