applications/siitwizard: lower mtu on lan and wan to 1240, make sure to remove old...
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 27 Dec 2008 18:27:12 +0000 (18:27 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 27 Dec 2008 18:27:12 +0000 (18:27 +0000)
applications/luci-siitwizard/luasrc/model/cbi/siitwizard.lua

index c1dbb0e..3603d6e 100644 (file)
@@ -182,13 +182,14 @@ function mode.write(self, section, value)
        if value == "gateway" then
 
                -- wan mtu
-               uci:set("network", "wan", "mtu", 1400)
+               uci:set("network", "wan", "mtu", 1240)
 
                -- lan settings
                uci:tset("network", "lan", {
-                       mtu     = 1400,
+                       mtu     = 1240,
                        ipaddr  = lan_net:host():string(),
-                       netmask = lan_net:mask():string()
+                       netmask = lan_net:mask():string(),
+                       proto   = "static"
                })
 
                -- use full siit subnet
@@ -216,7 +217,7 @@ function mode.write(self, section, value)
 
                -- lan settings
                uci:tset("network", "lan", {
-                       mtu     = 1400,
+                       mtu     = 1240,
                        ipaddr  = lan_net:host():string(),
                        netmask = lan_net:mask():string()
                })
@@ -341,11 +342,7 @@ function mode.write(self, section, value)
 
        -- hna6
        uci:delete_all("olsrd", "Hna6",
-               function(s)
-                       if s.netaddr and s.prefix then
-                               return siit_route:contains(luci.ip.IPv6(s.netaddr.."/"..s.prefix))
-                       end
-               end)
+               function(s) return true end)
 
        uci:section("olsrd", "Hna6", nil, {
                netaddr = siit_route:host():string(),