LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 01-23-2006, 11:42 PM   #1
Elric of Grans
Member
 
Registered: May 2005
Posts: 46

Rep: Reputation: 15
Using pppd to connect with GSM modem...


I am having a little trouble dialing out with my GSM modem with pppd, and I cannot understand why. The script I am passing to chat goes as follows:

Code:
ABORT "NO CARRIER"
ABORT "NO DIALTONE"
ABORT "BUSY"
ABORT "ERROR"
"" AT+WOPEN=1 OK
AT#PPPMODE=1 OK
AT+CPIN=xxxx OK
AT+CREG=1 OK
AT#GPRSMODE=0 OK
AT#DIALN1=xxxxxxxxxx OK
AT#REDIALCOUNT=0 OK
AT#CONNECTIONSTART DIALING
I am having it expect DIALING because I will then immediately step in an send AT#CONNECTIONSTOP manually (this is just for test purposes: once I have it working, I will have it expect CONNECTED, and will pick a more useful number for AT#DIALN1). If I use these AT commands manually (through minicom) everything works as expected, but when I use pppd (and check /var/log/messages), it steps through each of these lines as expected, but chat quits after the final line, AT#CONNECTIONSTART, returns an error code (which translates to `the product is not registered on the network'). I get the same error code if I do not set AT+CPIN, however, if I add the line `AT+CPIN? READY' before `AT#CONNECTIONSTART DIALING', then it continues onto attemting to connect (suggesting the PIN has been accepted).

Because this all works perfectly fine when I do it manually, I cannot understand what would be different now. I thought maybe it would be that they are entered too quickly here, but I added a line of `\p\p\p\p\p\p\p\p\p\p ""' between each AT command, so as to give them a good pause, but it did not seem to have any effect (and it would not make sense that they would return OK before they were done).

I am pretty stumped on this one, so any suggestions would be greatfully received.

PS If AT+CPIN has already been set, then I do not need to set it again (indeed, attempting to will return ERROR rather than OK). Is there any way with chat scripts to make a conditional (eg if 'AT+CPIN? SIM PIN' then 'AT+CPIN=xxxx')?
 
Old 01-24-2006, 06:28 PM   #2
Elric of Grans
Member
 
Registered: May 2005
Posts: 46

Original Poster
Rep: Reputation: 15
By adding \d to the front of each AT command, I was able to get it to successfully dial, but I still have that issue with requiring a conditional. I read about subscripts in chat scripts, but did not really understand it. The situatin I have is like this:

`AT+CPIN?' will return either `SIM PIN' or `READY'. If it returns READY, I just want to continue with the rest of the script, but if it returns SIM PIN then I want to send 'AT+CPIN=xxxx', and I expect to see an `OK' return from this. Could someone show me how to write this, as I have not been able to follow the description of subscripts (and have not seen any useful examples).
 
Old 06-27-2010, 05:53 PM   #3
jdac
LQ Newbie
 
Registered: Jun 2010
Posts: 1

Rep: Reputation: 0
Conditional SIM unlocking from chatscript

They say it's better late than never, so here's a quick (& somewhat dirty) suggestion for the "conditional" sending of the PIN to the modem.

'chat' is very limited in control flow, by reading the man page the best solution i could figure was to ALWAYS send the PIN and use the "subexpect-subsend" option. This is how it goes:

### chatscript

""
ATZ OK
#send pin
AT+CPIN=1234 TIMEOUT 5 ERROR-AT-OK
AT+CGDCONT=1,"IP","kolbi3g","0.0.0.0",0,0 OK
ATDT*99#
### end chatscript


With my modem, a Huawei 1556 (internally a E620 according to lsusb) if the sim is not locked, then the command to send the pin, "AT+CPIN=1234" will unlock it and return "OK", meanwhile if it was already unlocked by some previous use, the "AT+CPIN=1234" would return "ERROR".

Thus the logic is as follows: the script always sends the command, expecting "ERROR" (assuming the modem was previously unlocked).

If the modem was unlocked, it will respond with "ERROR" and everything will be fine, the -AT-OK part will be ignored and execution will continue with the AT+CGDCONT...

If the modem was locked, then it will respond with "OK" (which is wrong from chat's point of view, since it expected "ERROR", but this will unlock the modem anyway!). Since chat got a bad response it will tend to terminate with an error, but having the optional "-AT-OK" keeps it from dying and allows it to continue. A "send AT expect OK" should be harmless anyway

The TIMEOUT 5 is in order to accelerate the time before the optional part (AT-OK) is executed, otherwise the default is 45 seconds which is kind of too much. Since whenever the sim is really unlocked by the command, execution is stopped by 5 seconds, it has the (accidental) added benefit of giving the device enough time to hook onto the 3G network.

(this solution reminds me of badly written programs who abuse function side effects to carry out their logic in an unclear way...but hey)

When i have some time i will check the "expect" program which apparently allows "complex" (in terms of logic) scripts.
 
  


Reply



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
Connect GSM cell to Linux to recieve SMS dlublink Linux - Hardware 2 09-27-2005 11:51 AM
GSM modem the_imax Linux - Networking 0 09-21-2004 05:20 AM
Query: connect with ex. ser. modem pppd died unexpectedly Hal Linux - Networking 2 07-03-2004 09:00 AM
Cannot connect to ISP (cable modem+dhcp+pppd+pptp) iklinux Linux - Networking 0 05-11-2004 08:39 AM
gsm modem noODle Linux - General 1 03-27-2002 07:35 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

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