1 -- Copyright 2008 Steven Barth <steven@midlink.org>
2 -- Copyright 2011-2015 Jo-Philipp Wich <jow@openwrt.org>
3 -- Licensed to the public under the Apache License 2.0.
5 module("luci.controller.admin.network", package.seeall)
8 local uci = require("luci.model.uci").cursor()
11 page = node("admin", "network")
12 page.target = firstchild()
13 page.title = _("Network")
18 local has_switch = false
20 uci:foreach("network", "switch",
27 page = node("admin", "network", "vlan")
28 page.target = cbi("admin_network/vlan")
29 page.title = _("Switch")
32 page = entry({"admin", "network", "switch_status"}, call("switch_status"), nil)
37 local has_wifi = false
39 uci:foreach("wireless", "wifi-device",
46 page = entry({"admin", "network", "wireless_join"}, post("wifi_join"), nil)
49 page = entry({"admin", "network", "wireless_add"}, post("wifi_add"), nil)
52 page = entry({"admin", "network", "wireless_delete"}, post("wifi_delete"), nil)
55 page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil)
58 page = entry({"admin", "network", "wireless_reconnect"}, post("wifi_reconnect"), nil)
61 page = entry({"admin", "network", "wireless_shutdown"}, post("wifi_shutdown"), nil)
64 page = entry({"admin", "network", "wireless"}, arcombine(template("admin_network/wifi_overview"), cbi("admin_network/wifi")), _("Wireless"), 15)
70 local net = require "luci.model.network".init(uci)
71 for _, wdev in ipairs(net:get_wifidevs()) do
73 for _, wnet in ipairs(wdev:get_wifinets()) do
75 {"admin", "network", "wireless", wnet:id()},
76 alias("admin", "network", "wireless"),
77 wdev:name() .. ": " .. wnet:shortname()
85 page = entry({"admin", "network", "iface_add"}, cbi("admin_network/iface_add"), nil)
88 page = entry({"admin", "network", "iface_delete"}, post("iface_delete"), nil)
91 page = entry({"admin", "network", "iface_status"}, call("iface_status"), nil)
94 page = entry({"admin", "network", "iface_reconnect"}, post("iface_reconnect"), nil)
97 page = entry({"admin", "network", "iface_shutdown"}, post("iface_shutdown"), nil)
100 page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), _("Interfaces"), 10)
105 uci:foreach("network", "interface",
107 local ifc = section[".name"]
108 if ifc ~= "loopback" then
109 entry({"admin", "network", "network", ifc},
116 if nixio.fs.access("/etc/config/dhcp") then
117 page = node("admin", "network", "dhcp")
118 page.target = cbi("admin_network/dhcp")
119 page.title = _("DHCP and DNS")
122 page = entry({"admin", "network", "dhcplease_status"}, call("lease_status"), nil)
125 page = node("admin", "network", "hosts")
126 page.target = cbi("admin_network/hosts")
127 page.title = _("Hostnames")
131 page = node("admin", "network", "routes")
132 page.target = cbi("admin_network/routes")
133 page.title = _("Static Routes")
136 page = node("admin", "network", "diagnostics")
137 page.target = template("admin_network/diagnostics")
138 page.title = _("Diagnostics")
141 page = entry({"admin", "network", "diag_ping"}, post("diag_ping"), nil)
144 page = entry({"admin", "network", "diag_nslookup"}, post("diag_nslookup"), nil)
147 page = entry({"admin", "network", "diag_traceroute"}, post("diag_traceroute"), nil)
150 page = entry({"admin", "network", "diag_ping6"}, post("diag_ping6"), nil)
153 page = entry({"admin", "network", "diag_traceroute6"}, post("diag_traceroute6"), nil)
159 local tpl = require "luci.template"
160 local http = require "luci.http"
161 local dev = http.formvalue("device")
162 local ssid = http.formvalue("join")
165 local cancel = (http.formvalue("cancel") or http.formvalue("cbi.cancel"))
167 local cbi = require "luci.cbi"
168 local map = luci.cbi.load("admin_network/wifi_add")[1]
170 if map:parse() ~= cbi.FORM_DONE then
180 tpl.render("admin_network/wifi_join")
184 local dev = luci.http.formvalue("device")
185 local ntm = require "luci.model.network".init()
187 dev = dev and ntm:get_wifidev(dev)
190 local net = dev:add_wifinet({
197 luci.http.redirect(net:adminlink())
201 function wifi_delete(network)
202 local ntm = require "luci.model.network".init()
203 local wnet = ntm:get_wifinet(network)
205 local dev = wnet:get_device()
206 local nets = wnet:get_networks()
208 ntm:del_wifinet(network)
209 ntm:commit("wireless")
211 for _, net in ipairs(nets) do
212 if net:is_empty() then
213 ntm:del_network(net:name())
214 ntm:commit("network")
217 luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>/dev/null")
221 luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless"))
224 function iface_status(ifaces)
225 local netm = require "luci.model.network".init()
229 for iface in ifaces:gmatch("[%w%.%-_]+") do
230 local net = netm:get_network(iface)
231 local device = net and net:get_interface()
236 uptime = net:uptime(),
237 gwaddr = net:gwaddr(),
238 ipaddrs = net:ipaddrs(),
239 ip6addrs = net:ip6addrs(),
240 dnsaddrs = net:dnsaddrs(),
241 name = device:shortname(),
242 type = device:type(),
243 ifname = device:name(),
244 macaddr = device:mac(),
245 is_up = device:is_up(),
246 rx_bytes = device:rx_bytes(),
247 tx_bytes = device:tx_bytes(),
248 rx_packets = device:rx_packets(),
249 tx_packets = device:tx_packets(),
254 for _, device in ipairs(net:get_interfaces() or {}) do
255 data.subdevices[#data.subdevices+1] = {
256 name = device:shortname(),
257 type = device:type(),
258 ifname = device:name(),
259 macaddr = device:mac(),
260 macaddr = device:mac(),
261 is_up = device:is_up(),
262 rx_bytes = device:rx_bytes(),
263 tx_bytes = device:tx_bytes(),
264 rx_packets = device:rx_packets(),
265 tx_packets = device:tx_packets(),
280 luci.http.prepare_content("application/json")
281 luci.http.write_json(rv)
285 luci.http.status(404, "No such device")
288 function iface_reconnect(iface)
289 local netmd = require "luci.model.network".init()
290 local net = netmd:get_network(iface)
292 luci.sys.call("env -i /sbin/ifup %q >/dev/null 2>/dev/null" % iface)
293 luci.http.status(200, "Reconnected")
297 luci.http.status(404, "No such interface")
300 function iface_shutdown(iface)
301 local netmd = require "luci.model.network".init()
302 local net = netmd:get_network(iface)
304 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
305 luci.http.status(200, "Shutdown")
309 luci.http.status(404, "No such interface")
312 function iface_delete(iface)
313 local netmd = require "luci.model.network".init()
314 local net = netmd:del_network(iface)
316 luci.sys.call("env -i /sbin/ifdown %q >/dev/null 2>/dev/null" % iface)
317 luci.http.redirect(luci.dispatcher.build_url("admin/network/network"))
318 netmd:commit("network")
319 netmd:commit("wireless")
323 luci.http.status(404, "No such interface")
326 function wifi_status(devs)
327 local s = require "luci.tools.status"
331 for dev in devs:gmatch("[%w%.%-]+") do
332 rv[#rv+1] = s.wifi_network(dev)
336 luci.http.prepare_content("application/json")
337 luci.http.write_json(rv)
341 luci.http.status(404, "No such device")
344 local function wifi_reconnect_shutdown(shutdown, wnet)
345 local netmd = require "luci.model.network".init()
346 local net = netmd:get_wifinet(wnet)
347 local dev = net:get_device()
349 dev:set("disabled", nil)
350 net:set("disabled", shutdown and 1 or nil)
351 netmd:commit("wireless")
353 luci.sys.call("env -i /bin/ubus call network reload >/dev/null 2>/dev/null")
354 luci.http.status(200, shutdown and "Shutdown" or "Reconnected")
359 luci.http.status(404, "No such radio")
362 function wifi_reconnect(wnet)
363 wifi_reconnect_shutdown(false, wnet)
366 function wifi_shutdown(wnet)
367 wifi_reconnect_shutdown(true, wnet)
370 function lease_status()
371 local s = require "luci.tools.status"
373 luci.http.prepare_content("application/json")
375 luci.http.write_json(s.dhcp_leases())
377 luci.http.write_json(s.dhcp6_leases())
381 function switch_status(switches)
382 local s = require "luci.tools.status"
384 luci.http.prepare_content("application/json")
385 luci.http.write_json(s.switch_status(switches))
388 function diag_command(cmd, addr)
389 if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then
390 luci.http.prepare_content("text/plain")
392 local util = io.popen(cmd % addr)
395 local ln = util:read("*l")
396 if not ln then break end
398 luci.http.write("\n")
407 luci.http.status(500, "Bad address")
410 function diag_ping(addr)
411 diag_command("ping -c 5 -W 1 %q 2>&1", addr)
414 function diag_traceroute(addr)
415 diag_command("traceroute -q 1 -w 1 -n %q 2>&1", addr)
418 function diag_nslookup(addr)
419 diag_command("nslookup %q 2>&1", addr)
422 function diag_ping6(addr)
423 diag_command("ping6 -c 5 %q 2>&1", addr)
426 function diag_traceroute6(addr)
427 diag_command("traceroute6 -q 1 -w 2 -n %q 2>&1", addr)