Commit 34c1037a authored by Franco Fichtner's avatar Franco Fichtner

unbound: don't register loopback for #1401

(cherry picked from commit 03170898)
parent a4d3698d
......@@ -558,6 +558,9 @@ function unbound_add_host_entries()
}
foreach ($interfaces as $interface) {
if ($interface == 'lo0') {
continue;
}
$if = get_real_interface($interface);
if (does_interface_exist($if)) {
$laddr = find_interface_ip($if);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment