libs/sys: disregard ::/0 routes on "lo" in luci.sys.net.defaultroute6()
authorJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Mar 2011 19:25:03 +0000 (19:25 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Sat, 12 Mar 2011 19:25:03 +0000 (19:25 +0000)
libs/sys/luasrc/sys.lua

index 8b05d44..cc29fa3 100644 (file)
@@ -302,7 +302,9 @@ function net.defaultroute6()
        local route
 
        net.routes6(function(rt)
-               if rt.dest:prefix() == 0 and (not route or route.metric > rt.metric) then
+               if rt.dest:prefix() == 0 and rt.device ~= "lo" and 
+                  (not route or route.metric > rt.metric)
+               then
                        route = rt
                end
        end)