summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPhil Davis <phil.davis@inf.org>2017-01-24 12:56:26 +0545
committerRenato Botelho <renato@netgate.com>2017-01-30 10:26:25 -0200
commit927c0074b5cf177dc09ff4471d6a04d9ee11678f (patch)
treec4799f2772df6964ea970cb00e9c83a2f1658c14 /src
parent5c9dcd194ffe38b7009e0955ea6f029f15e93966 (diff)
downloadpfsense-927c0074b5cf177dc09ff4471d6a04d9ee11678f.zip
pfsense-927c0074b5cf177dc09ff4471d6a04d9ee11678f.tar.gz
Remaining required fields for Diag pages
(cherry picked from commit fe54f09154f4116ceea6897bff54a624f1eb63bc)
Diffstat (limited to 'src')
-rw-r--r--src/usr/local/www/diag_authentication.php2
-rw-r--r--src/usr/local/www/diag_packet_capture.php6
-rw-r--r--src/usr/local/www/diag_ping.php4
-rw-r--r--src/usr/local/www/diag_testport.php4
-rw-r--r--src/usr/local/www/diag_traceroute.php4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/usr/local/www/diag_authentication.php b/src/usr/local/www/diag_authentication.php
index 296e829..c307a1b 100644
--- a/src/usr/local/www/diag_authentication.php
+++ b/src/usr/local/www/diag_authentication.php
@@ -120,7 +120,7 @@ foreach (auth_get_authserver_list() as $auth_server) {
$section->addInput(new Form_Select(
'authmode',
- 'Authentication Server',
+ '*Authentication Server',
$pconfig['authmode'],
$serverlist
))->setHelp('Select the authentication server to test against.');
diff --git a/src/usr/local/www/diag_packet_capture.php b/src/usr/local/www/diag_packet_capture.php
index 49a2adb..b4619a2 100644
--- a/src/usr/local/www/diag_packet_capture.php
+++ b/src/usr/local/www/diag_packet_capture.php
@@ -308,7 +308,7 @@ $section = new Form_Section('Packet Capture Options');
$section->addInput(new Form_Select(
'interface',
- 'Interface',
+ '*Interface',
$selectedif,
$interfaces
))->setHelp('Select the interface on which to capture traffic. ');
@@ -325,7 +325,7 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Select(
'fam',
- 'Address Family',
+ '*Address Family',
$fam,
array('' => 'Any',
'ip' => gettext('IPv4 Only'),
@@ -335,7 +335,7 @@ $section->addInput(new Form_Select(
$section->addInput(new Form_Select(
'proto',
- 'Protocol',
+ '*Protocol',
$proto,
$protocollist
))->setHelp('Select the protocol to capture, or "Any". ');
diff --git a/src/usr/local/www/diag_ping.php b/src/usr/local/www/diag_ping.php
index 99cf498..d3f4e40 100644
--- a/src/usr/local/www/diag_ping.php
+++ b/src/usr/local/www/diag_ping.php
@@ -168,14 +168,14 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Select(
'ipproto',
- 'IP Protocol',
+ '*IP Protocol',
$ipproto,
['ipv4' => 'IPv4', 'ipv6' => 'IPv6']
));
$section->addInput(new Form_Select(
'sourceip',
- 'Source address',
+ '*Source address',
$sourceip,
array('' => gettext('Automatically selected (default)')) + get_possible_traffic_source_addresses(true)
))->setHelp('Select source address for the ping.');
diff --git a/src/usr/local/www/diag_testport.php b/src/usr/local/www/diag_testport.php
index f5ee397..a626464 100644
--- a/src/usr/local/www/diag_testport.php
+++ b/src/usr/local/www/diag_testport.php
@@ -281,14 +281,14 @@ $section->addInput(new Form_Checkbox(
$section->addInput(new Form_Select(
'sourceip',
- 'Source Address',
+ '*Source Address',
$sourceip,
['' => 'Any'] + get_possible_traffic_source_addresses(true)
))->setHelp('Select source address for the trace.');
$section->addInput(new Form_Select(
'ipprotocol',
- 'IP Protocol',
+ '*IP Protocol',
$ipprotocol,
array('ipv4' => 'IPv4', 'ipv6' => 'IPv6')
))->setHelp("If IPv4 or IPv6 is forced and a hostname is used that does not contain a result using that protocol, it will result in an error." .
diff --git a/src/usr/local/www/diag_traceroute.php b/src/usr/local/www/diag_traceroute.php
index 26de503..e637588 100644
--- a/src/usr/local/www/diag_traceroute.php
+++ b/src/usr/local/www/diag_traceroute.php
@@ -162,14 +162,14 @@ $section->addInput(new Form_Input(
$section->addInput(new Form_Select(
'ipproto',
- 'IP Protocol',
+ '*IP Protocol',
$ipproto,
array('ipv4' => 'IPv4', 'ipv6' => 'IPv6')
))->setHelp('Select the protocol to use.');
$section->addInput(new Form_Select(
'sourceip',
- 'Source Address',
+ '*Source Address',
$sourceip,
array('any' => gettext('Any')) + get_possible_traffic_source_addresses(true)
))->setHelp('Select source address for the trace.');
OpenPOWER on IntegriCloud