From owner-freebsd-questions@FreeBSD.ORG Mon Jun 26 00:40:29 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 855F716A70B for ; Mon, 26 Jun 2006 00:40:29 +0000 (UTC) (envelope-from mulgajohn@bigpond.com) Received: from omta05ps.mx.bigpond.com (omta05ps.mx.bigpond.com [144.140.83.195]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69EB14472A for ; Mon, 26 Jun 2006 00:19:38 +0000 (GMT) (envelope-from mulgajohn@bigpond.com) Received: from [58.165.19.204] by omta05ps.mx.bigpond.com with ESMTP id <20060626001935.GWLM16234.omta05ps.mx.bigpond.com@[58.165.19.204]> for ; Mon, 26 Jun 2006 00:19:35 +0000 From: John Andrewartha Organization: The Boat People To: freebsd-questions@freebsd.org Date: Mon, 26 Jun 2006 10:19:22 +1000 User-Agent: KMail/1.9.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606261019.22255.mulgajohn@bigpond.com> X-Authentication-Info: Submitted using SMTP AUTH PLAIN at omta05ps.mx.bigpond.com from [58.165.19.204] using ID mulgajohn at Mon, 26 Jun 2006 00:19:35 +0000 Subject: CMOTech Maxon 5500C 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: Mon, 26 Jun 2006 00:40:29 -0000 Thanks for the support, I have finaly solved the problem. below is the solution. --------------------------- How to: Subject Maxon/CMoTech CDMA Modem Model: MM 5500C Seller Telstra Australia. Description: The device is a 3G pccard that allows data over the CDMA EVO network. Portable Internet. This device reports as being on the USB Bus and is hidden in a single shell. See usbdevs .. This device is not currently supported in FreeBSD. To add support add the following to /src/sys/dev/usb/usbdevs vendor CMOTECH 0x16d8 CMOTECH CO., LTD. product CMOTECH CDMA 0x5523 CMOTECH CDMA Technologies USB modem ------------------------ /src/sys/dev/usb/usb_quirks.c { USB_VENDOR_CMOTECH, USB_PRODUCT_CMOTECH_CDMA, ANY, {UQ_ASSUME_CM_OVER_DATA}}, ----------------------- Rebuild the kernel and dependency's. Note: The device has to be run on a DOS Box using the supplied software from Telstra before using it with FreeBSD. You also have to load ucom and umodem, these must be done at boot, either from /boot/defalts/* or in the kernel. The above is not my own work, I was able to extract the information from the mail archive. Parts of this fix are from OpenBSD notably the ppp script. -------------------------------- ppp.conf # Config file for Telstra/ Maxon CMOTECH MM5500C # John Andrewartha # Greensleeves default: set log Phase Chat LCP IPCP CCP tun command evdo: set device /dev/cuaU0 set speed 230400 set dial "ABORT BUSY \"\" AT+CRM=150 OK ATDT#777 CONNECT" set timeout 0 set ctsrts off enable dns add default HISADDR set authname "username@bigpond.com" set authkey "*********" set ifaddr 0.0.0.0/0 0.0.0.0/0 0.0.0 -------------- Regards John