From owner-freebsd-current@FreeBSD.ORG Thu Jul 3 12:10:15 2008 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B17C106567B for ; Thu, 3 Jul 2008 12:10:15 +0000 (UTC) (envelope-from weongyo.jeong@gmail.com) Received: from yw-out-2324.google.com (yw-out-2324.google.com [74.125.46.30]) by mx1.freebsd.org (Postfix) with ESMTP id DAE308FC15 for ; Thu, 3 Jul 2008 12:10:14 +0000 (UTC) (envelope-from weongyo.jeong@gmail.com) Received: by yw-out-2324.google.com with SMTP id 9so327657ywe.13 for ; Thu, 03 Jul 2008 05:10:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:to:subject :message-id:mail-followup-to:mime-version:content-type :content-disposition:user-agent:organization:x-operation-sytem:from; bh=vSVU1bh/J9og3P0ZXkeR1MuZMgdZ7p7CA1BrBwA1mzM=; b=hW0qi/jW0k0DjlQALqeWTksmjU31wkFwHJ1T6PhVlNdXdl+HSUXN32kDRWutToI6Xl K89JC/H/P1h/MKsaRA98zwicdj+PmwNy7m7JlMlB+os6Tl1CxJ/eRIxwgLIW5A2jxv+g yMbKI7Z2zYNTT5C0lRDwOIKbLAepXPJq7Y/Tg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:to:subject:message-id:mail-followup-to:mime-version :content-type:content-disposition:user-agent:organization :x-operation-sytem:from; b=wKWsCQRhFZgYPz+KHNW29owDPJQs1u/u0/aSFHIuRjTBxVnga60mOqGlLZt2uDX3hJ oYUw6Ep+2mBZuQk203Lu0UxMIBywxTU+tPipgBx7FKADO3FWzlH/uu5ye4GkE2RZtWfG 5i42ulgBJ8MCYgu1yp0RsC/kJ5TO4a8LDXOG0= Received: by 10.114.178.13 with SMTP id a13mr8128331waf.158.1215085371067; Thu, 03 Jul 2008 04:42:51 -0700 (PDT) Received: from freebsd.weongyo.org ( [211.53.35.67]) by mx.google.com with ESMTPS id k2sm10942rvb.4.2008.07.03.04.42.19 (version=SSLv3 cipher=RC4-MD5); Thu, 03 Jul 2008 04:42:50 -0700 (PDT) Received: by freebsd.weongyo.org (sSMTP sendmail emulation); Thu, 3 Jul 2008 20:41:59 +0900 Date: Thu, 3 Jul 2008 20:41:58 +0900 To: current@freebsd.org Message-ID: <20080703114158.GE57570@freebsd.weongyo.org> Mail-Followup-To: current@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.3i Organization: CDNetworks. X-Operation-Sytem: FreeBSD From: Weongyo Jeong Cc: Subject: Q: 802.11 vap monitor mode 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: Thu, 03 Jul 2008 12:10:15 -0000 During testing a new driver, I got a problem to test a monitor mode at 802.11 vap I'm using. # uname -a FreeBSD kkk 8.0-CURRENT FreeBSD 8.0-CURRENT #6: Wed May 14 11:27:37 KST 2008 root@kkk:/usr/obj/usr/src/sys/GENERIC i386 # ifconfig wlan0 create wlandev upgt0 wlanmode monitor # ifconfig wlan0 up # ifconfig [...] upgt0: flags=108943 metric 0 mtu 2290 ether 00:0f:b5:dd:6f:36 media: IEEE 802.11 Wireless Ethernet autoselect mode 11g status: running wlan0: flags=28943 metric 0 mtu 1500 ether 00:0f:b5:dd:6f:36 inet6 fe80::20f:b5ff:fedd:6f36%wlan0 prefixlen 64 scopeid 0xd media: IEEE 802.11 Wireless Ethernet autoselect mode 11g status: running ssid "" channel 1 (2412 Mhz 11g) bssid 00:0f:b5:dd:6f:36 country US authmode OPEN privacy OFF txpower 0 scanvalid 60 protmode CTS As seeing, it looks work but the problem is happend when I ran stumbler (src/tools/tools/net80211/stumbler) program. The error message is "ioctl(BIOCSDLT): Invalid argument" that it's emitted to screen when I execute the following command: # ./stumbler wlan0 Are there something I missed? regards, Weongyo Jeong