diff options
author | Ian Lepore <ian@FreeBSD.org> | 2018-06-24 03:29:00 +0000 |
---|---|---|
committer | Ian Lepore <ian@FreeBSD.org> | 2018-06-24 03:29:00 +0000 |
commit | 4b4a86528495a972c8f328031df7696bf3ba8969 (patch) | |
tree | 1b1054d57413b986b9183370f85b453c0a76cf1c | |
parent | 57ec63b396b1f04cfee462575dfe6d77d4a37be2 (diff) | |
download | src-4b4a86528495a972c8f328031df7696bf3ba8969.tar.gz src-4b4a86528495a972c8f328031df7696bf3ba8969.zip |
Modernize usage of "restrict" keyword in ntp.conf
It is no longer necessary to specify a -4/-6 flag on any ntp.conf
keyword. The address type is inferred from the address itself as
necessary. "restrict default" statements always apply to both address
families regardless of any -4/-6 flag that may be present.
So this change just tidies up our default config by removing the redundant
restrict -6 statement and comment, and by removing the -6 flag from the
restrict keyword that allows access from localhost.
This change was inspired by the patches provided in PRs 201803 and 210245,
and included some contrib/ntp code inspection to verify that the -4/-6
keywords are basically no-ops in all contexts now.
PR: 201803 210245
Differential Revision: https://reviews.freebsd.org/D15974
Notes
Notes:
svn path=/head/; revision=335595
-rw-r--r-- | etc/ntp.conf | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/etc/ntp.conf b/etc/ntp.conf index 977295ecd512..48194eb98998 100644 --- a/etc/ntp.conf +++ b/etc/ntp.conf @@ -62,15 +62,13 @@ pool 0.freebsd.pool.ntp.org iburst # See http://support.ntp.org/bin/view/Support/AccessRestrictions # for more information. # -restrict default limited kod nomodify notrap noquery nopeer -restrict -6 default limited kod nomodify notrap noquery nopeer -restrict source limited kod nomodify notrap noquery +restrict default limited kod nomodify notrap noquery nopeer +restrict source limited kod nomodify notrap noquery # # Alternatively, the following rules would block all unauthorized access. # #restrict default ignore -#restrict -6 default ignore # # In this case, all remote NTP time servers also need to be explicitly # allowed or they would not be able to exchange time information with @@ -85,7 +83,7 @@ restrict source limited kod nomodify notrap noquery # # The following settings allow unrestricted access from the localhost restrict 127.0.0.1 -restrict -6 ::1 +restrict ::1 # # If a server loses sync with all upstream servers, NTP clients |