<?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: How To Troubleshoot Wireless Network Connection in Ubuntu</title>
	<atom:link href="http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html</link>
	<description>Ubuntu Linux Tutorials,Howtos,Tips &#38; News &#124; Oneiric,Natty,Maverick</description>
	<lastBuildDate>Mon, 06 Feb 2012 15:40:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jack</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-110816</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Sat, 08 Oct 2011 14:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-110816</guid>
		<description>I remove STA wireless driver, and i can connect internet. :)</description>
		<content:encoded><![CDATA[<p>I remove STA wireless driver, and i can connect internet. <img src='http://www.ubuntugeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ihaq2</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-110366</link>
		<dc:creator>ihaq2</dc:creator>
		<pubDate>Sun, 02 Oct 2011 11:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-110366</guid>
		<description>ok, i installed last version of ubuntu yesterday and wireless worked ok. today it doesn;t work at all - the system doesn&#039;t find any connections and there are at least 10 around. when i type lshw -C network it returns PCI (sysfs) What should I do to wifi again?</description>
		<content:encoded><![CDATA[<p>ok, i installed last version of ubuntu yesterday and wireless worked ok. today it doesn;t work at all - the system doesn&#8217;t find any connections and there are at least 10 around. when i type lshw -C network it returns PCI (sysfs) What should I do to wifi again?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Calle</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-88374</link>
		<dc:creator>Chris Calle</dc:creator>
		<pubDate>Sat, 15 Jan 2011 01:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-88374</guid>
		<description>Assuming you drivers and hardware are working...

--This should make life easier.
--Type this:

$sudo nano /usr/bin/staticweb.sh

--ENTER LINES w/ appropriate info:

sudo ifconfig [interface] down
sudo dhclient -r [interface]
sudo ifconfig [interface] [static IP] netmask 255.255.255.0 up
sudo route add default gw 192.168.1.1
sudo iwconfig [interface] essid “ESSID_IN_QUOTES”
sudo iwconfig [interface] mode Managed
sleep 10
ping -c 3 google.com
ifconfig [interface]

--SAVE FILE and EXIT EDITOR
--Make sure the file is in /usr/bin/

$sudo chmod a+x /usr/bin/staticweb.sh

$cd ~

--LOCATE AND EDIT ALIAS FILE:

$ls -a

--EITHER &#039;.bashrc&#039; or &#039;.bash_aliases&#039; IS THE FOLDER

$sudo nano .bashrc

--LOOK FOR ALIASES: example: alias NAME=&#039;command&#039;

--ADD YOUR ALIAS: alias staticweb=&#039;staticweb.sh&#039;

--SAVE AND EXIT EDITOR

$. .bashrc 

DONE!

With all that you should be able to just type &#039;staticweb&#039; (without the quotes) into the command line and it will trigger the static-ip shell script you just wrote and do all the work in one single command.

The end of the script will ping google.com and display the status of your network  just to make sure you are connected to the web and that you IP address is what it should be. 

If your network connection is local only, just change the ping command from &#039;google.com&#039; to your gateway (192.168.1.1 in most cases)</description>
		<content:encoded><![CDATA[<p>Assuming you drivers and hardware are working&#8230;</p>
<p>--This should make life easier.<br />
--Type this:</p>
<p>$sudo nano /usr/bin/staticweb.sh</p>
<p>--ENTER LINES w/ appropriate info:</p>
<p>sudo ifconfig [interface] down<br />
sudo dhclient -r [interface]<br />
sudo ifconfig [interface] [static IP] netmask 255.255.255.0 up<br />
sudo route add default gw 192.168.1.1<br />
sudo iwconfig [interface] essid “ESSID_IN_QUOTES”<br />
sudo iwconfig [interface] mode Managed<br />
sleep 10<br />
ping -c 3 google.com<br />
ifconfig [interface]</p>
<p>--SAVE FILE and EXIT EDITOR<br />
--Make sure the file is in /usr/bin/</p>
<p>$sudo chmod a+x /usr/bin/staticweb.sh</p>
<p>$cd ~</p>
<p>--LOCATE AND EDIT ALIAS FILE:</p>
<p>$ls -a</p>
<p>--EITHER &#8216;.bashrc&#8217; or &#8216;.bash_aliases&#8217; IS THE FOLDER</p>
<p>$sudo nano .bashrc</p>
<p>--LOOK FOR ALIASES: example: alias NAME=&#8217;command&#8217;</p>
<p>--ADD YOUR ALIAS: alias staticweb=&#8217;staticweb.sh&#8217;</p>
<p>--SAVE AND EXIT EDITOR</p>
<p>$. .bashrc </p>
<p>DONE!</p>
<p>With all that you should be able to just type &#8216;staticweb&#8217; (without the quotes) into the command line and it will trigger the static-ip shell script you just wrote and do all the work in one single command.</p>
<p>The end of the script will ping google.com and display the status of your network  just to make sure you are connected to the web and that you IP address is what it should be. </p>
<p>If your network connection is local only, just change the ping command from &#8216;google.com&#8217; to your gateway (192.168.1.1 in most cases)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Calle</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-88366</link>
		<dc:creator>Chris Calle</dc:creator>
		<pubDate>Sat, 15 Jan 2011 01:26:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-88366</guid>
		<description>*FIX* For setting a STATIC IP:

DO NOT include the &#039;sudo dhclient [interface]&#039; command located at the end because it will automatically issue you an IP... Not the one you are trying to set. Hope this helps</description>
		<content:encoded><![CDATA[<p>*FIX* For setting a STATIC IP:</p>
<p>DO NOT include the &#8216;sudo dhclient [interface]&#8216; command located at the end because it will automatically issue you an IP&#8230; Not the one you are trying to set. Hope this helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-79739</link>
		<dc:creator>William</dc:creator>
		<pubDate>Wed, 15 Dec 2010 03:38:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-79739</guid>
		<description>Thank you sooo much... this saved me!</description>
		<content:encoded><![CDATA[<p>Thank you sooo much&#8230; this saved me!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelso</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-42498</link>
		<dc:creator>Kelso</dc:creator>
		<pubDate>Thu, 05 Aug 2010 19:33:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-42498</guid>
		<description>Thank you! This saved me so much time... also avoided looking like an idiot after reformatting the wifes computer to ubuntu :)</description>
		<content:encoded><![CDATA[<p>Thank you! This saved me so much time&#8230; also avoided looking like an idiot after reformatting the wifes computer to ubuntu <img src='http://www.ubuntugeek.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 1nS3cur3-I7</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-42469</link>
		<dc:creator>1nS3cur3-I7</dc:creator>
		<pubDate>Thu, 05 Aug 2010 14:02:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-42469</guid>
		<description>Ashwin Shah ...

You may try doing that one time to configure from GUI, but always logging in as root is a security and a stability risk. It tends to slowly screw up xserver, and allows all kinds of other fun nasty things to happen. As a security consultant, I had to say that this is horrible advice without clarification.</description>
		<content:encoded><![CDATA[<p>Ashwin Shah &#8230;</p>
<p>You may try doing that one time to configure from GUI, but always logging in as root is a security and a stability risk. It tends to slowly screw up xserver, and allows all kinds of other fun nasty things to happen. As a security consultant, I had to say that this is horrible advice without clarification.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashwin Shah</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-2#comment-41253</link>
		<dc:creator>Ashwin Shah</dc:creator>
		<pubDate>Fri, 23 Jul 2010 23:22:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-41253</guid>
		<description>If the machine does not connect wirelessly, you need to perform a network service restart and make sure that you are logged in via root</description>
		<content:encoded><![CDATA[<p>If the machine does not connect wirelessly, you need to perform a network service restart and make sure that you are logged in via root</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: EC White</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-30438</link>
		<dc:creator>EC White</dc:creator>
		<pubDate>Thu, 20 May 2010 16:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-30438</guid>
		<description>I just installed lucid lynks on our spare Compaq Presario V5102NR laptop. How can I get it to recognize the wireless card? This is ridiculous having to boot up in Windows then restart, boot into Ubuntu to get the wireless card turned on. Any ideas  or locations where I can find how to do this. Help</description>
		<content:encoded><![CDATA[<p>I just installed lucid lynks on our spare Compaq Presario V5102NR laptop. How can I get it to recognize the wireless card? This is ridiculous having to boot up in Windows then restart, boot into Ubuntu to get the wireless card turned on. Any ideas  or locations where I can find how to do this. Help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zed Zee</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-27507</link>
		<dc:creator>Zed Zee</dc:creator>
		<pubDate>Mon, 12 Apr 2010 21:26:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-27507</guid>
		<description>I&#039;m getting the same problem as &quot;bill&quot;:

&quot;No DHCPOFFERS received.
No working leases in persistent database - sleeping.&quot;

This is after carrying out the instructions in the Unencrypted Connection section.

I have a Dell Inspiron 6000 with Ubuntu 9.10 with the latest updates, through Update Manager.

I just bought a brand new NetGear WNR2000 wireless router and I&#039;ve not really made many changes to the config - my Windows XP ThinkPad picked it up like a shiny coin on the ground that you can&#039;t miss - Ubuntu didn&#039;t.

I&#039;m also at the point of giving up on Linux and going back to Windows XP.</description>
		<content:encoded><![CDATA[<p>I&#8217;m getting the same problem as &#8220;bill&#8221;:</p>
<p>&#8220;No DHCPOFFERS received.<br />
No working leases in persistent database - sleeping.&#8221;</p>
<p>This is after carrying out the instructions in the Unencrypted Connection section.</p>
<p>I have a Dell Inspiron 6000 with Ubuntu 9.10 with the latest updates, through Update Manager.</p>
<p>I just bought a brand new NetGear WNR2000 wireless router and I&#8217;ve not really made many changes to the config - my Windows XP ThinkPad picked it up like a shiny coin on the ground that you can&#8217;t miss - Ubuntu didn&#8217;t.</p>
<p>I&#8217;m also at the point of giving up on Linux and going back to Windows XP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-23693</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Mon, 01 Mar 2010 20:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-23693</guid>
		<description>No DHCPOFFERS received.
No working leases in persistent database - sleeping.
what can i do now?</description>
		<content:encoded><![CDATA[<p>No DHCPOFFERS received.<br />
No working leases in persistent database - sleeping.<br />
what can i do now?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: swetha</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-23646</link>
		<dc:creator>swetha</dc:creator>
		<pubDate>Mon, 01 Mar 2010 04:58:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-23646</guid>
		<description>my wired network worked straight away but wireless is not detected.it is showing no network connection</description>
		<content:encoded><![CDATA[<p>my wired network worked straight away but wireless is not detected.it is showing no network connection</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ruudspark</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-23214</link>
		<dc:creator>Ruudspark</dc:creator>
		<pubDate>Sun, 21 Feb 2010 13:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-23214</guid>
		<description>Every now and then I have a dabble with Ubuntu, in the hope that it has evolved into a user-friendly, workable system.

I installed it from within Windows XP with no problems, and like the look and feel of the GUI. Trouble is, can&#039;t get the wireless to work on my HP6735s laptop. 

I been building and configuring pc&#039;s since MS-DOS 5 era and consider myself quite competant. However after some time trawling the web looking for solutions, decided (much like &#039;Werdermouth&#039; in the above post) just cant be bothered.

If this is to be a serious alternative, basic requirements like internet connectivity must be made much simpler. A good deal of people find MS Windows family operating systems daunting, so they don&#039;t have a prayer with Ubuntu.

That said keep up the good work, as it is a nice interface and once made more user friendly, I would gladly use it.

See you in a few months!</description>
		<content:encoded><![CDATA[<p>Every now and then I have a dabble with Ubuntu, in the hope that it has evolved into a user-friendly, workable system.</p>
<p>I installed it from within Windows XP with no problems, and like the look and feel of the GUI. Trouble is, can&#8217;t get the wireless to work on my HP6735s laptop. </p>
<p>I been building and configuring pc&#8217;s since MS-DOS 5 era and consider myself quite competant. However after some time trawling the web looking for solutions, decided (much like &#8216;Werdermouth&#8217; in the above post) just cant be bothered.</p>
<p>If this is to be a serious alternative, basic requirements like internet connectivity must be made much simpler. A good deal of people find MS Windows family operating systems daunting, so they don&#8217;t have a prayer with Ubuntu.</p>
<p>That said keep up the good work, as it is a nice interface and once made more user friendly, I would gladly use it.</p>
<p>See you in a few months!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sister Sue</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-22531</link>
		<dc:creator>Sister Sue</dc:creator>
		<pubDate>Thu, 11 Feb 2010 21:33:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-22531</guid>
		<description>I have UBuntu 8.04 on acer emachines. How do I configure for wireless e-mail?</description>
		<content:encoded><![CDATA[<p>I have UBuntu 8.04 on acer emachines. How do I configure for wireless e-mail?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandyman</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-19383</link>
		<dc:creator>sandyman</dc:creator>
		<pubDate>Mon, 21 Dec 2009 11:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-19383</guid>
		<description>I using UBUNTU 9.10 with a GM-M61PME-S2 (64bit) motherboard with a NVIDIA GeForce 6100/nForce chipset..
I downloaded NVIDIA driver Version 173 using (Hardware Drivers icon) put in the necessary password etc and my wireless connection works with
no trouble what so ever.. The wired connection worked straight away without downloading any drivers..
I hope this helps somebody, if the above do not make
sense I am sorry but I am a newby to linux..</description>
		<content:encoded><![CDATA[<p>I using UBUNTU 9.10 with a GM-M61PME-S2 (64bit) motherboard with a NVIDIA GeForce 6100/nForce chipset..<br />
I downloaded NVIDIA driver Version 173 using (Hardware Drivers icon) put in the necessary password etc and my wireless connection works with<br />
no trouble what so ever.. The wired connection worked straight away without downloading any drivers..<br />
I hope this helps somebody, if the above do not make<br />
sense I am sorry but I am a newby to linux..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jon</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-19350</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Sun, 20 Dec 2009 22:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-19350</guid>
		<description>I am new to linux also, however I found that Ubuntu 9.10 has been the easiest linux OS to get to work with a wired and wireless network. Other features are also quite good. Sometimes it takes a little research to get things working the way you want. I would not give up too quickly.</description>
		<content:encoded><![CDATA[<p>I am new to linux also, however I found that Ubuntu 9.10 has been the easiest linux OS to get to work with a wired and wireless network. Other features are also quite good. Sometimes it takes a little research to get things working the way you want. I would not give up too quickly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Werdermouth</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-19341</link>
		<dc:creator>Werdermouth</dc:creator>
		<pubDate>Sun, 20 Dec 2009 18:03:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-19341</guid>
		<description>I had been contemplating switching to Linux for a quite a while and finally made the leap a three days ago.  Unfortunately, like many others i&#039;ve been trying to get the wireless with WEP to work and have spent many hours scouting forums and following suggestions but absolutely no success.

It&#039;s clear to me as I&#039;m not alone there is a serious problem with Ubuntu 9.10 as it simply doesn&#039;t work. I&#039;ve had enough of wasting my time and going round in circles - everything works fine with XP and it&#039;s also so much more user-friendly compared to the hoops you have to jump through to get Ubuntu working properly - it also has problems restarting after hibernating and always needs to be powered off and on.

Perhaps I&#039;ll try again sometime in the future when Linux has got it&#039;s act together as there is little point in using it if you can&#039;t have basic wireless access at home. Linux is a nice concept but it&#039;s not for people who don&#039;t have hours and hours to devote to its cause.

Also, I&#039;m quite computer literate but how many months of study do you need to understand the jargon just to get your laptop functioning using linux - is it always this obtuse and complicated? I think I&#039;ll be sticking to Microsoft for a while longer as at least things work more or less smoothly.</description>
		<content:encoded><![CDATA[<p>I had been contemplating switching to Linux for a quite a while and finally made the leap a three days ago.  Unfortunately, like many others i&#8217;ve been trying to get the wireless with WEP to work and have spent many hours scouting forums and following suggestions but absolutely no success.</p>
<p>It&#8217;s clear to me as I&#8217;m not alone there is a serious problem with Ubuntu 9.10 as it simply doesn&#8217;t work. I&#8217;ve had enough of wasting my time and going round in circles - everything works fine with XP and it&#8217;s also so much more user-friendly compared to the hoops you have to jump through to get Ubuntu working properly - it also has problems restarting after hibernating and always needs to be powered off and on.</p>
<p>Perhaps I&#8217;ll try again sometime in the future when Linux has got it&#8217;s act together as there is little point in using it if you can&#8217;t have basic wireless access at home. Linux is a nice concept but it&#8217;s not for people who don&#8217;t have hours and hours to devote to its cause.</p>
<p>Also, I&#8217;m quite computer literate but how many months of study do you need to understand the jargon just to get your laptop functioning using linux - is it always this obtuse and complicated? I think I&#8217;ll be sticking to Microsoft for a while longer as at least things work more or less smoothly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-17768</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Tue, 01 Dec 2009 13:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-17768</guid>
		<description>I am new to Linux, I am running UBUNTU 9.10 with
a BELKIN N Wireless Router (FD8633ea4A P75554ea-A)
I have tried everything you have published, but I
have failed to make a WIRELESS connection..
Everything works fine with a WIRED connection.
I want to move my router to a better position,
but not being able to connect wirelessly it cant
be done.. Any help you can give me will be much
appreciated.
My wireless connector is a NETGEAR WG111v3 USB 2.0
wireless-G
Thankyou
Frank Jones</description>
		<content:encoded><![CDATA[<p>I am new to Linux, I am running UBUNTU 9.10 with<br />
a BELKIN N Wireless Router (FD8633ea4A P75554ea-A)<br />
I have tried everything you have published, but I<br />
have failed to make a WIRELESS connection..<br />
Everything works fine with a WIRED connection.<br />
I want to move my router to a better position,<br />
but not being able to connect wirelessly it cant<br />
be done.. Any help you can give me will be much<br />
appreciated.<br />
My wireless connector is a NETGEAR WG111v3 USB 2.0<br />
wireless-G<br />
Thankyou<br />
Frank Jones</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: larrythelabrat</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-16242</link>
		<dc:creator>larrythelabrat</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:32:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-16242</guid>
		<description>Thanks for putting up this guide, but it didn&#039;t work for me. I upgraded from 9.04 to 9.10 and lost my functioning wireless connection (IBM thinkpad R51), I then did a clean install of 9.10 and the wireless still wouldn&#039;t work.

I went through your steps to try to diagnose the problem, and everything froze after 
sudo iwconfig [interface] key HEX_KEY
I&#039;ve been trying deal with this issue for days (have tried lots of people&#039;s suggestions in the forums). At this point I&#039;m going to try to go back to 9.04. Just a heads ups that you&#039;re probably going to see a lot more traffic on this until 9.10 is smoother, seems to be a problem for lots of folks.</description>
		<content:encoded><![CDATA[<p>Thanks for putting up this guide, but it didn&#8217;t work for me. I upgraded from 9.04 to 9.10 and lost my functioning wireless connection (IBM thinkpad R51), I then did a clean install of 9.10 and the wireless still wouldn&#8217;t work.</p>
<p>I went through your steps to try to diagnose the problem, and everything froze after<br />
sudo iwconfig [interface] key HEX_KEY<br />
I&#8217;ve been trying deal with this issue for days (have tried lots of people&#8217;s suggestions in the forums). At this point I&#8217;m going to try to go back to 9.04. Just a heads ups that you&#8217;re probably going to see a lot more traffic on this until 9.10 is smoother, seems to be a problem for lots of folks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Proximity</title>
		<link>http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html/comment-page-1#comment-13552</link>
		<dc:creator>Proximity</dc:creator>
		<pubDate>Sun, 27 Sep 2009 18:13:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ubuntugeek.com/how-to-troubleshoot-wireless-network-connection-in-ubuntu.html#comment-13552</guid>
		<description>Solution

If You have any problem to connect to AP, try to add this command in the above commands after iwconfig [interface] essid “ESSID_IN_QUOTES”:

iwconfig [interface] ap AP_MAC_address

To get AP_MAC_address:

iwlist [interface] scan

In the list find your AP and enter to iwconfig its MAC address in the following format: xx:xx:xx:xx:xx:xx

It helped me and it works!!!
Greetings from Poland ;-)</description>
		<content:encoded><![CDATA[<p>Solution</p>
<p>If You have any problem to connect to AP, try to add this command in the above commands after iwconfig [interface] essid “ESSID_IN_QUOTES”:</p>
<p>iwconfig [interface] ap AP_MAC_address</p>
<p>To get AP_MAC_address:</p>
<p>iwlist [interface] scan</p>
<p>In the list find your AP and enter to iwconfig its MAC address in the following format: xx:xx:xx:xx:xx:xx</p>
<p>It helped me and it works!!!<br />
Greetings from Poland <img src='http://www.ubuntugeek.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

