diff options
author | smos <seth.mos@dds.nl> | 2011-08-21 17:11:40 +0200 |
---|---|---|
committer | smos <seth.mos@dds.nl> | 2011-08-21 17:11:40 +0200 |
commit | fd1e6c05c084cfcf42e3e590ebf50a389c3b7017 (patch) | |
tree | 04e48452cd8067f3cd72735638e932fd29989503 | |
parent | ac0057675a89c7127c95d953c60879db926ae14c (diff) | |
download | pfsense-fd1e6c05c084cfcf42e3e590ebf50a389c3b7017.zip pfsense-fd1e6c05c084cfcf42e3e590ebf50a389c3b7017.tar.gz |
Clarify advertising options, add router only type.
-rw-r--r-- | usr/local/www/services_dhcpv6.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/services_dhcpv6.php b/usr/local/www/services_dhcpv6.php index 3a9fc22..1e90f4c 100644 --- a/usr/local/www/services_dhcpv6.php +++ b/usr/local/www/services_dhcpv6.php @@ -151,7 +151,7 @@ function is_inrange($test, $start, $end) { return false; } -$advertise_modes = array("disabled" => "Disabled", "unmanaged" => "Unmanaged", "managed" => "Managed", "assist" => "Assisted"); +$advertise_modes = array("disabled" => "Disabled", "router" => "Router Only", "unmanaged" => "Unmanaged", "managed" => "Managed", "assist" => "Assisted"); if ($_POST) { @@ -501,7 +501,7 @@ include("head.inc"); <option value="<?=$name ?>" <?php if ($pconfig['mode'] == $name) echo "selected"; ?> > <?=$value ?></option> <?php } ?> </select><br /> - <strong><?php printf(gettext("Select the Operating Mode. Use Unmanaged for Router Advertising only, Managed for DHCPv6 only, Assisted for Combined"));?></strong></td> + <strong><?php printf(gettext("Select the Operating Mode for the router advertisement Daemon. Use "Router Only" to only advertise the router, "Unmanaged" for Router Advertising with Stateless Autoconfig, "Managed" for DHCPv6 only with router advertisements, "Assisted" for DHCPv6 Combined with Stateless Autoconfig"));?></strong></td> </tr> <tr> <td width="22%" valign="top" class="vtable"> </td> |