<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SavvyAdmin.com &#187; EVDO</title>
	<atom:link href="http://savvyadmin.com/tag/evdo/feed/" rel="self" type="application/rss+xml" />
	<link>http://savvyadmin.com</link>
	<description>For savvy admins everywhere...</description>
	<lastBuildDate>Fri, 21 Jan 2011 17:53:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Ubuntu Linux + Dell Wireless 5700 CDMA/EVDO Card</title>
		<link>http://savvyadmin.com/ubuntu-dell-5700-evdo/</link>
		<comments>http://savvyadmin.com/ubuntu-dell-5700-evdo/#comments</comments>
		<pubDate>Mon, 04 Jun 2007 06:00:13 +0000</pubDate>
		<dc:creator>gmendoza</dc:creator>
				<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[EVDO]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PPP]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.savvyadmin.com/2007/06/03/ubuntu-dell-5700-evdo/</guid>
		<description><![CDATA[UPDATE (11-04-2008): NetworkManager 0.7 has been introduced with Ubuntu 8.10. This major overhaul includes native support for Mobile Broadband card as shown in the screen-shots below. The great news is that virtually all CDMA cards work right out of the box with no configuration necessary. Thank you, NetworkManager developers! I suggest upgrading to the latest [...]
Related posts:<ol>
<li><a href='http://savvyadmin.com/word-war-vi-in-ubuntu/' rel='bookmark' title='Word War Vi in Ubuntu'>Word War Vi in Ubuntu</a></li>
<li><a href='http://savvyadmin.com/console-framebuffer-in-ubuntu/' rel='bookmark' title='Console Framebuffer in Ubuntu'>Console Framebuffer in Ubuntu</a></li>
<li><a href='http://savvyadmin.com/oracle-database-10g-xe-on-ubuntu/' rel='bookmark' title='Oracle Database 10g XE on Ubuntu'>Oracle Database 10g XE on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE (11-04-2008):</strong> <a href="http://www.gnome.org/projects/NetworkManager/" target="_blank">NetworkManager</a> 0.7 has been introduced with Ubuntu 8.10.  This major overhaul includes native support for Mobile Broadband card as shown in the screen-shots below.  The great news is that virtually all CDMA cards work right out of the box with no configuration necessary.  Thank you, NetworkManager developers!  I suggest upgrading to the latest version of Ubuntu, or use the NetworkManager <a href="https://edge.launchpad.net/~network-manager/+archive" target="_blank">PPA</a> or <a href="http://www.gnome.org/projects/NetworkManager/developers/" target="_blank">SVN</a> to at least upgrade to version 0.7.</p>
<p><img src="http://www.savvyadmin.com/wp-content/uploads/2008/11/mobile-broadband-1.png" alt="" title="mobile-broadband-1" width="314" height="203" class="alignnone size-full wp-image-267" /> <img src="http://www.savvyadmin.com/wp-content/uploads/2008/11/mobile-broadband-connected.png" alt="" title="mobile-broadband-connected" width="310" height="203" class="alignnone size-full wp-image-274" /></p>
<p><strong>ORIGINAL POST:</strong> Great news! The internal Dell Wireless 5700 Mini PCI Express Card for use with CDMA/EVDO networks is very easy to get working with Linux. The following tutorial was written for Ubuntu 7.04 (and works with 7.10 Gutsy), but the procedures are essentially the same for most Linux distributions. Please consult with your distribution documentation to assist with any differences.</p>
<p>Here&#8217;s how to get it going.<span id="more-7"></span>The card is presented to the operating system as a USB device and is used as a dialup modem via the &#8220;usbserial&#8221; kernel module. You load this kernel module with two variables that are specific to your wireless card; the Product and Vendor Identifiers.</p>
<p>You can find these values by listing the USB devices with &#8220;lsusb&#8221;.</p>
<blockquote><p><code>$ lsusb<br />
Bus 005 Device 001: ID 0000:0000<br />
Bus 003 Device 002: ID 413c:8103 Dell Computer Corp. Wireless 350 Bluetooth<br />
Bus 003 Device 001: ID 0000:0000<br />
Bus 004 Device 002: ID 413c:8114 Dell Computer Corp.<br />
Bus 004 Device 001: ID 0000:0000<br />
Bus 002 Device 001: ID 0000:0000<br />
Bus 001 Device 003: ID 046d:08c6 Logitech, Inc.<br />
Bus 001 Device 001: ID 0000:0000</code></p></blockquote>
<p>Although not obvious, the above output shows the 5700 wireless card as being on Bus 004 Device 002. The Vendor ID is 413c, and the Product ID is 8114. You can verify this by running &#8220;sudo lsusb -v | less&#8221; and search through the output for the device details.</p>
<blockquote><p><code>$ sudo lsusb -v | less<br />
Bus 004 Device 002: ID 413c:8114 Dell Computer Corp.<br />
Device Descriptor:<br />
bLength                18<br />
bDescriptorType         1<br />
bcdUSB               1.10<br />
bDeviceClass            0 (Defined at Interface level)<br />
bDeviceSubClass         0<br />
bDeviceProtocol         0<br />
bMaxPacketSize0        64<br />
idVendor           0x413c Dell Computer Corp.<br />
idProduct          0x8114<br />
bcdDevice            0.00<br />
iManufacturer           1 Novatel Wireless Inc.<br />
iProduct                2 Novatel Wireless EXPD CDMA<br />
iSerial                 0<br />
bNumConfigurations      1</code></p></blockquote>
<p>Note:  For a nice graphical view of you USB devices, check out &#8220;usbview&#8221;, which you can install with &#8220;sudo apt-get install usbview&#8221;.  Here&#8217;s a screenshot of usbview in action, showing the specifics of my card:</p>
<p><img src="https://www.savvyadmin.com/wp-content/uploads/2007/06/evdo-card.png" alt="USBView Screenshot" /></p>
<p>Next you need to load the appropriate kernel module with values from above in the following format:</p>
<blockquote><p><code>$ sudo modprobe usbserial vendor=0x413c product=0x8114</code></p></blockquote>
<p>Typically, your card will map itself to &#8220;ttyUSB0&#8243;.  You can check by looking through your kernel logs.</p>
<blockquote><p><code>$ grep tty /var/log/messages<br />
Jun  2 18:10:49 laptop kernel: [   18.920000] usb 4-2: generic converter now attached to ttyUSB0</code></p></blockquote>
<p>You should ensure that your computer loads the usbserial kernel module at bootup by adding the same variables to /etc/modules.</p>
<blockquote><p><code>$ sudo sh -c 'echo usbserial vendor=0x413c product=0x8114 >> /etc/modules'</code></p></blockquote>
<p>Now to actually configure your device for use, simply use your favorite dial-up configuration utility. I prefer &#8220;pppconfig&#8221;, so here&#8217;s the basic steps:</p>
<blockquote><p><code>$ sudo pppconfig</code></p></blockquote>
<blockquote><p>Select &#8220;Create a connection&#8221;<br />
Provider Name: verizon<br />
Select &#8220;Dynamic DNS&#8221;.<br />
Select &#8220;PAP&#8221; as the Authentication method<br />
Username: <a href="mailto:phone_number_here@vzw3g.com">phone_number_here@vzw3g.com</a><br />
Password: anything… &#8220;password&#8221; for example.<br />
Speed: 115200<br />
Select &#8220;Tone&#8221;<br />
Phone Number: #777<br />
Define device as &#8220;ttyUSB0&#8243;</p></blockquote>
<p>I also add the following two lines to /etc/ppp/peers/verizon to prevent annoying automatic disconnections due to a lack of lcp responses.</p>
<blockquote><p><code>$ sudo sh -c 'echo lcp-echo-failure 0 >> /etc/ppp/peers/verizon'<br />
$ sudo sh -c 'echo lcp-echo-interval 0 >> /etc/ppp/peers/verizon'</code></p></blockquote>
<p>My completed /etc/ppp/peers/verizon configuration looks like the following:</p>
<blockquote><p><code># This optionfile was generated by pppconfig 2.3.15.<br />
#<br />
#<br />
hide-password<br />
noauth<br />
connect "/usr/sbin/chat -v -f /etc/chatscripts/verizon"<br />
debug<br />
/dev/ttyUSB0<br />
115200<br />
defaultroute<br />
noipdefault<br />
user "5551112222@vzw3g.com"<br />
remotename verizon<br />
ipparam verizon<br />
usepeerdns<br />
lcp-echo-failure 0<br />
lcp-echo-interval 0</code></p></blockquote>
<p>Add the following lines to your /etc/network/interfaces file:</p>
<blockquote><p><code>iface ppp0 inet ppp<br />
provider verizon</code></p></blockquote>
<p>Restart Network Manager so that it reads the change from the last step.</p>
<blockquote><p><code>$ sudo /etc/dbus-1/event.d/25NetworkManager restart</code></p></blockquote>
<p>By doing so you will be able to connect and disconnect from Network Manager:</p>
<p><img src="https://www.savvyadmin.com/wp-content/uploads/2007/06/nm-verizon.png" alt="Network Manager Verizon EVDO Connection" /></p>
<p>You should receive an IP address within a few seconds, and you&#8217;re ready to surf.  One thing I noticed is that there&#8217;s a lack of notification from Network Manager that your dial-up connection is actually up and running after a successful connection.  The status icon does not change, and the &#8220;Connection information&#8221; menu item remains unavailable.  You can of course use &#8220;ifconfig&#8221; to  display your current IP address and status of the ppp0 interface.</p>
<p>If you look at /var/log/messages, you will also find all the nice pppd connection output.</p>
<p>Related posts:<ol>
<li><a href='http://savvyadmin.com/word-war-vi-in-ubuntu/' rel='bookmark' title='Word War Vi in Ubuntu'>Word War Vi in Ubuntu</a></li>
<li><a href='http://savvyadmin.com/console-framebuffer-in-ubuntu/' rel='bookmark' title='Console Framebuffer in Ubuntu'>Console Framebuffer in Ubuntu</a></li>
<li><a href='http://savvyadmin.com/oracle-database-10g-xe-on-ubuntu/' rel='bookmark' title='Oracle Database 10g XE on Ubuntu'>Oracle Database 10g XE on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://savvyadmin.com/ubuntu-dell-5700-evdo/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
	</channel>
</rss>

