2 LuCI - Lua Configuration Interface
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2011 Jo-Philipp Wich <xm@subsignal.org>
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
15 module("luci.controller.admin.network", package.seeall)
18 local uci = require("luci.model.uci").cursor()
21 page = node("admin", "network")
22 page.target = firstchild()
23 page.title = _("Network")
28 local has_switch = false
30 uci:foreach("network", "switch",
37 page = node("admin", "network", "vlan")
38 page.target = cbi("admin_network/vlan")
39 page.title = _("Switch")
42 page = entry({"admin", "network", "switch_status"}, call("switch_status"), nil)
47 local has_wifi = false
49 uci:foreach("wireless", "wifi-device",
56 page = entry({"admin", "network", "wireless_join"}, call("wifi_join"), nil)
59 page = entry({"admin", "network", "wireless_add"}, call("wifi_add"), nil)
62 page = entry({"admin", "network", "wireless_delete"}, call("wifi_delete"), nil)
65 page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil)
68 page = entry({"admin", "network", "wireless_reconnect"}, call("wifi_reconnect"), nil)
71 page = entry({"admin", "network", "wireless_shutdown"}, call("wifi_shutdown"), nil)
74 page = entry({"admin", "network", "wireless"}, arcombine(template("admin_network/wifi_overview"), cbi("admin_network/wifi")), _("Wifi"), 15)
80 local net = require "luci.model.network".init(uci)
81 for _, wdev in ipairs(net:get_wifidevs()) do
83 for _, wnet in ipairs(wdev:get_wifinets()) do
85 {"admin", "network", "wireless", wnet:id()},
86 alias("admin", "network", "wireless"),
87 wdev:name() .. ": " .. wnet:shortname()
95 page = entry({"admin", "network", "iface_add"}, cbi("admin_network/iface_add"), nil)
98 page = entry({"admin", "network", "iface_delete"}, call("iface_delete"), nil)
101 page = entry({"admin", "network", "iface_status"}, call("iface_status"), nil)
104 page = entry({"admin", "network", "iface_reconnect"}, call("iface_reconnect"), nil)
107 page = entry({"admin", "network", "iface_shutdown"}, call("iface_shutdown"), nil)
110 page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), _("Interfaces"), 10)
115 uci:foreach("network", "interface",
117 local ifc = section[".name"]
118 if ifc ~= "loopback" then
119 entry({"admin", "network", "network", ifc},
126 if nixio.fs.access("/etc/config/dhcp") then
127 page = node("admin", "network", "dhcp")
128 page.target = cbi("admin_network/dhcp")
129 page.title = _("DHCP and DNS")
132 page = entry({"admin", "network", "dhcplease_status"}, call("lease_status"), nil)
135 page = node("admin", "network", "hosts")
136 page.target = cbi("admin_network/hosts")
137 page.title = _("Hostnames")
141 page = node("admin", "network", "routes")
142 page.target = cbi("admin_network/routes")
143 page.title = _("Static Routes")
146 page = node("admin", "network", "diagnostics")
147 page.target = template("admin_network/diagnostics")
148 page.title = _("Diagnostics")
151 page = entry({"admin", "network", "diag_ping"}, call("diag_ping"), nil)
154 page = entry({"admin", "network", "diag_nslookup"}, call("diag_nslookup"), nil)
157 page = entry({"admin", "network", "diag_traceroute"}, call("diag_traceroute"), nil)
160 page = entry({"admin", "network", "diag_ping6"}, call("diag_ping6"), nil)
163 page = entry({"admin", "network", "diag_traceroute6"}, call("diag_traceroute6"), nil)
169 local function param(x)
170 return luci.http.formvalue(x)
173 local function ptable(x)
175 return x and (type(x) ~= "table" and { x } or x) or {}
178 local dev = param("device")
179 local ssid = param("join")
182 local cancel = (param("cancel") or param("cbi.cancel")) and true or false
185 luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless_join?device=" .. dev))
187 local cbi = require "luci.cbi"
188 local tpl = require "luci.template"
189 local map = luci.cbi.load("admin_network/wifi_add")[1]
191 if map:parse() ~= cbi.FORM_DONE then
198 luci.template.render("admin_network/wifi_join")
203 local dev = luci.http.formvalue("device")
204 local ntm = require "luci.model.network".init()
206 dev = dev and ntm:get_wifidev(dev)
209 local net = dev:add_wifinet({
216 luci.http.redirect(net:adminlink())
220 function wifi_delete(network)
221 local ntm = require "luci.model.network".init()
222 local wnet = ntm:get_wifinet(network)
224 local dev = wnet:get_device()
225 local nets = wnet:get_networks()
227 ntm:del_wifinet(network)
228 ntm:commit("wireless")
230 for _, net in ipairs(nets) do
231 if net:is_empty() then
232 ntm:del_network(net:name())
233 ntm:commit("network")
236 luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>/dev/null")
240 luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless"))
243 function iface_status(ifaces)
244 local netm = require "luci.model.network".init()
248 for iface in ifaces:gmatch("[%w%.%-_]+") do
249 local net = netm:get_network(iface)
250 local device = net and net:get_interface()
255 uptime = net:uptime(),
256 gwaddr = net:gwaddr(),
257 dnsaddrs = net:dnsaddrs(),
258 name = device:shortname(),
259 type = device:type(),
260 ifname = device:name(),
261 macaddr = device:mac(),
262 is_up = device:is_up(),
263 rx_bytes = device:rx_bytes(),
264 tx_bytes = device:tx_bytes(),
265 rx_packets = device:rx_packets(),
266 tx_packets = device:tx_packets(),
274 for _, a in ipairs(device:ipaddrs()) do
275 data.ipaddrs[#data.ipaddrs+1] = {
276 addr = a:host():string(),
277 netmask = a:mask():string(),
281 for _, a in ipairs(device:ip6addrs()) do
282 if not a:is6linklocal() then
283 data.ip6addrs[#data.ip6addrs+1] = {
284 addr = a:host():string(),
285 netmask = a:mask():string(),
291 for _, device in ipairs(net:get_interfaces() or {}) do
292 data.subdevices[#data.subdevices+1] = {
293 name = device:shortname(),
294 type = device:type(),
295 ifname = device:name(),
296 macaddr = device:mac(),
297 macaddr = device:mac(),
298 is_up = device:is_up(),
299 rx_bytes = device:rx_bytes(),
300 tx_bytes = device:tx_bytes(),
301 rx_packets = device:rx_packets(),
302 tx_packets = device:tx_packets(),
317 luci.http.prepare_content("application/json")
318 luci.http.write_json(rv)
322 luci.http.status(404, "No such device")
325 function iface_reconnect(iface)
326 local netmd = require "luci.model.network".init()
327 local net = netmd:get_network(iface)
329 luci.sys.call("env -i /sbin/ifup %q >/dev/null 2>/dev/null" % iface)
330 luci.http.status(200, "Reconnected")
334 luci.http.status(404, "No such interface")
337 function iface_shutdown(iface)
338 local netmd = require "luci.model.network".init()
339 local net = netmd:get_network(iface)
341 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
342 luci.http.status(200, "Shutdown")
346 luci.http.status(404, "No such interface")
349 function iface_delete(iface)
350 local netmd = require "luci.model.network".init()
351 local net = netmd:del_network(iface)
353 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
354 luci.http.redirect(luci.dispatcher.build_url("admin/network/network"))
355 netmd:commit("network")
356 netmd:commit("wireless")
360 luci.http.status(404, "No such interface")
363 function wifi_status(devs)
364 local s = require "luci.tools.status"
368 for dev in devs:gmatch("[%w%.%-]+") do
369 rv[#rv+1] = s.wifi_network(dev)
373 luci.http.prepare_content("application/json")
374 luci.http.write_json(rv)
378 luci.http.status(404, "No such device")
381 local function wifi_reconnect_shutdown(shutdown, wnet)
382 local netmd = require "luci.model.network".init()
383 local net = netmd:get_wifinet(wnet)
384 local dev = net:get_device()
386 dev:set("disabled", nil)
387 net:set("disabled", shutdown and 1 or nil)
388 netmd:commit("wireless")
390 luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>/dev/null")
391 luci.http.status(200, shutdown and "Shutdown" or "Reconnected")
396 luci.http.status(404, "No such radio")
399 function wifi_reconnect(wnet)
400 wifi_reconnect_shutdown(false, wnet)
403 function wifi_shutdown(wnet)
404 wifi_reconnect_shutdown(true, wnet)
407 function lease_status()
408 local s = require "luci.tools.status"
410 luci.http.prepare_content("application/json")
412 luci.http.write_json(s.dhcp_leases())
414 luci.http.write_json(s.dhcp6_leases())
418 function switch_status(switches)
419 local s = require "luci.tools.status"
421 luci.http.prepare_content("application/json")
422 luci.http.write_json(s.switch_status(switches))
425 function diag_command(cmd, addr)
426 if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then
427 luci.http.prepare_content("text/plain")
429 local util = io.popen(cmd % addr)
432 local ln = util:read("*l")
433 if not ln then break end
435 luci.http.write("\n")
444 luci.http.status(500, "Bad address")
447 function diag_ping(addr)
448 diag_command("ping -c 5 -W 1 %q 2>&1", addr)
451 function diag_traceroute(addr)
452 diag_command("traceroute -q 1 -w 1 -n %q 2>&1", addr)
455 function diag_nslookup(addr)
456 diag_command("nslookup %q 2>&1", addr)
459 function diag_ping6(addr)
460 diag_command("ping6 -c 5 %q 2>&1", addr)
463 function diag_traceroute6(addr)
464 diag_command("traceroute6 -q 1 -w 2 -n %q 2>&1", addr)