From owner-freebsd-questions@FreeBSD.ORG Sun Feb 6 20:31:27 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0A5A16A4CE for ; Sun, 6 Feb 2005 20:31:27 +0000 (GMT) Received: from web21201.mail.yahoo.com (web21201.mail.yahoo.com [216.136.129.59]) by mx1.FreeBSD.org (Postfix) with SMTP id BF5BA43D4C for ; Sun, 6 Feb 2005 20:31:27 +0000 (GMT) (envelope-from adriankok2000@yahoo.com.hk) Received: (qmail 99429 invoked by uid 60001); 6 Feb 2005 20:31:27 -0000 Message-ID: <20050206203127.99427.qmail@web21201.mail.yahoo.com> Received: from [142.154.97.134] by web21201.mail.yahoo.com via HTTP; Mon, 07 Feb 2005 04:31:27 CST Date: Mon, 7 Feb 2005 04:31:27 +0800 (CST) From: adrian kok To: questions@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Mon, 07 Feb 2005 13:45:41 +0000 Subject: control udp, icmp packets X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Feb 2005 20:31:28 -0000 Hi all I am running zebra in freebsd. but can I have feature like cisco iso? I got the document from cymru about icmp and udp as follows: I tried the dummynet but it is not working properly! If you have this experience about dummynet working fine in router, please share to me. Thank you ! Allow UDP to occupy no more than 2 Mb/s of the pipe. rate-limit input access-group 150 2010000 250000 250000 conform-action transmit exceed-action drop ! Allow ICMP to occupy no more than 500 Kb/s of the pipe. rate-limit input access-group 160 500000 62500 62500 conform-action transmit exceed-action drop ! Allow multicast to occupy no more than 5 Mb/s of the pipe. rate-limit input access-group 170 5000000 375000 375000 conform-action transmit exceed-action drop Thank you