From 806bf8825c00e86d6eb3bc88bb18775f30f6c5c6 Mon Sep 17 00:00:00 2001 From: Jean Cyr Date: Wed, 24 Sep 2014 19:10:21 -0400 Subject: outgoing ip incorrectly set in unbound.conf DNS resolver outgoing IP interface IP address is incorrectly set to the last inbound interface IP address... fix it. --- etc/inc/unbound.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'etc/inc/unbound.inc') diff --git a/etc/inc/unbound.inc b/etc/inc/unbound.inc index f9b3340..21a982a 100644 --- a/etc/inc/unbound.inc +++ b/etc/inc/unbound.inc @@ -146,7 +146,7 @@ EOF; foreach($outgoing_interfaces as $outif) { $outip = get_interface_ip($outif); if (!is_null($outip)) - $outgoingints .= "outgoing-interface: $intip\n"; + $outgoingints .= "outgoing-interface: $outip\n"; } } -- cgit v1.1