modules/admin-full: add configuration support for ATM bridges
[project/luci.git] / modules / admin-full / luasrc / model / cbi / admin_network / routes.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10         http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13 ]]--
14
15 require("luci.tools.webadmin")
16 m = Map("network",
17         translate("Routes"),
18         translate("Routes specify over which interface and gateway a certain host or network " ..
19                 "can be reached."))
20
21 local routes6 = luci.sys.net.routes6()
22 local bit = require "bit"
23
24 s = m:section(TypedSection, "route", translate("Static IPv4 Routes"))
25 s.addremove = true
26 s.anonymous = true
27
28 s.template  = "cbi/tblsection"
29
30 iface = s:option(ListValue, "interface", translate("Interface"))
31 luci.tools.webadmin.cbi_add_networks(iface)
32
33 s:option(Value, "target", translate("Target"), translate("Host-<abbr title=\"Internet Protocol Address\">IP</abbr> or Network"))
34 s:option(Value, "netmask", translate("<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask"), translate("if target is a network")).rmemepty = true
35 s:option(Value, "gateway", translate("<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Gateway"))
36
37 if routes6 then
38         s = m:section(TypedSection, "route6", translate("Static IPv6 Routes"))
39         s.addremove = true
40         s.anonymous = true
41
42         s.template  = "cbi/tblsection"
43
44         iface = s:option(ListValue, "interface", translate("Interface"))
45         luci.tools.webadmin.cbi_add_networks(iface)
46
47         s:option(Value, "target", translate("Target"), translate("<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Address or Network (CIDR)"))
48         s:option(Value, "gateway", translate("<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Gateway")).rmempty = true
49 end
50
51
52 return m