Sponsored Content
Operating Systems Linux Slackware How configure micromax bsnl 3G modem in KPPP on slackware 13.1 Post 302549846 by hitlar on Wednesday 24th of August 2011 05:34:46 AM
Old 08-24-2011
How configure micromax bsnl 3G modem in KPPP on slackware 13.1

How configure micromax bsnl 3G modem in KPPP on slackware 13.1 while it automatically mounted under

/dev/sr1 iso9660 /media/modem


and in lsusb command add following information:


Bus 001 Device 020: ID 1c9e:f000


now i follow these steps for usb switch t
o modem
usb_modeswitch.conf File

DefaultVendor= 0x1c9e
DefaultProduct= 0xf000
TargetVendor= 0x1c9e
TargetProduct= 0x9605
# only for reference
MessageEndpoint=0x01
MessageContent="55534243123456788000000080000606f50402527000000000000000000000"

run the program:

usb_modeswitch -C usb_modeswitch.conf
modprobe cdc_acm
modprobe usbserial vendor=0x1c9e product=0x9605
now connect with KPP
in Device->modem device->
dev/ttyUSB2, it detect modem and when query
modem by :
modem->Query Modem->Modem Query Result Window show following same string in
each AT1-AT7 field
AT1 :- Manufacturer: "Micromax" Model: Micromax MMX310G 3G USB Modem Revision: LQA0094.1.1_MG32 IMEI: 910532501142484 +GCAP: +CGSM,+FCLASS,+DS
AT2 :- Manufacturer: "Micromax" Model: Micromax MMX310G 3G USB Modem Revision: LQA0094.1.1_MG32 IMEI: 910532501142484 +GCAP: +CGSM,+FCLASS,+DS
so on...
Now Connect
Looking Modem pass
Modem Ready Pass
Initializing Modem hang the overall process & login script display window
show expecting Ok and hang
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to configure modem in Linux

I have Linux RedHat7.1 and I have this modem RockWell HCF 56KDATA Fax PCI Modem. I don't know how to configure this modem. Can anybody please help me out. I tried "linuxconf" it does not recognize this command. Pleas help me out. Regards -Iftikhar (1 Reply)
Discussion started by: syedifti
1 Replies

2. UNIX Desktop Questions & Answers

Help needed to configure GUI with Slackware 7 on an IBM Thinkpad Laptop

I am using Slackware 7 on my IBM Thinkpad. I am unable to configure it to display a graphical environment. Typing startx usually generates a few errors. The system, however, does boot into the shell environment without any issues or problems. I have been able to setup Slackware 7 successfully... (2 Replies)
Discussion started by: adrienb
2 Replies

3. UNIX for Dummies Questions & Answers

Modem - Test /dev/modem

Ok. I tried following the directions from some of the other threads, but I've hit a road block. I have red hat 7.3 and I installed the hcf package: hcfpcimodem-0.99lnxtbeta03042700k2.4.18_3-1rh.i386.rpm It installed ok, no errors, but I still can't get linux to find my modem. I've tried... (2 Replies)
Discussion started by: lawadm1
2 Replies

4. Solaris

how to configure modem

hi, can u pls help to configure modem on SUN system for the inbound dialing.....so that i can connect to the system remotely through modem..........thx girish (2 Replies)
Discussion started by: girish_shukla
2 Replies

5. Solaris

help me!!!! how configure modem dial up with smc in solaris 10

Dear All, i have problem during install modem dial up with smc in solaris 10. i can't find "login" because it's stop in _receive started transmit started. thanks for your attention. this is the list during i dial to this number : altconn called Device Type ACU wanted... (0 Replies)
Discussion started by: mr.ridho
0 Replies

6. SuSE

How to configure a wireless modem

I bought a wireless modem from '' 3 ''. It has software for Windows users. I talked to their support center. They know nothing about Linux. In Ubuntu, I looked at System --> Administration --> Network I have to click the unlock in the dialog. It recognized wired connections; there... (0 Replies)
Discussion started by: Angelo
0 Replies

7. Solaris

Broadband connection (BSNL& AIRTEL)

Dear Friends, Kindly help me to connect Broadband connection in my Solaris 10 OS. I have heard that i have to write a script. Waiting for solution......... Thanks (0 Replies)
Discussion started by: anuragpauldani
0 Replies

8. Hardware

Slackware 13.1 can't configure two network cards

Hello everybody, I'm having troubles with Slackware 13.1 and network cards. I have one on-board Ethernet card (which is recognized and works okay) and a PCI Ethernet card (which is also recognized, but doesn't appear in 'ifconfig -a'). If i run a 'lspci', i can see the kernel recognized the... (5 Replies)
Discussion started by: semash!
5 Replies

9. Solaris

bsnl broadband and playing media in solaris 10

Hi all, I am a newbie in UNIX . Earlier I used opensuse 11.3 just because it was secure for connecting to the INTERNET than Windows. Now I have to use Solaris for my work, so I was thinking of having windows XP2,opensuse 11.3 and solaris on the same pc. In spite of some good suggestion from... (5 Replies)
Discussion started by: M.Choudhury
5 Replies
Device::Modem::UsRobotics(3pm)				User Contributed Perl Documentation			    Device::Modem::UsRobotics(3pm)

NAME
Device::Modem::UsRobotics - USR modems extensions to control self-mode SYNOPSIS
use Device::Modem::UsRobotics; my $modem = new Device::Modem::UsRobotics( port => '/dev/ttyS1' ); $modem->connect( baudrate => 9600 ); my %info = $modem->messages_info(); print "There are $info{unreleased_voice_msg} unread voice messages on $info{stored_voice_msg} total "; print "There are $info{unreleased_fax_msg} unread fax messages on $info{stored_fax_msg} total "; # Get details about message n. X my %msg = $modem->message_info(1); index type information attributes status day hour minute callerid page addresshigh addresslow checksum print 'This is a ', ($msg{type} == 2 ? 'voice' : 'fax'), 'message', " "; print 'It came from no. ', $msg{callerid}, " "; # ... # Now clear all messages $modem->clear_memory(); WARNING
This module is not documented yet, and it is a rough work in progress. Until now, it correctly reads voice/fax messages information, but when saving voice messages to disk, sometimes they are incorrectly decoded. So, if you need a working program, check out the good old TkUsr by Ludovic Drolez, unless you want to help develop Device::Modem::UsRobotics. DOCS TO BE COMPLETED FROM NOW..... Yes, I'm a bad boy :-) DESCRIPTION
Bla Bla Bla... METHODS
clear_memory() Used to permanently clear the memory space of the modem. There are separate memory spaces, one for voice/fax messages and one for user set- tings. Examples: $modem->clear_memory('user'); # or $modem->clear_memory(1) $modem->clear_memory('messages'); # or $modem->clear_memory(2) To clear both, you can use: $modem->clear_memory('all'); # or $modem->clear_memory(0); Parameters: $memtype String or integer that selects the type of memory to be cleared, where 0 is for "all", 1 is for "user" memory, 2 is for "messages" mem- ory. SUPPORT
Please feel free to contact me at my e-mail address cosimo@cpan.org for any information, to resolve problems you can encounter with this module or for any kind of commercial support you may need. AUTHOR
Cosimo Streppone, cosimo@cpan.org COPYRIGHT
(C) 2004-2005 Cosimo Streppone, cosimo@cpan.org This library is free software; you can only redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Device::Modem, perl perl v5.8.8 2005-04-30 Device::Modem::UsRobotics(3pm)
All times are GMT -4. The time now is 09:35 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy