diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2014-05-28 19:45:05 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2014-05-28 19:45:05 +0000 |
commit | 22f515f65bcf2840b80c87cb9bffba592677f47b (patch) | |
tree | 3dbee72c80fe4d3564683c33230013ca8cde6356 /share/man | |
parent | 36b52b7ae75d71cf77937c76620b7e85e2c7645b (diff) |
prio is meaningless when bandwidth shaping is in use, fix example
noticed by Marko CupaÄ <marko.cupac at mimar dot rs>
Diffstat (limited to 'share/man')
-rw-r--r-- | share/man/man5/pf.conf.5 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/share/man/man5/pf.conf.5 b/share/man/man5/pf.conf.5 index 5f99941a8d1..700a8ac51f6 100644 --- a/share/man/man5/pf.conf.5 +++ b/share/man/man5/pf.conf.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pf.conf.5,v 1.536 2014/01/21 03:15:46 schwarze Exp $ +.\" $OpenBSD: pf.conf.5,v 1.537 2014/05/28 19:45:04 henning Exp $ .\" .\" Copyright (c) 2002, Daniel Hartmeier .\" Copyright (c) 2003 - 2013 Henning Brauer <henning@openbsd.org> @@ -28,7 +28,7 @@ .\" ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: January 21 2014 $ +.Dd $Mdocdate: May 28 2014 $ .Dt PF.CONF 5 .Os .Sh NAME @@ -1518,10 +1518,11 @@ four referenced queues, plus a few child queues. Interactive .Xr ssh 1 -sessions get priority over bulk transfers like +sessions get a queue with a minimum bandwidth, .Xr scp 1 and -.Xr sftp 1 . +.Xr sftp 1 +bulk transfers go to a seperate queue. The queues are then referenced by filtering rules (see .Sx PACKET FILTERING , above). @@ -1542,7 +1543,7 @@ pass out on em0 inet proto tcp from $developerhosts to any port 80 \e pass out on em0 inet proto tcp from $employeehosts to any port 80 \e set queue employees pass out on em0 inet proto tcp from any to any port 22 \e - set (queue(ssh_bulk, ssh_interactive), prio (3, 6)) + set queue(ssh_bulk, ssh_interactive) pass out on em0 inet proto tcp from any to any port 25 \e set queue mail .Ed |