summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/vpn_l2tp.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/local/www/vpn_l2tp.php')
-rw-r--r--src/usr/local/www/vpn_l2tp.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/local/www/vpn_l2tp.php b/src/usr/local/www/vpn_l2tp.php
index 310b732..cb4a0f2 100644
--- a/src/usr/local/www/vpn_l2tp.php
+++ b/src/usr/local/www/vpn_l2tp.php
@@ -208,14 +208,14 @@ $section->addClass('toggle-l2tp-enable');
$section->addInput(new Form_Select(
'interface',
- 'Interface',
+ '*Interface',
$pconfig['interface'],
$iflist
));
$section->addInput(new Form_Input(
'localip',
- 'Server address',
+ '*Server address',
'text',
$pconfig['localip']
))->setHelp('Enter the IP address the L2TP server should give to clients for use as their "gateway". ' . '<br />' .
@@ -224,14 +224,14 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_IpAddress(
'remoteip',
- 'Remote address range',
+ '*Remote address range',
$pconfig['remoteip']
))->addMask(l2tp_subnet, $pconfig['l2tp_subnet'])
->setHelp('Specify the starting address for the client IP address subnet.');
$section->addInput(new Form_Select(
'n_l2tp_units',
- 'Number of L2TP users',
+ '*Number of L2TP users',
$pconfig['n_l2tp_units'],
array_combine(range(1, 255, 1), range(1, 255, 1))
));
@@ -245,7 +245,7 @@ $section->addPassword(new Form_Input(
$section->addInput(new Form_Select(
'paporchap',
- 'Authentication type',
+ '*Authentication type',
$pconfig['paporchap'],
array(
'chap' => 'CHAP',
@@ -289,13 +289,13 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_IpAddress(
'radiusserver',
- 'Server',
+ '*Server',
$pconfig['radiusserver']
))->setHelp('Enter the IP address of the RADIUS server.');
$section->addPassword(new Form_Input(
'radiussecret',
- 'Secret',
+ '*Secret',
'password',
$pconfig['radiussecret']
))->setHelp('Enter the shared secret that will be used to authenticate to the RADIUS server.');
OpenPOWER on IntegriCloud