luci-app-openvpn: add missing proto param for ipv6
Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
36887747d5
commit
18037444b5
1 changed files with 14 additions and 4 deletions
|
@ -47,10 +47,6 @@ local basicParams = {
|
|||
"keepalive",
|
||||
"10 60",
|
||||
translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") },
|
||||
{ ListValue,
|
||||
"proto",
|
||||
{ "udp", "tcp-client", "tcp-server" },
|
||||
translate("Use protocol") },
|
||||
{ Flag,
|
||||
"client",
|
||||
0,
|
||||
|
@ -93,6 +89,20 @@ local basicParams = {
|
|||
translate("Local private key") },
|
||||
}
|
||||
|
||||
local has_ipv6 = fs.access("/proc/net/ipv6_route")
|
||||
if has_ipv6 then
|
||||
table.insert( basicParams, { ListValue,
|
||||
"proto",
|
||||
{ "udp", "tcp-client", "tcp-server", "udp6", "tcp6-client", "tcp6-server" },
|
||||
translate("Use protocol")
|
||||
})
|
||||
else
|
||||
table.insert( basicParams, { ListValue,
|
||||
"proto",
|
||||
{ "udp", "tcp-client", "tcp-server" },
|
||||
translate("Use protocol")
|
||||
})
|
||||
end
|
||||
|
||||
local m = Map("openvpn")
|
||||
m.redirect = luci.dispatcher.build_url("admin", "vpn", "openvpn")
|
||||
|
|
Loading…
Reference in a new issue