From owner-freebsd-net@FreeBSD.ORG Mon Sep 6 18:02:52 2004 Return-Path: Delivered-To: freebsd-net@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1E1516A4CE for ; Mon, 6 Sep 2004 18:02:51 +0000 (GMT) Received: from out002.verizon.net (out002pub.verizon.net [206.46.170.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 855C443D46 for ; Mon, 6 Sep 2004 18:02:51 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from [192.168.1.3] ([68.160.193.218]) by out002.verizon.net (InterMail vM.5.01.06.06 201-253-122-130-106-20030910) with ESMTP id <20040906180250.GWJE6722.out002.verizon.net@[192.168.1.3]>; Mon, 6 Sep 2004 13:02:50 -0500 Message-ID: <413CA630.8040606@mac.com> Date: Mon, 06 Sep 2004 14:02:24 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040803 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Povolotsky References: <20040906112426.7a575414@tarkhil.over.ru> In-Reply-To: <20040906112426.7a575414@tarkhil.over.ru> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at out002.verizon.net from [68.160.193.218] at Mon, 6 Sep 2004 13:02:50 -0500 cc: freebsd-net@freebsd.org Subject: Re: help needed with dummynet X-BeenThere: freebsd-net@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Networking and TCP/IP with FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 06 Sep 2004 18:02:52 -0000 Alex Povolotsky wrote: > I want to make ssh traffic 'top priority', giving it all bandwidth it > wants, without explicitly limiting other kinds of traffic. OK. Consider something like the following: ipfw pipe 1 config ipfw queue 1 config pipe 1 weight 100 ipfw queue 2 config pipe 1 weight 1 ipfw add queue 1 tcp from any to any ssh ipfw add queue 2 ip from any to any -- -Chuck