Include recursion Warning in named.conf and named.conf.sample (#740894)
Signed-off-by: Tomas Hozza <thozza@redhat.com>
This commit is contained in:
parent
4242e4f1c1
commit
d0fda06135
1
.gitignore
vendored
1
.gitignore
vendored
@ -31,3 +31,4 @@ bind-9.7.2b1.tar.gz
|
|||||||
/config-10.tar.bz2
|
/config-10.tar.bz2
|
||||||
/bind-9.9.2-P2.tar.gz
|
/bind-9.9.2-P2.tar.gz
|
||||||
/bind-9.9.3rc1.tar.gz
|
/bind-9.9.3rc1.tar.gz
|
||||||
|
/config-11.tar.bz2
|
||||||
|
@ -26,7 +26,7 @@ Summary: The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) serv
|
|||||||
Name: bind
|
Name: bind
|
||||||
License: ISC
|
License: ISC
|
||||||
Version: 9.9.3
|
Version: 9.9.3
|
||||||
Release: 0.4.%{PREVER}%{?dist}
|
Release: 0.5.%{PREVER}%{?dist}
|
||||||
Epoch: 32
|
Epoch: 32
|
||||||
Url: http://www.isc.org/products/BIND/
|
Url: http://www.isc.org/products/BIND/
|
||||||
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
Buildroot:%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
@ -781,6 +781,9 @@ rm -rf ${RPM_BUILD_ROOT}
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 03 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.5.rc1
|
||||||
|
- Include recursion Warning in named.conf and named.conf.sample (#740894)
|
||||||
|
|
||||||
* Thu May 02 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.4.rc1
|
* Thu May 02 2013 Tomas Hozza <thozza@redhat.com> 32:9.9.3-0.4.rc1
|
||||||
- Fix zone2sqlite to quote table names when creating/dropping/inserting (#919417)
|
- Fix zone2sqlite to quote table names when creating/dropping/inserting (#919417)
|
||||||
|
|
||||||
|
@ -46,7 +46,17 @@ options
|
|||||||
allow-query { localhost; };
|
allow-query { localhost; };
|
||||||
allow-query-cache { localhost; };
|
allow-query-cache { localhost; };
|
||||||
|
|
||||||
// Enable/disable recursion - recursion yes/no;
|
/* Enable/disable recursion - recursion yes/no;
|
||||||
|
|
||||||
|
- If you are building an AUTHORITATIVE DNS server, do NOT enable recursion.
|
||||||
|
- If you are building a RECURSIVE (caching) DNS server, you need to enable
|
||||||
|
recursion.
|
||||||
|
- If your recursive DNS server has a public IP address, you MUST enable access
|
||||||
|
control to limit queries to your legitimate users. Failing to do so will
|
||||||
|
cause your server to become part of large scale DNS amplification
|
||||||
|
attacks. Implementing BCP38 within your network would greatly
|
||||||
|
reduce such attack surface
|
||||||
|
*/
|
||||||
recursion yes;
|
recursion yes;
|
||||||
|
|
||||||
/* DNSSEC related options. See information about keys ("Trusted keys", bellow) */
|
/* DNSSEC related options. See information about keys ("Trusted keys", bellow) */
|
||||||
|
Loading…
Reference in New Issue
Block a user