diff options
author | Luiz Otavio O Souza <luiz@netgate.com> | 2015-11-24 19:54:45 -0600 |
---|---|---|
committer | Luiz Otavio O Souza <luiz@netgate.com> | 2015-11-24 19:54:45 -0600 |
commit | 7cc0a76b0d0f10198861e5c305c16389e1e664db (patch) | |
tree | 9f0352cac49f6d171e1b51db3b157ce7a47e4462 /src/etc/inc | |
parent | 0697ca74b89b2062b9709d0de00f405ce7dbcadb (diff) | |
download | pfsense-7cc0a76b0d0f10198861e5c305c16389e1e664db.zip pfsense-7cc0a76b0d0f10198861e5c305c16389e1e664db.tar.gz |
It is not necessary to omit link-local for unbound. Ticket #4021
Diffstat (limited to 'src/etc/inc')
-rw-r--r-- | src/etc/inc/unbound.inc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/etc/inc/unbound.inc b/src/etc/inc/unbound.inc index 1f69da2..5979fae 100644 --- a/src/etc/inc/unbound.inc +++ b/src/etc/inc/unbound.inc @@ -188,9 +188,7 @@ EOF; } $intip = get_interface_ipv6($ubif); if (is_ipaddrv6($intip)) { - if (!is_linklocal($intip)) { // skipping link local for the moment to not break people's configs: https://redmine.pfsense.org/issues/4062 - $bindints .= "interface: $intip\n"; - } + $bindints .= "interface: $intip\n"; } } } |