oskar.norin
Posts: 1
Joined: Tue Sep 11, 2012 8:59 pm

Support TP-Link adapter TL-WN725N without powered USB hub

Sun Dec 16, 2012 9:47 pm

Hi
Have search the net and this forum but can not find any definitive answer if TP Link adapter TL-WN725N will work without a powered hub?
Planing to buy one since it is so cheap but not sure if it will work. Ebay and other places sells this together with PI without any hub so that should indicate that is works but I like to get this verified before I buy one.

Regars
Oskar Norin

x-magic
Posts: 7
Joined: Mon Sep 17, 2012 11:10 am

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Wed Dec 19, 2012 3:18 pm

I have to say this is wired. I uses a EDUP adapter with RTL8188 just like WN725N but no powered hub required.

You may mod your board with 2 leads from microUSB input directly to the internal USB hub. :D But I am sure it's not something good...

nikasio
Posts: 7
Joined: Wed Dec 19, 2012 6:06 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Wed Dec 26, 2012 3:22 am

Hi Oskar,
Hope is not too late, I just bought one of those last week and it's working perfectly without using a hub... just plug&play.
Tested in Raspian wheezy | Raspberry Pi model B.

GeoffW123
Posts: 11
Joined: Wed Dec 26, 2012 5:50 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Thu Dec 27, 2012 1:44 pm

Hi nikasio

Arrggggggggghhhhh. I have just spent about 5 hours over Xmas trying to get my new PI and TL-WN725N working together, but I cant get it to work (DHCP cant get an IP address offer)
See here http://www.raspberrypi.org/phpBB3/viewt ... 28&t=26975

Can you explain in detail what you did to get it to work please ? Thanks for your time

Regards Geoff

nikasio
Posts: 7
Joined: Wed Dec 19, 2012 6:06 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Thu Dec 27, 2012 2:20 pm

GeoffW123 wrote:Hi nikasio

Arrggggggggghhhhh. I have just spent about 5 hours over Xmas trying to get my new PI and TL-WN725N working together, but I cant get it to work (DHCP cant get an IP address offer)
See here http://www.raspberrypi.org/phpBB3/viewt ... 28&t=26975

Can you explain in detail what you did to get it to work please ? Thanks for your time

Regards Geoff
Hi Geoff.
Here are the steps:
1. edit /etc/wpa_supplicant/wpa_supplicant.conf like this:

Code: Select all

ctrl_interface=/var/run/wpa_supplicant
ctrl_interface_group=root
network={
        ssid="homenet"
        key_mgmt=WPA-PSK
        psk="MyPassword"
}

* I don't remember exactly the ctrl_interface_group I used, check if you have one already defined in the wpa_supplicant.conf and use it.
* I think in your case (WEP) you should use "key_mgmt=NONE" and "wep_key0" instead of "psk"
2. To test ir manually, you can do

Code: Select all

wpa_supplicant -Dwext -iwlan0 -c/etc/wpa_supplicant/wpa_supplicant.conf
3. Finally, if you want to connect on booting, edit /etc/network/interfaces and add

Code: Select all

auto wlan0
iface wlan0 inet dhcp
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
4. Get new IP

Code: Select all

dhclient -r
dhclient wlan0

Brewgod23
Posts: 8
Joined: Wed Oct 31, 2012 5:40 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Thu Dec 27, 2012 8:22 pm

If it is plug and play why do I need to modify the config files?

nikasio
Posts: 7
Joined: Wed Dec 19, 2012 6:06 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Thu Dec 27, 2012 9:42 pm

Brewgod23 wrote:If it is plug and play why do I need to modify the config files?
It means that you dont need to install any driver ... its automagically detected but it cant read your mind. Thr wifi adapter doesnt know to wich network you want to connect or whats your password.
you can configure it graphicaly but in the back ... you are editing a file.
I prefered the command line.

GeoffW123
Posts: 11
Joined: Wed Dec 26, 2012 5:50 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Fri Dec 28, 2012 1:42 am

Hiya

Thanks for the prompt and detailed reply. That would help greatly apart from one snag, I am using a wifi network with WEP not WPA. I dont know how to change that config setup to make it work with WEP not WPA ?

would anyone be able to answer that question please ?

Thanks for any help

Regards Geoff

nikasio
Posts: 7
Joined: Wed Dec 19, 2012 6:06 pm

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Fri Dec 28, 2012 3:13 am

did you try configure wpa_supplicant to use WEP?
Something like:

network={
ssid="static-wep-test"
key_mgmt=NONE
wep_key0="abcde"
wep_key1=0102030405
wep_key2="1234567890123"
wep_tx_keyidx=0
priority=5
}

check here for more configurations: http://www.lsi.upc.edu/lclsi/Manuales/w ... icant.conf

User avatar
diereinegier
Posts: 166
Joined: Sun Dec 30, 2012 5:45 pm
Location: Bonn, Germany
Contact: Website

Re: Support TP-Link adapter TL-WN725N without powered USB hu

Tue Jan 01, 2013 4:43 pm

Why not login as user pi and use the WiFi-Icon on the desktop?
Download my repositories at https://github.com/GeorgBisseling

Return to “Advanced users”