Merge pull request #1877 from christf/respondd
gluon-mesh-babel: Fix packets leaving wrong interface
This commit is contained in:
commit
ba42412527
@ -10,7 +10,7 @@ include ../gluon.mk
|
||||
|
||||
define Package/gluon-mesh-babel
|
||||
TITLE:=Babel mesh
|
||||
DEPENDS:=+gluon-core +babeld +mmfd +libiwinfo +libgluonutil +firewall +libjson-c +libnl-tiny +libubus +libubox +libblobmsg-json +libbabelhelper +luabitop +gluon-l3roamd
|
||||
DEPENDS:=+gluon-core +babeld +gluon-mmfd +libiwinfo +libgluonutil +firewall +libjson-c +libnl-tiny +libubus +libubox +libblobmsg-json +libbabelhelper +luabitop
|
||||
PROVIDES:=gluon-mesh-provider
|
||||
endef
|
||||
|
||||
|
@ -1,6 +1,8 @@
|
||||
#!/usr/bin/lua
|
||||
|
||||
local site = require 'gluon.site'
|
||||
local uci = require('simple-uci').cursor()
|
||||
local nodeip = uci:get('network', 'loopback', 'ip6addr'):match('^[^/]+')
|
||||
local babelconf='/etc/gluon-babeld.conf'
|
||||
|
||||
local file = io.open(babelconf, "w")
|
||||
@ -15,7 +17,7 @@ file:write("redistribute ip " .. site.prefix6() .. " eq 128 allow\n")
|
||||
file:write("redistribute ip " .. site.node_client_prefix6() .. " eq 128 allow\n")
|
||||
file:write("redistribute ip " .. site.node_prefix6() .. " eq 128 allow\n")
|
||||
file:write("redistribute ip 2000::/3 allow\n")
|
||||
|
||||
file:write("redistribute local if br-wan deny\n")
|
||||
file:write("redistribute local ip 0.0.0.0/0 deny\n")
|
||||
file:write("install pref-src " .. nodeip .."\n")
|
||||
file:close()
|
||||
|
Loading…
Reference in New Issue
Block a user