diff options
author | ume <ume@FreeBSD.org> | 2001-08-21 15:05:09 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2001-08-21 15:05:09 +0000 |
commit | f0f29f2dc35b9a93e635962ec04655a329868056 (patch) | |
tree | 39f12f700768d71ee0a29cd41c8a20ba4d1560fb /etc/rc.firewall6 | |
parent | bfb2a1d9645777514e4a81b213e216fa474de287 (diff) | |
download | FreeBSD-src-f0f29f2dc35b9a93e635962ec04655a329868056.zip FreeBSD-src-f0f29f2dc35b9a93e635962ec04655a329868056.tar.gz |
fix typo. icmptype of destination unreach is not 2 but 1.
Submitted by: kuriyama
Diffstat (limited to 'etc/rc.firewall6')
-rw-r--r-- | etc/rc.firewall6 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.firewall6 b/etc/rc.firewall6 index b774ef9..4c2b239 100644 --- a/etc/rc.firewall6 +++ b/etc/rc.firewall6 @@ -256,7 +256,7 @@ case ${ipv6_firewall_type} in #${fw6cmd} add pass udp from fe80::/10 521 to fe80::/10 521 # Allow ICMPv6 destination unreach - ${fw6cmd} add pass ipv6-icmp from any to any icmptypes 2 + ${fw6cmd} add pass ipv6-icmp from any to any icmptypes 1 # Allow NS/NA/toobig (don't filter it out) ${fw6cmd} add pass ipv6-icmp from any to any icmptypes 2,135,136 |