display both types of gateway on Status page (#554)

* display both types of gateway on Status page

* underline section labels

* add LAN AP SSID if exists

* add gateway node label
This commit is contained in:
Steve 2022-11-30 15:04:41 -07:00 committed by GitHub
parent 46a23f8e26
commit ed77cec3b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 86 additions and 68 deletions

View File

@ -49,7 +49,8 @@ function mesh_ip_to_hostnames(ip)
if not ip or ip == "" or ip == "none" then if not ip or ip == "" or ip == "none" then
return "" return ""
end end
local pattern = "^" .. ip .. "%s+([%w%-]+)" local pattern = "^" .. ip .. "%s+([%w%-%.]+)"
local host = "none"
for line in io.lines("/etc/hosts") for line in io.lines("/etc/hosts")
do do
local host = line:match(pattern) local host = line:match(pattern)
@ -57,35 +58,34 @@ function mesh_ip_to_hostnames(ip)
return host.gsub("%s+", " / ") return host.gsub("%s+", " / ")
end end
end end
local hosts = ""
if nixio.fs.stat("/var/run/hosts_olsr.stable") then if nixio.fs.stat("/var/run/hosts_olsr.stable") then
for line in io.lines("/var/run/hosts_olsr.stable") for line in io.lines("/var/run/hosts_olsr.stable")
do do
local host = line:match(pattern) local host = line:match(pattern)
if host then if host then
hosts = hosts .. " / " .. host host = host:gsub("^dtdlink%.","")
host = host:gsub("^mid[0-9]*%.","")
host = host:gsub("%.local.mesh$","")
return host
end end
end end
end end
return hosts:sub(4, #hosts) return host
end end
function get_default_gw() function get_default_gw(iface)
-- a node with a wired default gw will route via this -- wan will route via table 254 default gw
local p = io.popen("ip route list table 254") -- wifi will route via OLSR table 31 default gw
if p then local rtable = ""
for line in p:lines() if iface == "wan" then
do rtable = "ip route list table 254"
local gw = line:match("^default%svia%s([%d%.]+)") elseif iface == "wifi" then
if gw then rtable = "ip route list table 31"
p:close() else
return gw return "none"
end end
end
p:close() local p = io.popen(rtable)
end
-- table 31 is populated by OLSR
p = io.popen("ip route list table 31")
if p then if p then
for line in p:lines() for line in p:lines()
do do
@ -320,7 +320,8 @@ local cidr = netmask_to_cidr(cursor:get("network", "wifi", "netmask"))
if wifi_disabled then if wifi_disabled then
col1[#col1 + 1] = "<th align=right><nobr>primary address:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" col1[#col1 + 1] = "<th align=right><nobr>primary address:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>"
else else
col1[#col1 + 1] = "<th align=right><nobr>mesh RF address:</nobr><br>SSID:<br>channel:<br><nobr>channel width:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wifi_ssid .. "<br>" .. wifi_channel .. "<br>" .. wifi_chanbw .. " MHz</td>" wifi_gw = get_default_gw("wifi")
col1[#col1 + 1] = "<th align=right><nobr>mesh RF address:</nobr><br><nobr>mesh gateway:</nobr><br><nobr>gateway node:</nobr><br>SSID:<br>channel:<br><nobr>channel width:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wifi_gw .. "<br>" .. mesh_ip_to_hostnames(wifi_gw) .. "<br>" .. wifi_ssid .. "<br>" .. wifi_channel .. "<br>" .. wifi_chanbw .. " MHz</td>"
end end
ip = cursor:get("network", "lan", "ipaddr") ip = cursor:get("network", "lan", "ipaddr")
@ -337,29 +338,39 @@ if remote_ip then
hide_local = true hide_local = true
end end
end end
if ip:match("^10%.") or not hide_local then if ip:match("^10%.") or not hide_local then
cidr = netmask_to_cidr(mask) cidr = netmask_to_cidr(mask)
col1[#col1 + 1] = "<th align=right><nobr>LAN address:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" local lan_wifi_ssid = "none"
cursor:foreach("wireless", "wifi-iface",
function (section)
if section.network == "lan" then
lan_wifi_ssid = section.ssid
return false
end
end
)
if lan_wifi_ssid ~= "none" then
col1[#col1 + 1] = "<th align=right><nobr>LAN address:</nobr><br><nobr>LAN AP SSID:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. lan_wifi_ssid .. "</td>"
else
col1[#col1 + 1] = "<th align=right><nobr>LAN address:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small></td>"
end
end end
local wan_iface = aredn.hardware.get_iface_name("wan") local wan_iface = aredn.hardware.get_iface_name("wan")
if not hide_local and wan_iface then if wan_iface and not hide_local then
local ip, bcast, mask = aredn.hardware.get_interface_ip4(wan_iface) local ip, bcast, mask = aredn.hardware.get_interface_ip4(wan_iface)
if not ip then
col1[#col1 + 1] = "<th align=right valign=top><nobr>WAN address:</nobr><br><nobr>default gateway:</nobr><br><nobr>gateway node:</nobr></th><td>none<br>" .. wifi_gw .. "<br>" .. mesh_ip_to_hostnames(wifi_gw) .. "</td>"
else
local wprefix = "" local wprefix = ""
local wan_wifi_sig = "none"
local wan_wifi_noi = "none"
local wan_wifi_snr = "none" local wan_wifi_snr = "none"
local wan_wifi_ssid
if wan_iface:match("^wlan%d+$") then if wan_iface:match("^wlan%d+$") then
wprefix = "wifi " wprefix = "wifi "
local s, n = get_wifi_signal(wan_iface) local s, n = get_wifi_signal(wan_iface)
if s ~= "none" and n ~= "none" then if s ~= "none" and n ~= "none" then
wan_wifi_sig = s
wan_wifi_noi = n
wan_wifi_snr = math.abs(s - n) wan_wifi_snr = math.abs(s - n)
end end
end
local wan_wifi_ssid
cursor:foreach("wireless", "wifi-iface", cursor:foreach("wireless", "wifi-iface",
function (section) function (section)
if section.network == "wan" then if section.network == "wan" then
@ -371,46 +382,53 @@ if not hide_local and wan_iface then
if not wan_wifi_ssid then -- if still nil then set default if not wan_wifi_ssid then -- if still nil then set default
wan_wifi_ssid = "none" wan_wifi_ssid = "none"
end end
end
if ip then
cidr = netmask_to_cidr(mask) cidr = netmask_to_cidr(mask)
if wprefix == "" then wan_gw = get_default_gw("wan")
col1[#col1 + 1] = "<th align=right><nobr>WAN address:</nobr><br><nobr>" .. "</th><td>" .. ip .. " <small>/ " .. cidr .. "</small></td>" if wprefix == "" then -- no wifi wan
if wan_gw:match("^10%.") or not hide_local then
if wan_gw:match("^10%.") then
col1[#col1 + 1] = "<th align=right><nobr><nobr>WAN address:</nobr><br>gateway:<br><nobr>gateway node:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wan_gw .. "<br><nobr>" .. mesh_ip_to_hostnames(wan_gw) .. "</nobr></td>"
else else
col1[#col1 + 1] = "<th align=right><nobr>WAN address:</nobr><br>default gateway:</th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wan_gw .. "</td>"
end
end
else -- with wifi wan
if wan_wifi_ssid ~= "none" and wan_wifi_snr ~= "none" then if wan_wifi_ssid ~= "none" and wan_wifi_snr ~= "none" then
col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr><br><nobr>" .. wprefix .. "WAN SSID / SNR:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br><nobr>" .. wan_wifi_ssid .. " / " .. wan_wifi_snr .. " dB</td>" if wan_gw:match("^10%.") or not hide_local then
if wan_gw:match("^10%.") then
col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr><br><nobr>SSID | SNR:</nobr><br>gateway:<br><nobr>gateway node:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br><nobr>" .. wan_wifi_ssid .. " | " .. wan_wifi_snr .. " dB<br>" .. wan_gw .. "<br><nobr>" .. mesh_ip_to_hostnames(wan_gw) .. "</nobr></td>"
else else
col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small></td>" col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr><br><nobr>SSID | SNR:</nobr><br>default gateway:</th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br><nobr>" .. wan_wifi_ssid .. " | " .. wan_wifi_snr .. " dB<br>" .. wan_gw .. "</td>"
end end
end end
else else
col1[#col1 + 1] = "<th align=right><nobr>WAN address:</nobr></th><td>none</small></td>" if wan_gw:match("^10%.") or not hide_local then
if wan_gw:match("^10%.") then
col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr><br>gateway:<br><nobr>gateway node:</nobr></th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wan_gw .. "<br><nobr>" .. mesh_ip_to_hostnames(wan_gw) .. "</nobr></td>"
else
col1[#col1 + 1] = "<th align=right><nobr>" .. wprefix .. "WAN address:</nobr><br>default gateway:</th><td>" .. ip .. " <small>/ " .. cidr .. "</small><br>" .. wan_gw .. "</td>"
end
end
end
end end
end
ip = get_default_gw()
if ip:match("^10%.") or not hide_local then
col1[#col1 + 1] = "<th align=right valign=top><nobr>default gateway:</nobr></th><td>" .. ip
if ip:match("^10%.") then
col1[#col1] = col1[#col1] .. "<br><nobr>" .. mesh_ip_to_hostnames(ip) .. "</nobr>"
end end
col1[#col1] = col1[#col1] .. "</td>"
end end
if browser_ip then if browser_ip then
col1[#col1 + 1] = "<th align=right><nobr>your address:</nobr></th><td>" .. browser_ip .. "<br><nobr>" .. mesh_ip_to_hostnames(browser_ip) .. "</nobr></td>" col1[#col1 + 1] = "<th align=right><nobr>your address:</nobr></th><td>" .. browser_ip .. "<br><nobr>" .. mesh_ip_to_hostnames(browser_ip) .. "</nobr></td>"
end end
-- right column - system info -- right column - system info
if config == "mesh" and not wifi_disabled then if config == "mesh" and not wifi_disabled then
col2[#col2 + 1] = "<th align=right valign=middle><nobr>signal / noise / SNR:</nobr></th><td valign=middle><nobr>" col2[#col2 + 1] = "<th align=right valign=middle><nobr>signal|noise|SNR:</nobr></th><td valign=middle><nobr>"
local s, n = get_wifi_signal(wifi_iface) local s, n = get_wifi_signal(wifi_iface)
if s == "none" then if s == "none" then
col2[#col2] = col2[#col2] .. "no RF links" col2[#col2] = col2[#col2] .. "no RF links"
else else
col2[#col2] = col2[#col2] .. "<big><b>" .. s .. " / " .. n .. " / " .. math.abs(s - n) .. " dB</b></big>" col2[#col2] = col2[#col2] .. "<b>" .. s .. " | " .. n .. " | " .. math.abs(s - n) .. " dB</b>"
col2[#col2] = col2[#col2] .. "&nbsp;&nbsp;&nbsp;<button type=button onClick='window.location=\"signal?realtime=1\"' title='Display continuous or archived signal strength on a chart'>Charts</button></nobr></td>" col2[#col2] = col2[#col2] .. "&nbsp;&nbsp;&nbsp;<button type=button onClick='window.location=\"signal?realtime=1\"' title='Display continuous or archived signal strength on a chart'>Charts</button></nobr></td>"
end end
end end