117 lines
3.8 KiB
Django/Jinja
117 lines
3.8 KiB
Django/Jinja
{# Updated: 2023-09-25 #}
|
|
# master: {{ common_mastering }}
|
|
# updated: {{ ansible_date_time.date }}
|
|
|
|
# /etc/ntpsec/ntp.conf, configuration for ntpd; see ntp.conf(5) for help
|
|
|
|
driftfile {{ ntp_driftfile }}
|
|
leapfile {{ ntp_leapfile }}
|
|
|
|
# To enable Network Time Security support as a server, obtain a certificate
|
|
# (e.g. with Let's Encrypt), configure the paths below, and uncomment:
|
|
# nts cert CERT_FILE
|
|
# nts key KEY_FILE
|
|
# nts enable
|
|
|
|
# You must create /var/log/ntpsec (owned by ntpsec:ntpsec) to enable logging.
|
|
#statsdir /var/log/ntpsec/
|
|
#statistics loopstats peerstats clockstats
|
|
#filegen loopstats file loopstats type day enable
|
|
#filegen peerstats file peerstats type day enable
|
|
#filegen clockstats file clockstats type day enable
|
|
|
|
statistics loopstats peerstats clockstats
|
|
filegen loopstats file loopstats type day enable
|
|
filegen peerstats file peerstats type day enable
|
|
filegen clockstats file clockstats type day enable
|
|
|
|
{% if ntp_tinker_panic is sameas true %}
|
|
# Always reset the clock, even if the new time is more than 1000s away
|
|
# from the current system time. Usefull for VMs that can be paused
|
|
# and much later resumed.
|
|
tinker panic 0
|
|
{% endif %}
|
|
|
|
# This should be maxclock 7, but the pool entries count towards maxclock.
|
|
tos maxclock 11
|
|
|
|
# Comment this out if you have a refclock and want it to be able to discipline
|
|
# the clock by itself (e.g. if the system is not connected to the network).
|
|
tos minclock 4 minsane 3
|
|
|
|
# Specify one or more NTP servers.
|
|
|
|
# Public NTP servers supporting Network Time Security:
|
|
# server time.cloudflare.com nts
|
|
|
|
# pool.ntp.org maps to about 1000 low-stratum NTP servers. Your server will
|
|
# pick a different set every time it starts up. Please consider joining the
|
|
# pool: <https://www.pool.ntp.org/join.html>
|
|
|
|
{% for item in ntp_servers %}
|
|
pool {{ item }} iburst dynamic
|
|
{% endfor %}
|
|
|
|
# Access control configuration; see /usr/share/doc/ntpsec-doc/html/accopt.html
|
|
# for details.
|
|
#
|
|
# Note that "restrict" applies to both servers and clients, so a configuration
|
|
# that might be intended to block requests from certain clients could also end
|
|
# up blocking replies from your own upstream servers.
|
|
|
|
# By default, exchange time with everybody, but don't allow configuration.
|
|
restrict default kod nomodify nopeer noquery limited
|
|
|
|
# Allow pool associations
|
|
restrict source nomodify notrap noquery
|
|
|
|
# Local users may interrogate the ntp server more closely.
|
|
|
|
# Permit all access over the loopback interface. This could
|
|
# be tightened as well, but to do so would effect some of
|
|
# the administrative functions.
|
|
{% for item in ntp_restrict %}
|
|
restrict {{ item }}
|
|
{% endfor %}
|
|
|
|
|
|
# Clients from this (example!) subnet have unlimited access, but only if
|
|
# cryptographically authenticated.
|
|
#restrict 192.168.123.0 mask 255.255.255.0 notrust
|
|
|
|
# Enable public key cryptography.
|
|
#crypto
|
|
|
|
#includefile /etc/ntp/crypto/pw
|
|
|
|
# Key file containing the keys and key identifiers used when operating
|
|
# with symmetric key cryptography.
|
|
#keys /etc/ntp/keys
|
|
|
|
# Specify the key identifiers which are trusted.
|
|
#trustedkey 4 8 42
|
|
|
|
# Specify the key identifier to use with the ntpdc utility.
|
|
#requestkey 8
|
|
|
|
# Specify the key identifier to use with the ntpq utility.
|
|
#controlkey 8
|
|
|
|
# Enable writing of statistics records.
|
|
#statistics clockstats cryptostats loopstats peerstats
|
|
|
|
# Disable the monitoring facility to prevent amplification attacks using ntpdc
|
|
# monlist command when default restrict does not include the noquery flag. See
|
|
# CVE-2013-5211 for more details.
|
|
# Note: Monitoring will not be disabled with the limited restriction flag.
|
|
disable monitor
|
|
|
|
# If you want to provide time to your local subnet, change the next line.
|
|
# (Again, the address is an example only.)
|
|
#broadcast 192.168.123.255
|
|
|
|
# If you want to listen to time broadcasts on your local subnet, de-comment the
|
|
# next lines. Please do this only if you trust everybody on the network!
|
|
#disable auth
|
|
#broadcastclient
|