1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter-feeds.git synced 2025-02-12 18:41:51 +00:00

Check device via l3_device

This commit is contained in:
Ycarus 2019-03-28 21:33:46 +01:00
parent 523d416454
commit 6ea9041601

View file

@ -914,9 +914,9 @@ function interfaces_status()
-- Don't show if0 in the overview
--if interface == "lo" then return end
local ifname = section["ifname"] or ""
local ifname = get_device(interface)
if ifname == "" then
ifname = get_device(interface)
ifname = section["ifname"] or ""
end
duplicateif = false
if ifname ~= "" and ifname ~= nil then
@ -1211,9 +1211,9 @@ function set_ipv6_state(disable_ipv6)
luci.sys.call("uci -q del dhcp.lan.ra_default")
ucic:set("shadowsocks-libev","hi","local_address","0.0.0.0")
else
-- ucic:set("dhcp","lan","dhcpv6","server")
-- ucic:set("dhcp","lan","ra","server")
-- ucic:set("dhcp","lan","ra_default","1")
ucic:set("dhcp","lan","dhcpv6","server")
ucic:set("dhcp","lan","ra","server")
ucic:set("dhcp","lan","ra_default","1")
ucic:set("shadowsocks-libev","hi","local_address","::")
end
ucic:save("dhcp")