aboutsummaryrefslogtreecommitdiff
path: root/contrib/pf
Commit message (Collapse)AuthorAgeFilesLines
* Fix sloppy use of "manpage", bump .Dd where applicable and rename RED toMax Laier2005-02-072-4/+4
| | | | | | | | | | Random Early Detection (not ... Drop) in order to be consistent with other documentation on ALTQ Pointed out by: simon, ru, Brad Davis Notes: svn path=/head/; revision=141490
* Be more verbose about altq SYNOPSIS and add more linkage in the relating pfMax Laier2005-02-072-0/+10
| | | | | | | | | | | documents. Inspired by: scottl Reviewed by: Brad Davis <so14kNOso14kSPAMcom> MFC after: 3 days Notes: svn path=/head/; revision=141456
* Fix a reference from pool(9) -> zone(9), but keep on talking about "memoryMax Laier2004-11-141-1/+1
| | | | | | | | | pools" as that is what UMA provides. Submitted by: Jay <jay NO meangrape SPAM com> Notes: svn path=/head/; revision=137693
* Rename the QUEUEING section to QUEUEING/ALTQ to make it easier to find theMax Laier2004-10-071-2/+2
| | | | | | | | | appropiate section when redirected from ALTQ(4). MFC after: 2 days Notes: svn path=/head/; revision=136229
* Make pflogd cope with module unload (and the sudden disappearing of pflog0).Max Laier2004-10-051-1/+9
| | | | | | | | | | Instead of eating all the available CPU we now shutdown gracefully. Submitted by: yongari MFC after: 3 days Notes: svn path=/head/; revision=136141
* Document a problem with user/group filtering. With debug.mpsafenet=1 thisMax Laier2004-10-031-1/+32
| | | | | | | | | | | | | | might result in a deadlock. The fix involves critical changes in the PF locking strategy (which will happen after 5.3R). For now advise users to set debug.mpsafenet=0 if they use this kind of filtering. The same problem exists for IPFW. mdoc help from: simon MFC after: 2 days Notes: svn path=/head/; revision=136083
* PFIL_HOOKS is no longer an optional item.Max Laier2004-09-261-2/+1
| | | | | | | | Submitted by: Anders Hanssen MFC after: 1 day Notes: svn path=/head/; revision=135824
* Bring in some examples (and create space for future work here):Max Laier2004-09-141-3/+4
| | | | | | | | | | | | | | | - Add OpenBSD example rulesets as advertised in etc/pf.conf and pf.conf(5) - Tweak the pointer to fit the FreeBSD default location share/examples/pf - Account for the new directory in BSD.usr.dist (no hier(7) change required as share/examples is an opaque item there). Obtained from: OpenBSD Reminded by: Thomas T. Veldhouse PR: docs/71691 MFC after: 2 days Notes: svn path=/head/; revision=135184
* Make pflogd(8) store pcap_sf_pkthdr instead of MD timeval contaminatedMax Laier2004-08-311-0/+36
| | | | | | | | | | | | | | | pcap_pkthdr. This makes /var/log/pflog standart compliant on 64bit archs. OpenBSD has fixed this by changing the bpf timeval to 32bit in the kernel, so no need to report this over (again). PR: bin/71096 (w/ changes) Submitted by: Ville-Pertti Keinonen Tested by: amd64(submitter), sparc64(yongari), i386(myself) MFC after: 3 days Notes: svn path=/head/; revision=134578
* Loopback a fix from Cedric Berger:Max Laier2004-08-221-1/+8
| | | | | | | | | | | Fix table add/replace commands with securelevel=2. Reported by James J. Lippard. Discussed with: yongari MFC after: 5 days Notes: svn path=/head/; revision=134175
* Fix printing of u_int64_t with a cast to unsigned long long.Max Laier2004-06-171-1/+1
| | | | | | | Found-by: tinderbox(amd64) Notes: svn path=/head/; revision=130634
* Commit userland part of pf version 3.5 from OpenBSD (OPENBSD_3_5_BASE).Max Laier2004-06-1617-839/+2444
| | | | Notes: svn path=/head/; revision=130617
* This commit was generated by cvs2svn to compensate for changes in r130614,Max Laier2004-06-1612-170/+925
|\ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=130615
| * Import userland of pf 3.5 from OpenBSD (OPENBSD_3_5_BASE).vendor/pf/3.5Max Laier2004-06-1627-1036/+3368
| | | | | | | | | | Notes: svn path=/vendor/pf/dist/; revision=130614 svn path=/vendor/pf/3.5/; revision=130616; tag=vendor/pf/3.5
* | FreeBSD-ify the manpage. Our inetd does not support bind-address:port syntaxMax Laier2004-05-271-1/+3
| | | | | | | | | | | | | | | | | | | | | | Christian will follow up with some additional words about how to protect this from the outside world. Submitted-by: brueffer Approved-by: bms(mentor) Notes: svn path=/head/; revision=129790
* | FreeBSD-if .4 manpages for pf/pflog/pfsync.Max Laier2004-04-183-3/+10
| | | | | | | | | | | | | | | | | | PR: docs/65687 Submitted by: Sergey Matveychuk Approved by: bms(mentor) Notes: svn path=/head/; revision=128403
* | Fix $FreeBSD$ ids.David E. O'Brien2004-03-1611-11/+29
| | | | | | | | Notes: svn path=/head/; revision=127082
* | Fix some style(9) related issues after discussion with/education from bde:Max Laier2004-03-1512-118/+94
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Add <sys/param.h> and <limits.h> where required (do not depend on other headers pulling it in). - __dead -> __dead2 - #if defined() -> #ifdef - Remove ugly PRIu64 macros and use %llu w/ (unsigned long long) cast. All changes looped back to OpenBSD (where applicable) for easier sync in the future. Requested by: bde Approved by: bms(mentor) Notes: svn path=/head/; revision=127024
* | Fix two instances of improper NULL/0 use idetified by the changes lately.Max Laier2004-03-082-2/+2
| | | | | | | | | | | | | | | | Submitted by: Patrick Marie Approved by: bms(mentor) Notes: svn path=/head/; revision=126747
* | Add local define of HTONL() as it was decided to protect this by _KERNELMax Laier2004-02-281-0/+5
| | | | | | | | | | | | | | in <net/pfvar.h> Notes: svn path=/head/; revision=126361
* | This commit was generated by cvs2svn to compensate for changes in r126357,Max Laier2004-02-282-0/+122
|\| | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=126358
| * Missed those two during the original import. Taken from OpenBSD's util.hvendor/pf/3.4Max Laier2004-02-282-0/+122
| | | | | | | | | | | | | | | | Approved by: bms(mentor) Notes: svn path=/vendor/pf/dist/; revision=126357 svn path=/vendor/pf/3.4/; revision=126359; tag=vendor/pf/3.4
* | Apply diff from the port.Max Laier2004-02-2810-23/+165
|/ | | | | | | | | | | | | Rather small diff for the userland (in contrast to the kernel): - Some header file location/differences - Clean compilation on 64bit arch (identified by bento a long time ago) - ALTQ not (yet) available. Leave a switch for patchsets and future ... - most files can be used from the vendor branch Approved by: bms(in general) Notes: svn path=/head/; revision=126355
* Vendor import of OpenBSD's pf userland as of OpenBSD 3.4Max Laier2004-02-2827-0/+20141
Approved by: bms(mentor), core(in general) Notes: svn path=/vendor/pf/dist/; revision=126353