Project

General

Profile

« Previous | Next » 

Revision bb80af58

Added by NOYB NOYB about 9 years ago

Miscellaneous Textual Corrections

View differences:

src/usr/local/www/interfaces_bridge_edit.php
435 435
	$memberslist['selected'],
436 436
	$memberslist['list'],
437 437
	true // Allow multiples
438
))->setHelp('Interfaces participating in the bridge');
438
))->setHelp('Interfaces participating in the bridge.');
439 439

  
440 440
$section->addInput(new Form_Input(
441 441
	'descr',
src/usr/local/www/interfaces_gif_edit.php
238 238
	'GIF tunnel subnet',
239 239
	$pconfig['tunnel-remote-net'],
240 240
	array_combine(range(128, 1, -1), range(128, 1, -1))
241
))->setHelp('The subnet is used for determining the network that is tunnelled');
241
))->setHelp('The subnet is used for determining the network that is tunnelled.');
242 242

  
243 243
$section->addInput(new Form_Checkbox(
244 244
	'link0',
src/usr/local/www/interfaces_gre_edit.php
234 234
	'GRE tunnel subnet',
235 235
	$pconfig['tunnel-remote-net'],
236 236
	array_combine(range(128, 1, -1), range(128, 1, -1))
237
))->setHelp('The subnet is used for determining the network that is tunnelled');
237
))->setHelp('The subnet is used for determining the network that is tunnelled.');
238 238

  
239 239
$section->addInput(new Form_Checkbox(
240 240
	'link0',
src/usr/local/www/interfaces_groups_edit.php
229 229
	$pconfig['ifname'],
230 230
	['placeholder' => 'Group Name']
231 231
))->setWidth(6)->setHelp('No numbers or spaces are allowed. '.
232
	'Only characters in a-zA-Z');
232
	'Only characters: a-zA-Z');
233 233

  
234 234
$section->addInput(new Form_Input(
235 235
	'descr',
......
238 238
	$pconfig['descr'],
239 239
	['placeholder' => 'Group Description']
240 240
))->setWidth(6)->setHelp('A group description may be entered '.
241
	'here for administrative reference (not parsed)');
241
	'here for administrative reference (not parsed).');
242 242

  
243 243
$section->addInput(new Form_Select(
244 244
	'members',
src/usr/local/www/interfaces_lagg_edit.php
77 77
	'<li>' .
78 78
		'<strong>' . $laggprotosuc[0] . '</strong><br />' .
79 79
		gettext('This protocol is intended to do nothing: it disables any ' .
80
				'traffic without disabling the lagg interface itself') .
80
				'traffic without disabling the lagg interface itself.') .
81 81
	'</li>' .
82 82
	'<li>' .
83 83
		'<strong>' . $laggprotosuc[1] . '</strong><br />' .
......
113 113
				'does not negotiate aggregation with the peer or exchange ' .
114 114
				'frames to monitor the link.  The hash includes the Ethernet ' .
115 115
				'source and destination address, and, if available, the VLAN ' .
116
				'tag, and the IP source and destination address') .
116
				'tag, and the IP source and destination address.') .
117 117
	'</li>' .
118 118
	'<li>' .
119 119
		'<strong>' . $laggprotosuc[5] . '</strong><br />' .
120 120
		gettext('Distributes outgoing traffic using a round-robin scheduler ' .
121 121
				'through all active ports and accepts incoming traffic from ' .
122
				'any active port') .
122
				'any active port.') .
123 123
	'</li>' .
124 124
'</ul>';
125 125

  
......
288 288
	'Description',
289 289
	'text',
290 290
	$pconfig['descr']
291
))->setHelp("Enter a description here for reference only. (Not parsed)");
291
))->setHelp("Enter a description here for reference only (Not parsed).");
292 292

  
293 293
$section->addInput(new Form_Input(
294 294
	'laggif',
src/usr/local/www/interfaces_qinq_edit.php
280 280
	'Option(s)',
281 281
	'Adds interface to QinQ interface groups',
282 282
	$pconfig['autogroup']
283
))->setHelp('Allows rules to be written more easily');
283
))->setHelp('Allows rules to be written more easily.');
284 284

  
285 285
$section->addInput(new Form_Input(
286 286
	'descr',
......
292 292
$section->addInput(new Form_StaticText(
293 293
	'Member(s)',
294 294
	'Ranges can be specified in the inputs below. Enter a range (2-3) or individual numbers.' . '<br />' .
295
	'Click "Duplicate" as many times as needed to add new inputs'
295
	'Click "Duplicate" as many times as needed to add new inputs.'
296 296
));
297 297

  
298 298
if (isset($id) && $a_qinqs[$id]) {
src/usr/local/www/services_ntpd.php
299 299
	$btnaddrow
300 300
))->setHelp('For best results three to five servers should be configured here.' . '<br />' .
301 301
			'The prefer option indicates that NTP should favor the use of this server more than all others.' . '<br />' .
302
			'The noselect option indicates that NTP should not use this server for time, but stats for this server will be collected and displayed.');
302
			'The no select option indicates that NTP should not use this server for time, but stats for this server will be collected and displayed.');
303 303

  
304 304
$section->addInput(new Form_Input(
305 305
	'ntporphan',
......
308 308
	$pconfig['ntporphan']
309 309
))->setHelp('Orphan mode allows the system clock to be used when no other clocks are available. ' .
310 310
			'The number here specifies the stratum reported during orphan mode and should normally be set to a number high enough ' .
311
			'to insure that any other servers available to clients are preferred over this server. (default: 12).');
311
			'to insure that any other servers available to clients are preferred over this server (default: 12).');
312 312

  
313 313
$section->addInput(new Form_Checkbox(
314 314
	'statsgraph',
......
381 381
$section->addInput(new Form_StaticText(
382 382
	'Leap seconds',
383 383
	$btnadv
384
))->setHelp('A leap second file allows NTP to advertize an upcoming leap second addition or subtraction. ' .
384
))->setHelp('A leap second file allows NTP to advertise an upcoming leap second addition or subtraction. ' .
385 385
			'Normally this is only useful if this server is a stratum 1 time server. ');
386 386

  
387 387
$section->addInput(new Form_Textarea(
src/usr/local/www/services_unbound_advanced.php
377 377
$section->addInput(new Form_Checkbox(
378 378
	'disable_auto_added_access_control',
379 379
	'Disable Auto-added Access Control',
380
	'disable the automatically-added access control entries',
380
	'Disable the automatically-added access control entries',
381 381
	$pconfig['disable_auto_added_access_control']
382 382
))->setHelp('By default, IPv4 and IPv6 networks residing on internal interfaces of this system are permitted. ' .
383 383
			'Allowed networks must be manually configured on the Access Lists tab if the auto-added entries are disabled.');
src/usr/local/www/vpn_ipsec_settings.php
376 376
	'Make before Break',
377 377
	'Initiate IKEv2 reauthentication with a make-before-break',
378 378
	$pconfig['makebeforebreak']
379
))->setHelp('instead of a break-before-make scheme. Make-before-break uses overlapping IKE and CHILD_SA during reauthentication ' .
379
))->setHelp('Instead of a break-before-make scheme. Make-before-break uses overlapping IKE and CHILD_SA during reauthentication ' .
380 380
			'by first recreating all new SAs before deleting the old ones. This behavior can be beneficial to avoid connectivity gaps ' .
381 381
			'during reauthentication, but requires support for overlapping SAs by the peer.');
382 382

  
src/usr/local/www/vpn_openvpn_client.php
687 687
		'text',
688 688
		$pconfig['tunnel_network']
689 689
	))->setHelp('This is the IPv4 virtual network used for private communications between this client and the server ' .
690
				'expressed using CIDR (eg. 10.0.8.0/24). The second network address will be assigned to ' .
690
				'expressed using CIDR (e.g. 10.0.8.0/24). The second network address will be assigned to ' .
691 691
				'the client virtual interface.');
692 692

  
693 693
	$section->addInput(new Form_Input(
......
696 696
		'text',
697 697
		$pconfig['tunnel_networkv6']
698 698
	))->setHelp('This is the IPv6 virtual network used for private ' .
699
				'communications between this client and the server expressed using CIDR (eg. fe80::/64). ' .
699
				'communications between this client and the server expressed using CIDR (e.g. fe80::/64). ' .
700 700
				'The second network address will be assigned to the client virtual interface.');
701 701

  
702 702
	$section->addInput(new Form_Input(
src/usr/local/www/vpn_openvpn_csc.php
394 394
		'Tunnel Network',
395 395
		'text',
396 396
		$pconfig['tunnel_network']
397
	))->setHelp('This is the virtual network used for private communications between this client and the server expressed using CIDR (eg. 10.0.8.0/24). ' .
397
	))->setHelp('This is the virtual network used for private communications between this client and the server expressed using CIDR (e.g. 10.0.8.0/24). ' .
398 398
				'The first network address is assumed to be the server address and the second network address will be assigned to the client virtual interface. ');
399 399

  
400 400
	$section->addInput(new Form_Input(
src/usr/local/www/vpn_openvpn_server.php
850 850
		'text',
851 851
		$pconfig['tunnel_network']
852 852
	))->setHelp('This is the IPv4 virtual network used for private communications between this server and client ' .
853
				'hosts expressed using CIDR (eg. 10.0.8.0/24). The first network address will be assigned to ' .
853
				'hosts expressed using CIDR (e.g. 10.0.8.0/24). The first network address will be assigned to ' .
854 854
				'the server virtual interface. The remaining network addresses can optionally be assigned ' .
855
				'to connecting clients. (see Address Pool)');
855
				'to connecting clients (see Address Pool).');
856 856

  
857 857
	$section->addInput(new Form_Input(
858 858
		'tunnel_networkv6',
......
860 860
		'text',
861 861
		$pconfig['tunnel_networkv6']
862 862
	))->setHelp('This is the IPv6 virtual network used for private ' .
863
				'communications between this server and client hosts expressed using CIDR (eg. fe80::/64). ' .
863
				'communications between this server and client hosts expressed using CIDR (e.g. fe80::/64). ' .
864 864
				'The first network address will be assigned to the server virtual interface. The remaining ' .
865
				'network addresses can optionally be assigned to connecting clients. (see Address Pool)');
865
				'network addresses can optionally be assigned to connecting clients (see Address Pool).');
866 866

  
867 867
	$section->addInput(new Form_Checkbox(
868 868
		'serverbridge_dhcp',
......
876 876
		'Bridge Interface',
877 877
		$pconfig['serverbridge_interface'],
878 878
		openvpn_build_bridge_list()
879
		))->setHelp('The interface to which this tap instance will be bridged. This is not done automatically. This interface must be assigned ' .
879
		))->setHelp('The interface to which this TAP instance will be bridged. This is not done automatically. This interface must be assigned ' .
880 880
						'and the bridge created separately. This setting controls which existing IP address and subnet ' .
881 881
						'mask are used by OpenVPN for the bridge. Setting this to "none" will cause the Server Bridge DHCP settings below to be ignored.');
882 882

  
......
885 885
		'Server Bridge DHCP Start',
886 886
		'text',
887 887
		$pconfig['serverbridge_dhcp_start']
888
	))->setHelp('When using tap mode as a multi-point server, a DHCP range may optionally be supplied to use on the ' .
889
				'interface to which this tap instance is bridged. If these settings are left blank, DHCP will be passed ' .
888
	))->setHelp('When using TAP mode as a multi-point server, a DHCP range may optionally be supplied to use on the ' .
889
				'interface to which this TAP instance is bridged. If these settings are left blank, DHCP will be passed ' .
890 890
				'through to the LAN, and the interface setting above will be ignored.');
891 891

  
892 892
	$section->addInput(new Form_Input(
......
1008 1008
		'Topology',
1009 1009
		$pconfig['topology'],
1010 1010
		$openvpn_topologies
1011
	))->setHelp('Specifies the method used to supply a virtual adapter IP address to clients when using tun mode on IPv4.' . '<br />' .
1011
	))->setHelp('Specifies the method used to supply a virtual adapter IP address to clients when using TUN mode on IPv4.' . '<br />' .
1012 1012
				'Some clients may require this be set to "subnet" even for IPv6, such as OpenVPN Connect (iOS/Android). ' .
1013 1013
				'Older versions of OpenVPN (before 2.0.9) or clients such as Yealink phones may require "net30".');
1014 1014

  

Also available in: Unified diff