Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

uhso(4) [freebsd man page]

UHSO(4) 						   BSD Kernel Interfaces Manual 						   UHSO(4)

NAME
uhso -- support for several HSxPA devices from Option N.V. SYNOPSIS
The module can be loaded at boot time by placing the following line in loader.conf(5): uhso_load="YES" DESCRIPTION
The uhso driver provides support for several HSxPA devices from Option N.V. that are based on their packet interface. Each device has a set of serial ports and a raw IP packet interface. The serial ports of the device are accessed through the ucom(4) driver which makes them behave like tty(4) devices. The packet interface is exposed as a network interface. Establishing a connection on the packet interface is achieved by using the proprietary AT commands ``AT_OWANCALL'' and ``AT_OWANDATA'' on any of the available serial ports. The network interface must be configured manually using the data obtain from these calls. Each device usually have at least two or more serial ports, their individual purpose can be identified through sysctl(8). Ports identified as ``Modem'' features a normal modem interface that can be used with PPP. Ports identified as ``Diagnostic'' uses a proprietary binary interface used for firmware upgrades, this port does not have a AT command interface and can not be used to control the device. Other ports features an AT command interface that can be used for normal device control. HARDWARE
The uhso driver should work with most devices from Option. The following devices have been verified to work o Option GlobeSurfer iCON 7.2 (new firmware) o Option GlobeTrotter Max 7.2 (new firmware) o Option iCON 225 o Option iCON 452 o Option iCON 505 The device features a mass storage device referred to as ``Zero-CD'' which contains drivers for Microsoft Windows; this is the default mode for the device. The uhso driver automatically switches the device from ``Zero-CD'' mode to modem mode. This behavior can be disabled by setting hw.usb.uhso.auto_switch to 0 using sysctl(8). FILES
/dev/cuaU?.? EXAMPLES
Establishing a packet interface connection using the AT command interface available at one of the serial ports AT+CGDCONT=1,,"apn.provider" AT_OWANCALL=1,1,1 OK _OWANCALL=1,1 AT_OWANDATA=1 _OWANDATA: 1, 10.11.12.13, 0.0.0.0, 10.2.3.4, 10.2.3.5, 0.0.0.0, 0.0.0.0, 72000 Configuring the interface ifconfig uhso0 10.11.12.13 up route add default -interface uhso0 echo "nameserver 10.2.3.4" > /etc/resolv.conf echo "nameserver 10.2.3.5" >> /etc/resolv.conf The connection can be terminated with AT_OWANCALL=1,0,1 SEE ALSO
uhsoctl(1), ucom(4), usb(4) AUTHORS
The uhso driver was written by Fredrik Lindberg <fli@shapeshifter.se>. BSD
July 20, 2010 BSD

Check Out this Related Man Page

U3G(4)							   BSD Kernel Interfaces Manual 						    U3G(4)

NAME
u3g -- USB support for 3G datacards SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device usb device ucom device u3g Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): u3g_load="YES" If neither of the above is done, the driver will automatically be loaded by devd(8) when the device is connected. DESCRIPTION
The u3g driver provides support for the multiple USB-to-serial interfaces exposed by many 3G USB/PCCard modems. The device is accessed through the ucom(4) driver which makes it behave like a tty(4). HARDWARE
The u3g driver supports the following adapters: o Option GT 3G Fusion, GT Fusion Quad, etc. (only 3G part, not WLAN) o Option GT 3G, GT 3G Quad, etc. o Vodafone Mobile Connect Card 3G o Vodafone Mobile Broadband K3772-Z o Qualcomm Inc. CDMA MSM o Huawei B190, E180v, E220 ('<Huawei Mobile>') o Novatel U740, MC950D, X950D, etc. o Sierra MC875U, MC8775U, etc. (See /sys/dev/usb/serial/u3g.c for the complete list of supported cards for each vendor mentioned above.) The supported 3G cards provide the necessary modem port for ppp, or mpd connections as well as extra ports (depending on the specific device) to provide other functions (additional command port, diagnostic port, SIM toolkit port). In some of these devices a mass storage device supported by the umass(4) driver is present which contains Windows and Mac OS X drivers. The device starts up in disk mode (TruInstall, ZeroCD, etc.) and requires additional commands to switch it to modem mode. If your device is not switching automatically, please try to add quirks. See usbconfig(8) and usb_quirk(4). SEE ALSO
tty(4), ucom(4), usb(4), usb_quirk(4), devd(8), usbconfig(8) HISTORY
The u3g driver appeared in FreeBSD 7.2, is based on the uark(4) driver, and written by Andrea Guzzo <aguzzo@anywi.com> in September 2008. AUTHORS
The u3g driver was written by Andrea Guzzo <aguzzo@anywi.com> and Nick Hibma <n_hibma@FreeBSD.org>. Hardware for testing was provided by AnyWi Technologies, Leiden, NL. BUGS
The automatic mode switch from disk mode to modem mode does not work unless the driver is either built into the kernel or loaded before the device is connected. BSD
November 26, 2013 BSD
Man Page