aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLutz Donnerhacke <donner@FreeBSD.org>2021-05-10 18:31:52 +0000
committerLutz Donnerhacke <donner@FreeBSD.org>2021-05-25 05:46:32 +0000
commit86f699f4a360c58e2441856052421dbb45991f23 (patch)
tree4f175a8531c7e3a4625d28e43ba9d62bfd70d593
parent621562a0a05fcb569fe40548448774ac03396b8a (diff)
downloadsrc-86f699f4a360c58e2441856052421dbb45991f23.tar.gz
src-86f699f4a360c58e2441856052421dbb45991f23.zip
ipfw.8: Fix table example
Fix some erronous lines in the example section. PR: 248943 Submitted by: Jose Luis Duran Reviewers: ae, manpages (gbe) Differential Revision: https://reviews.freebsd.org/D30191 (cherry picked from commit 802637be06457c7593692bdf79f8466fa5f54d4a)
-rw-r--r--sbin/ipfw/ipfw.88
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ipfw/ipfw.8 b/sbin/ipfw/ipfw.8
index d2c4885bc119..ef718c247896 100644
--- a/sbin/ipfw/ipfw.8
+++ b/sbin/ipfw/ipfw.8
@@ -1,7 +1,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd August 21, 2020
+.Dd May 11, 2021
.Dt IPFW 8
.Os
.Sh NAME
@@ -4451,11 +4451,11 @@ Using the
.Cm fwd
action, the table entries may include hostnames and IP addresses.
.Pp
-.Dl "ipfw table T2 create type addr ftype ip"
+.Dl "ipfw table T2 create type addr valtype ipv4"
.Dl "ipfw table T2 add 192.168.2.0/24 10.23.2.1"
-.Dl "ipfw table T21 add 192.168.0.0/27 router1.dmz"
+.Dl "ipfw table T2 add 192.168.0.0/27 router1.dmz"
.Dl "..."
-.Dl "ipfw add 100 fwd tablearg ip from any to table(1)"
+.Dl "ipfw add 100 fwd tablearg ip from any to 'table(T2)'"
.Pp
In the following example per-interface firewall is created:
.Pp