luci-proto-vpnc: expose defaultroute option in proto_vpnc.lua

Sometimes people only want the VPN connection to be a route to a specific
network, not the default gateway for all traffic.

I've tested this on my router and works fine!

Submitted-by: Whitronic <joao.f.vieira@gmail.com>
[reword commit message]
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
(cherry picked from commit f4212285d4)
This commit is contained in:
Whitronic 2018-11-08 11:25:43 +00:00 committed by Dirk Brenken
parent 42c1228875
commit ceb1f80710
No known key found for this signature in database
GPG Key ID: 9D71CD547BFAE684

View File

@ -8,7 +8,7 @@ local authgroup, interface, passgroup, hexpassgroup
local domain, vendor, natt_mode, dh_group
local pfs, enable_single_des, enable_no_enc
local mtu, local_addr, local_port, dpd_idle
local auth_mode, target_network
local auth_mode, target_network, defaultroute
local ifc = net:get_interface():name()
@ -77,3 +77,9 @@ dpd_idle.placeholder = "600"
ifname = section:taboption("general", Value, "target_network", translate("Target network"))
port.placeholder = "0.0.0.0/0"
port.datatype = "network"
defaultroute = section:taboption("general", ListValue, "defaultroute",
translate("Default Route"),
translate("Set VPN as Default Route"))
defaultroute:value("0", translate("No"))
defaultroute:value("1", translate("Yes"))