diff options
author | Igor Sobrado <sobrado@cvs.openbsd.org> | 2013-04-25 16:53:12 +0000 |
---|---|---|
committer | Igor Sobrado <sobrado@cvs.openbsd.org> | 2013-04-25 16:53:12 +0000 |
commit | 760ae725e01172b71abd422653f1b3420f893f38 (patch) | |
tree | f74e62bf117b8901e2cf0f6f60c2b06d30b6f234 /share | |
parent | 22fa7a0d6b1bf16508f64e347bf54adda43bf21c (diff) |
fix range for assigned ports managed by the IANA (see RFC 1700).
ok sthen@
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man5/pf.conf.5 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 85b7d5898fd..4bd31950c00 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.526 2013/02/19 23:01:15 sthen Exp $ +.\" $OpenBSD: pf.conf.5,v 1.527 2013/04/25 16:53:11 sobrado Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" All rights reserved. @@ -27,7 +27,7 @@ .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: February 19 2013 $ +.Dd $Mdocdate: April 25 2013 $ .Dt PF.CONF 5 .Os .Sh NAME @@ -420,9 +420,9 @@ as in the following examples: .Bd -literal -offset indent pass in all pass in from any to any -pass in proto tcp from any port \*(Le 1024 to any +pass in proto tcp from any port \*(Lt 1024 to any pass in proto tcp from any to any port 25 -pass in proto tcp from 10.0.0.0/8 port \*(Gt 1024 \e +pass in proto tcp from 10.0.0.0/8 port \*(Ge 1024 \e to ! 10.1.2.3 port != ssh pass in proto tcp from any os "OpenBSD" pass in proto tcp from route "DTAG" |