diff options
| author | Nathaniel Roach <nroach44@gmail.com> | 2015-07-07 00:55:45 +0800 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-07-07 07:37:49 +0200 |
| commit | 0b067e2737821204ea969f72201f73604d3cd905 (patch) | |
| tree | 487ba04fa0347010396484109ef8091dfaeecd6d /package/bind | |
| parent | 9917e48d7eb5bc7fbbb0188872a32c11b4b67010 (diff) | |
| download | buildroot-0b067e2737821204ea969f72201f73604d3cd905.tar.gz buildroot-0b067e2737821204ea969f72201f73604d3cd905.zip | |
package/bind: Enable filter-aaaa-on-v4 option
This allows usage of the filter-aaaa-on-v4 configuration option.
This option disables responding with AAAA records when the request
is made over ipv4. This may be useful on networks with
ipv6 inside, but no ISP ipv6 (when combined with only
listening on ipv4).
See https://kb.isc.org/article/AA-00576/
Filter-AAAA-option-in-BIND-9-.html
for more information.
Signed-off-by: Nathaniel Roach <nroach44@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/bind')
| -rw-r--r-- | package/bind/bind.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/bind/bind.mk b/package/bind/bind.mk index 55b5f07baf..9a08461f75 100644 --- a/package/bind/bind.mk +++ b/package/bind/bind.mk @@ -26,7 +26,8 @@ BIND_CONF_OPTS = \ --enable-epoll \ --with-libtool \ --with-gssapi=no \ - --enable-rrl + --enable-rrl \ + --enable-filter-aaaa ifeq ($(BR2_PACKAGE_LIBCAP),y) BIND_CONF_OPTS += --enable-linux-caps |

