From owner-freebsd-current@FreeBSD.ORG Tue Jun 10 11:53:35 2008 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 911F2106566B for ; Tue, 10 Jun 2008 11:53:35 +0000 (UTC) (envelope-from randy@psg.com) Received: from rip.psg.com (rip.psg.com [IPv6:2001:418:1::39]) by mx1.freebsd.org (Postfix) with ESMTP id 7A7F48FC12 for ; Tue, 10 Jun 2008 11:53:35 +0000 (UTC) (envelope-from randy@psg.com) Received: from 50.216.138.210.bn.2iij.net ([210.138.216.50] helo=rmac.psg.com) by rip.psg.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.69 (FreeBSD)) (envelope-from ) id 1K62Pu-000FTV-SS for freebsd-current@freebsd.org; Tue, 10 Jun 2008 11:53:35 +0000 Message-ID: <484E6B3B.8050801@psg.com> Date: Tue, 10 Jun 2008 20:53:31 +0900 From: Randy Bush User-Agent: Thunderbird 2.0.0.14 (Macintosh/20080421) MIME-Version: 1.0 To: freebsd-current@freebsd.org References: <480D6667.4020509@errno.com> <20080422200616.GA44541@tirith.brixandersen.dk> <480E79F9.40303@freebsd.org> <480F358A.2000009@psg.com> <20080423142628.GA44288@lor.one-eyed-alien.net> <4812C59D.60806@psg.com> In-Reply-To: <4812C59D.60806@psg.com> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: HEADSUP: 802.11 vap support merged X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2008 11:53:35 -0000 the following works. it puts up a wep ssid rgnet-aden to which i can connect no problem wlans_ath0="wlan0" create_args_wlan0="wlanmode ap" cloned_interfaces=bridge0 ifconfig_bridge0="192.168.0.1 addm vr1 addm vr2 addm vr3 addm wlan0 up" ipv6_ifconfig_bridge0="inet6 2001:240:6a8::1/64" ifconfig_vr1=up ifconfig_vr2=up ifconfig_vr3=up ifconfig_wlan0="channel 11 ssid rgnet-aden wep wepkey thirteenchars weptxkey 1 mediaopt hostap up" but the following does not work. i can connect to the wep-less ssid, rg-free, but fail on connect to the wep ssid, rgnet-aden, which worked above wlans_ath0="wlan0 wlan1" create_args_wlan0="wlanmode ap" create_args_wlan1="wlanmode ap" cloned_interfaces=bridge0 ifconfig_bridge0="192.168.0.1 addm vr1 addm vr2 addm vr3 addm wlan0 addm wlan1 up" ipv6_ifconfig_bridge0="inet6 2001:240:6a8::1/64" ifconfig_vr1=up ifconfig_vr2=up ifconfig_vr3=up ifconfig_wlan0="channel 11 ssid rgnet-aden wep wepkey thirteenchars weptxkey 1 mediaopt hostap up" ifconfig_wlan1="ssid rg-free up" and, in neither case, do i get the ipv6 address on the bridge. i can add it manually after the system is up. so it is a timing thing, maybe an interaction with the pppoe and gif that have to come up first. randy