
Originally Posted by
Twinkie
How can I reach higher speeds? The USB adapter is a Rosewill RNX-EasyN1, rated at up to 150 mbps. It is connecting to a Linksys WRT160Nv3. It is on a N/G network setting.
i like wlan stuff.. 
your USB adapter (150Mbps) may limit the performance of your NIC (600Mbps?), but i'm not sure on that..
http://en.wikipedia.org/wiki/IEEE_802.11n
but you can tune your WiFi:
try another (less or unused) channel (there are only a few non-overlapping channels):
http://www.radio-electronics.com/inf...-bandwidth.php
if there are a lot of wireless networks in your neighborhood switch to another channel, and adjust fragmentation
http://www.wi-fiplanet.com/tutorials...le.php/1468331
linux:
Code:
frag[mentation_threshold]
Fragmentation allow to split a IP packet in a burst of smaller
fragments transmitted on the medium. In most cases this adds overhead, but in very noisy environment this reduce the error penalty. This parameter set the maximum fragment size, a value equal to the maximum packet size disable the scheme. You may also set this parameter to auto, fixed or off.
Examples :
iwconfig eth0 frag 512
iwconfig eth0 frag off
if you have an rather good connection quality, set JUMBO frames (if supported):
http://en.wikipedia.org/wiki/Jumbo_Frames
;)