From: Patrick Grimm Date: Thu, 25 Jul 2013 08:32:04 +0000 (+0000) Subject: luci-olsr: read ip6assign from ubus X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=022970ec493ce6df9491cf067a92fbae711cb935 luci-olsr: read ip6assign from ubus --- diff --git a/applications/luci-olsr/luasrc/controller/olsr.lua b/applications/luci-olsr/luasrc/controller/olsr.lua index cdd5645b6..19e549df9 100644 --- a/applications/luci-olsr/luasrc/controller/olsr.lua +++ b/applications/luci-olsr/luasrc/controller/olsr.lua @@ -135,6 +135,7 @@ function action_neigh(json) local sys = require "luci.sys" local assoclist = {} local neightbl = require "neightbl" + local ipc = require "luci.ip" luci.sys.net.routes(function(r) if r.dest:prefix() == 0 then @@ -193,27 +194,18 @@ function action_neigh(json) end end elseif v.proto == '6' then - local uprefix = uci:get("network", "globals", "ula_prefix") or "" - uprefix = string.gsub(uprefix, "::/.*", "") - ip6assign_c = 0 uci:foreach("network", "interface",function(vif) - local ip6assign = vif.ip6assign or 0 - if ip6assign ~= 0 then - if ip6assign_c == 0 then - ip6assign_addr = uprefix.."::1" - else - ip6assign_addr = uprefix..":"..ip6assign_c.."::1" + local name = vif['.name'] + local net = ntm:get_network(name) + local device = net and net:get_interface() + local locip = ipc.IPv6(v.localIP) + for _, a in ipairs(device:ip6addrs()) do + if not a:is6linklocal() then + if a:host() == locip:host() then + interface = name + neihgt = neightbl.get(device.ifname) or {} + end end - ip6assign_c = ip6assign_c + 1 - end - if ip6assign_addr == v.localIP then - interface = vif['.name'] or vif.interface - neihgt = neightbl.get(vif.ifname) or {} - return - elseif vif.ip6addr and string.gsub(vif.ip6addr, "/"..ip6assign, "") == v.localIP then - interface = vif['.name'] or vif.interface - neihgt = neightbl.get(vif.ifname) or {} - return end end) for ip,mac in pairs(neihgt) do