aboutsummaryrefslogtreecommitdiff
path: root/share/examples/pf/queue3
blob: 8430209ee48998ab0c10e5359003545607c2ff96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# $FreeBSD: src/share/examples/pf/queue3,v 1.2.2.1.6.1 2010/12/21 17:09:25 kensmith Exp $
# $OpenBSD: queue3,v 1.3 2006/10/07 04:48:01 mcbride Exp $
# simple PRIQ example

ext_if="lo0"

altq on $ext_if priq bandwidth 10Mb queue { pri-low pri-med pri-high }
queue pri-low priority 0
queue pri-med priority 1 priq(default)
queue pri-high priority 2

pass out on $ext_if proto tcp from any to any port 22 \
    queue(pri-med, pri-high)
pass out on $ext_if proto tcp from any to any port 80 queue pri-med
pass in  on $ext_if proto tcp from any to any port 80 queue pri-low