Upgrade awk(1). 1/2
[dragonfly.git] / share / examples / pf / queue3
1 # $OpenBSD: queue3,v 1.2 2003/01/20 16:14:23 henning Exp $
2 # $DragonFly: src/share/examples/pf/queue3,v 1.1 2005/12/13 01:58:27 corecode Exp $
3 # simple PRIQ example
4
5 ext_if="lo0"
6
7 altq on $ext_if priq bandwidth 10Mb queue { pri-low pri-med pri-high }
8 queue pri-low priority 0
9 queue pri-med priority 1 priq(default)
10 queue pri-high priority 2
11
12 pass out on $ext_if proto tcp from any to any port 22 keep state \
13     queue(pri-med, pri-high)
14 pass out on $ext_if proto tcp from any to any port 80 keep state queue pri-med
15 pass in  on $ext_if proto tcp from any to any port 80 keep state queue pri-low
16