OpenSolaris
Collectives
Discussions
Documentation
Download
Source Browser
Free CD
Log-in
|
Project wwan
:
Wireless Wide Area Network
Top Menu
Show
:
Comments
Attachments
History
Information
Print
:
Print
Print preview
Export as PDF
Export as RTF
Export as HTML
Export as XAR
Wiki code for
Wireless Wide Area Network
Hide Line numbers
1: This project is developing Solaris support for the emerging [[WWAN>>http://en.wikipedia.org/wiki/WWAN]] technologies, including device drivers, configuration files and recipes for various devices. 2: 3: usbsacm driver have been integrated in Solaris Nevada build 56. It comes standard with any OpenSolaris release. 4: 5: Devices reported to work: 6: 7: * Kyocera KPC650 (aka Passport 1xEV-DO) 8: * Novatel V620 (Merlin) 9: * Novatel S720 10: * Novatel U720 11: * Pantech PX-500 12: * Bora 5188 13: * Nokia 6670 14: * Sony Ericsson K750c, W800 15: 16: === WWAN access using PPP and usbsacm driver === 17: 18: ==== Background ==== 19: 20: Many WWAN modems are essentially USB modems. The standard for USB modems is called Communication Class Device Abstract Communication Model (CDC ACM). Popular PCMCIA WWAN modem cards, such as Novatel Merlin V620 and Kyocera KPC650, include an internal USB controller and a CDC ACM device - and can use the same drivers as the USB modems connected to the external USB ports. 21: 22: The Solaris //usbsacm// driver supports devices compatible with CDC ACM. The following instructions were verified with the Novatel V620 EV-DO modem card from Verizon, previously activated in the VZAccess software for Windows. 23: 24: ==== Configuration ==== 25: 26: Connect your modem device. After a few seconds, one or more devices numbered 0..N should appear in the /dev/term directory. At the software level, these devices behave just like serial ports, even though the data flows over USB. You can use any existing serial communication software like PPP or terminal emulators. If device does not appear in /dev/term, see the [[Troubleshooting>>#usbsacm_troubleshoot]] section below. 27: 28: These instruction assume /dev/evdo to be your device. Typically you’ll need to create a symlink to /dev/term/0: 29: 30: {{code}}ln -s /dev/term/0 /dev/evdo{{/code}} 31: 32: To configure PPP, you can use these files as a starting point: 33: 34: * [[evdo>>attach:Project wwan.files@evdo]]: put in /etc/ppp/peers directory 35: * [[evdo-chat>>attach:Project wwan.files@evdo-chat]]: put in /etc/ppp directory 36: 37: Edit the "user" entry in the [[evdo>>attach:Project wwan.files@evdo]] file, e.g. Verizon users should replace 1234567890 with their phone number. 38: 39: Now run: 40: 41: {{code}}pppd call evdo{{/code}} 42: 43: and watch the output. If it fails, retry a couple times before starting [[troubleshooting>>#HTroubleshooting]]. Successful PPP connection is accompanied with a message "Serial connection established." and {{code}}ifconfig -a{{/code}} will show the sppp0 interface. You might need to copy /etc/ppp/resolv.conf to /etc/resolv.conf and /etc/nsswitch.dns to /etc/nsswitch.conf to get your name resolution right, or use something like [[inetmenu>>Community Group laptop.inetmenu]]. The WWAN should be fully accessible after that. 44: 45: ==== Troubleshooting ==== 46: 47: ==== Binding the driver to the device ==== 48: 49: If no device appears in /dev/term, run ’prtconf -D’ and locate your modem device in the output, e.g.: 50: 51: {{{ 52: pci1025,57, instance #0 (driver name: pcic) <~--- PCMCIA controller 53: pcs, instance #0 (driver name: pcs) 54: pci1033,35, instance #0 (driver name: ohci) <~--- internal USB controller 55: device, instance #0 (driver name: usbsacm) <~--- modem device 56: 57: }}} 58: 59: If the "device" node does not show a driver name associated with it, you can try to //bind// the driver to it. To do this, locate your device again, this time in the ’prtconf -v’ output (e.g. search for "device,"): 60: 61: {{{ 62: device, instance #0 63: Driver properties: 64: name=’pm-components’ type=string items=3 dev=none 65: value=’NAME= usbsacm0 Power’ + ’0=USB D3 State’ + ’3=USB D0 State’ 66: Hardware properties: 67: name=’driver-minor’ type=int items=1 68: value=00000000 69: name=’driver-major’ type=int items=1 70: value=00000002 71: name=’configuration#’ type=int items=1 72: value=00000001 73: name=’usb-product-name’ type=string items=1 74: value=’Novatel Wireless Merlin CDMA’ 75: name=’usb-vendor-name’ type=string items=1 76: value=’Novatel Wireless Inc.’ 77: name=’usb-release’ type=int items=1 78: value=00000110 79: name=’usb-num-configs’ type=int items=1 80: value=00000001 81: name=’usb-revision-id’ type=int items=1 82: value=00000000 83: name=’usb-product-id’ type=int items=1 84: value=00001110 85: name=’usb-vendor-id’ type=int items=1 86: value=00001410 87: **name=’compatible’ type=string items=3 88: value=’usb1410,1110.0’ + ’usb1410,1110’ + ’usb,device’** 89: name=’reg’ type=int items=1 90: value=00000001 91: name=’assigned-address’ type=int items=1 92: value=00000002 93: 94: }}} 95: 96: The ’compatible’ property is what you are looking for. Choose one that looks like "usbXXX,YYY", where XXX is vendor ID and YYY is product ID. Run run the following command: 97: 98: {{code}}update_drv -i "usbXXX,YYY" usbsacm{{/code}} 99: 100: After reboot ’prtconf -D’ should show usbsacm driver next to the device. If not, the driver failed to attach, probably not recognizing the device as compatible. 101: 102: ==== Testing modem connection ==== 103: 104: A simple way to test your modem is to send it some simple commands using tip(1) or other terminal emulator: 105: 106: {{{ 107: # tip /dev/term/0 108: connected 109: **atz** 110: OK 111: **ati** 112: Manufacturer: NOVATEL WIRELESS INCORPORATED 113: Model: CDMA MERLIN V620 114: Revision: M6500C-BBIRD-40304.135 [MAR 11 2005 14:00:00] 115: ESN: 0x5B123456 116: +GCAP: +CIS707-A, CIS-856, +MS, +ES, +DS, +FCLASS 117: 118: OK 119: **at+csq** 120: 99, 99 121: 122: OK 123: **atdt#777** 124: CONNECT 125: 126: }}} 127: 128: Characters in bold font are user input, the rest is modem output. at+csq shows signal strength on this particular modem. Dialing #777 usually gets you on the service provider’s network - if the modem returns "NO CARRIER", it could mean weak signal or refused connection from the network.
Search
Collectives
Community Group
Academic and Research
Accessibility
Advocacy
Appliances
Approachability
Architecture Process and Tools
BrandZ
Chinese Users
Community Advisory Board
Databases
Desktop
Device Drivers
Distribution
Documentation
DTrace
Emerging Platforms
Fault Management
Games on OpenSolaris
HA Clusters
HPC Developer
Installation and Packaging
Internationalization and Localization
Laptop
Logical Domains
Modular Debugger (MDB)
Networking
NFS
Observability
OpenSolaris Governing Board (OGB)
OpenSolaris Printing
OS/Net (ON)
Performance
Power Management
PowerPC
Security
Service Management Facility (smf(5))
Software Porters
Solaris Volume Manager
Storage
Systems Administration Community Group
Testing
Tools Home
Unix File Systems (UFS)
Website Community
X Window System
Xen
ZFS
Zones
Project
ADSL Modem Enhancement
ARC Process Definition
ARM Platform Port
Automatic Data Migration
BIND Update
Bluetooth Stack & Drivers
Brocade FC HBA - Initiator
Brocade FC HBA - Target
Brussels - unified network link configuration
Caiman, Solaris Install Revisited
Celeste
Český portál
Chime Visualization Tool for DTrace
CIFS client for Solaris
CIFS Server
Clearview: Network Interface Coherence
Cluster Agent: Informix Dynamic Server
Cluster Agent: OpenSolaris Container
Cluster Agent: OpenSolaris xVM
Cluster Agent: Oracle E-Business Suite
Cluster agent: PostgreSQL
Cluster Agent: Samba
Cluster Agent: Tomcat
CMT
Coarse Data Flow Parallelism
Colorado: Open HA Cluster on OpenSolaris
Command Assistant
Common Array Manager
Companion - /opt/sfw: Free and Open Source software
COMSTAR: Common Multiprotocol SCSI Target
Content
Contest
CPU Observability
Credentials Process Groups
Crossbow: Network Virtualization and Resource Control
Crypto KMS Agent Toolkit
Cryptographic Framework
Data Migration Manager
Data Tethers
Deutsches Portal
Device Detection Tool
Device Driver Utility
Device Manager
Device Mapper
Direct Rendering Infrastructure & 3D drivers
DTrace Guide
Duckwater: Simplified name services management
Easy Tools
Emancipation
Emulex Fibre Channel Device Driver
Emulex Advanced Ethernet Device Driver
Enable/Enhance Solaris support for Intel Platform
Enhance the support of USB webcams
Enhanced SMF Profiles
Enhancements for AMD-based Platforms
Erlang DTrace Integration
Ethernet bridge module for Solaris
Evaluate Conary
Events Registry
Ext3 file system support
F/OSS Package Base
Facilitation
Fibre Channel over Ethernet
Fine Grained Access Policy (FGAP)
Fingerprint Authentication
Flexible Mandatory Access Control
Forensic Tools
Fully Open X Project
Fuse on Solaris
gcore
Generic Machine Check Architecture Improvements
Google SOC
HA-JBoss
HA-MySQL
Hadoop Live CD
Hitachi
HoneyComb Fixed Content Storage
HPC Stack
Image Packaging System
Improved Performance MIB
Indiana
Innovation Awards
Input Method
Intel Graphics
Internet Key Exchange, version 2
Interrupt Resource Management
IP Datapath Refactoring
IP over Infiniband
IPsec Tunnel Reform
iSCSI Extensions for Remote DMA (iSER)
iSNS Server
JeOS - Just enough Operating System
JKstat - a java binding for libkstat
Journaled File System (JFS)
K Desktop Environment
Kerberos
Kernel Sockets
Kernel SSL Enhancements
Key Management Framework
Korn Shell 93 integration/migration project
Labeled IPsec
LatencyTOP
Layer 2 Filtering
LDoms Manager
Lending
libMicro - portable microbenchmarks
Link Layer Discovery
Live Media: Technologies for distributions running from CD and other media
Locale Data
lofi compression and cryptography support
lx64 brand
Media Management System
Mega_sas
Mexico
MilaX minimal Live Distribution
MIPS Platform Port
Mozilla DTrace
MRSL.NONsharedDevice
Multi-lingual Glossary
Multi-pathing software (MPxIO)
Multiple disk sector size support
Multiple DOI
Muskoka: An open repository for OpenSolaris technical content
Navigator
Nemo: A Framework for High-Performance Networking
Network Auto-Magic
Network Data Management Protocol
Network MIBs
Network Storage
Network Time Protocol (NTP)
Nevada Globalization
New Design of 4over6 Mechanism Based on OpenSolaris
NFS RDMA transport update and performance analysis
NFS Server in non-Global Zones
NFS version 4.1 pNFS
NFSv4 namespace extensions
Nightingale: Port Songbird to OpenSolaris
NPort ID Virtualization (NPIV)
NUMA
Object Storage Device (OSD) support for Solaris
OHACGE Script Based Plug-in
ON/Nevada (ONNV) Project
Open Development Infrastructure
Open HA Cluster Utilities
Open Sound System
OpenGrok
OpenPegasus CIM Server
OpenRTI
OpenSolaris Busybox
OpenSolaris Desktop
OpenSolaris Hispano
OpenSolaris Security Audit
OpenSolaris support for the QEMU processor emulator: host and guest
PEF: Packet Event Framework
Performance Wrappers
Pkgfactory
Polski Portal
Portail Francophone
Portal Brasil
Portals
Power Management Usability Interfaces
Presto: Automatic Printing Configuration
Printable Many Page Solaris Manuals
Promise SuperTrak RAID HBA Driver
QLogic Converged Network Adapter GLDv3 NIC Driver
Quagga Routing Protocol Suite Integration
RAID Configuration Utility
RBridge (IETF TRILL) support
RDMA Offload Framework
Reno: Login Process Enhancements for Interop
Resource Management
s10brand
SAM/QFS
SCM Migration Project
SCSI RDMA Protocol
SDcard Drivers
Sensor Abstraction Layer
Session Initiation Protocol
SFW
Shell: bourne shell, korn shell, C shell, etc.
Sierra: Intel WiFi Chipsets Support
Simple Panels
SM-HBA Based SAS HBA Management
SMF Documentation
Solaris iSCSI Target
Solaris PowerPC Port
SourceJuicer
Sparks: name service switch/nscd enhancements
Squashfs
Star integration/migration project
Starfish
Starter Kit
Storage Power Management
Sun Security Toolkit
Sun StorageTek Availability Suite
Support for OpenFabrics User Verbs / API on OpenSolaris OS
Support gcc4/GCCfss in Solaris
Suspend/Resume
SVR4 Packaging
Systemz
Tamarack: Removable Media Enhancements in Solaris
Tesla: OpenSolaris Enhanced Power Management
Test Development
Tickless Kernel Architecture
TIPC
Trademarks
Trusted networking interface policy database for Trusted Extensions
Trusted Platform Module support
Use Case
Validated Execution Project
Virtual Console
Virtual Network Machines
Visual Panels
Visualization for HPC
Volo
VRRP: Virtual Router Redundancy Protocol Implementation
VSCAN service
Web Stack
Website
Winchester: Schema mapping and ID mapping for AD Interoperability
Wireless USB Support
Wireless Wide Area Network
X Consolidation
x86 Generic FMA Topology Enumerator
Xen Gate
Xfce: A lightweight desktop environment
ZFS Boot and Install
ZFS on disk encryption support
Zone Manager
Zone Statistics
Русский портал
البوابة العربية
भारतीय पोर्टल
中国门户
日本ポータル
한국 포탈
User Group
Adelaide
Argentina
Arizona
Atlanta
Baltimore-Washington
Bangalore
Bangkok
Bangladesh
Beijing
Bélem
Berlin
Bhimavaram
Bloomington
Campus Ambassadors
Capital Region
Cardiff
Charlotte
Chengdu
Chennai
Chihuahua
Chile
Cleveland
Colombia
Columbus
Connecticut
Cracow
Czech
Dallas/Ft. Worth
Danish
Delaware
Edinburgh
Egypt
Finland
Florida
Front Range
FuZhou
Great Lakes
Greece
Hangzhou
Hawaii
HeFei
Houston
Hyderabad
Indonesia
Irish
Israel
Italian
Jinan
Kabul
Kansas City
Latvia
London
Madurai
Manchester
Mato Grosso
Melbourne
Minas Gerais
Minnesota
Montreal
Moscow
Mumbai
Munich
NEA
Netherlands
New England
New York City
New Zealand
NIT Hamirpur
Noroeste
Oklahoma City
Osnabrück
Peru
Philadelphia
Piaski
Pittsburgh
Porto Alegre
Puget Sound
Pune
Queensland
Research Triangle Park
Romania
Russia
San Antonio
San Diego
San Francisco
São Paulo
Scottish
Serbia
Shanghai
Shenzhen
Silicon Valley
Singapore
Slovak
South African
Southern Connecticut
St. Louis
Sweden
Switzerland
Sydney
Szczecin
Taiwan
Tecum
Thames Valley
Tokyo
Toronto
Trondheim
Tulsa
Turkey
Ukraine
University of Melbourne
Vale do Paraíba
Vancouver
Venezuela
Welsh - Cymru
Wisconsin
Xi'an
Subsites
Code Reviews
Code Repositories
Package Search
Bugster
Bugzilla
Test Machines
Planet
Mailing Lists
Elections & Polls
ARC Case Logs
Source Juicer
Package Factory
User Authentication
Project wwan Pages
Wireless Wide Area Network
Files