mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Detect Direct Output or not
This commit is contained in:
parent
9ee03b8f62
commit
a8ab9477d9
2 changed files with 18 additions and 3 deletions
|
@ -743,7 +743,8 @@ function interfaces_status()
|
|||
mArray.openmptcprouter["service_addr"] = ""
|
||||
ucic:foreach("openmptcprouter", "server", function(s)
|
||||
local serverip = uci:get("openmptcprouter",s[".name"],"ip") or ""
|
||||
if serverip ~= "" then
|
||||
local disabled = uci:get("openmptcprouter",s[".name"],"disabled") or "0"
|
||||
if serverip ~= "" and disabled ~= "1" then
|
||||
mArray.openmptcprouter["service_addr"] = serverip
|
||||
end
|
||||
end)
|
||||
|
@ -1102,6 +1103,8 @@ function interfaces_status()
|
|||
end
|
||||
end
|
||||
|
||||
|
||||
mArray.openmptcprouter["direct_output"] = false
|
||||
-- overview status
|
||||
mArray.wans = {}
|
||||
mArray.tunnels = {}
|
||||
|
@ -1175,6 +1178,15 @@ function interfaces_status()
|
|||
end
|
||||
if ipaddr == "" and ip6addr == "" then
|
||||
connectivity = "ERROR"
|
||||
else
|
||||
if mArray.openmptcprouter["wan_addr"] == ipaddr then
|
||||
mArray.openmptcprouter["direct_output"] = true
|
||||
end
|
||||
if mArray.openmptcprouter["ipv6"] == "enabled" or ( mArray.openmptcprouter["service_addr_ip6"] ~= "" and mArray.openmptcprouter["service_addr_ip6"] ~= nil) then
|
||||
if mArray.openmptcprouter["wan_addr6"] == ip6addr then
|
||||
mArray.openmptcprouter["direct_output"] = true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
local multipath_state = ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue