freebsd-dev/share/examples/pf/queue4
Max Laier 9d7ccc0ffa Bring in some examples (and create space for future work here):
- 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
2004-09-14 01:07:19 +00:00

21 lines
912 B
Plaintext

# $FreeBSD$
# $OpenBSD: queue4,v 1.2 2003/08/22 21:50:34 david Exp $
#
# Hierarchical queueing for a university.
# Three faculties; engineering, law and art are defined.
# Departments under the engineering faculty are defined as child queues.
# The total bandwidth for engineering faculty is shared between three
# departments. CS department gets the half of the bandwidth, EE and IE
# departments get the thirty percent and twenty percent of bandwidth
# respectively. These sibling departments can use more than their linkshare
# whenever there is no backlogged sibling queue but when a queue gets
# backlogged, it is guaranteed that the queue gets its linkshare.
altq on dc0 bandwidth 16Mb hfsc queue { eng law art }
queue eng bandwidth 10Mb { cs ee ie }
queue cs hfsc( default linkshare 50% )
queue ee hfsc( linkshare 30% )
queue ie hfsc( linkshare 20% )
queue law bandwidth 3Mb
queue art bandwidth 3Mb