summaryrefslogtreecommitdiffstats
path: root/usr/local/www/interfaces_gif_edit.php
diff options
context:
space:
mode:
authorsmos <seth.mos@dds.nl>2012-01-15 14:37:27 +0100
committersmos <seth.mos@dds.nl>2012-01-15 14:38:23 +0100
commit2d107ad5a9aa33d9ab5b35c90d57aa1fe11a83c8 (patch)
tree85be46b913f40df60ec7276ef0e0f624cc3a02ee /usr/local/www/interfaces_gif_edit.php
parentd6159f76fb1381f6ea545806a230d7d41e4e4fbc (diff)
downloadpfsense-2d107ad5a9aa33d9ab5b35c90d57aa1fe11a83c8.zip
pfsense-2d107ad5a9aa33d9ab5b35c90d57aa1fe11a83c8.tar.gz
Remove 32 bit subnetmask limitation for IPv6
Diffstat (limited to 'usr/local/www/interfaces_gif_edit.php')
-rw-r--r--usr/local/www/interfaces_gif_edit.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/usr/local/www/interfaces_gif_edit.php b/usr/local/www/interfaces_gif_edit.php
index 04d22bc..6510051 100644
--- a/usr/local/www/interfaces_gif_edit.php
+++ b/usr/local/www/interfaces_gif_edit.php
@@ -176,14 +176,13 @@ include("head.inc");
<select name="tunnel-remote-net" class="formselect" id="tunnel-remote-net">
<?php
for ($i = 128; $i > 0; $i--) {
- if($i <> 31) {
- echo "<option value=\"{$i}\" ";
- if ($i == $pconfig['tunnel-remote-net']) echo "selected";
- echo ">" . $i . "</option>";
- }
+ echo "<option value=\"{$i}\" ";
+ if ($i == $pconfig['tunnel-remote-net'])
+ echo "selected";
+ echo ">" . $i . "</option>";
}
?>
- </select>
+ </select>
<br/>
<span class="vexpl"><?=gettext("Remote gif address endpoint. The subnet part is used for determining the network that is tunnelled."); ?></span></td>
</tr>
OpenPOWER on IntegriCloud