diff options
author | Seth Mos <seth.mos@dds.nl> | 2010-10-26 15:40:37 +0200 |
---|---|---|
committer | Seth Mos <seth.mos@dds.nl> | 2010-10-26 15:44:19 +0200 |
commit | 9b1ff0286c36c76e71f01a6664901b69d7c8c598 (patch) | |
tree | 4d1136cff6a29683f5105398b38e06f440f82337 /usr/local | |
parent | 22b5abac48ce99350c7e3d750bfeb0748663bd26 (diff) | |
download | pfsense-9b1ff0286c36c76e71f01a6664901b69d7c8c598.zip pfsense-9b1ff0286c36c76e71f01a6664901b69d7c8c598.tar.gz |
Allow for creation of a ipv6 tunnel for he.net by creating a gif interface. This is the recommended procedure as advised by he.net
This allows for using ipv6 local and remote addresses, you will need to add a ipv6 default gateway on the routing tab
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/interfaces_gif_edit.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/interfaces_gif_edit.php b/usr/local/www/interfaces_gif_edit.php index fdde8d4..18fa3a2 100644 --- a/usr/local/www/interfaces_gif_edit.php +++ b/usr/local/www/interfaces_gif_edit.php @@ -167,7 +167,7 @@ include("head.inc"); <input name="tunnel-remote-addr" type="text" class="formfld unknown" id="tunnel-remote-addr" size="16" value="<?=$pconfig['tunnel-remote-addr'];?>"> <select name="tunnel-remote-net" class="formselect" id="tunnel-remote-net"> <?php - for ($i = 32; $i > 0; $i--) { + for ($i = 128; $i > 0; $i--) { if($i <> 31) { echo "<option value=\"{$i}\" "; if ($i == $pconfig['tunnel-remote-net']) echo "selected"; |