diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-17 17:17:04 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2009-04-17 17:17:04 +0000 |
commit | 27020739510cbeaa433db25f3eae3e47b1bdacdc (patch) | |
tree | 174b60dfaf3678246c2add1246cea559992379ab /etc | |
parent | a7f92c5e88155c01d0de5b03626d3cbac8bc57d3 (diff) |
a scrub was hiding here when nfs was enabled. since we want the no-df
behaviour here replace by an explicit set reassemble yes no-df.
noticed by Valery Masiutsin <val.masutin at gmail dot com>
Diffstat (limited to 'etc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.323 2009/03/16 23:18:45 jacekm Exp $ +# $OpenBSD: rc,v 1.324 2009/04/17 17:17:03 henning Exp $ # System startup script run by init on autoboot # or after single-user. @@ -272,7 +272,7 @@ if [ X"${pf}" != X"NO" ]; then case `sysctl vfs.mounts.nfs 2>/dev/null` in *[1-9]*) # don't kill NFS - RULES="scrub in all no-df\n$RULES" + RULES="set reassemble yes no-df\n$RULES" RULES="$RULES\npass in proto { tcp, udp } from any port { 111, 2049 } to any" RULES="$RULES\npass out proto { tcp, udp } from any to any port { 111, 2049 }" ;; |