<?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>சுதர்சன் சாந்தியப்பன் &#187; iwl3945</title>
	<atom:link href="http://sudarsun.in/blog/tag/iwl3945/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudarsun.in/blog</link>
	<description>Dream of the Impossible™</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Configuring Wireless LAN of Dell XPS 1530 in Fedora 8</title>
		<link>http://sudarsun.in/blog/2008/07/configuring-wireless-lan-of-dell-xps-1530-in-fedora-8/</link>
		<comments>http://sudarsun.in/blog/2008/07/configuring-wireless-lan-of-dell-xps-1530-in-fedora-8/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 17:02:44 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[1530]]></category>
		<category><![CDATA[dell xps]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[iwl3945]]></category>
		<category><![CDATA[netgear]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wpa_supplicant]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/?p=7</guid>
		<description><![CDATA[Dell XPS 1530 comes with an Intel Pro Wireless 3945ABG Hardware. In fedora 8, by default the device is detected and an appropriate driver (iwl3945) is loaded as well. If the wireless network is not secured, the interface works without any modification. I had configured by ADSL router to have WPA-PSK encryption based security. To [...]]]></description>
			<content:encoded><![CDATA[<p>Dell XPS 1530 comes with an Intel Pro Wireless 3945ABG Hardware.</p>
<p>In fedora 8, by default the device is detected and an appropriate driver (iwl3945) is loaded as well. If the wireless network is not secured, the interface works without any modification.</p>
<p>I had configured by ADSL router to have WPA-PSK encryption based security. To make my laptop work with this secured network, the default network configuration dialog does not suffice. But still, we need to setup something in that dialog as well.</p>
<ol>
<li>Open system-config-network dialog, choose to edit the wlan0 interface.</li>
<li>Select the &#8220;Wireless Settings&#8221; tab.</li>
<li>Set Mode as &#8220;Managed&#8221;</li>
<li>Set Network name (SSID) as &#8220;XYZ&#8221;, where &#8220;XYZ&#8221; is the SSID you had<br />
configured in the router. You may also leave it in &#8220;Auto&#8221; as well.</li>
<li>Leave the other inputs as it is.</li>
</ol>
<p>From the command line, run &#8220;iwconfig&#8221; to see the status of your interface. You may see something like the following:</p>
<p><span style="font-size: x-small;"><span style="font-weight: bold; font-size: 85%;"><span style="font-family: courier new;">wlan0 IEEE 802.11g ESSID:&#8221;NETGEAR&#8221;</span><br />
<span style="font-family: courier new;">Mode:Managed Frequency:2.462 GHz Access Point: Not-Associated</span><br />
<span style="font-family: courier new;">Tx-Power=27 dBm</span><br />
<span style="font-family: courier new;">Retry min limit:7 RTS thr:off Fragment thr=2352 B</span><br />
<span style="font-family: courier new;">Encryption key:off</span><br />
<span style="font-family: courier new;">Link Quality=0 Signal level=0 Noise level=0</span><br />
<span style="font-family: courier new;">Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0</span><br />
<span style="font-family: courier new;">Tx excessive retries:0 Invalid misc:0 Missed beacon:0</span><br />
</span><br />
</span>Note, I have configured my SSID to be &#8220;NETGEAR&#8221;.</p>
<p>Since we have not enabled the security &#8220;thing&#8221;, we are not able to reach the Wireless Access Point. To enable that we need to have the &#8220;<span style="font-weight: bold;">wpa_supplicant</span>&#8221; tool. Using wpa_supplicant, we can bridge the connectivity and security.</p>
<p>First create the wpa configuration file using &#8220;<span style="font-weight: bold;">wpa_passphrase</span>&#8221; command.</p>
<p><span style="font-size: x-small;"><span style="font-weight: bold; font-size: 85%;"><span style="font-family: courier new;">wpa_passphrase </span></span><br />
</span>Ex: <span style="font-weight: bold; font-size: 85%; font-family: courier new;"><span style="font-size: x-small;">wpa_passphrase NETGEAR alphabeta </span></p>
<p></span></p>
<p>This command would generate a file like the following:</p>
<p><span style="font-size: x-small;"><span style="font-weight: bold; font-size: 85%;"><span style="font-family: courier new;">network={</span><br />
<span style="font-family: courier new;">ssid=&#8221;NETGEAR&#8221;</span><br />
<span style="font-family: courier new;">#psk=&#8221;alphabeta&#8221;</span><br />
<span style="font-family: courier new;">psk=d0392dff9de884a7163058cebb41592bf7872decda1c8b79b072359bc5e93cac</span><br />
<span style="font-family: courier new;">}</span></span> <font size="2"> </p>
<p></font></span></p>
<p>Dump this output to <span style="font-weight: bold;">/etc/wpa.conf</span></p>
<p>Now, you have to run wpa_supplicant as:</p>
<p>bash# <span style="font-size: x-small;"><span style="font-weight: bold; font-size: 85%;"><span style="font-family: courier new;">/usr/sbin/wpa_supplicant -Dwext -iwlan0 -c/etc/wpa.conf &amp;</span></span> <font size="2"> </p>
<p></font></span></p>
<p>Note,<br />
I have used the &#8220;wireless generic extension (wext)&#8221; for the driver configuration. You may get some log message like the following:<br />
<span style="font-weight: bold; font-size: 85%; font-family: courier new;"><br />
<span style="font-size: x-small;">Trying to associate with 00:1b:2f:a3:54:f8 (SSID=&#8217;NETGEAR&#8217; freq=2462 MHz)<br />
Associated with 00:1b:2f:a3:54:f8<br />
WPA: Key negotiation completed with 00:1b:2f:a3:54:f8 [PTK=TKIP GTK=TKIP]<br />
CTRL-EVENT-CONNECTED &#8211; Connection to 00:1b:2f:a3:54:f8 completed (auth) [id=0 id_str=]</span></span></p>
<p>At this point you are probably connected to the Wireless Access Point. Try running &#8220;iwconfig&#8221; command. The correct output should be like:</p>
<p><span style="font-size: x-small;"><span style="font-weight: bold; font-size: 85%; font-family: courier new;">wlan0 IEEE 802.11g ESSID:&#8221;NETGEAR&#8221;<br />
Mode:Managed Frequency:2.462 GHz Access Point: 00:1B:2F:A3:54:F8<br />
Bit Rate=54 Mb/s Tx-Power=27 dBm<br />
Retry min limit:7 RTS thr:off Fragment thr=2352 B<br />
Encryption key:5A83-9BBE-BA9F-5C2B-46D1-0FEC-CE66-475F-A44A-DD05-4B16-63F3-3474-0C46-464A-6CF0 [3]<br />
Link Quality=97/100 Signal level=-29 dBm Noise level=-64 dBm<br />
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0<br />
Tx excessive retries:0 Invalid misc:0 Missed beacon:0</span> <font size="2"> </p>
<p></font></span></p>
<p>try running &#8220;/sbin/ifconfig&#8221; to see whether you have the device up with an IP address. If IP address is not assigned, run</p>
<p><span style="font-size: 85%; font-family: courier new;"><span style="font-size: x-small;"><span style="font-weight: bold;">/sbin/service network restart </span><br />
<span style="font-weight: bold;">or</span><br />
<span style="font-weight: bold;">/sbin/dhclient wlan0</span><br />
<span style="font-weight: bold;">or</span><br />
<span style="font-weight: bold;">/sbin/ifup wlan0</span></span></span></p>
<p>You may probably see a &#8220;wmaster0&#8243; interface as well, which may be ignored.</p>
<p>Most likely you are done by now.<br />
Happy wireless networking.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2008/07/configuring-wireless-lan-of-dell-xps-1530-in-fedora-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  sudarsun.in/blog/tag/iwl3945/feed/ ) in 0.29965 seconds, on Feb 7th, 2012 at 5:33 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 7th, 2012 at 6:33 pm UTC -->
