From owner-freebsd-stable@FreeBSD.ORG Sun Nov 6 22:19:52 2005 Return-Path: X-Original-To: freebsd-stable@freebsd.org Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D80C16A41F for ; Sun, 6 Nov 2005 22:19:52 +0000 (GMT) (envelope-from sam@errno.com) Received: from ebb.errno.com (ebb.errno.com [69.12.149.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29C4643D70 for ; Sun, 6 Nov 2005 22:19:51 +0000 (GMT) (envelope-from sam@errno.com) Received: from [10.0.0.192] ([10.0.0.192]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id jA6MJopU007017 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 6 Nov 2005 14:19:50 -0800 (PST) (envelope-from sam@errno.com) Message-ID: <436E813B.7040903@errno.com> Date: Sun, 06 Nov 2005 14:18:35 -0800 From: Sam Leffler Organization: Errno Consulting User-Agent: Mozilla Thunderbird 1.0.7 (Macintosh/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?UTF-8?B?0J3QuNC60L7Qu9Cw0Lkg0JzQuNGA0LjQvQ==?= References: <20051106131916.GO28385@sun.unixguru.nl> <436E6D07.6010600@math.missouri.edu> <20051106211550.GB26783@sun.unixguru.nl> <436E7C28.4090004@optim.com.ru> In-Reply-To: <436E7C28.4090004@optim.com.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-stable@freebsd.org Subject: Re: Atheros (ath0) no RX traffic X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 06 Nov 2005 22:19:52 -0000 Николай Мирин wrote: > If you do not build kernel modules there are several things to include > in 6.0 kernel when > you migrate from 5.4. The reason for the error in your case is probably > missing wlan_wep device. > > #5.4 > device wlan # 802.11 support > device ath > device ath_hal > > #6.0 > device wlan # 802.11 support > device wlan_wep > device ath > device ath_hal > device ath_rate_onoe > > > > > And actually, I had to change rc.conf line for my ath card a little bit. > For some reason in 6.0 it doesn't work without wepkey number specified. > > in 5.4 it was: > ifconfig_ath0="inet 192.168.0.99 ssid MirinNET channel 1 wep wepkey > 0x000000000000000000000 authmode open" > > in 6.0 it became > ifconfig_ath0="inet 192.168.0.99 ssid MirinNET channel 1 wep wepkey > 0x00000000000000000000 authmode open weptxkey 1" There is no default tx key any more; you must specify it. Sam