From owner-cvs-all@FreeBSD.ORG Tue Apr 10 00:27:26 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5807916A401; Tue, 10 Apr 2007 00:27:26 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4524613C448; Tue, 10 Apr 2007 00:27:26 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l3A0RQPN007341; Tue, 10 Apr 2007 00:27:26 GMT (envelope-from thompsa@repoman.freebsd.org) Received: (from thompsa@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l3A0RQGq007340; Tue, 10 Apr 2007 00:27:26 GMT (envelope-from thompsa) Message-Id: <200704100027.l3A0RQGq007340@repoman.freebsd.org> From: Andrew Thompson Date: Tue, 10 Apr 2007 00:27:26 +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 iftrunk.c src/share/man/man4 trunk.4 src/sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if.c if_ethersubr.c if_trunk.c if_trunk.h if_var.h src/sys/sys priv.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: Tue, 10 Apr 2007 00:27:26 -0000 thompsa 2007-04-10 00:27:25 UTC FreeBSD src repository Modified files: sys/net if.c if_ethersubr.c if_var.h sys/sys priv.h Added files: sbin/ifconfig iftrunk.c share/man/man4 trunk.4 sys/net ieee8023ad_lacp.c ieee8023ad_lacp.h if_trunk.c if_trunk.h Log: Add the trunk(4) driver for providing link aggregation, failover and fault tolerance. This driver allows aggregation of multiple network interfaces as one virtual interface using a number of different protocols/algorithms. failover - Sends traffic through the secondary port if the master becomes inactive. fec - Supports Cisco Fast EtherChannel. lacp - Supports the IEEE 802.3ad Link Aggregation Control Protocol (LACP) and the Marker Protocol. loadbalance - Static loadbalancing using an outgoing hash. roundrobin - Distributes outgoing traffic using a round-robin scheduler through all active ports. This code was obtained from OpenBSD and this also includes 802.3ad LACP support from agr(4) in NetBSD. Revision Changes Path 1.1 +153 -0 src/sbin/ifconfig/iftrunk.c (new) 1.1 +172 -0 src/share/man/man4/trunk.4 (new) 1.1 +1763 -0 src/sys/net/ieee8023ad_lacp.c (new) 1.1 +289 -0 src/sys/net/ieee8023ad_lacp.h (new) 1.270 +6 -0 src/sys/net/if.c 1.227 +14 -0 src/sys/net/if_ethersubr.c 1.1 +1590 -0 src/sys/net/if_trunk.c (new) 1.1 +209 -0 src/sys/net/if_trunk.h (new) 1.113 +1 -0 src/sys/net/if_var.h 1.9 +1 -0 src/sys/sys/priv.h