Skip to content
Snippets Groups Projects
Commit 78ed75ee authored by Andreas Ziegler's avatar Andreas Ziegler
Browse files

Revert "gluon-core: make sure dns traffic leaves the correct interface when...

Revert "gluon-core: make sure dns traffic leaves the correct interface when there is ipv6 wan uplink"

This reverts commit b3d70111.

with this change, DNS in batman-adv based networks is broken.
although the revert breaks babel based networks, this is not as big of a problem.
parent a304814c
No related branches found
No related tags found
No related merge requests found
......@@ -16,13 +16,6 @@ uci:delete('dhcp', dnsmasq, 'cachesize')
uci:delete('firewall', 'client_dns')
if dns.servers then
localipv6 = uci:get("network", "loopback", "ip6addr")
-- below is an ugly hack that makes sure the dns upstream traffic is leaving the correct network interface.
appended = {}
for i,s in ipairs(dns.servers) do
table.insert(appended, s .. "@" .. string.sub(localipv6,0, string.find(localipv6,"/")-1 ) )
end
uci:set('dhcp', dnsmasq, 'server', appended )
-- allow inbound traffic for dns from client zone
uci:section('firewall', 'rule', 'client_dns', {
src = 'local_client',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment