diff options
author | 2015-01-22 19:00:24 +0000 | |
---|---|---|
committer | 2015-01-22 19:00:24 +0000 | |
commit | 997283b15f9bb6e188b86c3d4e3dfb6d8f7c61e5 (patch) | |
tree | 07361c70e3951e03f5b8591122e7c4328180971a | |
parent | Clean up includes, while here fix a white space which lead to a false (diff) | |
download | wireguard-openbsd-997283b15f9bb6e188b86c3d4e3dfb6d8f7c61e5.tar.xz wireguard-openbsd-997283b15f9bb6e188b86c3d4e3dfb6d8f7c61e5.zip |
Use /etc/services names in all the default pf rules (most already
did). This allows any local changes to /etc/services to be effective
if all you have is the default.
Issue pointed out by Brian S. Vangsgaard on bugs@. Thanks!
ok phessler@ deraadt@
-rw-r--r-- | etc/rc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.446 2014/12/03 20:13:49 florian Exp $ +# $OpenBSD: rc,v 1.447 2015/01/22 19:00:24 krw Exp $ # System startup script run by init on autoboot # or after single-user. @@ -318,8 +318,8 @@ wsconsctl_conf if [ X"${pf}" != X"NO" ]; then RULES="block all" RULES="$RULES\npass on lo0" - RULES="$RULES\npass in proto tcp from any to any port 22 keep state" - RULES="$RULES\npass out proto { tcp, udp } from any to any port 53 keep state" + RULES="$RULES\npass in proto tcp from any to any port ssh keep state" + RULES="$RULES\npass out proto { tcp, udp } from any to any port domain keep state" RULES="$RULES\npass out inet proto icmp all icmp-type echoreq keep state" RULES="$RULES\npass out inet proto udp from any port bootpc to any port bootps" RULES="$RULES\npass in inet proto udp from any port bootps to any port bootpc" @@ -337,8 +337,8 @@ if [ X"${pf}" != X"NO" ]; then *[1-9]*) # don't kill NFS 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 } !received-on any" + RULES="$RULES\npass in proto { tcp, udp } from any port { sunrpc, nfsd } to any" + RULES="$RULES\npass out proto { tcp, udp } from any to any port { sunrpc, nfsd } !received-on any" ;; esac echo $RULES | pfctl -f - |