ipfw add allow record-state skip-action This text in ipfw(8) uses "skip-action" however, this isn't an available keyword in ipfw. Please update to use the proper keyword. Also, if someone could add something to show how to properly configure a stateful NAT, that would go a long way. Thanks
Created attachment 236419 [details] Fix to manpage ipfw.8 The action was renamed to "defer-action" during review of D1776 but this line in the manual got overlooked.
Here is typical newbie error when blindly following manual page example: # ipfw add allow record-state skip-action ipfw: unrecognised option [-1] skip-action Patch in attachment 236419 [details] works for meβ’, thank you.
A commit in branch main references this bug: URL: https://cgit.FreeBSD.org/src/commit/?id=da52fc464a4c80fdbed551824064d203831b4e7b commit da52fc464a4c80fdbed551824064d203831b4e7b Author: Ceri Davies <ceri@FreeBSD.org> AuthorDate: 2023-01-25 18:15:18 +0000 Commit: Ceri Davies <ceri@FreeBSD.org> CommitDate: 2023-01-25 18:15:18 +0000 ipfw.8: there never was a "skip-action" action It was renamed during review of D1776 but this entry slipped through. PR: 243284 Reported by: pprocacci@gmail.com Obtained from: Chad Jacob Milios <milios@ccsys.com> sbin/ipfw/ipfw.8 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
Corrected, thanks for the report.