From owner-freebsd-questions@FreeBSD.ORG Thu Jul 20 19:30:18 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FAA316A4E0 for ; Thu, 20 Jul 2006 19:30:18 +0000 (UTC) (envelope-from fbsdlists@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0452043D6A for ; Thu, 20 Jul 2006 19:30:16 +0000 (GMT) (envelope-from fbsdlists@gmail.com) Received: by nf-out-0910.google.com with SMTP id n29so707569nfc for ; Thu, 20 Jul 2006 12:30:13 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Jxy98FpjNtlCG5qHANwT+dJbpTs89KmVbCdBeT0Yx5NYj1YANo8eJKwJ4TBo/5oXTUi2KiJFfHwsUS2RqBTwgi4iBIwJnQmq0AMdYncNUqa40e7hWaXP7rABu3lqder+XmpqSIKVbm2evgml5Mi/zUc3p8VYEETcHbzpXAE01zo= Received: by 10.48.108.19 with SMTP id g19mr932849nfc; Thu, 20 Jul 2006 12:30:13 -0700 (PDT) Received: by 10.48.210.5 with HTTP; Thu, 20 Jul 2006 12:30:13 -0700 (PDT) Message-ID: <54db43990607201230h7841d667s8d56a913ae1ecf27@mail.gmail.com> Date: Thu, 20 Jul 2006 15:30:13 -0400 From: "Bob Johnson" To: "Marwan Sultan" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: Cc: freebsd-questions@freebsd.org Subject: Re: HOWTO wireless please. X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jul 2006 19:30:18 -0000 On 7/20/06, Marwan Sultan wrote: > Hello gurus, > > Can someone help me setting up my wireless device on my laptop > im on 6.1R, I tried to do as instructed on handbook, but no luck. > My laptop suppose to be the client, and i have a netgear wireless modem > router up and running. > How to make the freebsd see the router have the ip, and make the device up? > > from dmesg > ugen0: Broadcom Corp HP Integrated Module > ugen is the generic usb device driver that gets attached if a specific driver for the device is not available. I don't think you will be able to do anything useful with it (it seems to be intended more for developers to use while experimenting with a device). There is a tool called ndiscvt that will take a Windows NDIS device driver and wrap it up in an interface that allows it to be used as a FreeBSD driver. Most likely, you will need to do that to get your interface working. Instructions are in section 27.3.3.6.3 of the FreeBSD Handbook (buried in one of the sections someone has already mentioned: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-wireless.html In 6.1 there is a script called ndisgen that automates the process described in the Handbook. You will probably find it much easier to read its man page and use it instead of using ndiscvt directly. The instructions amount to "become root, run ndisgen, do what it says." Once you have successfully built and loaded the NDIS driver, it will by default show up as ndis0 when you do an ifconfig. Once that happens, the rest should be easy. - Bob