luci-proto-wireguard: fix wrong maximum MTU
[project/luci.git] / protocols / luci-proto-wireguard / luasrc / model / cbi / admin_network / proto_wireguard.lua
1 -- Copyright 2016-2017 Dan Luedtke <mail@danrl.com>
2 -- Licensed to the public under the Apache License 2.0.
3
4
5 local map, section, net = ...
6 local ifname = net:get_interface():name()
7 local private_key, listen_port
8 local metric, mtu, preshared_key
9 local peers, public_key, allowed_ips, endpoint, persistent_keepalive
10
11
12 -- general ---------------------------------------------------------------------
13
14 private_key = section:taboption(
15   "general",
16   Value,
17   "private_key",
18   translate("Private Key"),
19   translate("Required. Base64-encoded private key for this interface.")
20 )
21 private_key.password = true
22 private_key.datatype = "rangelength(44, 44)"
23 private_key.optional = false
24
25
26 listen_port = section:taboption(
27   "general",
28   Value,
29   "listen_port",
30   translate("Listen Port"),
31   translate("Optional. UDP port used for outgoing and incoming packets.")
32 )
33 listen_port.datatype = "port"
34 listen_port.placeholder = "51820"
35 listen_port.optional = true
36
37 addresses = section:taboption(
38   "general",
39   DynamicList,
40   "addresses",
41   translate("IP Addresses"),
42   translate("Recommended. IP addresses of the WireGuard interface.")
43 )
44 addresses.datatype = "ipaddr"
45 addresses.optional = true
46
47
48 -- advanced --------------------------------------------------------------------
49
50 metric = section:taboption(
51   "advanced",
52   Value,
53   "metric",
54   translate("Metric"),
55   translate("Optional.")
56 )
57 metric.datatype = "uinteger"
58 metric.placeholder = "0"
59 metric.optional = true
60
61
62 mtu = section:taboption(
63   "advanced",
64   Value,
65   "mtu",
66   translate("MTU"),
67   translate("Optional. Maximum Transmission Unit of tunnel interface.")
68 )
69 mtu.datatype = "range(1280,1420)"
70 mtu.placeholder = "1420"
71 mtu.optional = true
72
73
74 preshared_key = section:taboption(
75   "advanced",
76   Value,
77   "preshared_key",
78   translate("Preshared Key"),
79   translate("Optional. Adds in an additional layer of symmetric-key " ..
80             "cryptography for post-quantum resistance.")
81 )
82 preshared_key.password = true
83 preshared_key.datatype = "rangelength(44, 44)"
84 preshared_key.optional = true
85
86
87 -- peers -----------------------------------------------------------------------
88
89 peers = map:section(
90   TypedSection,
91   "wireguard_" .. ifname,
92   translate("Peers"),
93   translate("Further information about WireGuard interfaces and peers " ..
94             "at <a href=\"http://wireguard.io\">wireguard.io</a>.")
95 )
96 peers.template = "cbi/tsection"
97 peers.anonymous = true
98 peers.addremove = true
99
100
101 public_key = peers:option(
102   Value,
103   "public_key",
104   translate("Public Key"),
105   translate("Required. Public key of peer.")
106 )
107 public_key.datatype = "rangelength(44, 44)"
108 public_key.optional = false
109
110
111 allowed_ips = peers:option(
112   DynamicList,
113   "allowed_ips",
114   translate("Allowed IPs"),
115   translate("Required. IP addresses and prefixes that this peer is allowed " ..
116             "to use inside the tunnel. Usually the peer's tunnel IP " ..
117             "addresses and the networks the peer routes through the tunnel.")
118 )
119 allowed_ips.datatype = "ipaddr"
120 allowed_ips.optional = false
121
122
123 route_allowed_ips = peers:option(
124   Flag,
125   "route_allowed_ips",
126   translate("Route Allowed IPs"),
127   translate("Optional. Create routes for Allowed IPs for this peer.")
128 )
129
130
131 endpoint_host = peers:option(
132   Value,
133   "endpoint_host",
134   translate("Endpoint Host"),
135   translate("Optional. Host of peer. Names are resolved " ..
136             "prior to bringing up the interface."))
137 endpoint_host.placeholder = "vpn.example.com"
138 endpoint_host.datatype = "host"
139
140
141 endpoint_port = peers:option(
142   Value,
143   "endpoint_port",
144   translate("Endpoint Port"),
145   translate("Optional. Port of peer."))
146 endpoint_port.placeholder = "51820"
147 endpoint_port.datatype = "port"
148
149
150 persistent_keepalive = peers:option(
151   Value,
152   "persistent_keepalive",
153   translate("Persistent Keep Alive"),
154   translate("Optional. Seconds between keep alive messages. " ..
155             "Default is 0 (disabled). Recommended value if " ..
156             "this device is behind a NAT is 25."))
157 persistent_keepalive.datatype = "range(0, 65535)"
158 persistent_keepalive.placeholder = "0"