git: 4c4a7a8da49c - main - pf.conf.5: fix range for assigned ports managed by the IANA (see RFC 1700).
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 11 Feb 2025 10:33:01 UTC
The branch main has been updated by kp:
URL: https://cgit.FreeBSD.org/src/commit/?id=4c4a7a8da49c8c9c99826c834bd3159c262f7ac7
commit 4c4a7a8da49c8c9c99826c834bd3159c262f7ac7
Author: Kristof Provost <kp@FreeBSD.org>
AuthorDate: 2025-02-05 12:59:09 +0000
Commit: Kristof Provost <kp@FreeBSD.org>
CommitDate: 2025-02-11 10:32:22 +0000
pf.conf.5: fix range for assigned ports managed by the IANA (see RFC 1700).
ok sthen@
Obtained from: OpenBSD, sobrado <sobrado@openbsd.org>, 908a1da340
Sponsored by: Rubicon Communications, LLC ("Netgate")
---
share/man/man5/pf.conf.5 | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5
index a517015b5ff8..c438cfc6894b 100644
--- a/share/man/man5/pf.conf.5
+++ b/share/man/man5/pf.conf.5
@@ -27,7 +27,7 @@
.\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
.\" POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd January 10, 2025
+.Dd February 5, 2025
.Dt PF.CONF 5
.Os
.Sh NAME
@@ -1911,9 +1911,9 @@ The host, port and OS specifications are optional, 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"
.Ed