Revision 50a6400f
Added by Seth Mos over 13 years ago
usr/local/www/services_dhcpv6.php | ||
---|---|---|
594 | 594 |
<?=gettext("to"); ?> <input name="prefixrange_to" type="text" class="formfld unknown" id="prefixrange_to" size="28" value="<?=htmlspecialchars($pconfig['prefixrange_to']);?>"> |
595 | 595 |
<?=gettext("prefix length"); ?> <select name="prefixrange_length" class="formselect" id="prefixrange_length"> |
596 | 596 |
<option value="48" <?php if($pconfig['prefixrange_length'] == 48) echo "selected"; ?>>48</option> |
597 |
<option value="52" <?php if($pconfig['prefixrange_length'] == 52) echo "selected"; ?>>52</option> |
|
597 | 598 |
<option value="56" <?php if($pconfig['prefixrange_length'] == 56) echo "selected"; ?>>56</option> |
598 | 599 |
<option value="60" <?php if($pconfig['prefixrange_length'] == 60) echo "selected"; ?>>60</option> |
600 |
<option value="62" <?php if($pconfig['prefixrange_length'] == 62) echo "selected"; ?>>62</option> |
|
599 | 601 |
</select> <br/> |
600 | 602 |
<?php echo gettext("You can define a Prefix range here for DHCP Prefix Delegation. This allows for |
601 | 603 |
assigning networks to subrouters"); ?> |
Also available in: Unified diff
Add more possible prefix lengths for the DHCPv6 server for prefix delegation.