Bug #2470
closedunable to create single address /128 ipv6 route
0%
Description
the system_routes_edit.php does not allow /128 for a ipv6 route. the largest mask selectable is 127 bits.
running the latest 2.1 version as of today 2012-06-04.
The below seems to fix the problem. There might be better alternatives:
--- system_routes_edit.php.orig 2012-06-04 11:11:01.000000000 0300
++ system_routes_edit.php 2012-06-04 11:18:11.000000000 0300@ -219,7 +219,7 @
/
<select name="network_subnet" class="formselect ipv4v6" id="network_subnet"
- for ($i = 128; $i >= 1; $i--): ?>
for ($i = 129; $i >= 1; $i--): ?>
<option value="=$i;?>" >
=$i;?>
</option>
CB Updated by Chris Buechler over 14 years ago
- Target version set to 2.1
- Affected Version set to 2.1-IPv6
SM Updated by Seth Mos over 14 years ago
- Status changed from New to Feedback
Fix applied
HT Updated by Hannu Teulahti over 14 years ago
Seems to work now. Thank you!
CB Updated by Chris Buechler over 14 years ago
- Status changed from Feedback to Resolved