LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion
User Name
Password
LinuxAnswers Discussion This forum is to discuss articles posted to LinuxAnswers.

Notices


Reply
  Search this Thread
Old 10-19-2006, 11:30 PM   #16
imranmalik
LQ Newbie
 
Registered: Oct 2006
Posts: 10

Rep: Reputation: 0

Sue why not. and thanx for the greetings.
 
Old 01-03-2007, 04:40 AM   #17
tariqzia
LQ Newbie
 
Registered: Jan 2005
Location: Multan, Pakistan
Distribution: SuSE 10.1
Posts: 5

Rep: Reputation: 0
Check http://www.openpages.info.
There is a link on the left side panel . Just click it and go through the instructions.
I did it and now running the HUAEWI ETS modem on my SuSE 10.1 box.
 
Old 01-29-2007, 04:34 AM   #18
axix
LQ Newbie
 
Registered: Jan 2007
Posts: 1

Rep: Reputation: 0
hi there guyz can ne1 upload the driver somewhere
cuz my cd is lost and cant find it ne where!
 
Old 03-13-2007, 06:21 AM   #19
sarthor
LQ Newbie
 
Registered: Apr 2005
Posts: 10

Rep: Reputation: 1
Quote:
Originally Posted by tariqzia
Check http://www.openpages.info.
There is a link on the left side panel . Just click it and go through the instructions.
I did it and now running the HUAEWI ETS modem on my SuSE 10.1 box.
Hi,
Dear tariqzia its the exact link of your page is, and its not working for ubuntu, I have tried, but no success,

any help will be appreciated .

Last edited by sarthor; 03-13-2007 at 06:23 AM.
 
Old 04-08-2007, 10:55 AM   #20
farhadali05
LQ Newbie
 
Registered: Mar 2007
Posts: 5

Rep: Reputation: 0
CDMA modem huawei, PTCL Wireless

Try this, i hope will solve your problem

SYSTEM REQUIREMENTS
Linux with kernel above 2.6.
(Check it by command in console uname -a)
(Personally Tested on FC6, should work on any Linux Distribution)

STEP 1
Plug in the Serial to USB cable.
Now in console type command dmesg -c search for the following lines.

ti_usb_3410_5052 1-1:2.0 : TI USB 3410 1 port adapter converter detected
usb 1-1: TI USB 3410 1 port adapter converter now attached to /dev/ttyUSB0

If you see ttyUSB0 in the kernel message then also your modem is detected and you are ready to start, now just jump to STEP 2 and proceed.

If the lines are as follows, you have to do a little bit of coding.

ti_usb_3410_5052 1-1:1.0: TI USB 3410 1 port adapter converter detected
ti_usb_3410_5052: probe of 1-1:1.0 failed with error -5

Now we have to make a rule file in /etc/udev/rules.d/ named 026_ti_usb_3410.rules
In console login as root or use sudo to create the file.

cd /etc/udev/rules.d/
sudo vi 026_ti_usb_3410.rules

In Ubuntu you will be asked for your password. (I don'y know whether it is the same in FC also)
Anyway in FC (or in other distros) type

su

then will be asked for your password.

Here you can use a preferred text editor rather than vi.

Now paste the following lines to the file created.

#TI USB 3410
SUBSYSTEM=="usb_device" ACTION=="add" SYSFS{idVendor}=="0451",SYSFS{idProduct}=="3410" \
SYSFS{bNumConfigurations}=="2" \
SYSFS{bConfigurationValue}=="1" \
RUN+="/bin/sh -c 'echo 2 > /sys%p/device/bConfigurationValue'"

Save and exit.

Now once again plug out your USB/Serial cable and then plug in.
Again type dmesg -c in console.
Check the kernel message and find the following line.

ti_usb_3410_5052 1-1:2.0: TI USB 3410 1 port adapter converter detected
usb 1-1: TI USB 3410 1 port adapter converter now attached to /dev/ttyUSB0

CONGRATULATIONS you have succeeded in STEP 1.

STEP 2
This is about creating a dialup script using wvdial
Now edit your /etc/wvdial.conf

cd /etc
sudo vi wvdial.conf

Following is a sample of a wvdial.conf file

[Dialer ptcl]
Modem = /dev/ttyUSB0
Baud = 230400
Phone = #777
Init1 = ATZ
Stupid Mode = 1
Dial Command = ATDT
Username = YourUsername
Password = YourPassword
PPPD Options = crtcts multilink usepeerdns lock defaultroute

Important Note: Stupid Mode should be set to 1 otherwise the hash sign # with Dialing phone number will not be treated by wvdial.

This file replaced YourUsername and YourPassword with appropriate username and password, works well with Ubuntu and FC6.

PROBLEM
Some users have experienced this problem in FC6. But I didn't. So I hope that all Ubuntu users can jump to STEP 3).
When you will connect to ptcl with wvdial ptcl command as a root , it will not browse any page and will disconnect.

You have to set the nameserver in the /etc/resolv.conf .You can get the nameserver IPs from the terminal window when wvdial is trying to connect to your ISP.

Put those two nameserver in /etc/reslov.conf.
Now again as a root in console wvdial ptcl.

STEP 3
Just type
wvdial ptcl

NOTE: In FC6 this command should be executed as root.

So we have come to the conclusion. Try this and post your experiences.

FINALLY YOU ARE DONE.
ENJOY LINUX WITH HUAWEI Suntel and Lanka Bell.
Cheers.:

Last edited by farhadali05; 04-08-2007 at 11:02 AM.
 
Old 04-08-2007, 12:02 PM   #21
sarthor
LQ Newbie
 
Registered: Apr 2005
Posts: 10

Rep: Reputation: 1
Quote:
Originally Posted by farhadali05
Try this, i hope will solve your problem

SYSTEM REQUIREMENTS
Linux with kernel above 2.6.
(Check it by command in console uname -a)
(Personally Tested on FC6, should work on any Linux Distribution)

STEP 1
Plug in the Serial to USB cable.
Now in console type command dmesg -c search for the following lines.

ti_usb_3410_5052 1-1:2.0 : TI USB 3410 1 port adapter converter detected
usb 1-1: TI USB 3410 1 port adapter converter now attached to /dev/ttyUSB0

If you see ttyUSB0 in the kernel message then also your modem is detected and you are ready to start, now just jump to STEP 2 and proceed.

If the lines are as follows, you have to do a little bit of coding.

ti_usb_3410_5052 1-1:1.0: TI USB 3410 1 port adapter converter detected
ti_usb_3410_5052: probe of 1-1:1.0 failed with error -5

Now we have to make a rule file in /etc/udev/rules.d/ named 026_ti_usb_3410.rules
In console login as root or use sudo to create the file.

cd /etc/udev/rules.d/
sudo vi 026_ti_usb_3410.rules

In Ubuntu you will be asked for your password. (I don'y know whether it is the same in FC also)
Anyway in FC (or in other distros) type

su

then will be asked for your password.

Here you can use a preferred text editor rather than vi.

Now paste the following lines to the file created.

#TI USB 3410
SUBSYSTEM=="usb_device" ACTION=="add" SYSFS{idVendor}=="0451",SYSFS{idProduct}=="3410" \
SYSFS{bNumConfigurations}=="2" \
SYSFS{bConfigurationValue}=="1" \
RUN+="/bin/sh -c 'echo 2 > /sys%p/device/bConfigurationValue'"

Save and exit.

Now once again plug out your USB/Serial cable and then plug in.
Again type dmesg -c in console.
Check the kernel message and find the following line.

ti_usb_3410_5052 1-1:2.0: TI USB 3410 1 port adapter converter detected
usb 1-1: TI USB 3410 1 port adapter converter now attached to /dev/ttyUSB0

CONGRATULATIONS you have succeeded in STEP 1.

STEP 2
This is about creating a dialup script using wvdial
Now edit your /etc/wvdial.conf

cd /etc
sudo vi wvdial.conf

Following is a sample of a wvdial.conf file

[Dialer ptcl]
Modem = /dev/ttyUSB0
Baud = 230400
Phone = #777
Init1 = ATZ
Stupid Mode = 1
Dial Command = ATDT
Username = YourUsername
Password = YourPassword
PPPD Options = crtcts multilink usepeerdns lock defaultroute

Important Note: Stupid Mode should be set to 1 otherwise the hash sign # with Dialing phone number will not be treated by wvdial.

This file replaced YourUsername and YourPassword with appropriate username and password, works well with Ubuntu and FC6.

PROBLEM
Some users have experienced this problem in FC6. But I didn't. So I hope that all Ubuntu users can jump to STEP 3).
When you will connect to ptcl with wvdial ptcl command as a root , it will not browse any page and will disconnect.

You have to set the nameserver in the /etc/resolv.conf .You can get the nameserver IPs from the terminal window when wvdial is trying to connect to your ISP.

Put those two nameserver in /etc/reslov.conf.
Now again as a root in console wvdial ptcl.

STEP 3
Just type
wvdial ptcl

NOTE: In FC6 this command should be executed as root.

So we have come to the conclusion. Try this and post your experiences.

FINALLY YOU ARE DONE.
ENJOY LINUX WITH HUAWEI Suntel and Lanka Bell.
Cheers.:
Hi,
i have told to tariqzia about his page in the previous post,
You can Check this Link.
Brother, this setting did not work on ubuntu 5.1 but now i have installed ubuntu 6.10 edgy, and its working fine.
Thank you.
 
Old 09-22-2007, 06:35 AM   #22
Omarga
LQ Newbie
 
Registered: Jul 2007
Posts: 5

Rep: Reputation: 0
Unhappy

ok, I know this might have came late, but I just got my linux running (SUSE 10.2) and I can not configure the ZTE USB Modem. I tried your instruction and I am stuck in the 2nd step. can you help me please, here is what I get:
when I run the command dmesg I get the following:
usb 3-1: new full speed USB device using uhci_hcd and address 2
usb 3-1: device descriptor read/64, error -71
usb 3-1: device descriptor read/64, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 3
usb 3-1: device descriptor read/64, error -71
usb 3-1: device descriptor read/64, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 4
usb 3-1: device not accepting address 4, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 5
usb 3-1: device not accepting address 5, error -71
usb 3-1: new full speed USB device using uhci_hcd and address 6
usb 3-1: new device found, idVendor=05c6, idProduct=6000
usb 3-1: new device strings: Mfr=1, Product=2, SerialNumber=0
usb 3-1: Product: ZTE CDMA Tech
usb 3-1: Manufacturer: ZTE, Incorporated
usb 3-1: configuration #1 chosen from 1 choice
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
CCMP: decrypt failed: STA=00:c0:49:e7:e3:73
usbcore: registered new driver cdc_acm
drivers/usb/class/cdc-acm.c: v0.25:USB Abstract Control Model driver for USB modems and ISDN adapters


then I run the command : modprobe cdc-acm and I get no error, which should mean it ok

then I run cat /proc/modules and I get:
cdc_acm 31520 0 - Live 0xf9987000
af_packet 53896 2 - Live 0xf9978000
aes 44608 0 - Live 0xf995c000
ieee80211_crypt_ccmp 23808 0 - Live 0xf9429000
michael_mic 19072 2 - Live 0xf9423000
arc4 18560 2 - Live 0xf93f9000
ieee80211_crypt_tkip 27008 2 - Live 0xf93e9000
joydev 25792 0 - Live 0xf93da000
usbhid 64608 0 - Live 0xf994b000
xt_pkttype 18304 3 - Live 0xf8d11000
ipt_LOG 22912 10 - Live 0xf8c77000
xt_limit 19200 10 - Live 0xf8c71000
snd_pcm_oss 65664 0 - Live 0xf9437000
snd_mixer_oss 33536 1 snd_pcm_oss, Live 0xf9404000
snd_seq 72560 0 - Live 0xf9410000
snd_seq_device 25100 1 snd_seq, Live 0xf93f1000
cpufreq_conservative 24200 0 - Live 0xf93e2000
cpufreq_ondemand 23180 2 - Live 0xf93b4000
cpufreq_userspace 23296 0 - Live 0xf93d3000
cpufreq_powersave 18176 0 - Live 0xf93c2000
speedstep_centrino 26912 1 - Live 0xf93cb000
freq_table 21504 1 speedstep_centrino, Live 0xf93bb000
button 23184 0 - Live 0xf9388000
battery 26628 0 - Live 0xf93ac000
ac 21764 0 - Live 0xf939c000
ip6t_REJECT 21632 3 - Live 0xf9395000
xt_tcpudp 19584 7 - Live 0xf938f000
ipt_REJECT 21760 3 - Live 0xf9381000
xt_state 18560 12 - Live 0xf937b000
iptable_mangle 19328 0 - Live 0xf9375000
iptable_nat 23812 0 - Live 0xf92ef000
ip_nat 34092 1 iptable_nat, Live 0xf9308000
iptable_filter 19456 1 - Live 0xf92e9000
ip6table_mangle 18816 0 - Live 0xf92e3000
ip_conntrack 64960 3 xt_state,iptable_nat,ip_nat, Live 0xf92f7000
nfnetlink 23320 2 ip_nat,ip_conntrack, Live 0xf92dc000
ip_tables 30276 3 iptable_mangle,iptable_nat,iptable_filter, Live 0xf92d3000
ip6table_filter 19328 1 - Live 0xf92cd000
ip6_tables 31428 2 ip6table_mangle,ip6table_filter, Live 0xf92ae000
x_tables 30468 10 xt_pkttype,ipt_LOG,xt_limit,ip6t_REJECT,xt_tcpudp,ipt_REJECT,xt_state,iptable_nat,ip_tables,ip6_tabl es, Live 0xf92a5000
ipv6 312736 24 ip6t_REJECT, Live 0xf9327000
apparmor 67860 0 - Live 0xf92bb000
aamatch_pcre 30592 1 apparmor, Live 0xf9263000
nls_utf8 18560 2 - Live 0xf922b000
ntfs 223124 2 - Live 0xf926d000
loop 32776 0 - Live 0xf9221000
dm_mod 72472 0 - Live 0xf90f1000
pcmcia 53180 0 - Live 0xf90c9000
ipw3945 204192 1 - Live 0xf9106000
ieee80211 46920 1 ipw3945, Live 0xf90bc000
ieee80211_crypt 22400 3 ieee80211_crypt_ccmp,ieee80211_crypt_tkip,ieee80211, Live 0xf8f02000
ohci1394 49584 0 - Live 0xf90ae000
uhci_hcd 39180 0 - Live 0xf8fd9000
yenta_socket 42764 1 - Live 0xf8fc1000
intel_agp 40092 1 - Live 0xf8f74000
firmware_class 26368 2 pcmcia,ipw3945, Live 0xf8f16000
tg3 117124 0 - Live 0xf8f56000
ieee1394 114872 1 ohci1394, Live 0xf8f38000
fglrx 752800 49 - Live 0xf8ff5000
ehci_hcd 47368 0 - Live 0xf8f09000
rsrc_nonstatic 29952 1 yenta_socket, Live 0xf8ef2000
pcmcia_core 55700 3 pcmcia,yenta_socket,rsrc_nonstatic, Live 0xf8e7f000
agpgart 47944 2 intel_agp,fglrx, Live 0xf8e8e000
i2c_i801 23948 0 - Live 0xf8e78000
i2c_core 37504 1 i2c_i801, Live 0xf8e55000
usbcore 127568 4 cdc_acm,usbhid,uhci_hcd,ehci_hcd, Live 0xf8ec7000
irda 156728 0 - Live 0xf8e9f000
crc_ccitt 18560 1 irda, Live 0xf8e6a000
snd_hda_intel 35476 2 - Live 0xf8e60000
snd_hda_codec 176640 1 snd_hda_intel, Live 0xf8de7000
snd_pcm 99204 3 snd_pcm_oss,snd_hda_intel,snd_hda_codec, Live 0xf8e3b000
snd_timer 40196 2 snd_seq,snd_pcm, Live 0xf882a000
snd 73476 12 snd_pcm_oss,snd_mixer_oss,snd_seq,snd_seq_device,snd_hda_intel,snd_hda_codec,snd_pcm,snd_timer, Live 0xf8dbe000
soundcore 26080 1 snd, Live 0xf8db6000
snd_page_alloc 26888 2 snd_hda_intel,snd_pcm, Live 0xf8d8c000
ext3 153480 2 - Live 0xf8e14000
mbcache 25092 1 ext3, Live 0xf8d76000
jbd 82612 1 ext3, Live 0xf8dd1000
edd 26180 0 - Live 0xf8d6e000
fan 21252 0 - Live 0xf8878000
sg 50204 0 - Live 0xf8d7e000
sr_mod 32420 1 - Live 0xf8d27000
cdrom 50720 1 sr_mod, Live 0xf8d37000
ata_piix 31748 6 - Live 0xf886f000
libata 131732 1 ata_piix, Live 0xf8d94000
thermal 30856 0 - Live 0xf8840000
processor 48360 2 speedstep_centrino,thermal, Live 0xf8d1a000
sd_mod 36864 6 - Live 0xf8836000
scsi_mod 149000 4 sg,sr_mod,libata,sd_mod, Live 0xf8d48000

then I am supposed to make the module driver cdc-acm module appear whenever I start the computer, which is not happening, and I am supposed to add it manually to /etc/modules.conf which in SUSE10.2 is not available in this folder or simply hidden somewhere or somehow.
how can I do this??
 
Old 10-22-2007, 07:19 AM   #23
indikabandara19
LQ Newbie
 
Registered: May 2007
Posts: 18

Rep: Reputation: 0
Cool work !

Does this CDMA modem(i'm refering to HUAWEI) capable of handling dial-back?
i.e. a remote computer dialing you rather than u dialing it?
 
Old 01-29-2008, 08:45 AM   #24
diwadm
LQ Newbie
 
Registered: Jan 2008
Posts: 1

Rep: Reputation: 0
Hi petersum,

Thank you for the excellent HOWTO. Everything worked well the first try. I was able to get my phone to dial-up for the first time in Linux! I am using a ZTE WP960CD device under Ubuntu Feisty Fawn. I'm using the device in the Philippines under the telco BayanTel.

Again, thank you. :-D

Regards,

Diwa del Mundo
Hypermedia Soft
 
  


Reply

Tags
cdma, modemphone



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
Has anyone tried connecting a realiance lg CDMA phone on a mac os x deetox *BSD 1 04-22-2007 11:07 AM
Driver for Nokia 2112 CDMA phone and CA-42 USB cable georgelinux Mandriva 3 09-15-2006 09:59 PM
DISCUSSION: Verizon Cell Phone Internet khermans LinuxAnswers Discussion 2 06-21-2005 07:37 PM
Serial to USB Port Converter for Laptop and CDMA Phone useth Linux - Hardware 2 08-30-2004 08:18 AM
Data transfer blocked? Reliance cdma mobile phone problem with Fedora. comatosebuddha Linux - Software 0 04-18-2004 03:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - General > LinuxAnswers Discussion

All times are GMT -5. The time now is 05:58 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