You are not logged in.

#1 2012-08-05 23:21:36

Jiri
Member
Registered: 2010-11-19
Posts: 6

Unable to get wireless up and running with TP-Link TL-WN722N.

It's my understanding that this wireless adapter was having issues with the core kernel, so I tried with the LTS kernel and I am having the same issues. It does not seem to be working with DHCP.

I can log in, type "iwconfig wlan0 essid "myessid"" as root and the adapter will gain a blinking link light. Looking at the interface with iwconfig, I can also see the frequency, link quality, signal level and the like. However, trying to use dhcpcd to assign an IP address results in the following:

wlan0: sending IPv6 Router Solicitation
wlan0: broadcasting for a lease
eth0: waiting for carrier
wlan0: Router Advertisement from fe80::22aa:4bff:fece:d28
wlan0: fe80::22aa:4bff:fece:d28: expired Router Advertisement
wlan0: did not fork due to absent RDNSS option in the RA
wlan0: Router Advertisement from fe80::22aa:4bff:fece:d28
wlan0: fe80::22aa:4bff:fece:d28: expired Router Advertisement
wlan0: did not fork due to absent RDNSS option in the RA
timed out

After a time, it loses the information in iwconfig and I lose the link light. I have tried setting the device to promiscuous mode and that has not resolved the issue.

My wireless is working 100% in Windows, so I do not believe that it is an issue with the device itself. If it's of any use, my router is a Linksys E1200.

Please let me know if any additional information is needed to troubleshoot, and thank you all for your time. This is a fresh install.

Last edited by Jiri (2012-08-05 23:22:58)

Offline

#2 2012-08-06 00:19:55

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,693

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

After the first iwconfig; the one where you set the essid, but before the dhcpcd, try a iwconfig with no parameters. check the output of that command and ensure that it associates with your router, and that it knows the MAC address of that router.  dhcpcd is pointless until you are truly associated.

Also, the technique you are using will only work for an open router.  If it is WEP, you also need to provide a key.  If is WPA/WPA2, you are completely on the wrong track; You need wpa_supplicant.

If you can, please post the output of sudo iwlist scan and of ifconfig when you think you are associated and ready to run dhcpcd.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#3 2012-08-06 00:55:50

Jiri
Member
Registered: 2010-11-19
Posts: 6

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

It is an open router, and I believe that it is associated properly with my router. Here are the outputs of the commands you requested:

sudo iwlist scan (eth0/lo showed no wireless extensions):

wlan0     Scan completed :
          Cell 01 - Address: 20:AA:4B:CE:0D:2A
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=50/70  Signal level=-60 dBm 
                    Encryption key:off
                    ESSID:"olivegarden"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 18 Mb/s
                              24 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 9 Mb/s; 12 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000000012a66a183
                    Extra: Last beacon: 316ms ago
                    IE: Unknown: 000B6F6C69766567617264656E
                    IE: Unknown: 010882848B962430486C
                    IE: Unknown: 030106
                    IE: Unknown: 2A0104
                    IE: Unknown: 2F0104
                    IE: Unknown: 32040C121860
                    IE: Unknown: 2D1A7C181BFFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1606080400000000000000000000000000000000000000
                    IE: Unknown: DD760050F204104A0001101044000102103B000103104700100ADD217C46784EC638A39A8799FEF10E102100074C696E6B7379731023000545313230301024000776322E302E30321042000234321054000800060050F2040001101100054531323030100800022688103C0001011049000600372A000120
                    IE: Unknown: DD090010180204F02C0000
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00

ifconfig

eth0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500  metric 1
        ether bc:5f:f4:2b:9f:26  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 16436  metric 1
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 0  (Local Loopback)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500  metric 1
        inet6 fd68:a536:9584:0:f6ec:38ff:fe84:58d7  prefixlen 64  scopeid 0x0<global>
        inet6 fe80::f6ec:38ff:fe84:58d7  prefixlen 64  scopeid 0x20<link>
        ether f4:ec:38:84:58:d7  txqueuelen 1000  (Ethernet)
        RX packets 99  bytes 28855 (28.1 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 40  bytes 8425 (8.2 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

Thank you for all of your help.

Offline

#4 2012-08-06 01:12:03

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,693

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

Sorry, I wanted the output of iwconfig  Not the ifconfig  I had actually asked for. 

But, It appears that things are working, so we should have this solved soon (Assuming you are trying to connect to olivegarden)  [BTW, why am a craving soup, salad and breadsticks, but I digress...] 
That router is, indeed open.


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#5 2012-08-06 01:24:50

Jiri
Member
Registered: 2010-11-19
Posts: 6

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

It's all about the Olive Garden.

Results attached:

iwconfig

wlan0     IEEE 802.11bgn  ESSID:"olivegarden" 
          Mode:Managed  Frequency:2.437 GHz  Access Point: 20:AA:4B:CE:0D:2A   
          Bit Rate=72.2 Mb/s   Tx-Power=20 dBm   
          Retry  long limit:7   RTS thr:off   Fragment thr:off
          Encryption key:off
          Power Management:off
          Link Quality=57/70  Signal level=-53 dBm 
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:8   Missed beacon:0

Offline

#6 2012-08-06 01:36:42

Strike0
Member
From: Germany
Registered: 2011-09-05
Posts: 1,491

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

Do you want to use IPv6 and is the router setup for it?
I am asking since all your output only shows IPv6 stuff.

Offline

#7 2012-08-06 01:41:24

ewaller
Administrator
From: Pasadena, CA
Registered: 2009-07-13
Posts: 20,693

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

No doubt about it.  You are associated with that AP.  The meat is right there where it says Access Point: 20:AA:4B:CE:0D:2A

Based upon some searches, this looks like an IPv6 issue.  Can you try dhclient instead of dhcpcd ??


Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way

Offline

#8 2012-08-06 02:08:16

stevepa
Member
From: Texas USA
Registered: 2012-02-12
Posts: 113

Re: Unable to get wireless up and running with TP-Link TL-WN722N.

Jiri

I was able to get your device to work against WPA but not against an open connection.

Details here FWIW: https://bbs.archlinux.org/viewtopic.php … 4#p1126674

Good luck
Steve.


Arch - LVM - ext4 - gnome (T60p 14.1 1400p  x86_64), (T60 15 flexview 1400p i686)

Offline

Board footer

Powered by FluxBB