LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu
User Name
Password
Ubuntu This forum is for the discussion of Ubuntu Linux.

Notices


Reply
  Search this Thread
Old 05-29-2008, 03:14 PM   #1
awcrooke
LQ Newbie
 
Registered: Jan 2006
Location: Concord, MA
Distribution: Ububtu, 7.1 and 8.04
Posts: 6

Rep: Reputation: 1
Verizon wireless UM150 USB Modem works on ubuntu v7.1 but not v8.04


I followed instructions in the article,"/feature/52729", on linux.com, and was able to get on the Verizon Broadband Access network using ububtu v7.1 with the UM150 USB Modem.

However, the same procedure didn't work with V8.04. At first I got error messages from the ABORT commands in "1xevdo_chat". After commenting out these commands, the scripts appeared to work. All the output from "tail -f /var/log/messages" matched those in the article, including "Serial connection established" and "local IP address 70.197.15.21". After using "route add default gw 70.197.15.21" per instructions, I still could not access the internet. The message from Firefox indicated that it was working offline, even though the file menu indicated it was online.

Is the ppp deamon different in V8.04, or have I just set some parameters incorrectly?
 
Old 05-29-2008, 05:43 PM   #2
pinniped
Senior Member
 
Registered: May 2008
Location: planet earth
Distribution: Debian
Posts: 1,732

Rep: Reputation: 50
You can start by posting the pppd/chat messages from /var/log/messages
 
Old 05-30-2008, 06:07 AM   #3
awcrooke
LQ Newbie
 
Registered: Jan 2006
Location: Concord, MA
Distribution: Ububtu, 7.1 and 8.04
Posts: 6

Original Poster
Rep: Reputation: 1
re-installed v7.1 & UM150 now works.

Thanks for the quick reply.
I needed internet access, so I re-installed ubuntu 7.1, and the UM150 modem now works (and I forgot to save the messages. When I install ubuntu 8.04 on another computer, I'll try again and post the results.
 
Old 05-31-2008, 08:02 PM   #4
lekifsirk
LQ Newbie
 
Registered: Jan 2007
Posts: 1

Rep: Reputation: 0
Does anyone have any info on how to install or configure the UM150 in 8.04? I'm at square one with this. Thanks.
 
Old 06-01-2008, 06:42 AM   #5
awcrooke
LQ Newbie
 
Registered: Jan 2006
Location: Concord, MA
Distribution: Ububtu, 7.1 and 8.04
Posts: 6

Original Poster
Rep: Reputation: 1
See my earlier post. I used the following article http://www.linux.com/feature/52729
This worked on version 7.1, but not 8.04. You don't need the first step, because ubuntu recognizes the UM150 as ttyACM0 when it is plugged in. I've installed 8.04 on another laptop and the process works exactly as on 7.1, with identical outputs, except the browser can't connect to the internet. I don't have a solution yet.
 
Old 06-27-2008, 10:56 PM   #6
rforrister
LQ Newbie
 
Registered: Nov 2006
Posts: 28

Rep: Reputation: 15
Question Me and My um150

I have also been having problems getting my wireless card to work. For one thing 8.04 does not have a /proc/bus/usb/devices file. If someone has this file let me know, becuase mine is missing.

As for the last post what do you mean "do not need first part" the first part of the article referenced is to get the vendor info and them add it to the kernal. Is this the part that is not needed.

It looks like ubuntu recognized the card when checking the message log but I am unable to get it to dial when I use the scripts provided.

Any help would be useful. As soon as I crack the code on this I am dumping my windows from this computer and only use linux.

Rob
 
Old 06-28-2008, 07:11 PM   #7
lwasserm
Member
 
Registered: Mar 2008
Location: Baltimore Md
Distribution: ubuntu
Posts: 184

Rep: Reputation: 41
I got 8.04 working with my Verizon cell phone as a USB modem without too much trouble, basically just ran pppconfig and used the info from /etc/ppp/peers and /etc/chatscripts files from a dapper system where it was already working. Your tail -f output indicates that a connection was established; possibly you have a firewall interfering?

Also, NetworkManager as shipped with 8.04 does not recognize a valid ppp connection. As a result, firefox and other certain other applications will start up in offline mode and must be manually switched online. There have been many many complaints and bugs filed because of this. There are a few different workarounds I've seen, including uninstalling Network Manager, changing some settings on the NM manual configuration menu, editing some dbus configuration files, and others, none of them completely satisfactory IMHO.
 
Old 08-03-2008, 09:28 PM   #8
rforrister
LQ Newbie
 
Registered: Nov 2006
Posts: 28

Rep: Reputation: 15
Got um150 to work with Ubuntu 8.04. This is how I did it.

First forget nearly everything. It seems that Ubuntu 8.04 automatically recognizes the um150, I did not need to do any modprobes or look for any specific devices, which are not listed anyway. I downloaded a new copy of wvdial and added the following to the /etc/wvdial.conf file.

Step 1. As Root/sudo vim/etc/wvdial.conf
[Dialer Defaults]
Stupid Mode = on
Modem = /dev/ttyACM0
Baud = 112500 (Anything higher will not be recognized)
Init = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Phone = #777
Username = Phonenumber@alltel.net, Verizone.com (your phone number@ provided by the ISP of your choice.)
Password = Alltel or whatever is given for Verizon
Init1 = ATZ
ISDN = 0
Modem Type = Analog Modem
Auto Reconnect = on
Carrier Check - no
[Dialer ssh]
Init3 = ATMO
[Dialer Pulse]
Dial Command = ATDP

Save and exit

Step 2. Run wvdial from root/sudo > wvdial
You should see an output for the connection
Open another terminal as root/sudo and run > tail -f /var/log/messages
Make note of Local IP address provided by provider

Step 3. Add local IP address to routing table
from root/sudo
>route add default gw xxx.xxx.xxx.xxx

Step 4. Open favorite browser.

This has worked great except that I need to update the routing table each time I connect. Maybe I will write some sort of script to take care of this little annoyance for me. But, hey it is working fine now.
 
Old 08-03-2008, 09:31 PM   #9
rforrister
LQ Newbie
 
Registered: Nov 2006
Posts: 28

Rep: Reputation: 15
P.s. if this works for you I would really like to know.

Thanks to everyone who has posted here and in other places found on the web all of there hard work helped to find at least one solution to the problem. I believe that this can be used to get KPPP or Gnome ppp to work as well. Let me know if anyone tries.

rforrister
not so much of a newbie no more
 
Old 08-10-2008, 02:45 PM   #10
dumbmatter
LQ Newbie
 
Registered: Aug 2008
Posts: 1

Rep: Reputation: 0
Quote:
Originally Posted by rforrister View Post
P.s. if this works for you I would really like to know.
Since no one else has responded...

Your instructions worked perfectly. I'm using Verizon so I used phonenumber@verizon.com for the username and I made Verizon the password. Everything worked the first time I tried. Thank you so much!

I hope they get this all integrated into NetworkManager soon..
 
Old 08-17-2008, 08:13 PM   #11
rforrister
LQ Newbie
 
Registered: Nov 2006
Posts: 28

Rep: Reputation: 15
I have an easier method of getting the UM150 Alltel card to work in Ubuntu 8.04 using Gnome PPP.

Open Gnome PPP:

1. Enter number@alltel.net
2. Enter Password, "Alltel"
3. Enter Number to dial - #777
4. Press Setup
a. Press "Detect" to detect wireless card - should get /dev/ttyACMO
b. Type - "Anolog Modem"
c. Speed 115200
d. Select "INIT Strings"
a. Should see the following - ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0

5. Close and try to connect.
6. If you press log you should see the connection process.
a. Take note of local ip address

7. Open terminal and log in as root/sudo
a. update routing table
1. route add default gw xxx.xx.xxx.xx

This has worked very well for me. Except for the fact that I still need to manually update routing table this is much easier than the other method I outlined before.
 
Old 09-18-2008, 11:05 AM   #12
muranod
LQ Newbie
 
Registered: Sep 2008
Posts: 1

Rep: Reputation: 0
UM150 w/Ubuntu 8.04

This worked perfectly for me on a Sony Vaio laptop. Thanks -- I was expecting to spend days getting this to work!
 
Old 09-23-2008, 06:30 PM   #13
rcadby
LQ Newbie
 
Registered: Sep 2008
Location: Etowah, TN
Distribution: Ubuntu 7.10
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by rforrister View Post
Got um150 to work with Ubuntu 8.04. This is how I did it.

First forget nearly everything.

For me, easily done. Did step 1.

Step 2. Run wvdial from root/sudo > wvdial
You should see an output for the connection

I got this:

root@rcadby-laptop:~# wvdial
--> Ignoring malformed input line: "Carrier Check - no"
--> WvDial: Internet dialer version 1.60
--> Cannot open /devACM0: No such file or directory
--> Cannot open /devACM0: No such file or directory
--> Cannot open /devACM0: No such file or directory

Apparently plugging in my usb um150 isn't automatically recognized.

Didn't go further. Any ideas?

BTW: I have a newly installed v8.04.1 (after udating v8.04.0?) replacing my winXP OS on a DELL amd64 laptop. I've also installed a 32bit version of FF.

.........
TIA.......Ron.........
 
Old 09-29-2008, 03:27 PM   #14
awcrooke
LQ Newbie
 
Registered: Jan 2006
Location: Concord, MA
Distribution: Ububtu, 7.1 and 8.04
Posts: 6

Original Poster
Rep: Reputation: 1
Verizon wireless UM150 USB Modem works on ubuntu v7.1 but not v8.04

Since I posted my original problem, I've found that the answer is simpler than I thought.
the article: article,"/feature/52729", on linux.com was sufficient but seemed a little complicated.

It is only necessary to:
1. use a windows XP computer to initialize the UM150 using the Verizon Access Manager software that comes with the UM150.
2. For Linux, create two text files: 1xevdo and 1xevdo_chat in the directory: /etc/ppp/peers/.
3. execute the command:
art@art-HP:~$ sudo pppd call 1xevdo

The first file can be listed as follows (where the ########### is replaced by the phone number for the UM159):

art@art-HP:~$ sudo cat /etc/ppp/peers/1xevdo
ttyACM0
115200
debug
noauth
defaultroute
usepeerdns
connect-delay 10000
user ##########@vzw3g.com
show-password
crtscts
lock
lcp-echo-failure 4
lcp-echo-interval 65535
connect '/usr/sbin/chat -v -t3 -f /etc/ppp/peers/1xevdo_chat'

The second file is:

art@art-HP:~$ sudo cat /etc/ppp/peers/1xevdo_chat
ABORT 'NO CARRIER'
ABORT 'ERROR'
ABORT 'NO DIALTONE'
ABORT 'BUSY'
ABORT 'NO ANSWER'
'' ATZ
OK-AT-OK ATDT#777
CONNECT \d\c

After executing the third step, the UM150 should be working. This process now works on at least one Dell Inspiron 1100 Laptop and a Dell Dimension 3000 for Ubunbtu V8.04, and for the Dell Inspiron 300 and 1100 laptops, a Gateway GPS-400 desktop and a HP Pavilion 7920 Desktop with V7.1.
 
Old 10-11-2008, 11:06 AM   #15
track dog
LQ Newbie
 
Registered: Oct 2008
Posts: 2

Rep: Reputation: 0
Quote:
Originally Posted by rforrister View Post

Step 3. Add local IP address to routing table
from root/sudo
>route add default gw xxx.xxx.xxx.xxx

Step 4. Open favorite browser.

This has worked great except that I need to update the routing table each time I connect. Maybe I will write some sort of script to take care of this little annoyance for me. But, hey it is working fine now.
When I got to this step, (I was connected) I entered

sudo route add gw xx.xxx.xxx.x (I entered the local ip address)

I got this message

gw: Unknown host
 
  


Reply

Tags
ubuntu, verizon, wireless



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Ubuntu 8.0.4 dell wireless verizon dsl MODEM westll veralink model 327w psjean Linux - Newbie 2 05-28-2008 11:16 PM
Belkin USB Wireless zd1211 in Debian 4.0 (works in Ubuntu) IsaacKuo Linux - Wireless Networking 17 05-24-2008 06:20 PM
wireless networking and Verizon interent in ubuntu and fdora 6 oby Linux - Wireless Networking 1 02-24-2008 07:04 AM
Internet using a Verizon LG 9900 as a wireless modem. kezdeth Linux - General 0 02-05-2008 02:53 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Ubuntu

All times are GMT -5. The time now is 03:50 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration