xref: /freebsd/share/examples/pf/queue3 (revision 7bd6fde3)
1# $FreeBSD$
2# $OpenBSD: queue3,v 1.2 2003/01/20 16:14:23 henning Exp $
3# simple PRIQ example
4
5ext_if="lo0"
6
7altq on $ext_if priq bandwidth 10Mb queue { pri-low pri-med pri-high }
8queue pri-low priority 0
9queue pri-med priority 1 priq(default)
10queue pri-high priority 2
11
12pass out on $ext_if proto tcp from any to any port 22 keep state \
13    queue(pri-med, pri-high)
14pass out on $ext_if proto tcp from any to any port 80 keep state queue pri-med
15pass in  on $ext_if proto tcp from any to any port 80 keep state queue pri-low
16
17