summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_openvpn_client.php
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-12-30 12:17:22 -0200
committerRenato Botelho <renato@netgate.com>2016-12-30 12:17:37 -0200
commit56110c7249b5dbd9ea4e0b4c4009794c69a58143 (patch)
tree0bf32369907a5674095069a453cf1893d2615121 /src/usr/local/www/vpn_openvpn_client.php
parente10a9781b83aa59ee86164d76b3d5d274e902c4b (diff)
downloadpfsense-56110c7249b5dbd9ea4e0b4c4009794c69a58143.zip
pfsense-56110c7249b5dbd9ea4e0b4c4009794c69a58143.tar.gz
Ticket #7054: Remove tun-ipv6 option, deprecated on OpenVPN 2.4.0 and related GUI knobs
Diffstat (limited to 'src/usr/local/www/vpn_openvpn_client.php')
-rw-r--r--src/usr/local/www/vpn_openvpn_client.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/usr/local/www/vpn_openvpn_client.php b/src/usr/local/www/vpn_openvpn_client.php
index b6e8970..399d099 100644
--- a/src/usr/local/www/vpn_openvpn_client.php
+++ b/src/usr/local/www/vpn_openvpn_client.php
@@ -159,7 +159,6 @@ if ($_GET['act'] == "edit") {
$pconfig['autokey_enable'] = "yes";
$pconfig['autotls_enable'] = "yes";
- $pconfig['no_tun_ipv6'] = $a_client[$id]['no_tun_ipv6'];
$pconfig['route_no_pull'] = $a_client[$id]['route_no_pull'];
$pconfig['route_no_exec'] = $a_client[$id]['route_no_exec'];
if (isset($a_client[$id]['verbosity_level'])) {
@@ -378,7 +377,6 @@ if ($_POST) {
$client['compression'] = $pconfig['compression'];
$client['passtos'] = $pconfig['passtos'];
- $client['no_tun_ipv6'] = $pconfig['no_tun_ipv6'];
$client['route_no_pull'] = $pconfig['route_no_pull'];
$client['route_no_exec'] = $pconfig['route_no_exec'];
$client['verbosity_level'] = $pconfig['verbosity_level'];
@@ -728,13 +726,6 @@ if ($act=="new" || $act=="edit"):
));
$section->addInput(new Form_Checkbox(
- 'no_tun_ipv6',
- 'Disable IPv6',
- 'Don\'t forward IPv6 traffic. ',
- $pconfig['no_tun_ipv6']
- ));
-
- $section->addInput(new Form_Checkbox(
'route_no_pull',
'Don\'t pull routes',
'Bars the server from adding routes to the client\'s routing table',
@@ -883,7 +874,6 @@ events.push(function() {
}
function dev_mode_change() {
- hideCheckbox('no_tun_ipv6', ($('#dev_mode').val() == 'tap'));
hideInput('topology', ($('#dev_mode').val() == 'tap') || $('#mode').val() == "p2p_shared_key");
}
OpenPOWER on IntegriCloud