[SOLVED] Troubleshooting slow wireless [ath9k/samsung r540 laptop]

I'm working to resolve an issue I've been experiencing on my laptop. My wireless internet is unacceptably slow- here are some test results via speedtest.net-
[arch/kde/konqueror]:
1. ping: 19 ms / download speed: 2.22 mbps / upload speed: 0.18 mbps
2. ping: 45 ms / download speed: 0.59 mbps / upload speed: 0.39 mbps
3. ping: 40 ms / download speed: 3.07 mbps / upload speed: 0.96 mbps
4. ping: 38 ms / download speed: 1.01 mbps / upload speed: 0.48 mbps
5. ping: 40 ms / download speed: 3.07 mbps / upload speed: 0.93 mbps
vs. this, on a four year old spare laptop running windows vista-
[spare laptop/windows vista/firefox]
1. ping: 17 ms / download speed: 11.41 mbps / upload speed: 0.84 mbps
2. ping: 19 ms / download speed: 10.61 mbps / upload speed: 0.85 mbps
3. ping: 18 ms / download speed: 12.44 mbps / upload speed: 0.82 mbps
4. ping: 18 ms / download speed: 9.94 mbps / upload speed: 0.82 mbps
5. ping: 20 ms / download speed: 10.14 mbps / upload speed: 0.85 mbps
Here is a link to my discussion of the issue on reddit.
Anyway, are there any further troubleshooting activities one would recommend? I'd be glad to work along with someone to figure this thing out!
[EDIT] It was a reception problem. Thanks for the input!
Last edited by dxtrpn (2012-01-26 23:21:10)

Hey, thanks for the tip!
I tried adding the bit to modprobe.d, but no results. I believe the issue is with encryption, and this is why:
Until recently, I'd used WEP, but had to change it to WAP2 . I noticed issues shortly afterward, and just today, I fiddled around some more. Unencrypted download speed came in around 17-20 mpbs, WEP was 9-13. But, somewhat unfortunately, when I switched back to WAP2 to confirm the issue, I connected at about the same speed as the other encryptions. So it seems to be faster now, but I can't say why.
I suppose another explanation would be that changing the type of encryption reset something that needed resetting with my router.
Any input is welcome.
Here is this-
# iwconfig wlan0
wlan0 IEEE 802.11bgn ESSID:"onliner"
Mode:Managed Frequency:2.417 GHz Access Point: C4:3D:C7:92:07:2C
Bit Rate=135 Mb/s Tx-Power=14 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Encryption key:off
Power Management:on
Link Quality=70/70 Signal level=-38 dBm
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:24 Invalid misc:2792 Missed beacon:0
So, what about this is wrong?
Last edited by dxtrpn (2012-01-25 03:05:47)

Similar Messages

  • Has anybody solved the slow wireless connections speeds of the new Imacs

    I have just purchased the new imac...and was made aware of the disastrous connections speeds using wireless.. Does anybody know if apple have come up with a solution...or are they just not dealing with the problem?

    I am a brand new Mac user with a new 24 inch iMac purchase. Macs are supposed to be hassle free right? Right. No question I was about ready to throw it out the window because the wireless connection to the expensive AP base station was, oh, 100x slower than my Dell laptop side by side about 1 foot away. Nothing changed even if I connected directly to the AP using an ethernet cable. My connection consists of an Actiontec DSL gateway connected directly to my AP extreme that allows wireless to my PC laptop as well as my new iMac. Hours and hours go by until I find this help link on Mac Orchard Forums:
    +" Re: My New Intel Based iMac is SLOW+
    +« Reply #7 on: May 18th, 2007, 4:57am » Quote Quote Modify Modify+
    +WOW!! everyone else with this problem read this! i was having these same huge speed problems using the internet with my new 24" dual core intel imac with 2 gigs of ram and found a posting on another site's thread that fixed it completely.+
    +"Try setting your DNS servers to OpenDNS (208.67.222.222 and 208.67.220.220) and see if that helps at all. Maybe the ISP's changes increased the load on their DNS servers."+
    +my guess is that somehow these DNS servers work the way tiger likes them to while others dont, i have no clue other than to say it works!!+
    +heres a site i found that helped me understand how to change the settings:+
    +http://portforward.com/networking/static-Mac10.4.htm "+
    With the new Leopard installed I went to the "portforward" link first and followed the instructions exactly to set a static IP address, then I reset my DNS servers with the exact numbers you see above - IT WORKED IMMEDIATELY!!!!! I didn't have to call my ISP or anything, it just worked exactly as it should with both Safari and Firefox. Now this Mac is flying and I will not be tossing it back to Jobs.
    Good Luck!

  • [SOLVED] Extremely Slow Wireless on Macbook Pro

    SOLVED (Hopefully forever.)
    Problem: The b43 and bcma kernel modules do not get along. You'd never know this with kernels up to 3.2.14, as bcma is not automatically loaded and it is not needed with b43. For recent kernels however, it is. It in turn destroys wireless internet speeds.
    Solution: The broadcom-wl driver. It used to be portrayed in the Wiki as being something to avoid, but that has changed recently. It offers a better connection and much faster speeds, but can take a little bit more effort to set up. Just a bit.
    Broadcom-wl Installation and Setup
    1. Install broadcom-wl from the AUR.
    2. Uninstall b43-firmware if it's installed.
    3. Note what broadcom-wl has put into /etc/modprobe.d. These blacklistings will ensure no interference from other kernel modules. Also make sure you're not blacklisting `wl` or its friends, if you have been.
    4. Don't reboot yet. Go to /sys/class/net and use the command:
    udevadm info -a -p /sys/class/net/<yourdevice> | grep address | tr [A-Z] [a-z]
    (of course replacing <yourdevice> with the names of your interfaces - probably eth0 and wlan0) This will tell you their MAC addresses. Write these down!
    5. Go to /etc/udev/rules.d/ and create a file called 10-network.rules. We are going to make custom udev rules so that our interfaces are matched to their proper names at boot time. Here is a template:
    SUBSYSTEM=="net", ATTR{address}=="aa:bb:cc:dd:ee:ff", NAME="net0"
    SUBSYSTEM=="net", ATTR{address}=="ff:ee:dd:cc:bb:aa", NAME="wifi0"
    Enter the MAC addresses (in lower case!) and give them names in the NAME field. Apparently it's a good idea to choose new interface names, different from the default eth0 and wlan0. My file looks like this:
    SUBSYSTEM=="net", ATTR{address}=="58:b0:35:f6:45:0c", NAME="wired0"
    SUBSYSTEM=="net", ATTR{address}=="f8:1e:df:ea:99:17", NAME="wifi0"
    6. Go change ANYTHING that had references to the old interface names. I had to change my rc.conf, as well as settings in my wicd preferences so that it knows what names to look for.
    7. Rebuild your kernel image with
    sudo mkinitcpio -p linux
    (you might not have to do this, but it couldn't hurt.)
    8. Save this page. Yes, the html. This is so that you still know what to do in case of problems and no internet.
    9. Reboot and enjoy your restored wireless internet.
    ---- ORIGINAL POST ----
    Seems everybody and their grandmothers are having internet problems since 3.3.
    On a Macbook Pro, kernel 3.3.2-1.
    Here is my problem: http://i.imgur.com/AcqLM.jpg
    I made that image before checking the forums, but now that I've looked around I suspect the kernel.
    Put up with it until 3.3.3? Or regress?
    Last edited by fosskers (2012-08-31 13:00:28)

    @fosskers:
    Sry, I just told KDE to disable it
    @all:
    /proc/net/wireless looks pretty bad:
    Inter-| sta-|   Quality        |   Discarded packets               | Missed | WE                                                                                 
    face | tus | link level noise |  nwid  crypt   frag  retry   misc | beacon | 22                                                                                 
    wlan0: 0000   70.  -38.  -256        0      0      0    514      2        0
    After measuring this, I just got kicked out (again):
    [ 1072.839997] ieee80211 phy0: wlan0: No probe response from AP 4c:e6:76:22:4f:33 after 500ms, disconnecting.
    Now it even refuses to reconnect. This is a full "enable wireless - try connect - fail"-cycle:
    [ 1698.359901] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    [ 1698.560136] ADDRCONF(NETDEV_UP): wlan0: link is not ready
    [ 1721.394168] wlan0: authenticate with 4c:e6:76:22:4f:33
    [ 1721.420074] wlan0: send auth to 4c:e6:76:22:4f:33 (try 1/3)
    [ 1721.422002] wlan0: authenticated
    [ 1721.423411] wlan0: associate with 4c:e6:76:22:4f:33 (try 1/3)
    [ 1721.426883] wlan0: RX AssocResp from 4c:e6:76:22:4f:33 (capab=0x411 status=0 aid=1)
    [ 1721.426886] wlan0: associated
    [ 1721.428216] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
    [ 1729.470178] wlan0: deauthenticated from 4c:e6:76:22:4f:33 (Reason: 2)
    [ 1729.473907] cfg80211: Calling CRDA to update world regulatory domain [...]
    [ 1730.674444] wlan0: authenticate with 4c:e6:76:22:4f:33
    [ 1730.700199] wlan0: send auth to 4c:e6:76:22:4f:33 (try 1/3)
    [ 1730.702446] wlan0: authenticated
    [ 1730.703423] wlan0: associate with 4c:e6:76:22:4f:33 (try 1/3)
    [ 1730.706988] wlan0: RX AssocResp from 4c:e6:76:22:4f:33 (capab=0x411 status=0 aid=1)
    [ 1730.706997] wlan0: associated
    [ 1738.740963] wlan0: deauthenticated from 4c:e6:76:22:4f:33 (Reason: 2)
    [ 1738.748937] cfg80211: Calling CRDA to update world regulatory domain [...]
    [ 1739.954181] wlan0: authenticate with 4c:e6:76:22:4f:33
    [ 1739.980222] wlan0: send auth to 4c:e6:76:22:4f:33 (try 1/3)
    [ 1739.982773] wlan0: authenticated
    [ 1739.983401] wlan0: associate with 4c:e6:76:22:4f:33 (try 1/3)
    [ 1739.987077] wlan0: RX AssocResp from 4c:e6:76:22:4f:33 (capab=0x411 status=0 aid=1)
    [ 1739.987086] wlan0: associated
    [ 1746.001760] wlan0: deauthenticating from 4c:e6:76:22:4f:33 by local choice (reason=3)
    [ 1746.015596] cfg80211: Calling CRDA to update world regulatory domain [...]
    Sometimes it does not find any networks at all (iwlist wlan0 scan shows nothing)
    Again, everything was fine with kernel < 3.4. (downgrading helps).
    Maybe I should start compiling some kernels myself and search the regression with a bisection...

  • Slow wireless on iPad2 after installing iOS6?

    Ever since installing iOS6 on my iPad2 I am experiencing a slow wireless connect time. Both my wife and I have an iPad2 and have both seen the connect time slow down. Pinterest is one of my wife's most used apps and it is really slow. I have read that this appears to be an issue others are having as we'll. Any thoughts would be appreciated.

    iOS 6 Wifi Problems/Fixes
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting
    http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet
    http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    Try This - Renew IP Address:
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • WRT600N slow wireless speeds

    I have a WRT600N router.  I have one PC that is connected to the router via a wired connection.  I also have an iPad (3rd generation) that is connected to the router via a wireless connection. On my PC, I went to speedtest.net and determined that I am receiving like 20MB downloads via the wired connection.  However, my iPad only gets approximately less than 2 MB download speeds.  I have tried reseting the router and I do have what I believe to be the latest firmware update (Firmware Version: 1.01.36 build 4).     I also receive the slow download speeds when I try connecting the other wireless devices.  I assume my problem has to do with some sort of configuration setting found in the router configuration page (http://192.168.1.1/).  Can anyone please advise me what to do?  The router is only a few feet away from my iPad so the signal strength is strong.  I just don't understand why I'm receiving such slow wireless download speeds.
    Solved!
    Go to Solution.

    dpnowak wrote:
    This suggestion did not work.  I tried to isolate the problem by optimizing the router's wireless settings. I used the 2.4GHz, set the radio band to standard 20Mhz then set the standard channel to 9. The laptop had the same slow wireless speeds as the iPad did. 
    This may be due to the IPv6 feature on your computer. One of the solutions may be disabling IPv6. If the issue still exist after performing this step and download speed is fine when connected straight to the modem then reset reconfigure could work, just use WPA2 for the security with AES and a fixed channel for wireless.

  • Windows Vista = very slow wireless network

    I have a brand new Lenovo ThinkPad Z61p. A great machine, great performance. But Vista seems to get in its way.
    The first thing I did, was to re-install Windows Vista to get a clean machine, without alle the junk that comes with it. At work, the wireless network worked just fine - but when I came home, it was so slow. I mean REALLY slow. If I turned the wireless network card off, and plugged in a cable, I was flying on the Internet. But for the wireless adapter, even a page like msdn.microsoft.com could take 3-4 minutes just to load.
    I thought the issue was the drivers for the wireless network adapter, but later, in my desperate attempt to solve the problem, I removed a Windows feature called Windows DFS Replication service, which solved my problem.
    This was 4 weeks ago - and now the problem has returned. I've been reading a lot of forum posts around the web. I've uninstalled some other features, disabled IPv6, disabled Vista Auto-tuning ( i did that 4 weeks ago as well)...
    Nothing is working. I've also changed the default Network authentication mode, I've updated the drivers for the Intel Pro Wireless 3945abg, changed the wireless mode and a lot of things. Nothing is working.
    Does anyone in here have the same issues, or does anyone know what is wrong?

    I picked up a new IBM ThinkPad T60P (Wide) running Vista Business, and I am experiencing the same problems with an extremely slow wireless connection. I get the same slow performance on the wireless network in my office as in my home.
    The second I disable the wireless and plug in the cable directly to the router (ZyXeL) everything runs perfectly. I also tested connecting an Apple AirPort to the router (via cable) and connected directly to the AirPort as an access point instead of connecting to my normal wireless network, and then everything was working just fine for some reason (almost as fast as when I connect directly to the router via cable)!
    The really weird thing is that I get really quick download rates on at least one website (www.dailyrush.dk) where I can download files at 1.1 MB/s (I should have 15 mbit downstream). The web pages of that website still load pretty slow though when I'm browsing. Most other websites that I have tested load insanely slowly, both when I'm just browsing the pages and when I'm downloading files. For example a 1024 x 695 pixel JPG on Flickr.com might take several minutes to load, or simply time out. The Google front page sometimes takes 15 seconds to load.
    I have my old laptop parked right besides the new one, both connected to the same router on wireless, and the old laptop (IBM ThinkPad T41 running XP) performs fine - downloading anywhere from 10 to 100 times faster!
    It also takes forever to connect to VPN, perhaps 15 or 20 seconds on the Vista laptop and no more than 2 seconds on the XP machine.
    When I ping www.google.com in a command prompt I get some packet loss (between 25 and 100 %) but reasonable ping times averaging about 45ms which is the same as on my old laptop.
    I have tried pretty much everything:
    Disabling Windows Firewall
    Disabling TCP/IP v6 and those other entries in the wireless adapter configuration that are new in Vista
    Disabling security on the router entirely
    Changing security on the router to WPA and WPA2
    Changing the channel on the router (tried several available channels)
    Switching between 802.11 a/b/g modes on the router
    Booting up in safe mode (heard that worked for someone with a similar problem)
    Updating the wireless adapter driver to the newest version
    Installing all available updates from Windows Update
    Moving my laptop really close to the router (duh)
    Uninstalling MacAfee
    Uninstalling Bullguard
    Uninstalling a bunch of pre-installed IBM stuff
    I have come across several threads online where people have had the exact same problem and solved it by uninstalling the pre-installed MacAfee software. My laptop came with MacAfee too but I uninstalled it right away and installed Bullguard instead. When I noticed the connection problems I uninstalled Bullguard too, but little did it help.
    I really hope that someone can help me out here ... I'm kind of running out of ideas :-( Thanks in advance.
    Cheers,
    Stefan

  • Orange Livebox & MacBook Pro Slow wireless connection

    Hello,
    Looks like we are a lot experiencing a slow or sporadic wireless connection.
    I have done all updates, the MBP finds the livebox and connect properly but I have a very slow connection.
    Lan connection is working fine and quick.
    Please could somebody help me, this is my first Mac, if there is any tips or tricks to get a normal wireless speed.
    Cheers.

    What kind of wireless router or access point are you using?
    Are you getting full signal?
    Is the wireless router or access point around anything with a lot of metal or..
    since you said that when you connect to your modem via ethernet then you could have a problem with your wireless infrastructure... if you have tested your wireless network with another computer and it works fine or if you went somewhere that has a hot spot then you can determine if there is an issue with your home network or an issue with the wireless card in the laptop...

  • Unable to connect wirelessly on an Acer laptop using Vista

    I have a Windows XP connected wirelessly to my Verizon Router M1424WR, but I am unable to connect wirelessly on an Acer laptop using Vista. The Vista can only connect with Ethernet. It will not accept the WEP key.

    #1 Check the level of WEP. Two examples: 64 Bit, 128 Bit.
    #2 And check to be sure, if you use a WEP password of Hex or Ascii.
    If you are the original poster (OP) and your issue is solved, please remember to click the "Solution?" button so that others can more easily find it. If anyone has been helpful to you, please show your appreciation by clicking the "Kudos" button.

  • T410 slow wireless speeds

    We recently acquired two refurbished T410's - both of these laptops have extremely slow wireless speeds (slow or no page loads) and it seems that they periodically disconnect from the wireless connection for short periods of time.
    I have these laptops connected to the same wireless connection as many other computers in our office - all of the other computers operate normally - only experiencing this issue with the two T410's.
    I see that others have had a similar problem, but have not been able to locate a solution. Any help the community can provide would be appreciated.
    T410's running Windows 7 Pro 64

    Hi Jstern,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issue with Wifi on your ThinkPad T410.
    Suggest you to update the drivers from ThinkVantage system update tool.
    Hope this helps. Do post back if issue persists!
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Touchpad on Samsung NP300 Laptop

    I just bought a new Samsung NP300 laptop today and I am playing around with it and working on all the settings for it.  The one thing that I am getting frustrated with, is I cannot seem to find where to adjust the settings of the touchpad.  I would like to change it so that the touchpad is used only for moving the cursor around, not for selecting.  As I try to type it is very easy to accidentaly very lightly tap the touchpad and the cursor is then in a new spot and it starts typing somewhere else on the page.  Does anyone know how to help me out on this one?  Thanks!

    Go to the control panel, select mouse, click the device settings tab and click settings. Play around there but I don't think you can disable the selecting while allowing movement.
    Crystal
    Superuser
    Forum Guidelines | Terms & Conditions | Community Guidelines | What is a Superuser?
    *Remember to mark your questions solved and click the star to give kudos to show your thanks!*
    While I used to be a Best Buy Employee, I no longer have any affiliation with Best Buy.
    My opinions do not in any way shape or form represent Best Buy's Official decisions.

  • Samsung Notebook Laptop at Best Buy

    I really like to buy Samsung Netbook and Notebook
    but unfortunately best buy doesn't carry samsung notebook and netbook.
    all online retail store carry samsung netbook and notebook laptop...
    I read some article that best buy will carry samsung notebook Q1 or Q2.
    does anyone when best buy will carry samsung notebook laptop ???

    Please don't bump two year old posts...
    Crystal
    Superuser
    Forum Guidelines | Terms & Conditions | Community Guidelines | What is a Superuser?
    *Remember to mark your questions solved and click the star to give kudos to show your thanks!*
    While I used to be a Best Buy Employee, I no longer have any affiliation with Best Buy.
    My opinions do not in any way shape or form represent Best Buy's Official decisions.

  • Slow wireless but fast wired

    Hi all, hopefully someone can help.
    I have been getting lower speeds on my laptop for a few weeks now.  I'm getting 50+mb into the house but only max 15mb to the laptop and my phone. It often drops down to below 10 and sometimes 2! 
    Ive reset the modem and the infinity box on many occasions which helps get the speed back up to 13-15 when it's dropped to 2mb.  I've re-installed the bt software and have power cycled everything with no success.
    I only recently tried the wited connection and it gets 50+mb.
    I wondered if it was my wireless card which is an atheros and my laptop is an i5 acer so fairly new.  I've just ordered a wirless dongle to see if it helps.  The current atheros card does not seem to support and 'n' connection.
    I've installed and run inssider and the best link score I can get is around 55-65.  I have no idea how to understand the inssider graph but guess this is not great.
    I would really appreciate some advice.  Oh I am considering buying a home hub 4.0 as I am using the 3.0 version.
    Many thanks
    Steve

    Don't keep resetting the modem. This could cause the DLM (Dynamic Line Management) to interpret this as a faulty line and lower your speeds.
    Wireless speed will usually be slower than a wired connection. If you are getting the same sort of wireless speed on both your phone and your laptop this would tend to rule out the wireless card on your laptop.
    It could be that if you turned off the smart wireless on the home hub and select a fixed channel it would improve.
    As you have already downloaded inSSider you need to run it and look for the channel that has the least amount of networks on it. Once you have found this you need to set the homehub to that channel.
    See link how to change channel
    http://bt.custhelp.com/app/answers/detail/a_id/14094/~/how-do-i-change-the-wireless-channel-on-my-bt...
    You may find an improvement on your laptop with a wireless dongle but this won't help your phone connection. Have a good read through the forum about the wireless performance of the HH4 before you decide to buy one. You may be better to buy another make of router. 

  • Very slow wireless speed

    The wireless speed on my 15" MBP is abysmally slow! I restarted the laptop, installed the new firmware patch, and restarted my router, but nothing seems to work. I am actually making this post from my Windows Laptop, which is connected to the same wireless network and does not have any problems.
    Does anyone else have this problem? Any suggestions on how this can be fixed?

    Yes, many, many people have these same problems. These URLs were posted on another thread almost a month ago...If you look closely through the dozens of threads, hundreds of posts and thousands of views, you will realize that you are not alone...and, it has nothing to do with your router or your security settings - it is simply your MacBook Pro. We've been 'suffering' with this problem for months now and our 'glorious' Apple has yet to acknowledge that there is even a problem. Apparently, it takes the NYC school system to put a hold on Apple orders to get a fix for this...to h__ with the thousands of single user MBP customers. After 28 years as a dedicated Apple user, I've decided not to buy the Air (even though I liked it and it doesn't have any issues). I'm in Paris using my daughter's Intel MacBook (which has its own problems - like waking up from a sleep) having left my MBP on shelf because it can't can't maintain a steady, decent wi-fi connection. I would have thought that the release of 10.5.3 would be released by now but no such luck.
    http://www.appleinsider.com/articles/08/04/17/macssuspended_from_nyc_schools_over_wififlaw.html
    "it looks like it took some bad PR and possibly losing a really big order, but the word's finally getting out..."
    http://www.appleinsider.com/articles/08/04/18/appleoffers_developers_weekend_10_5_3seed.html
    and
    http://www.9to5mac.com/leopardwirelesswoes

  • Snow Leopard freezing and slow wireless

    I installed Snow leopard, installation went fine since then my computer will randomly freeze for increments of 30 seconds up to a few minutes. Happens on iTunes, Quicktime and safari. I also find to have a very slow wireless connection since the installation. Any ideas?

    strange, my wifi's as fast as it normally was.
    machine is: macbook 13.3" unibody 2ghz, 4gb ram
    wiped it clean beforehand, installed SL fresh then restored my work via time-machine on install
    Cocktail's a good util to customize your wifi speed, although it won't work on SL
    My machine is set to 64bit mode though, however to be honest the 32/64 bit is a mystery at the moment, seems the kernel remains at 32 whereas the rest can happily go to 64bit with 64bit apps running happily against 32bit ones.
    May want to time-machine your work, install fresh and restore from time machine. just use a usb-portable or huge memory stick, will only need to do it once.
    Michelle's machine has the same problem (core duo macbook white), going to look at that tomorrow, will post if i solve it

  • I cant download itunes programme for my samsung rv510 laptop, it says error occurs after I try to instal the 10.7 version? What do I need to do?

    I cant download itunes programme for my samsung rv510 laptop, it says error occurs after I try to instal the 10.7 version? What do I need to do?

    .dmg.part is not a complete file..  It usually indicates that the entire file has not been downloaded yet.  Are you sure you downloaded the entire file?   (i recommend updating itunes through  > Software Update
    Alternatively, you can download it from here: http://support.apple.com/kb/DL1614

Maybe you are looking for

  • Need Bridge for Mac to download software update for Xperia Z1?

    Trying to update the software, but the only instructions it has are to download Bridge for Mac?  How do I do this if I don't have a Mac computer? I'm WIndows.  Thanks.

  • How to up grade from iOS 5.1.1 to iOS 6

    How to up grade iPad ios 5.1.1 to iOS 7.0

  • Dynamic FLV playlist

    Hi guys, Im trying to create a dynamic streaming FLV playlist using the list component and Flash Communication server 1.5. Ive tried modifying both guides by Lisa Larson (the one for FMS2 and the one for FCS1.5) but whenever I load the completed swf

  • Siebel Database migration from IBM DB2 to Oracle

    Hi , We are planning to migrate Siebel / OBIEE db form the existing DB2 to Oracle db. Can some please help us, what are the points we need to consider. Also please let us know if you find any hurdles during the same. Regards Muni

  • Area values button not available in version ECC 6.0

    Hi all, We are changing from version 4.6 to 6.0. I noticed a small change on the layout in transaction FB05 or F-91. I was able to see a box called u201CArea Valuesu201D on old version. Here you can post different values in each depreciation area for