New IPv6 integration
[project/luci.git] / protocols / core / luasrc / model / cbi / admin_network / proto_static.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2011 Jo-Philipp Wich <xm@subsignal.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
13 local map, section, net = ...
14 local ifc = net:get_interface()
15
16 local ipaddr, netmask, gateway, broadcast, dns, accept_ra, send_rs, ip6addr, ip6gw
17 local mtu, metric
18
19
20 ipaddr = section:taboption("general", Value, "ipaddr", translate("IPv4 address"))
21 ipaddr.datatype = "ip4addr"
22
23
24 netmask = section:taboption("general", Value, "netmask",
25         translate("IPv4 netmask"))
26
27 netmask.datatype = "ip4addr"
28 netmask:value("255.255.255.0")
29 netmask:value("255.255.0.0")
30 netmask:value("255.0.0.0")
31
32
33 gateway = section:taboption("general", Value, "gateway", translate("IPv4 gateway"))
34 gateway.datatype = "ip4addr"
35
36
37 broadcast = section:taboption("general", Value, "broadcast", translate("IPv4 broadcast"))
38 broadcast.datatype = "ip4addr"
39
40
41 dns = section:taboption("general", DynamicList, "dns",
42         translate("Use custom DNS servers"))
43
44 dns.datatype = "ipaddr"
45 dns.cast     = "string"
46
47
48 if luci.model.network:has_ipv6() then
49
50         local ip6assign = section:taboption("general", Value, "ip6assign", translate("IPv6 assignment length"),
51                 translate("Assign a part of given length of every public IPv6-prefix to this interface"))
52         ip6assign:value("", translate("disabled"))
53         ip6assign:value("64")
54         ip6assign.datatype = "max(64)"
55
56
57         ip6addr = section:taboption("general", Value, "ip6addr", translate("IPv6 address"))
58         ip6addr.datatype = "ip6addr"
59
60
61         ip6gw = section:taboption("general", Value, "ip6gw", translate("IPv6 gateway"))
62         ip6gw.datatype = "ip6addr"
63
64
65         local ip6prefix = s:taboption("general", Value, "ip6prefix", translate("IPv6 routed prefix"),
66                 translate("Public prefix routed to this device for distribution to clients."))
67         ip6prefix.datatype = "ip6addr"
68
69 end
70
71
72 luci.tools.proto.opt_macaddr(section, ifc, translate("Override MAC address"))
73
74
75 mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU"))
76 mtu.placeholder = "1500"
77 mtu.datatype    = "max(1500)"
78
79
80 metric = section:taboption("advanced", Value, "metric",
81         translate("Use gateway metric"))
82
83 metric.placeholder = "0"
84 metric.datatype    = "uinteger"