summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2017-01-03 21:35:20 -0500
committerjim-p <jimp@pfsense.org>2017-01-03 21:35:20 -0500
commitb743ea87552124be92c2b4de014c06a160ba3ef7 (patch)
tree53f9de590f6d2b69e91e8c4ad5040dbec92c1340 /src/usr
parentcc38ae2d937ad4013a5c6691ea37dc8a1007d338 (diff)
downloadpfsense-b743ea87552124be92c2b4de014c06a160ba3ef7.zip
pfsense-b743ea87552124be92c2b4de014c06a160ba3ef7.tar.gz
Add some more help text to OpenVPN pages.
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/local/www/vpn_openvpn_client.php34
-rw-r--r--src/usr/local/www/vpn_openvpn_server.php9
2 files changed, 23 insertions, 20 deletions
diff --git a/src/usr/local/www/vpn_openvpn_client.php b/src/usr/local/www/vpn_openvpn_client.php
index e92d99f..467e198 100644
--- a/src/usr/local/www/vpn_openvpn_client.php
+++ b/src/usr/local/www/vpn_openvpn_client.php
@@ -463,15 +463,16 @@ if ($act=="new" || $act=="edit"):
'dev_mode',
'Device mode',
empty($pconfig['dev_mode']) ? 'tun':$pconfig['dev_mode'],
- array_combine($openvpn_dev_mode, $openvpn_dev_mode)
- ));
+ $openvpn_dev_mode
+ ))->setHelp("\"tun\" mode carries IPv4 and IPv6 (OSI layer 3) and is the most common and compatible mode across all platforms." .
+ "<br/>\"tap\" mode is capable of carrying 802.3 (OSI Layer 2.)");
$section->addInput(new Form_Select(
'interface',
'Interface',
$pconfig['interface'],
openvpn_build_if_list()
- ));
+ ))->setHelp("The interface used by the firewall to originate this OpenVPN client connection");
$section->addInput(new Form_Input(
'local_port',
@@ -486,21 +487,30 @@ if ($act=="new" || $act=="edit"):
'Server host or address',
'text',
$pconfig['server_addr']
- ));
+ ))->setHelp("The IP address or hostname of the OpenVPN server.");
+
+ $section->addInput(new Form_Checkbox(
+ 'resolve_retry',
+ 'Server hostname resolution',
+ 'Infinitely resolve server ',
+ $pconfig['resolve_retry']
+ ))->setHelp('Continuously attempt to resolve the server host name. ' .
+ 'Useful when communicating with a server that is not permanently connected to the Internet.');
$section->addInput(new Form_Input(
'server_port',
'Server port',
'number',
$pconfig['server_port']
- ));
+ ))->setHelp("The port used by the server to receive client connections.");
$section->addInput(new Form_Input(
'proxy_addr',
'Proxy host or address',
'text',
$pconfig['proxy_addr']
- ));
+ ))->setHelp("The address for an HTTP Proxy this client can use to connect to a remote server." .
+ "<br/>TCP must be used for the client and server protocol.");
$section->addInput(new Form_Input(
'proxy_port',
@@ -511,10 +521,10 @@ if ($act=="new" || $act=="edit"):
$section->addInput(new Form_Select(
'proxy_authtype',
- 'Proxy Auth. - Extra options',
+ 'Proxy Authentication',
$pconfig['proxy_authtype'],
array('none' => gettext('none'), 'basic' => gettext('basic'), 'ntlm' => gettext('ntlm'))
- ));
+ ))->setHelp("The type of authentication used by the proxy server.");
$section->addInput(new Form_Input(
'proxy_user',
@@ -530,14 +540,6 @@ if ($act=="new" || $act=="edit"):
$pconfig['proxy_passwd']
));
- $section->addInput(new Form_Checkbox(
- 'resolve_retry',
- 'Server hostname resolution',
- 'Infinitely resolve server ',
- $pconfig['resolve_retry']
- ))->setHelp('Continuously attempt to resolve the server host name. ' .
- 'Useful when communicating with a server that is not permanently connected to the Internet.');
-
$section->addInput(new Form_Input(
'description',
'Description',
diff --git a/src/usr/local/www/vpn_openvpn_server.php b/src/usr/local/www/vpn_openvpn_server.php
index 7cb744b..c53197a 100644
--- a/src/usr/local/www/vpn_openvpn_server.php
+++ b/src/usr/local/www/vpn_openvpn_server.php
@@ -671,15 +671,16 @@ if ($act=="new" || $act=="edit"):
'dev_mode',
'Device mode',
empty($pconfig['dev_mode']) ? 'tun':$pconfig['dev_mode'],
- array_combine($openvpn_dev_mode, $openvpn_dev_mode)
- ));
+ $openvpn_dev_mode
+ ))->setHelp("\"tun\" mode carries IPv4 and IPv6 (OSI layer 3) and is the most common and compatible mode across all platforms." .
+ "<br/>\"tap\" mode is capable of carrying 802.3 (OSI Layer 2.)");
$section->addInput(new Form_Select(
'interface',
'Interface',
$pconfig['interface'],
openvpn_build_if_list()
- ));
+ ))->setHelp("The interface or Virtual IP address where OpenVPN will receive client connections.");
$section->addInput(new Form_Input(
'local_port',
@@ -687,7 +688,7 @@ if ($act=="new" || $act=="edit"):
'number',
$pconfig['local_port'],
['min' => '0']
- ));
+ ))->setHelp("The port used by OpenVPN to receive client connections.");
$section->addInput(new Form_Input(
'description',
OpenPOWER on IntegriCloud