diff options
author | smos <seth.mos@dds.nl> | 2012-04-13 14:34:28 +0200 |
---|---|---|
committer | smos <seth.mos@dds.nl> | 2012-04-13 14:34:28 +0200 |
commit | 79909926af30fd40805fb389907b09179663ac29 (patch) | |
tree | f1db8ae8af42bfd2de7a1a6152fecfc1ab952497 /usr | |
parent | e1cc1f6de3ef01b7fd2f3c14006f00cf5c78035a (diff) | |
download | pfsense-79909926af30fd40805fb389907b09179663ac29.zip pfsense-79909926af30fd40805fb389907b09179663ac29.tar.gz |
Increase Prefix delegation size choices
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/services_dhcpv6.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/local/www/services_dhcpv6.php b/usr/local/www/services_dhcpv6.php index defea47..87e1508 100644 --- a/usr/local/www/services_dhcpv6.php +++ b/usr/local/www/services_dhcpv6.php @@ -598,6 +598,8 @@ include("head.inc"); <option value="56" <?php if($pconfig['prefixrange_length'] == 56) echo "selected"; ?>>56</option> <option value="60" <?php if($pconfig['prefixrange_length'] == 60) echo "selected"; ?>>60</option> <option value="62" <?php if($pconfig['prefixrange_length'] == 62) echo "selected"; ?>>62</option> + <option value="63" <?php if($pconfig['prefixrange_length'] == 63) echo "selected"; ?>>63</option> + <option value="64" <?php if($pconfig['prefixrange_length'] == 64) echo "selected"; ?>>64</option> </select> <br/> <?php echo gettext("You can define a Prefix range here for DHCP Prefix Delegation. This allows for assigning networks to subrouters. The start and end of the range must end on boundaries of the prefix delegation size."); ?> |