From fd3e4e7b70d1472ab022721fbeba65609527d273 Mon Sep 17 00:00:00 2001 From: Nils Schneider Date: Thu, 3 Oct 2013 23:26:00 +0200 Subject: [PATCH] gluon-config-mode: simple-tc ifname must be mesh-vpn, not mesh_vpn --- .../usr/lib/lua/luci/model/cbi/gluon-config-mode/wizard.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/gluon-config-mode/files/usr/lib/lua/luci/model/cbi/gluon-config-mode/wizard.lua b/gluon/gluon-config-mode/files/usr/lib/lua/luci/model/cbi/gluon-config-mode/wizard.lua index d14a638..6bdc7c4 100644 --- a/gluon/gluon-config-mode/files/usr/lib/lua/luci/model/cbi/gluon-config-mode/wizard.lua +++ b/gluon/gluon-config-mode/files/usr/lib/lua/luci/model/cbi/gluon-config-mode/wizard.lua @@ -65,7 +65,7 @@ function f.handle(self, state, data) uci:set("gluon-simple-tc", meshvpn_name, "interface") uci:set("gluon-simple-tc", meshvpn_name, "enabled", data._limit_enabled) - uci:set("gluon-simple-tc", meshvpn_name, "ifname", meshvpn_name) + uci:set("gluon-simple-tc", meshvpn_name, "ifname", "mesh-vpn") uci:set("gluon-simple-tc", meshvpn_name, "limit_ingress", data._limit_ingress) uci:set("gluon-simple-tc", meshvpn_name, "limit_egress", data._limit_egress) uci:commit("gluon-simple-tc")