diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-09-26 21:11:55 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-09-26 21:11:55 +0000 |
commit | 55f9d97204465df32334d572288d957d588f0337 (patch) | |
tree | dd998c440c6917599357e3796ecfca248f1d4fdc /etc | |
parent | 318ef83f2b78d516027c0c7971948d388860d98e (diff) | |
download | pfsense-55f9d97204465df32334d572288d957d588f0337.zip pfsense-55f9d97204465df32334d572288d957d588f0337.tar.gz |
Comment out non-working ipv6 nat redirect and mark with a XXX
Diffstat (limited to 'etc')
-rw-r--r-- | etc/inc/filter.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/filter.inc b/etc/inc/filter.inc index c66eee7..60bc85c 100644 --- a/etc/inc/filter.inc +++ b/etc/inc/filter.inc @@ -516,7 +516,8 @@ function filter_nat_rules_generate() { /* DIAG: add ipv6 NAT, if requested */ if (isset($config['diag']['ipv6nat']['enable']) and $config['diag']['ipv6nat']['ipaddr'] <> "") { - $natrules .= "rdr on $wanif proto ipv6 from any to any port 0 -> {$config['diag']['ipv6nat']['ipaddr']}\n"; + /* XXX: FIX ME! IPV6 */ + //$natrules .= "rdr on $wanif proto ipv6 from any to any port 0 -> {$config['diag']['ipv6nat']['ipaddr']}\n"; } if (isset($config['nat']['rule'])) { |