<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Sierra Wireless</title>
	<atom:link href="http://mykrosystem.com/blog/howto/internet/sierra-wireless/feed/" rel="self" type="application/rss+xml" />
	<link>http://mykrosystem.com/blog</link>
	<description>Remote control a PC or Server from pratically anywhere!</description>
	<pubDate>Wed, 08 Sep 2010 06:28:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mikrodots</title>
		<link>http://mykrosystem.com/blog/howto/internet/sierra-wireless/comment-page-1/#comment-6</link>
		<dc:creator>mikrodots</dc:creator>
		<pubDate>Thu, 29 May 2008 14:21:54 +0000</pubDate>
		<guid isPermaLink="false">http://mykrosystem.com/blog/howto/internet/sierra-wireless/#comment-6</guid>
		<description>Sierra Wireless and Cingular (AT&#38;T) Revisited...

Ahhrgh… Puppy Linux 4.0 doesn’t recognize the PCMCIA socket. Okay, I found that the yenta_socket module is no longer loaded in a default installation - so I’ll need to add that by using the BootManager…

Good. With the yenta_socket module loaded my card is identified — from a console- cardmgr reports ‘watching 1 socket’ and cardctl ident identifies the Siera Wireless AC860.

I’ll need to add the id to /etc/pcmcia/config to get it to work. (to test the id cat /var/log/messages look for “unsupported card in socket 0″) - it doesn’t look the Sierra module I loaded is doing anything here. I don’t know how to tell the system to use that driver for this device.

It looks like card is ID’d with the function network instead of modem.

The old links I had to Sierra’s site are no longer valid - I don’t know why they pulled the SW_8xx_SER.dat file. I’m not sure how to make this work without it. I have a copy of it from last year that I’ll use (if I can find it!)

Good, I found a copy of SW_8xx_SER.dat. I’ll copy SW_8xx_SER.dat to: /etc/pcmcia/cis/

Now I’ll modify /etc/pcmcia/config

Add the following to /etc/pcmcia/config under the Modems and other serial devices:
Be sure the manfid is typed exactly as it is in the /var/log/messages file; I recommend cutting and pasting from messages and that’s why I put in the log file reference.
This is how the device will be auto-detected and the driver loaded.

card “Sierra Wireless AC860 3G Network Adapter R1″
manfid 0×0192, 0×0710
cis “cis/SW_8xx_SER.dat”
bind “serial_cs”

I’ll need to copy a couple of scripts to get this working. (NOTE: when copying the scripts sometimes the qoutes are replaced with the wrong characters (two single quotes) and the script won’t run - you may see a “invalid option -v” or similar - just replace the double quotes)

____________________________________________________

Copy the following Script to: /etc/ppp/peers/3g

#!/bin/bash
#
-detach
lcp-echo-failure 0
noauth
# Use /dev/rfcomm0 for bluetooth modem
# /dev/rfcomm0
#/dev/ttyS0 is my Sierra Wireless Aircard PCMCIA PC Card
/dev/ttyS0
# These are the connect speeds
# I found through experimentation that 115200 give me the fastest upload speed at 254k,
# the others, to my surprise, all only reached 54k
115200
# 230400
# 460800
# 921600
defaultroute
noipdefault
ipcp-accept-local
ipcp-accept-remote
# user ISP@CINGULARGPRS.COM
# This one worked better with the pcmcia card
user ISPDA@CINGULARGPRS.COM
password CINGULAR1
usepeerdns
# nodetach
debug
crtscts
lock
# receive-all
# novj
# nodeflate
# noccp
connect "/usr/sbin/chat -v -t6 -f /etc/ppp/chatscripts/3gchat"

_______________________

Save Script to: /etc/ppp/chatscripts/3gchat
# Note: after copying this script I needed to fix the double quotes as they were replaced with two single quotes

#!/bin/bash
#
ABORT ERROR
ABORT RING
ABORT BUSY
ABORT VOICE
ABORT “NO CARRIER”
ABORT “NO ANSWER”
#ABORT “NO DIALTONE”
REPORT CONNECT
“” “ATZ”
# The following would hang up when downloading
# I think I used for the cell phone bluetooth modem
# OK ‘AT+CGDCONT=1,”IP”,”wap.cingular”,”",0,0′
# Use this for the Sierra Aircard
OK ‘AT+CGDCONT=1,”IP”,”isp.cingular”,”",0,0′
OK ATD*99***1#
TIMEOUT 15
CONNECT \c

__________________________________________

now in a console type pppd call 3g and you should connect to the Internet.
I restarted and noticed that cardmgr does not start on boot - I’ll need to fix that.

For now type cardmgr to start it then pppd call 3g

Or EDIT /etc/rc.d/rc.local and add cardmgr to have it start at boot up.

Now lets check the connection speed…

From speedtest.net I got 1MB up and 54k down. It looks like I still need to add spd_warp to ip-up
edit /etc/ppp/ip-up
add this line:

setserial -a /dev/modem low_latency spd_warp

I found a new Sierra link: http://www.sierrawireless.com/faq/ShowFAQ.aspx?ID=118 - maybe I’ll try this procedure soon.</description>
		<content:encoded><![CDATA[<p>Sierra Wireless and Cingular (AT&amp;T) Revisited&#8230;</p>
<p>Ahhrgh… Puppy Linux 4.0 doesn’t recognize the PCMCIA socket. Okay, I found that the yenta_socket module is no longer loaded in a default installation - so I’ll need to add that by using the BootManager…</p>
<p>Good. With the yenta_socket module loaded my card is identified — from a console- cardmgr reports ‘watching 1 socket’ and cardctl ident identifies the Siera Wireless AC860.</p>
<p>I’ll need to add the id to /etc/pcmcia/config to get it to work. (to test the id cat /var/log/messages look for “unsupported card in socket 0″) - it doesn’t look the Sierra module I loaded is doing anything here. I don’t know how to tell the system to use that driver for this device.</p>
<p>It looks like card is ID’d with the function network instead of modem.</p>
<p>The old links I had to Sierra’s site are no longer valid - I don’t know why they pulled the SW_8xx_SER.dat file. I’m not sure how to make this work without it. I have a copy of it from last year that I’ll use (if I can find it!)</p>
<p>Good, I found a copy of SW_8xx_SER.dat. I’ll copy SW_8xx_SER.dat to: /etc/pcmcia/cis/</p>
<p>Now I’ll modify /etc/pcmcia/config</p>
<p>Add the following to /etc/pcmcia/config under the Modems and other serial devices:<br />
Be sure the manfid is typed exactly as it is in the /var/log/messages file; I recommend cutting and pasting from messages and that’s why I put in the log file reference.<br />
This is how the device will be auto-detected and the driver loaded.</p>
<p>card “Sierra Wireless AC860 3G Network Adapter R1″<br />
manfid 0×0192, 0×0710<br />
cis “cis/SW_8xx_SER.dat”<br />
bind “serial_cs”</p>
<p>I’ll need to copy a couple of scripts to get this working. (NOTE: when copying the scripts sometimes the qoutes are replaced with the wrong characters (two single quotes) and the script won’t run - you may see a “invalid option -v” or similar - just replace the double quotes)</p>
<p>____________________________________________________</p>
<p>Copy the following Script to: /etc/ppp/peers/3g</p>
<p>#!/bin/bash<br />
#<br />
-detach<br />
lcp-echo-failure 0<br />
noauth<br />
# Use /dev/rfcomm0 for bluetooth modem<br />
# /dev/rfcomm0<br />
#/dev/ttyS0 is my Sierra Wireless Aircard PCMCIA PC Card<br />
/dev/ttyS0<br />
# These are the connect speeds<br />
# I found through experimentation that 115200 give me the fastest upload speed at 254k,<br />
# the others, to my surprise, all only reached 54k<br />
115200<br />
# 230400<br />
# 460800<br />
# 921600<br />
defaultroute<br />
noipdefault<br />
ipcp-accept-local<br />
ipcp-accept-remote<br />
# user <a href="mailto:ISP@CINGULARGPRS.COM">ISP@CINGULARGPRS.COM</a><br />
# This one worked better with the pcmcia card<br />
user <a href="mailto:ISPDA@CINGULARGPRS.COM">ISPDA@CINGULARGPRS.COM</a><br />
password CINGULAR1<br />
usepeerdns<br />
# nodetach<br />
debug<br />
crtscts<br />
lock<br />
# receive-all<br />
# novj<br />
# nodeflate<br />
# noccp<br />
connect &#8220;/usr/sbin/chat -v -t6 -f /etc/ppp/chatscripts/3gchat&#8221;</p>
<p>_______________________</p>
<p>Save Script to: /etc/ppp/chatscripts/3gchat<br />
# Note: after copying this script I needed to fix the double quotes as they were replaced with two single quotes</p>
<p>#!/bin/bash<br />
#<br />
ABORT ERROR<br />
ABORT RING<br />
ABORT BUSY<br />
ABORT VOICE<br />
ABORT “NO CARRIER”<br />
ABORT “NO ANSWER”<br />
#ABORT “NO DIALTONE”<br />
REPORT CONNECT<br />
“” “ATZ”<br />
# The following would hang up when downloading<br />
# I think I used for the cell phone bluetooth modem<br />
# OK ‘AT+CGDCONT=1,”IP”,”wap.cingular”,”&#8221;,0,0′<br />
# Use this for the Sierra Aircard<br />
OK ‘AT+CGDCONT=1,”IP”,”isp.cingular”,”&#8221;,0,0′<br />
OK ATD*99***1#<br />
TIMEOUT 15<br />
CONNECT \c</p>
<p>__________________________________________</p>
<p>now in a console type pppd call 3g and you should connect to the Internet.<br />
I restarted and noticed that cardmgr does not start on boot - I’ll need to fix that.</p>
<p>For now type cardmgr to start it then pppd call 3g</p>
<p>Or EDIT /etc/rc.d/rc.local and add cardmgr to have it start at boot up.</p>
<p>Now lets check the connection speed…</p>
<p>From speedtest.net I got 1MB up and 54k down. It looks like I still need to add spd_warp to ip-up<br />
edit /etc/ppp/ip-up<br />
add this line:</p>
<p>setserial -a /dev/modem low_latency spd_warp</p>
<p>I found a new Sierra link: <a href="http://www.sierrawireless.com/faq/ShowFAQ.aspx?ID=118" rel="nofollow">http://www.sierrawireless.com/faq/ShowFAQ.aspx?ID=118</a> - maybe I’ll try this procedure soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mikrodots</title>
		<link>http://mykrosystem.com/blog/howto/internet/sierra-wireless/comment-page-1/#comment-4</link>
		<dc:creator>mikrodots</dc:creator>
		<pubDate>Fri, 23 May 2008 14:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://mykrosystem.com/blog/howto/internet/sierra-wireless/#comment-4</guid>
		<description>This HowTo is out of date.  Sierra pulled the pages that had the SW_8xx_SER.dat file so those links are no longer valid.

I'm getting this working on Puppy 4.0 right now so look here http://mykrosystem.com/blog/2008/05/21/mikrosystem-installation-notes-using-puppy-linux-40-part-1/
to see how its going.</description>
		<content:encoded><![CDATA[<p>This HowTo is out of date.  Sierra pulled the pages that had the SW_8xx_SER.dat file so those links are no longer valid.</p>
<p>I&#8217;m getting this working on Puppy 4.0 right now so look here <a href="http://mykrosystem.com/blog/2008/05/21/mikrosystem-installation-notes-using-puppy-linux-40-part-1/" rel="nofollow">http://mykrosystem.com/blog/2008/05/21/mikrosystem-installation-notes-using-puppy-linux-40-part-1/</a><br />
to see how its going.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
