From owner-cvs-all@FreeBSD.ORG Thu Nov 9 06:32:40 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E451E16A49E; Thu, 9 Nov 2006 06:32:40 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2760D43D73; Thu, 9 Nov 2006 06:32:39 +0000 (GMT) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kA96WdY9098836; Thu, 9 Nov 2006 06:32:39 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kA96Wd5Q098835; Thu, 9 Nov 2006 06:32:39 GMT (envelope-from thompsa) Message-Id: <200611090632.kA96Wd5Q098835@repoman.freebsd.org> From: Andrew Thompson Date: Thu, 9 Nov 2006 06:32:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sbin/ifconfig ifbridge.c ifconfig.8 src/sys/net if_bridge.c if_bridgevar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Nov 2006 06:32:41 -0000 thompsa 2006-11-09 06:32:39 UTC FreeBSD src repository Modified files: sbin/ifconfig ifbridge.c ifconfig.8 sys/net if_bridge.c if_bridgevar.h Log: Add a new address cache type called sticky. On an interface marked sticky any address learned by the bridge is made permanent, the address will not age out and most importantly will not migrate to another interface. This can be used to stop mac address poisoning or clients roaming in much the same way as static entries without the hassle of preloading the table. Revision Changes Path 1.5 +16 -0 src/sbin/ifconfig/ifbridge.c 1.126 +12 -0 src/sbin/ifconfig/ifconfig.8 1.87 +23 -17 src/sys/net/if_bridge.c 1.17 +4 -2 src/sys/net/if_bridgevar.h