From owner-freebsd-questions@FreeBSD.ORG Sat Mar 12 04:12:00 2011 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 854E8106566B for ; Sat, 12 Mar 2011 04:12:00 +0000 (UTC) (envelope-from erich@alogreentechnologies.com) Received: from alogreentechnologies.com (alogreentechnologies.com [67.212.226.44]) by mx1.freebsd.org (Postfix) with ESMTP id 6A58E8FC0A for ; Sat, 12 Mar 2011 04:12:00 +0000 (UTC) Received: from amd620.ovitrap.com ([49.128.188.2]) (authenticated bits=0) by alogreentechnologies.com (8.13.1/8.13.1) with ESMTP id p2C4Bpgs007020; Fri, 11 Mar 2011 21:11:54 -0700 From: Erich Dollansky Organization: ALO Green Technologies Pte Ltd To: freebsd-questions@freebsd.org Date: Sat, 12 Mar 2011 12:13:50 +0800 User-Agent: KMail/1.13.5 (FreeBSD/8.2-STABLE; KDE/4.5.4; amd64; ; ) References: <4D206791.9010001@gmail.com> In-Reply-To: <4D206791.9010001@gmail.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201103121213.50729.erich@alogreentechnologies.com> Cc: Manish Jain Subject: Re: How to get Huawei USB modem to work ? 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: Sat, 12 Mar 2011 04:12:00 -0000 Hi, On Sunday 02 January 2011 19:54:57 Manish Jain wrote: > > Hello, > From a similar thread, I picked up some information that I should try > kldload'ing usba. But when I ran the command, I got an error message > that there is no such module. I searched under sys/modules and there > was no usba.ko > Can somebody please tell me how to get my Huawei USB dial-up modem to > work on FreeBSD 8.1 ? From dmesg, I have the following information : > Trying to mount root from ufs:/dev/ad8s2a > ugen0.3: at usbus0 > u3g0: on usbus0 > u3g0: Found 3 ports. > umass0: addr 3> on usbus0 > umass0: SCSI over Bulk-Only; quirks = 0x0000 > umass0:0:0:-1: Attached to scbus0 > cd0 at umass-sim0 bus 0 scbus0 target 0 lun 0 > cd0: Removable CD-ROM SCSI-0 device > cd0: 1.000MB/s transfers > cd0: cd present [16896 x 2048 byte records] > (probe0:umass-sim0:0:0:1): TEST UNIT READY. CDB: 0 20 0 0 0 0 > (probe0:umass-sim0:0:0:1): CAM status: SCSI Status Error > (probe0:umass-sim0:0:0:1): SCSI status: Check Condition > (probe0:umass-sim0:0:0:1): SCSI sense: NOT READY asc:3a,0 (Medium not > present) > da0 at umass-sim0 bus 0 scbus0 target 0 lun 1 > da0: Removable Direct Access SCSI-2 device > da0: 1.000MB/s transfers > da0: Attempt to query device size failed: NOT READY, Medium not > present > drm0: on vgapci0 > info: [drm] MSI enabled 1 message(s) > vgapci0: child drm0 requested pci_enable_busmaster > Any help would be greatly appreciated. if your modem is not supported out of the box, go to the file usbdevs and add an entry for it: I got last week a modem not supported by FreeBSD and just did this: product HUAWEI ETS2055 0x1803 CDMA modem 0x1803 is the ID of my modem. The ID is unknown to FreeBSD 8.2. Then add a line like the following to u3g.c: U3G_DEV(HUAWEI, ETS2055, U3GINIT_HUAWEI), Check the file for the other options like U3GINIT_HUAWEI you have. The chances are then pretty high that all will work The next problem will then your ppp.conf. Erich