From owner-svn-src-all@FreeBSD.ORG Thu May 7 14:51:04 2009 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D80F7106566B; Thu, 7 May 2009 14:51:04 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 91EDE8FC12; Thu, 7 May 2009 14:51:04 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id C829DFF31; Fri, 8 May 2009 02:51:03 +1200 (NZST) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id EnDoipDY702X; Fri, 8 May 2009 02:50:59 +1200 (NZST) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Fri, 8 May 2009 02:50:59 +1200 (NZST) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id 80F8E11432; Fri, 8 May 2009 02:50:58 +1200 (NZST) Date: Thu, 7 May 2009 07:50:58 -0700 From: Andrew Thompson To: Ed Maste Message-ID: <20090507145058.GB85054@citylink.fud.org.nz> References: <200905071434.n47EYnCb058653@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200905071434.n47EYnCb058653@svn.freebsd.org> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r191884 - head/share/man/man4 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 May 2009 14:51:05 -0000 On Thu, May 07, 2009 at 02:34:49PM +0000, Ed Maste wrote: > Author: emaste > Date: Thu May 7 14:34:49 2009 > New Revision: 191884 > URL: http://svn.freebsd.org/changeset/base/191884 > > Log: > s/ath0/wlan0/ since we no longer use the real device directly. > > Modified: > head/share/man/man4/if_bridge.4 > > Modified: head/share/man/man4/if_bridge.4 > ============================================================================== > --- head/share/man/man4/if_bridge.4 Thu May 7 14:24:50 2009 (r191883) > +++ head/share/man/man4/if_bridge.4 Thu May 7 14:34:49 2009 (r191884) > @@ -342,7 +342,7 @@ The following when placed in the file > will cause a bridge called > .Dq Li bridge0 > to be created, and will add the interfaces > -.Dq Li ath0 > +.Dq Li wlan0 > and > .Dq Li fxp0 > to the bridge, and then enable packet forwarding. > @@ -351,14 +351,14 @@ Such a configuration could be used to im > in ad-hoc mode). > .Bd -literal -offset indent > cloned_interfaces="bridge0" > -ifconfig_bridge0="addm ath0 addm fxp0 up" > +ifconfig_bridge0="addm wlan0 addm fxp0 up" > .Ed > .Pp > For the bridge to forward packets all member interfaces and the bridge need > to be up. > The above example would also require: > .Bd -literal -offset indent > -ifconfig_ath0="up ssid my_ap mode 11g mediaopt hostap" > +ifconfig_wlan0="up ssid my_ap mode 11g mediaopt hostap" Not quite right, I dont believe you can use mediaopt anymore. The vap gets the mode on creation so it would be, create_args_wlan0="wlanmode hostap" ifconfig_wlan0="up ssid my_ap mode 11g" cheers, Andrew