aboutsummaryrefslogtreecommitdiff
path: root/share/man/man4/pflog.4
Commit message (Collapse)AuthorAgeFilesLines
* Add a bugs section to pflog man pageTom Jones2019-04-181-3/+5
| | | | | | | | | | | | | | FreeBSD does not set the pid field in the pfloghdr struct. This field is populated on other platforms, document this to save people from trying to use this field. Event: Aberdeen hackathon 2019 Reviewed by: kp, bcr, bz Approved by: bz (mentor) Differential Revision: https://reviews.freebsd.org/D19952 Notes: svn path=/head/; revision=346348
* Update and clarify pflog man pageTom Jones2019-04-161-5/+12
| | | | | | | | | | | | | | | The pflog0 interface is created when the module is loaded, this can be triggered by pf and pflogd being enabled or by kldloading the module. By default the interface would be pflog0, add the ifconfig stage of the example to make this example clearer. Reviewed by: kp, bz, bcr, jtl, 0mp Approved by: jtl (mentor), bz (mentor) Differential Revision: https://reviews.freebsd.org/D19861 Notes: svn path=/head/; revision=346274
* Sort SEE ALSOBaptiste Daroussin2014-12-261-2/+2
| | | | Notes: svn path=/head/; revision=276259
* Fix various mdoc issues.Christian Brueffer2014-12-211-1/+1
| | | | | | | Found with: mandoc -Tlint Notes: svn path=/head/; revision=275990
* o Create directory sys/netpfil, where all packet filters shouldGleb Smirnoff2012-09-141-0/+107
reside, and move there ipfw(4) and pf(4). o Move most modified parts of pf out of contrib. Actual movements: sys/contrib/pf/net/*.c -> sys/netpfil/pf/ sys/contrib/pf/net/*.h -> sys/net/ contrib/pf/pfctl/*.c -> sbin/pfctl contrib/pf/pfctl/*.h -> sbin/pfctl contrib/pf/pfctl/pfctl.8 -> sbin/pfctl contrib/pf/pfctl/*.4 -> share/man/man4 contrib/pf/pfctl/*.5 -> share/man/man5 sys/netinet/ipfw -> sys/netpfil/ipfw The arguable movement is pf/net/*.h -> sys/net. There are future plans to refactor pf includes, so I decided not to break things twice. Not modified bits of pf left in contrib: authpf, ftp-proxy, tftp-proxy, pflogd. The ipfw(4) movement is planned to be merged to stable/9, to make head and stable match. Discussed with: bz, luigi Notes: svn path=/head/; revision=240494