diff options
Diffstat (limited to 'templates/ntp.conf.j2')
-rw-r--r-- | templates/ntp.conf.j2 | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/templates/ntp.conf.j2 b/templates/ntp.conf.j2 new file mode 100644 index 0000000..b0ddb0c --- /dev/null +++ b/templates/ntp.conf.j2 @@ -0,0 +1,22 @@ +# {{ ansible_managed }} + +# Default NTP servers for the operating system. +{% for item in ntp_servers %} +server {{ item }} +{% endfor %} + +# Security: +# +# By default, only allow time queries and block all other requests +# from unauthenticated clients. +# +# See http://support.ntp.org/bin/view/Support/AccessRestrictions +# for more information. +# +restrict default kod limited nomodify notrap nopeer noquery +restrict -6 default kod limited nomodify notrap nopeer noquery + +# The following settings allow unrestricted access from the localhost +restrict 127.0.0.1 +restrict -6 ::1 +restrict 127.127.1.0 |