Time Is UTC, but Time Zone Is Local

For the first time since following Erichans's solution, I tried running % service ntpd status (as a regular user) and it still returns
Code:
ntpd is not running.

Shouldn't the command return ntpd is running?
 
is ntpd_enable="YES" in your /etc/rc.conf?
If so, it's failed. You will need to look in your logs for information.
 
is ntpd_enable="YES" in your /etc/rc.conf?
If so, it's failed. You will need to look in your logs for information.
I intentionally set BIOS's time 5 hours too slow and booted. Ntpd ran at boot, couldn't find any indication of problems in logs. Ntpd eventually gave up (I assume) and quit. Still can't find anything about it in logs.

What might I be missing?
 
I intentionally set BIOS's time 5 hours too slow and booted. Ntpd ran at boot, couldn't find any indication of problems in logs. Ntpd eventually gave up (I assume) and quit. Still can't find anything about it in logs.

What might I be missing?
Code:
     -g, --panicgate
             Allow the first adjustment to be Big.  This option may appear an
             unlimited number of times.

             Normally, ntpd exits with a message to the system log if the
             offset exceeds the panic threshold, which is 1000 s by default.
             This option allows the time to be set to any value without
             restriction; however, this can happen only once. If the threshold
             is exceeded after that, ntpd will exit with a message to the
             system log. This option can be used with the -q and -x options.
             See the tinker configuration file directive for other options.
ntpd(8)
 
I intentionally set BIOS's time 5 hours too slow and booted. Ntpd ran at boot, couldn't find any indication of problems in logs. Ntpd eventually gave up (I assume) and quit. Still can't find anything about it in logs.

What might I be missing?
In that instance you could also add to rc.conf:
ntpd_sync_on_start="YES"

That's particularly useful for systems with no real time clock or the battery's dead on your motherboard and time's not "sticking" between power cycles.
 
is ntpd_enable="YES" in your /etc/rc.conf?
If so, it's failed. You will need to look in your logs for information.
As I say in my original post, it is.

Would anyone be able to look at Erichans's troubleshooting steps in posts #40-49? I just want to make sure everything he had me do was sound advice. I am new to Unix and, aside from briefly looking at the man pages for the commands, wasn't really sure what I was doing.
 
I am coming at this late, so I haven't read all the preceding posts, sorry.

So, is it working or not?

If it's working then whatever Erichans advice was, it worked; give him a big thanks and mark this as solved.

If not, then please post what is the problem.
 
Code:
     -g, --panicgate
             Allow the first adjustment to be Big.  This option may appear an
             unlimited number of times.

             Normally, ntpd exits with a message to the system log if the
             offset exceeds the panic threshold, which is 1000 s by default.
             This option allows the time to be set to any value without
             restriction; however, this can happen only once. If the threshold
             is exceeded after that, ntpd will exit with a message to the
             system log. This option can be used with the -q and -x options.
             See the tinker configuration file directive for other options.
ntpd(8)

In that instance you could also add to rc.conf:
ntpd_sync_on_start="YES"

That's particularly useful for systems with no real time clock or the battery's dead on your motherboard and time's not "sticking" between power cycles.

I set it back, as I expected to. The problem isn't that ntpd quit; forcing it to do so was the idea. The problem is that either its exit and the reason for it wasn't logged, or I can't find that log. This looked exactly like the situation OP describes, which is why it's in this thread.

If I run ntpd with the -g option, what copies that time to my CMOS RTC, which is configured as set to UTC? If configured as set to local, adjkerntz does that at shutdown, but for UTC, I dunno.
 
I am coming at this late, so I haven't read all the preceding posts, sorry.

So, is it working or not?

If it's working then whatever Erichans advice was, it worked; give him a big thanks and mark this as solved.

If not, then please post what is the problem.
When I run % service ntpd status as a regular user, it returns that ntpd is not running.

Additionally, lately when I've booted up my computer (probably 50% of the time), as the shell gives me the login prompt, I believe it says there's some sort of problem with wpa_supplicant and with ntpd connecting to the *.ntp.org server. I never got these sort of error messages before following the advice in posts #40-49 in this thread, but I also had only booted up my computer perhaps 10-20 times, so the sample size was small. If possible, could someone look at the instructions in posts #40-49 -- ideally, my posts that show exactly what I typed and the output -- and see if it all looks good? I'm just worried trying to fix one thing caused new problems.
 
When I run % service ntpd status as a regular user, it returns that ntpd is not running.

Additionally, lately when I've booted up my computer (probably 50% of the time), as the shell gives me the login prompt, I believe it says there's some sort of problem with wpa_supplicant and with ntpd connecting to the *.ntp.org server. I never got these sort of error messages before following the advice in posts #40-49 in this thread, but I also had only booted up my computer perhaps 10-20 times, so the sample size was small. If possible, could someone look at the instructions in posts #40-49 -- ideally, my posts that show exactly what I typed and the output -- and see if it all looks good? I'm just worried trying to fix one thing caused new problems.
Getting the status of a service does not require root, so that's fine.
The issue with the problems you're having is we can't see what you can see.
I suggest a sledge-hammer approach. Perform a 'grep -i wpa /var/log/*' as root and see if that returns something.If so, it's best to post the output here and someone familiar with it can then chime in.
If you followed the instructions, ntpd should be outputting information into a log file, so again, 'grep -i ntp /var/log/*' to see if there's anything. (Apologies I can't recall where ntpd dumps its errors)

I think we also need to see your /etc/rc.conf, or at the very least the entries for ntp.

Another thing is that ISPs, at least in my experience, have public ntp servers so you can use them if you can find their addresses. These are often better because they're within their network.
 
Getting the status of a service does not require root, so that's fine.
The issue with the problems you're having is we can't see what you can see.
I suggest a sledge-hammer approach. Perform a 'grep -i wpa /var/log/*' as root and see if that returns something.If so, it's best to post the output here and someone familiar with it can then chime in.
If you followed the instructions, ntpd should be outputting information into a log file, so again, 'grep -i ntp /var/log/*' to see if there's anything. (Apologies I can't recall where ntpd dumps its errors)

I think we also need to see your /etc/rc.conf, or at the very least the entries for ntp.

Another thing is that ISPs, at least in my experience, have public ntp servers so you can use them if you can find their addresses. These are often better because they're within their network.
Because of the 25,000-character limit, this is going to be a multi-part post.

I got the messages at the login prompt again when I booted up my computer just now.

You wanted me to run those two commands without the single quotes, correct? How safe is it to post all this information? I replaced my username with <username> and my hostname with <hostname>. Thanks for specifying to run these commands as root (I still need to know when to do this).

grep -i wpa /var/log/*:
Code:
root@<hostname>:/home/<username> # grep -i wpa /var/log/*
grep: /var/log/ConsoleKit: Is a directory
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_cli ping
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_supplicant -B -i "wlan0" -c "/tmp/bsdinstall_etc/wpa_supplicant.conf"
/var/log/bsdinstall_log:Successfully initialized wpa_supplicant
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_cli ping
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_cli scan
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_cli scan_results
/var/log/bsdinstall_log:30:57:8e:cc:85:a3       2432    -50     [WPA2-PSK-CCMP][ESS]    net
/var/log/bsdinstall_log:30:57:8e:cc:ba:44       5220    -56     [WPA2-PSK-CCMP][ESS]    net
/var/log/bsdinstall_log:30:57:8e:48:18:88       5220    -60     [WPA2-PSK-CCMP][ESS]    net
/var/log/bsdinstall_log:30:57:8e:cc:85:a4       5220    -70     [WPA2-PSK-CCMP][ESS]    net
/var/log/bsdinstall_log:60:3d:26:3b:fc:5c       2462    -69     [WPA2-PSK-CCMP][ESS]    Arbogast
/var/log/bsdinstall_log:38:3f:b3:96:ea:50       2462    -72     [WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS][ESS] Weisman1991
/var/log/bsdinstall_log:30:57:8e:cf:71:a3       2437    -74     [WPA2-PSK-CCMP][ESS]    Keeno
/var/log/bsdinstall_log:38:3f:b3:96:ea:58       5200    -79     [WPA-PSK-CCMP][WPA2-PSK-CCMP][WPS][ESS] Weisman1991-5G
/var/log/bsdinstall_log:60:3d:26:3b:fc:64       5805    -79     [WPA2-PSK-CCMP][WPS][ESS]       Arbogast 5G
/var/log/bsdinstall_log:30:57:8e:cf:71:a4       5765    -79     [WPA2-PSK-CCMP][ESS]    Keeno
/var/log/bsdinstall_log:30:57:8e:cf:71:aa       5765    -79     [WPA2-PSK-CCMP][ESS]    Keeno Guest
/var/log/bsdinstall_log:30:57:8e:cf:71:a9       2437    -75     [WPA2-PSK-CCMP][ESS]    Keeno Guest
/var/log/bsdinstall_log:80:da:13:f5:a2:e5       2437    -75     [WPA2-PSK-CCMP][ESS]    Keeno
/var/log/bsdinstall_log:80:da:13:f5:a2:eb       2437    -75     [WPA2-PSK-CCMP][ESS]    Keeno Guest
/var/log/bsdinstall_log:f4:39:09:92:99:9a       2412    -78     [WPA2-PSK-CCMP][WPS][ESS][P2P]  DIRECT-99-HP OfficeJet 3830
/var/log/bsdinstall_log:da:31:34:08:59:e5       2462    -79     [WPA2-PSK-CCMP][WPS][ESS][P2P]
/var/log/bsdinstall_log:68:8f:2e:76:d8:e8       2462    -80     [WPA2-PSK-CCMP][ESS]    HansenWifi
/var/log/bsdinstall_log:08:95:2a:06:68:cd       2462    -81     [WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]     Dave24
/var/log/bsdinstall_log:70:f2:20:6a:61:03       2412    -81     [WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]     Akselswifi
/var/log/bsdinstall_log:3c:37:86:cf:fc:bb       2447    -83     [WPA2-PSK-CCMP][WPS][ESS]       NETGEAR94
/var/log/bsdinstall_log:98:de:d0:9b:11:27       2462    -83     [WPA2-PSK-CCMP][WPS][ESS]       Westell1761
/var/log/bsdinstall_log:92:ef:68:a9:c1:34       2437    -83     [WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][WPS][ESS]     CenturyLink3916
/var/log/bsdinstall_log:DEBUG: wlanconfig: wpa_cli reconfigure
/var/log/bsdinstall_log:DEBUG: f_debug_init: ARGV=[netconfig_ipv4 wlan0 WPA ] GETOPTS_STDARGS=[dD:]
/var/log/bsdinstall_log:DEBUG: Running installation step: netconfig_ipv4 wlan0 WPA
/var/log/bsdinstall_log:DEBUG: f_dialog_init: ARGV=[wlan0 WPA ] GETOPTS_STDARGS=[dD:SX]
grep: /var/log/cups: Is a directory
/var/log/daemon.log:Nov 19 01:37:11 <hostname> wpa_supplicant[30302]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:44 reason=0
/var/log/daemon.log:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5220 MHz)
/var/log/daemon.log:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: Failed to add supported operating classes IE
/var/log/daemon.log:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/daemon.log:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/daemon.log:Nov 19 05:39:24 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:44 reason=3 locally_generated=1
/var/log/daemon.log:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: wlan0: Trying to associate with 30:57:8e:cc:ba:43 (SSID='net' freq=2432 MHz)
/var/log/daemon.log:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: Failed to add supported operating classes IE
/var/log/daemon.log:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: ioctl[SIOCS80211, op=20, val=0, arg_len=7]: Can't assign requested address
/var/log/daemon.log:Nov 19 05:39:35 <hostname> wpa_supplicant[60071]: wlan0: Authentication with 30:57:8e:cc:ba:43 timed out.
/var/log/daemon.log:Nov 19 05:39:35 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:43 reason=3 locally_generated=1
/var/log/daemon.log:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5220 MHz)
/var/log/daemon.log:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: Failed to add supported operating classes IE
/var/log/daemon.log:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/daemon.log:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/daemon.log:Nov 20 00:52:02 <hostname> wpa_supplicant[38407]: wlan0: WPA: Group rekeying completed with 30:57:8e:cc:ba:44 [GTK=CCMP]
/var/log/daemon.log:Nov 25 00:52:05 <hostname> wpa_supplicant[42228]: wlan0: WPA: Group rekeying completed with 30:57:8e:cc:ba:44 [GTK=CCMP]
/var/log/daemon.log:Dec  5 20:46:20 <hostname> wpa_supplicant[30077]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/daemon.log:Dec  5 20:46:20 <hostname> wpa_supplicant[30077]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/daemon.log:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/daemon.log:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/daemon.log:Dec  6 14:25:02 <hostname> wpa_supplicant[15574]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/daemon.log:Dec  6 14:25:02 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/daemon.log:Dec  6 14:25:03 <hostname> wpa_supplicant[15574]: wlan0: Trying to associate with 30:57:8e:48:18:86 (SSID='net' freq=2417 MHz)
/var/log/daemon.log:Dec  6 14:25:03 <hostname> wpa_supplicant[15574]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  6 14:25:13 <hostname> wpa_supplicant[15574]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/daemon.log:Dec  6 14:25:13 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/daemon.log:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/daemon.log:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/daemon.log:Dec  7 21:24:40 <hostname> wpa_supplicant[67417]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/daemon.log:Dec  7 21:24:40 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/daemon.log:Dec  7 21:24:41 <hostname> wpa_supplicant[67417]: wlan0: Trying to associate with 30:57:8e:cc:85:a3 (SSID='net' freq=2437 MHz)
/var/log/daemon.log:Dec  7 21:24:41 <hostname> wpa_supplicant[67417]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  7 21:24:51 <hostname> wpa_supplicant[67417]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/daemon.log:Dec  7 21:24:51 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/daemon.log:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/daemon.log:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/daemon.log:Dec  7 21:26:32 <hostname> wpa_supplicant[39921]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/daemon.log:Dec  7 21:26:32 <hostname> wpa_supplicant[39921]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/daemon.log:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/daemon.log:Dec  7 21:26:34 <hostname> wpa_supplicant[39921]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  7 21:26:34 <hostname> wpa_supplicant[39921]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/daemon.log:Dec  8 08:30:49 <hostname> wpa_supplicant[18988]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/daemon.log:Dec  8 08:30:49 <hostname> wpa_supplicant[18988]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/daemon.log:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/daemon.log:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/daemon.log:Dec  8 14:13:55 <hostname> wpa_supplicant[68239]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/daemon.log:Dec  8 14:13:55 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/daemon.log:Dec  8 14:13:56 <hostname> wpa_supplicant[68239]: wlan0: Trying to associate with 30:57:8e:cc:85:a3 (SSID='net' freq=2437 MHz)
/var/log/daemon.log:Dec  8 14:13:56 <hostname> wpa_supplicant[68239]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  8 14:14:06 <hostname> wpa_supplicant[68239]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/daemon.log:Dec  8 14:14:06 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/daemon.log:Dec  8 14:14:07 <hostname> wpa_supplicant[68239]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/daemon.log:Dec  8 14:14:07 <hostname> wpa_supplicant[68239]: Failed to add supported operating classes IE
/var/log/daemon.log:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/daemon.log:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/daemon.log:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/messages:Nov 19 01:37:11 <hostname> wpa_supplicant[30302]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:44 reason=0
/var/log/messages:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5220 MHz)
/var/log/messages:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: Failed to add supported operating classes IE
/var/log/messages:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/messages:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/messages:Nov 19 01:37:12 <hostname> wpa_supplicant[30302]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/messages:Nov 19 05:39:24 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:44 reason=3 locally_generated=1
/var/log/messages:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: wlan0: Trying to associate with 30:57:8e:cc:ba:43 (SSID='net' freq=2432 MHz)
/var/log/messages:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: Failed to add supported operating classes IE
/var/log/messages:Nov 19 05:39:25 <hostname> wpa_supplicant[60071]: ioctl[SIOCS80211, op=20, val=0, arg_len=7]: Can't assign requested address
/var/log/messages:Nov 19 05:39:35 <hostname> wpa_supplicant[60071]: wlan0: Authentication with 30:57:8e:cc:ba:43 timed out.
/var/log/messages:Nov 19 05:39:35 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:ba:43 reason=3 locally_generated=1
/var/log/messages:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5220 MHz)
/var/log/messages:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: Failed to add supported operating classes IE
/var/log/messages:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/messages:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/messages:Nov 19 05:39:36 <hostname> wpa_supplicant[60071]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/messages:Nov 20 00:52:02 <hostname> wpa_supplicant[38407]: wlan0: WPA: Group rekeying completed with 30:57:8e:cc:ba:44 [GTK=CCMP]
/var/log/messages:Nov 25 00:52:05 <hostname> wpa_supplicant[42228]: wlan0: WPA: Group rekeying completed with 30:57:8e:cc:ba:44 [GTK=CCMP]
/var/log/messages:Dec  5 20:46:20 <hostname> wpa_supplicant[30077]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/messages:Dec  5 20:46:20 <hostname> wpa_supplicant[30077]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/messages:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: Failed to add supported operating classes IE
/var/log/messages:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/messages:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  5 20:46:21 <hostname> wpa_supplicant[30077]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/messages:Dec  6 14:25:02 <hostname> wpa_supplicant[15574]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/messages:Dec  6 14:25:02 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/messages:Dec  6 14:25:03 <hostname> wpa_supplicant[15574]: wlan0: Trying to associate with 30:57:8e:48:18:86 (SSID='net' freq=2417 MHz)
/var/log/messages:Dec  6 14:25:03 <hostname> wpa_supplicant[15574]: Failed to add supported operating classes IE
/var/log/messages:Dec  6 14:25:13 <hostname> wpa_supplicant[15574]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/messages:Dec  6 14:25:13 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/messages:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: Failed to add supported operating classes IE
/var/log/messages:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/messages:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  6 14:25:15 <hostname> wpa_supplicant[15574]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/messages:Dec  7 21:24:40 <hostname> wpa_supplicant[67417]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/messages:Dec  7 21:24:40 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/messages:Dec  7 21:24:41 <hostname> wpa_supplicant[67417]: wlan0: Trying to associate with 30:57:8e:cc:85:a3 (SSID='net' freq=2437 MHz)
/var/log/messages:Dec  7 21:24:41 <hostname> wpa_supplicant[67417]: Failed to add supported operating classes IE
/var/log/messages:Dec  7 21:24:51 <hostname> wpa_supplicant[67417]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/messages:Dec  7 21:24:51 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/messages:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: Trying to associate with 30:57:8e:cc:ba:44 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: Failed to add supported operating classes IE
/var/log/messages:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: Associated with 30:57:8e:cc:ba:44
/var/log/messages:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: WPA: Key negotiation completed with 30:57:8e:cc:ba:44 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  7 21:24:52 <hostname> wpa_supplicant[67417]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:cc:ba:44 completed [id=0 id_str=]
/var/log/messages:Dec  7 21:26:32 <hostname> wpa_supplicant[39921]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/messages:Dec  7 21:26:32 <hostname> wpa_supplicant[39921]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/messages:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: Failed to add supported operating classes IE
/var/log/messages:Dec  7 21:26:33 <hostname> wpa_supplicant[39921]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/messages:Dec  7 21:26:34 <hostname> wpa_supplicant[39921]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  7 21:26:34 <hostname> wpa_supplicant[39921]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/messages:Dec  8 08:30:49 <hostname> wpa_supplicant[18988]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/messages:Dec  8 08:30:49 <hostname> wpa_supplicant[18988]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/messages:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: Failed to add supported operating classes IE
/var/log/messages:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/messages:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  8 08:30:50 <hostname> wpa_supplicant[18988]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
/var/log/messages:Dec  8 14:13:55 <hostname> wpa_supplicant[68239]: wlan0: Authentication with 30:57:8e:48:18:86 timed out.
/var/log/messages:Dec  8 14:13:55 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:48:18:86 reason=3 locally_generated=1
/var/log/messages:Dec  8 14:13:56 <hostname> wpa_supplicant[68239]: wlan0: Trying to associate with 30:57:8e:cc:85:a3 (SSID='net' freq=2437 MHz)
/var/log/messages:Dec  8 14:13:56 <hostname> wpa_supplicant[68239]: Failed to add supported operating classes IE
/var/log/messages:Dec  8 14:14:06 <hostname> wpa_supplicant[68239]: wlan0: Authentication with 30:57:8e:cc:85:a3 timed out.
/var/log/messages:Dec  8 14:14:06 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-DISCONNECTED bssid=30:57:8e:cc:85:a3 reason=3 locally_generated=1
/var/log/messages:Dec  8 14:14:07 <hostname> wpa_supplicant[68239]: wlan0: Trying to associate with 30:57:8e:48:18:88 (SSID='net' freq=5180 MHz)
/var/log/messages:Dec  8 14:14:07 <hostname> wpa_supplicant[68239]: Failed to add supported operating classes IE
/var/log/messages:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: Associated with 30:57:8e:48:18:88
/var/log/messages:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: WPA: Key negotiation completed with 30:57:8e:48:18:88 [PTK=CCMP GTK=CCMP]
/var/log/messages:Dec  8 14:14:08 <hostname> wpa_supplicant[68239]: wlan0: CTRL-EVENT-CONNECTED - Connection to 30:57:8e:48:18:88 completed [id=0 id_str=]
grep: /var/log/samba4: Is a directory
root@<hostname>:/home/<username> #
 
grep -i ntp /var/log/* pt. 1:
Code:
root@<hostname>:/home/<username> # grep -i ntp /var/log/*
grep: /var/log/ConsoleKit: Is a directory
/var/log/Xorg.0.log:[    67.417] (==) FontPath set to:
/var/log/Xorg.0.log:    catalogue:/usr/local/etc/X11/fontpath.d
/var/log/Xorg.0.log.old:[    66.083] (==) FontPath set to:
/var/log/Xorg.0.log.old:        catalogue:/usr/local/etc/X11/fontpath.d
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: printf "$FSTAB_FMT" "# Device" "Mountpoint" "FStype" "Options" "Dump" "Pass#" >> "/tmp/bsdinstall_etc/fstab"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs create -o mountpoint=none "zroot/ROOT"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs create -o mountpoint=/ "zroot/ROOT/default"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs create -o mountpoint=/tmp -o exec=on -o setuid=off "zroot/tmp"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs create -o mountpoint=/usr -o canmount=off "zroot/usr"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs create -o mountpoint=/var -o canmount=off "zroot/var"
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: Setting mountpoint for root of the pool...
/var/log/bsdinstall_log:DEBUG: zfs_create_boot: zfs set "mountpoint=/zroot" "zroot"
grep: /var/log/cups: Is a directory
/var/log/dmesg.today:Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 18 01:57:57 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: ----------------------------------------------------
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: available at https://www.nwtime.org/support
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29004]: ----------------------------------------------------
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29748]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29748]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 18 01:57:57 <hostname> ntpd[29748]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 144 days ago
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 18 02:04:28 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: ----------------------------------------------------
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: available at https://www.nwtime.org/support
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[24993]: ----------------------------------------------------
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[25178]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[25178]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 18 02:04:28 <hostname> ntpd[25178]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 144 days ago
/var/log/messages:Nov 18 02:05:29 <hostname> ntpd[25178]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 18 02:06:43 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: ----------------------------------------------------
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: available at https://www.nwtime.org/support
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56257]: ----------------------------------------------------
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56710]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56710]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 18 02:06:43 <hostname> ntpd[56710]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 144 days ago
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 01:23:54 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: ----------------------------------------------------
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40526]: ----------------------------------------------------
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40542]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40542]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 01:23:54 <hostname> ntpd[40542]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 01:49:35 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: ----------------------------------------------------
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[5667]: ----------------------------------------------------
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[6136]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[6136]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 01:49:35 <hostname> ntpd[6136]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 01:55:45 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: ----------------------------------------------------
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86504]: ----------------------------------------------------
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86782]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86782]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 01:55:45 <hostname> ntpd[86782]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 02:34:02 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: ----------------------------------------------------
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38045]: ----------------------------------------------------
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38257]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38257]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 02:34:02 <hostname> ntpd[38257]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 02:44:31 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: ----------------------------------------------------
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[31441]: ----------------------------------------------------
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[32204]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[32204]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 02:44:31 <hostname> ntpd[32204]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 04:23:02 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: ----------------------------------------------------
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[17775]: ----------------------------------------------------
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[18437]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[18437]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 04:23:02 <hostname> ntpd[18437]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 04:27:02 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: ----------------------------------------------------
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41082]: ----------------------------------------------------
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41616]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41616]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 04:27:02 <hostname> ntpd[41616]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 19 17:54:05 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: ----------------------------------------------------
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: available at https://www.nwtime.org/support
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13143]: ----------------------------------------------------
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13428]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13428]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 19 17:54:05 <hostname> ntpd[13428]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 145 days ago
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 20 00:48:25 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: ----------------------------------------------------
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: available at https://www.nwtime.org/support
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89220]: ----------------------------------------------------
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89298]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89298]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2021-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 20 00:48:25 <hostname> ntpd[89298]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): expired 146 days ago
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 20 16:29:40 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: ----------------------------------------------------
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: available at https://www.nwtime.org/support
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16291]: ----------------------------------------------------
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16506]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 20 16:29:40 <hostname> ntpd[16506]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 21 21:28:21 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: ----------------------------------------------------
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: available at https://www.nwtime.org/support
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94025]: ----------------------------------------------------
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94768]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 21 21:28:21 <hostname> ntpd[94768]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 23 19:35:37 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: ----------------------------------------------------
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: available at https://www.nwtime.org/support
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[52535]: ----------------------------------------------------
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[53001]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 23 19:35:37 <hostname> ntpd[53001]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
 
grep -i ntp /var/log/* pt. 2:
Code:
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 16:03:31 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: ----------------------------------------------------
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14604]: ----------------------------------------------------
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14965]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 16:03:31 <hostname> ntpd[14965]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 16:12:24 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: ----------------------------------------------------
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60125]: ----------------------------------------------------
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60262]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 16:12:24 <hostname> ntpd[60262]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 17:08:06 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: ----------------------------------------------------
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73429]: ----------------------------------------------------
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73885]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 17:08:06 <hostname> ntpd[73885]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 17:56:56 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: ----------------------------------------------------
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49173]: ----------------------------------------------------
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49502]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 17:56:56 <hostname> ntpd[49502]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 17:58:36 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: ----------------------------------------------------
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93293]: ----------------------------------------------------
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93379]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 17:58:36 <hostname> ntpd[93379]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 25 00:42:56 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: ----------------------------------------------------
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: available at https://www.nwtime.org/support
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[95851]: ----------------------------------------------------
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[96006]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 25 00:42:56 <hostname> ntpd[96006]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: ----------------------------------------------------
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: available at https://www.nwtime.org/support
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44451]: ----------------------------------------------------
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44679]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 24 19:07:07 <hostname> ntpd[44679]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 24 19:41:49 <hostname> ntpd[44679]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 25 08:16:56 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: ----------------------------------------------------
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: available at https://www.nwtime.org/support
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27139]: ----------------------------------------------------
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27428]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 25 08:16:56 <hostname> ntpd[27428]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 25 09:33:30 <hostname> ntpd[27428]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Nov 25 11:27:15 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: ----------------------------------------------------
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: corporation.  Support and training for ntp-4 are
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: available at https://www.nwtime.org/support
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69215]: ----------------------------------------------------
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69579]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Nov 25 11:27:15 <hostname> ntpd[69579]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Nov 25 11:40:36 <hostname> ntpd[69579]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  1 15:01:07 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: ----------------------------------------------------
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: available at https://www.nwtime.org/support
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[3641]: ----------------------------------------------------
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[4242]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  1 15:01:07 <hostname> ntpd[4242]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  1 16:19:24 <hostname> ntpd[4242]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  4 17:54:19 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: ----------------------------------------------------
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: available at https://www.nwtime.org/support
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37313]: ----------------------------------------------------
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37721]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  4 17:54:19 <hostname> ntpd[37721]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  4 19:54:39 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: ----------------------------------------------------
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: available at https://www.nwtime.org/support
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[69976]: ----------------------------------------------------
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[70107]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  4 19:54:39 <hostname> ntpd[70107]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  4 20:40:59 <hostname> ntpd[70107]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: ----------------------------------------------------
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: available at https://www.nwtime.org/support
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[62423]: ----------------------------------------------------
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[63109]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  4 21:02:09 <hostname> ntpd[63109]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  4 21:03:29 <hostname> ntpd[63109]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  5 09:56:53 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: ----------------------------------------------------
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: available at https://www.nwtime.org/support
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25098]: ----------------------------------------------------
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25150]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  5 09:56:53 <hostname> ntpd[25150]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  5 10:40:58 <hostname> ntpd[25150]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  5 11:16:31 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: ----------------------------------------------------
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: available at https://www.nwtime.org/support
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56471]: ----------------------------------------------------
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56500]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  5 11:16:31 <hostname> ntpd[56500]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  5 11:58:03 <hostname> ntpd[56500]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  5 20:46:18 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: ----------------------------------------------------
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: available at https://www.nwtime.org/support
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44110]: ----------------------------------------------------
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44436]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  5 20:46:18 <hostname> ntpd[44436]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  5 20:46:19 <hostname> ntpd[44436]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/messages:Dec  5 20:47:23 <hostname> ntpd[44436]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  5 20:48:32 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: ----------------------------------------------------
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: available at https://www.nwtime.org/support
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[96769]: ----------------------------------------------------
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[97199]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  5 20:48:32 <hostname> ntpd[97199]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  5 22:38:08 <hostname> ntpd[97199]: ntpd exiting on signal 15 (Terminated)
 
grep -i ntp /var/log/* pt. 3:
Code:
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  6 14:25:00 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: ----------------------------------------------------
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: available at https://www.nwtime.org/support
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84437]: ----------------------------------------------------
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84881]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  6 14:25:00 <hostname> ntpd[84881]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  6 14:25:01 <hostname> ntpd[84881]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/messages:Dec  6 14:25:58 <hostname> ntpd[84881]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  6 14:50:55 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: ----------------------------------------------------
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: available at https://www.nwtime.org/support
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6200]: ----------------------------------------------------
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6693]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  6 14:50:55 <hostname> ntpd[6693]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  6 17:03:00 <hostname> ntpd[6693]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  7 12:00:55 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: ----------------------------------------------------
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: available at https://www.nwtime.org/support
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[25822]: ----------------------------------------------------
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[26222]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  7 12:00:55 <hostname> ntpd[26222]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  7 15:00:53 <hostname> ntpd[26222]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  7 21:24:39 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: ----------------------------------------------------
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: available at https://www.nwtime.org/support
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65088]: ----------------------------------------------------
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65096]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  7 21:24:39 <hostname> ntpd[65096]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  7 21:24:40 <hostname> ntpd[65096]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/messages:Dec  7 21:25:17 <hostname> ntpd[65096]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  7 21:26:31 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: ----------------------------------------------------
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: available at https://www.nwtime.org/support
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[75986]: ----------------------------------------------------
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[76230]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  7 21:26:31 <hostname> ntpd[76230]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  7 21:26:32 <hostname> ntpd[76230]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/messages:Dec  7 22:36:24 <hostname> ntpd[76230]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  8 08:30:48 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: ----------------------------------------------------
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: available at https://www.nwtime.org/support
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86739]: ----------------------------------------------------
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86760]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  8 08:30:48 <hostname> ntpd[86760]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  8 08:30:49 <hostname> ntpd[86760]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/messages:Dec  8 08:56:59 <hostname> ntpd[86760]: ntpd exiting on signal 15 (Terminated)
/var/log/messages:Dec  8 14:13:53 <hostname> kernel: Security policy loaded: MAC/ntpd (mac_ntpd)
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: ntpd 4.2.8p15-a (1): Starting
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: ----------------------------------------------------
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: ntp-4 is maintained by Network Time Foundation,
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: corporation.  Support and training for ntp-4 are
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: available at https://www.nwtime.org/support
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[82747]: ----------------------------------------------------
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[83427]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/messages:Dec  8 14:13:53 <hostname> ntpd[83427]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/messages:Dec  8 14:13:54 <hostname> ntpd[83427]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: ntpd 4.2.8p15-a (1): Starting
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: Command line: /usr/sbin/ntpd -p /var/db/ntp/ntpd.pid -c /etc/ntp.conf -f /var/db/ntp/ntpd.drift -D 1 -l /var/log/ntp.log
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: ----------------------------------------------------
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: ntp-4 is maintained by Network Time Foundation,
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: Inc. (NTF), a non-profit 501(c)(3) public-benefit
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: corporation.  Support and training for ntp-4 are
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: available at https://www.nwtime.org/support
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57144]: ----------------------------------------------------
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: proto: precision = 0.190 usec (-22)
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: basedate set to 2018-08-07
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: gps base set to 2018-08-12 (week 2014)
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): good hash signature
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: leapsecond file ('/var/db/ntpd.leap-seconds.list'): loaded, expire=2022-06-28T00:00:00Z last=2017-01-01T00:00:00Z ofs=37
/var/log/ntp.log: 4 Dec 19:19:05 ntpd[57676]: unable to bind to wildcard address :: - another process may be running - EXITING
grep: /var/log/samba4: Is a directory
root@<hostname>:/home/<username> #
/etc/rc.conf:
Code:
=====line 1 col 0 lines from top 1 ============================================
clear_tmp_enable="YES"
syslogd_flags="-ss"
sendmail_enable="NONE"
hostname="<hostname>"
wlans_iwm0="wlan0"
ifconfig_wlan0="WPA DHCP"
ifconfig_wlan0_ipv6="inet6 accept_rtadv"
create_args_wlan0="country US"
local_unbound_enable="YES"
sshd_enable="YES"
moused_enable="YES"
ntpd_enable="YES"
powerd_enable="YES"
# Set dumpdev to "AUTO" to enable crash dumps, "NO" to disable
dumpdev="AUTO"
file "/etc/rc.conf", 19 lines
 
Your problem appears to be here:
Code:
/var/log/messages:Dec  8 14:13:54 <hostname> ntpd[83427]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)

I am not seeing that error in my own /var/log/messages.

You should also be able to ping ntp.org and related sites:
Code:
len@mlatest:~ $ ping -c 3 0.freebsd.pool.ntp.org
PING 0.freebsd.pool.ntp.org (38.229.62.9): 56 data bytes
64 bytes from 38.229.62.9: icmp_seq=0 ttl=50 time=44.015 ms
64 bytes from 38.229.62.9: icmp_seq=1 ttl=50 time=43.425 ms
64 bytes from 38.229.62.9: icmp_seq=2 ttl=50 time=43.818 ms

--- 0.freebsd.pool.ntp.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 43.425/43.752/44.015/0.245 ms
len@mlatest:~ $ ping -c 3 ntp.org
PING ntp.org (64.142.54.22): 56 data bytes
64 bytes from 64.142.54.22: icmp_seq=0 ttl=43 time=56.405 ms
64 bytes from 64.142.54.22: icmp_seq=1 ttl=43 time=56.083 ms
64 bytes from 64.142.54.22: icmp_seq=2 ttl=43 time=55.981 ms

--- ntp.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 55.981/56.156/56.405/0.181 ms
len@mlatest:~ $ ping -c 3 freebsd.org
PING freebsd.org (96.47.72.84): 56 data bytes
64 bytes from 96.47.72.84: icmp_seq=0 ttl=52 time=47.635 ms
64 bytes from 96.47.72.84: icmp_seq=1 ttl=52 time=57.194 ms
64 bytes from 96.47.72.84: icmp_seq=2 ttl=52 time=47.696 ms

--- freebsd.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 47.635/50.842/57.194/4.492 ms
len@mlatest:~ $

Please note that you don't need to be root to run ping commands.
 
Your problem appears to be here:
Code:
/var/log/messages:Dec  8 14:13:54 <hostname> ntpd[83427]: error resolving pool 0.freebsd.pool.ntp.org: Name does not resolve (8)

I am not seeing that error in my own /var/log/messages.

You should also be able to ping ntp.org and related sites:
Code:
len@mlatest:~ $ ping -c 3 0.freebsd.pool.ntp.org
PING 0.freebsd.pool.ntp.org (38.229.62.9): 56 data bytes
64 bytes from 38.229.62.9: icmp_seq=0 ttl=50 time=44.015 ms
64 bytes from 38.229.62.9: icmp_seq=1 ttl=50 time=43.425 ms
64 bytes from 38.229.62.9: icmp_seq=2 ttl=50 time=43.818 ms

--- 0.freebsd.pool.ntp.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 43.425/43.752/44.015/0.245 ms
len@mlatest:~ $ ping -c 3 ntp.org
PING ntp.org (64.142.54.22): 56 data bytes
64 bytes from 64.142.54.22: icmp_seq=0 ttl=43 time=56.405 ms
64 bytes from 64.142.54.22: icmp_seq=1 ttl=43 time=56.083 ms
64 bytes from 64.142.54.22: icmp_seq=2 ttl=43 time=55.981 ms

--- ntp.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 55.981/56.156/56.405/0.181 ms
len@mlatest:~ $ ping -c 3 freebsd.org
PING freebsd.org (96.47.72.84): 56 data bytes
64 bytes from 96.47.72.84: icmp_seq=0 ttl=52 time=47.635 ms
64 bytes from 96.47.72.84: icmp_seq=1 ttl=52 time=57.194 ms
64 bytes from 96.47.72.84: icmp_seq=2 ttl=52 time=47.696 ms

--- freebsd.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 47.635/50.842/57.194/4.492 ms
len@mlatest:~ $

Please note that you don't need to be root to run ping commands.
Yes, Vull, I agree that that message looked problematic. Thanks for specifying that I don't need to be root to run ping and for showing me your examples.

Alas, it seems I am able to ping those servers:
Code:
<username>@<hostname>:~ % ping -c 3 0.freebsd.pool.ntp.org
PING 0.freebsd.pool.ntp.org (23.157.160.168): 56 data bytes
64 bytes from 23.157.160.168: icmp_seq=0 ttl=52 time=58.355 ms
64 bytes from 23.157.160.168: icmp_seq=1 ttl=52 time=41.114 ms
64 bytes from 23.157.160.168: icmp_seq=2 ttl=52 time=43.343 ms

--- 0.freebsd.pool.ntp.org ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 41.114/47.604/58.355/7.657 ms
<username>@<hostname>:~ % ping -c 3 ntp.org
PING6(56=40+8+8 bytes) 2604:2d80:7088:bc00:b6d5:bdff:feb6:614c --> 2001:1838:2000:41b::80:0
16 bytes from 2001:1838:2000:41b::80:0, icmp_seq=0 hlim=54 time=27.837 ms
16 bytes from 2001:1838:2000:41b::80:0, icmp_seq=1 hlim=54 time=24.527 ms
16 bytes from 2001:1838:2000:41b::80:0, icmp_seq=2 hlim=54 time=30.384 ms

--- ntp.org ping6 statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/std-dev = 24.527/27.583/30.384/2.398 ms
<username>@<hostname>:~ % ping -c 3 freebsd.org
PING6(56=40+8+8 bytes) 2604:2d80:7088:bc00:b6d5:bdff:feb6:614c --> 2610:1c1:1:606c::50:15
16 bytes from 2610:1c1:1:606c::50:15, icmp_seq=0 hlim=47 time=51.501 ms
16 bytes from 2610:1c1:1:606c::50:15, icmp_seq=1 hlim=47 time=48.137 ms
16 bytes from 2610:1c1:1:606c::50:15, icmp_seq=2 hlim=47 time=45.427 ms

--- freebsd.org ping6 statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/std-dev = 45.427/48.355/51.501/2.484 ms
<username>@<hostname>:~ %
 
Is this a wired or wireless connection you're using? You mentioned the wpa_supplicant having issues.
If I was to guess, and from the logs, the authentication by WPA is failing a few seconds before NTP is being invoked and trying to connect to the server. Therefore, ntp fails to set the time at that point and barfs.
 
Please note that you don't need to be root to run ping commands.

Very true. In fact, the best advice should be to always try commands as the non-root user. If that fails, then invoke root, run your command and then exit back to the 'normal' user.
 
Is this a wired or wireless connection you're using? You mentioned the wpa_supplicant having issues.
If I was to guess, and from the logs, the authentication by WPA is failing a few seconds before NTP is being invoked and trying to connect to the server. Therefore, ntp fails to set the time at that point and barfs.
I'm using a wireless connection.

That seems like a reasonable guess. Do you know the next troubleshooting steps?

Also, does NTP (or ntpd?) run only at boot time, or does it run at boot time and also in the background while using the computer?
 
I'm using a wireless connection.

That seems like a reasonable guess. Do you know the next troubleshooting steps?

Also, does NTP (or ntpd?) run only at boot time, or does it run at boot time and also in the background while using the computer?
I will answer the last first. It does but you can delay it a bit by placing it not only in /etc/rc.conf but in the root's crontab using @reboot command:

@reboot sleep 120 && /usr/sbin/ntpd <all the arguments here>

Should the ntpd service be running when this is invoked it will fail but that's ok.

However, this is not fixing the problem.

Others might need to chime in on wpa_supplicant. I know very little about it, however you could show your config file (sans any passwords of course).
 
I will answer the last first. It does but you can delay it a bit by placing it not only in /etc/rc.conf but in the root's crontab using @reboot command:

@reboot /usr/sbin/ntpd <all the arguments here>

Should the ntpd service be running when this is invoked it will fail but that's ok.

However, this is not fixing the problem.

Others might need to chime in on wpa_supplicant. I know very little about it, however you could show your config file (sans any passwords of course).
By "(i)t does," you mean NTP/ntpd runs at boot time and while using the computer, correct?

I don't know the config file you want me to post, but if I wanted the information, I could run # ee /path/to/fi.le as root, correct? I would just need to find where it lists the password and edit it out. Maybe I will wait to post that file until someone else asks for it.
 
By "(i)t does," you mean NTP/ntpd runs at boot time and while using the computer, correct?

I don't know the config file you want me to post, but if I wanted the information, I could run # ee /path/to/fi.le as root, correct? I would just need to find where it lists the password and edit it out. Maybe I will wait to post that file until someone else asks for it.
Yes, this is correct. NTPD runs at boot (mostly) via rc.conf. You can invoke it afterwards if you have not set it to start at boot:
sysrc ntpd_enable=no

You can start it at any time (you must be root to do so), BUT, if it is already running the new instance you run will fail. This is expected functionality as you cannot have two programs synchronising time.

Regarding WPA:
There must be a file containing your configuration information. According to wpa_supplicant.conf(5) it's located in /etc/ and called wpa_supplicant.conf

Steps to take:
cp /etc/wpa_supplicant.conf /tmp
ee /tmp/wpa_supplicant.conf

Then remove any passwords/keys and post the result.

Also, it would be wise to post the output of ifconfig -a
 
Yes, this is correct. NTPD runs at boot (mostly) via rc.conf. You can invoke it afterwards if you have not set it to start at boot:
sysrc ntpd_enable=no

You can start it at any time (you must be root to do so), BUT, if it is already running the new instance you run will fail. This is expected functionality as you cannot have two programs synchronising time.

Regarding WPA:
There must be a file containing your configuration information. According to wpa_supplicant.conf(5) it's located in /etc/ and called wpa_supplicant.conf

Steps to take:
cp /etc/wpa_supplicant.conf /tmp
ee /tmp/wpa_supplicant.conf

Then remove any passwords/keys and post the result.

Also, it would be wise to post the output of ifconfig -a
I could also run # ee /etc/wpa_supplicant.conf as root and copy/remove password/paste here, correct? I take it your method might just be safer if you're worried about editing the actual config file (the cp command and /tmp directory are new to me -- thanks). I think I feel comfortable copying the actual config file, though, since I think if edits are made ee will ask if you want to save the file after quitting. If no edits are made, it's my understanding ee will just quit without any additional prompting.

Are there any passwords or sensitive information I need to worry about editing out in the output of ifconfig -a?
 
I could also run # ee /etc/wpa_supplicant.conf as root and copy/remove password/paste here, correct? I take it your method might just be safer if you're worried about editing the actual config file (the cp command and /tmp directory are new to me -- thanks). I think I feel comfortable

Correct. Why edit the original and potentially corrupt something when you can make a copy?
Even if you must use root to make a copy of it (because of permissions), make a copy of it and edit that copy. Don't edit original files unless you're confident you can fix it.

copying the actual config file, though, since I think if edits are made ee will ask if you want to save the file after quitting. If no edits are made, it's my understanding ee will just quit without any additional prompting.

Are there any passwords or sensitive information I need to worry about editing out in the output of ifconfig -a?

Not unless you're worried about someone knowing your mac address or you're not using NAT and want to hide your IP. There's certainly no passwords, try it out and see.

A quick way to get output:
script /tmp/ifconfig.txt
ifconfig -a
exit (or CTRL-D)

This outputs all the information created by ifconfig -a and places it in the file /tmp/ifconfig.txt. You can then edit it. Be careful though, you don't want to edit out something that might be useful for debugging.
 
While troubleshooting this, disable local_unbound. Just comment the line out:
Code:
ifconfig_wlan0_ipv6="inet6 accept_rtadv"
create_args_wlan0="country US"
# local_unbound_enable="YES"
sshd_enable="YES"
moused_enable="YES"
 
Back
Top