Revision c6d73876
Added by NOYB NOYB about 9 years ago
src/usr/local/www/diag_arp.php | ||
---|---|---|
387 | 387 |
|
388 | 388 |
<div class="infoblock blockopen"> |
389 | 389 |
<?php |
390 |
print_info_box(gettext("Local IPv6 peers use ") . '<a href="diag_ndp.php">' . gettext("NDP") . '</a>' . gettext(" instead of ARP"), 'info', false); |
|
390 |
print_info_box(gettext("Local IPv6 peers use ") . '<a href="diag_ndp.php">' . gettext("NDP") . '</a>' . gettext(" instead of ARP."), 'info', false);
|
|
391 | 391 |
?> |
392 | 392 |
</div> |
393 | 393 |
|
src/usr/local/www/diag_authentication.php | ||
---|---|---|
125 | 125 |
'Authentication Server', |
126 | 126 |
$pconfig['authmode'], |
127 | 127 |
$serverlist |
128 |
))->setHelp('Select the authentication server to test against'); |
|
128 |
))->setHelp('Select the authentication server to test against.');
|
|
129 | 129 |
|
130 | 130 |
$section->addInput(new Form_Input( |
131 | 131 |
'username', |
src/usr/local/www/diag_packet_capture.php | ||
---|---|---|
332 | 332 |
'ip' => gettext('IPv4 Only'), |
333 | 333 |
'ip6' => gettext('IPv6 Only') |
334 | 334 |
) |
335 |
))->setHelp('Select the type of traffic to be captured'); |
|
335 |
))->setHelp('Select the type of traffic to be captured.');
|
|
336 | 336 |
|
337 | 337 |
$section->addInput(new Form_Select( |
338 | 338 |
'proto', |
src/usr/local/www/diag_ping.php | ||
---|---|---|
179 | 179 |
'Source address', |
180 | 180 |
$sourceip, |
181 | 181 |
array('' => gettext('Automatically selected (default)')) + get_possible_traffic_source_addresses(true) |
182 |
))->setHelp('Select source address for the ping'); |
|
182 |
))->setHelp('Select source address for the ping.');
|
|
183 | 183 |
|
184 | 184 |
$section->addInput(new Form_Select( |
185 | 185 |
'count', |
186 | 186 |
'Maximum number of pings', |
187 | 187 |
$count, |
188 | 188 |
array_combine(range(1, MAX_COUNT), range(1, MAX_COUNT)) |
189 |
))->setHelp('Select the maximum number of pings'); |
|
189 |
))->setHelp('Select the maximum number of pings.');
|
|
190 | 190 |
|
191 | 191 |
$form->add($section); |
192 | 192 |
|
src/usr/local/www/diag_routes.php | ||
---|---|---|
129 | 129 |
'Filter', |
130 | 130 |
'text', |
131 | 131 |
$host |
132 |
))->setHelp('Use a regular expression to filter IP address or hostnames'); |
|
132 |
))->setHelp('Use a regular expression to filter IP address or hostnames.');
|
|
133 | 133 |
|
134 | 134 |
$form->add($section); |
135 | 135 |
|
src/usr/local/www/diag_smart.php | ||
---|---|---|
451 | 451 |
'conveyance' |
452 | 452 |
))->displayAsRadio(); |
453 | 453 |
|
454 |
$group->setHelp('Select "Conveyance" for ATA disks only'); |
|
454 |
$group->setHelp('Select "Conveyance" for ATA disks only.');
|
|
455 | 455 |
$section->add($group); |
456 | 456 |
|
457 | 457 |
$section->addInput(new Form_Select( |
src/usr/local/www/diag_testport.php | ||
---|---|---|
285 | 285 |
'Source Address', |
286 | 286 |
$sourceip, |
287 | 287 |
['' => 'Any'] + get_possible_traffic_source_addresses(true) |
288 |
))->setHelp('Select source address for the trace'); |
|
288 |
))->setHelp('Select source address for the trace.');
|
|
289 | 289 |
|
290 | 290 |
$section->addInput(new Form_Select( |
291 | 291 |
'ipprotocol', |
src/usr/local/www/diag_traceroute.php | ||
---|---|---|
160 | 160 |
'IP Protocol', |
161 | 161 |
$ipproto, |
162 | 162 |
array('ipv4' => 'IPv4', 'ipv6' => 'IPv6') |
163 |
))->setHelp('Select the protocol to use'); |
|
163 |
))->setHelp('Select the protocol to use.');
|
|
164 | 164 |
|
165 | 165 |
$section->addInput(new Form_Select( |
166 | 166 |
'sourceip', |
167 | 167 |
'Source Address', |
168 | 168 |
$sourceip, |
169 | 169 |
array('any' => gettext('Any')) + get_possible_traffic_source_addresses(true) |
170 |
))->setHelp('Select source address for the trace'); |
|
170 |
))->setHelp('Select source address for the trace.');
|
|
171 | 171 |
|
172 | 172 |
$section->addInput(new Form_Select( |
173 | 173 |
'ttl', |
174 | 174 |
'Maximum nuber of hops', |
175 | 175 |
$ttl, |
176 | 176 |
array_combine(range(1, MAX_TTL), range(1, MAX_TTL)) |
177 |
))->setHelp('Select the maximum number of network hops to trace'); |
|
177 |
))->setHelp('Select the maximum number of network hops to trace.');
|
|
178 | 178 |
|
179 | 179 |
$section->addInput(new Form_Checkbox( |
180 | 180 |
'resolve', |
Also available in: Unified diff
Diagnostics - Menu - Punctuation
Clean up some punctuation.
(cherry picked from commit 3728bbe5a5340a770ebe3feb526485c28888cdde)