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