1 | # /etc/ntp.conf, configuration for ntpd |
---|
2 | |
---|
3 | # ntpd will use syslog() if logfile is not defined |
---|
4 | #logfile /var/log/ntpd |
---|
5 | |
---|
6 | driftfile /var/lib/ntp/ntp.drift |
---|
7 | statsdir /var/log/ntpstats/ |
---|
8 | |
---|
9 | statistics loopstats peerstats clockstats |
---|
10 | filegen loopstats file loopstats type day enable |
---|
11 | filegen peerstats file peerstats type day enable |
---|
12 | filegen clockstats file clockstats type day enable |
---|
13 | |
---|
14 | |
---|
15 | # You do need to talk to an NTP server or two (or three). |
---|
16 | server time.mit.edu |
---|
17 | |
---|
18 | # pool.ntp.org maps to more than 100 low-stratum NTP servers. |
---|
19 | # Your server will pick a different set every time it starts up. |
---|
20 | # *** Please consider joining the pool! *** |
---|
21 | # *** <http://www.pool.ntp.org/#join> *** |
---|
22 | #server pool.ntp.org |
---|
23 | #server pool.ntp.org |
---|
24 | ## uncomment for extra reliability |
---|
25 | |
---|
26 | # ... and use the local system clock as a reference if all else fails |
---|
27 | # NOTE: in a local network, set the local stratum of *one* stable server |
---|
28 | # to 10; otherwise your clocks will drift apart if you lose connectivity. |
---|
29 | server 127.127.1.0 |
---|
30 | fudge 127.127.1.0 stratum 13 |
---|
31 | |
---|
32 | # By default, exchange time with everybody, but don't allow configuration. |
---|
33 | # See /usr/share/doc/ntp-doc/html/accopt.html for details. |
---|
34 | restrict default kod notrap nomodify nopeer noquery |
---|
35 | |
---|
36 | # Local users may interrogate the ntp server more closely. |
---|
37 | restrict 127.0.0.1 nomodify |
---|
38 | |
---|
39 | # Clients from this (example!) subnet have unlimited access, |
---|
40 | # but only if cryptographically authenticated |
---|
41 | #restrict 192.168.123.0 mask 255.255.255.0 notrust |
---|
42 | |
---|
43 | # If you want to provide time to your local subnet, change the next line. |
---|
44 | # (Again, the address is an example only.) |
---|
45 | #broadcast 192.168.123.255 |
---|
46 | |
---|
47 | # If you want to listen to time broadcasts on your local subnet, |
---|
48 | # de-comment the next lines. Please do this only if you trust everybody |
---|
49 | # on the network! |
---|
50 | #disable auth |
---|
51 | #broadcastclient |
---|
52 | |
---|