summaryrefslogtreecommitdiffstats
path: root/src/usr
diff options
context:
space:
mode:
authordoktornotor <notordoktor@gmail.com>2016-12-18 11:33:43 +0100
committerGitHub <noreply@github.com>2016-12-18 11:33:43 +0100
commit69bfc8ede81fb28b6eceb7f1343d94c68073c706 (patch)
treecd92ab4ff3323b0350173287e060c2e9a7906429 /src/usr
parentac90c9012453c7e81ff0d0b472a55b116866c56e (diff)
downloadpfsense-69bfc8ede81fb28b6eceb7f1343d94c68073c706.zip
pfsense-69bfc8ede81fb28b6eceb7f1343d94c68073c706.tar.gz
Improve RADVD router mode help text (Todo #6889)
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/local/www/services_router_advertisements.php24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/usr/local/www/services_router_advertisements.php b/src/usr/local/www/services_router_advertisements.php
index c805876..ba7a075 100644
--- a/src/usr/local/www/services_router_advertisements.php
+++ b/src/usr/local/www/services_router_advertisements.php
@@ -105,11 +105,11 @@ if (!is_array($pconfig['subnets'])) {
$advertise_modes = array(
"disabled" => gettext("Disabled"),
- "router" => gettext("Router Only"),
- "unmanaged" => gettext("Unmanaged"),
- "managed" => gettext("Managed"),
- "assist" => gettext("Assisted"),
- "stateless_dhcp" => gettext("Stateless DHCP"));
+ "router" => gettext("Router Only - RA Flags [none], Prefix Flags [router]"),
+ "unmanaged" => gettext("Unmanaged - RA Flags [none], Prefix Flags [onlink, auto, router]"),
+ "managed" => gettext("Managed - RA Flags [managed, other stateful], Prefix Flags [onlink, router]"),
+ "assist" => gettext("Assisted - RA Flags [managed, other stateful], Prefix Flags [onlink, auto, router]"),
+ "stateless_dhcp" => gettext("Stateless DHCP - RA Flags [other stateful], Prefix Flags [onlink, auto, router]"));
$priority_modes = array(
"low" => gettext("Low"),
"medium" => gettext("Normal"),
@@ -293,12 +293,14 @@ $section->addInput(new Form_Select(
'Router mode',
$pconfig['ramode'],
$advertise_modes
-))->setHelp('Select the Operating Mode for the Router Advertisement (RA) Daemon. Use:' . '<br />' .
- '&nbsp;<strong>Router Only</strong> to only advertise this router' . '<br />' .
- '&nbsp;<strong>Unmanaged</strong> for Router Advertising with Stateless Autoconfig' . '<br />' .
- '&nbsp;<strong>Managed</strong> for assignment through a DHCPv6 Server' . '<br />' .
- '&nbsp;<strong>Assisted</strong> for DHCPv6 Server assignment combined with Stateless Autoconfig. ' .
- 'It is not required to activate this DHCPv6 server when set to "Managed", this can be another host on the network');
+))->setHelp('Select the Operating Mode for the Router Advertisement (RA) Daemon.' . '<br /><br />' .
+ '<strong>Disabled</strong> - RADVD will not be enabled on this interface.' . '<br />' .
+ '<strong>Router Only</strong> - Will advertise this router.' . '<br />' .
+ '<strong>Unmanaged</strong> - Will advertise this router with stateless autoconfig.' . '<br />' .
+ '<strong>Managed</strong> - Will advertise this router with all configuration through a DHCPv6 server.' . '<br />' .
+ '<strong>Assisted</strong> - Will advertise this router with configuration through a DHCPv6 server and/or stateless autoconfig.' . '<br />' .
+ '<strong>Stateless DHCP</strong> - Will advertise this router with stateless autoconfig and other configuration information available via DHCPv6.' . '<br /><br />' .
+ 'It is not required to activate DHCPv6 server on pfSense when set to "Managed", "Assisted" or "Stateless DHCP", it can be another host on the network.');
$section->addInput(new Form_Select(
'rapriority',
OpenPOWER on IntegriCloud