From: Aaron Goodman Date: Wed, 29 Jul 2020 04:43:05 +0000 (-0400) Subject: luci-proto-openfortivpn: add default route, remove disabled, update text X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=3e480874ff85bb7728c8314f0df0b3ac0d34fecd;p=project%2Fluci.git luci-proto-openfortivpn: add default route, remove disabled, update text Signed-off-by: Aaron Goodman --- diff --git a/protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js b/protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js index d8e3c50aa3..b1c7c229f0 100644 --- a/protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js +++ b/protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js @@ -61,7 +61,11 @@ return network.registerProtocol('openfortivpn', { o.datatype = 'and(hexstring,length(64))' o.optional = true; - o = s.taboption('advanced', form.Flag, 'peerdns', _('Use DNS server provided by VPN')); + o = s.taboption('advanced', form.Flag, 'defaultroute', _('Use default gateway'), _('If unchecked, no default route is configured')); + o.default = o.enabled; + o.optional = true; + + o = s.taboption('advanced', form.Flag, 'peerdns', _('Use DNS servers advertised by peer'), _('If unchecked, the advertised DNS server addresses are ignored')); o.default = o.enabled; o.optional = true;