Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 27

Thread: Wireless BCM4322 Slow Connection

  1. #11
    Join Date
    Sep 2005
    Beans
    75

    Re: Wireless BCM4322 Slow Connection

    I believe I tried no security with just a mac addy filter and still had problems...

    Hopefully this intel chip works out hah.. I hate broadcom.

  2. #12
    Join Date
    Oct 2008
    Location
    Munich, Germany
    Beans
    45
    Distro
    Ubuntu 10.04 Lucid Lynx

    Re: Wireless BCM4322 Slow Connection

    Hey,

    I am experiencing the same issue on a 13.3" macbook pro (5,5) (Maverick 64bit). The
    Code:
    sudo iwconfig eth1 power off
    workaround seems to help a little, but I would say it's still slower than with 10.04.

  3. #13
    Join Date
    Sep 2005
    Beans
    75

    Re: Wireless BCM4322 Slow Connection

    I swapped my wireless out for the intel 5300 which now will kernel panic my machine if powermode is on. I wonder if swapping wireless cards is causing some sort of improper driver load.

  4. #14
    Join Date
    Sep 2009
    Beans
    5

    Re: Wireless BCM4322 Slow Connection

    Has somebody files a bug report on this already? Turning powermanagement off for the wifi driver worked for me (Macbook Pro 6,2, Ubuntu 10.10/64bit)

  5. #15
    Join Date
    Oct 2010
    Beans
    3

    Re: Wireless BCM4322 Slow Connection

    Quote Originally Posted by krims0n32 View Post
    Actually after giving this a second try, it still seems to be a valid workaround.
    Stick this script in /etc/network/if-up.d (I call the script powermode), and set its mode to 755. Make sure that DEVICE matches your broadcom device.
    Code:
    #!/bin/sh
    
    DEVICE="eth1"
    
    if [ "$IFACE" = "$DEVICE" -a "$PHASE" = "up" ]; then
      /sbin/iwconfig $DEVICE power off
    fi
    
    exit 0
    Then disable and re-enable your wireless connection. iwconfig eth1 should tell you that "Power management" is set to Off. Now test your connection stability and speed. It is fine for me now
    I'm a little new to creating scripts for Ubuntu, can you explain what you mean by "set it's mode to 755"?

    Thanks.
    Last edited by Lemo85; October 23rd, 2010 at 04:50 AM.

  6. #16
    Join Date
    Jan 2008
    Location
    Norway
    Beans
    13
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wireless BCM4322 Slow Connection

    Quote Originally Posted by Lemo85 View Post
    I'm a little new to creating scripts for Ubuntu, can you explain what you mean by "set it's mode to 755"?

    Thanks.
    It means to change the file permissions. Use this:
    'sudo chmod 755 /etc/network/if-up.d/powermode'
    (and you can see the changes with 'ls -l')

  7. #17
    Join Date
    Jan 2007
    Beans
    7
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Angry Re: Wireless BCM4322 Slow Connection

    I am experiencing the same issue on a 13.3" macbook pro (5,5) (Maverick 64bit). The
    Code:
    sudo iwconfig eth1 power off
    workaround seems to help a little, but I would say it's still slower than with 10.04.
    I`m having the same issues on my MacBook Pro 5-5 13.3" (Maverick 32bit)
    Tried the script fix, that seemed to fix it for like 3 seconds after reconnect, got into 53mb/s mode then popped back to 2mb/s and stayed there.
    The power off command itself doesnt seem to do anything at all.
    Anyone filed a bug report or found a fix for this yet?

    All Help Appriciated!
    Last edited by padlefot; October 24th, 2010 at 08:56 PM.

  8. #18
    Join Date
    Oct 2010
    Beans
    2

    Re: Wireless BCM4322 Slow Connection

    It's the same with me.

    Using MacBookPro 55 13" - Ubuntu Maverick 32bit. Ping-ing to the router results in > 600ms reply.

    I found that after I turn of security setting (WEP, WPA, WPA2) in the wireless router, and only use MAC Address allow-association, the connection gets A LOT better. Ping-ing to router results in ~100ms. Still makes me worried, since usually in my MacOSX the results is ~1ms. I try the power off option, resulting to 1ms - 6ms, but sometimes still get >100ms reply.

    UPDATE :

    Another work-around without have to turn of security setting is to pass kernel parameter, intel_iommu=off .Still trying for about 10 minutes now. The ping results in ~1ms and sometimes jump to ~100ms. I'll report if this doesn't work.
    Last edited by Jales; October 28th, 2010 at 05:12 PM.

  9. #19
    Join Date
    Jun 2006
    Beans
    108

    Re: Wireless BCM4322 Slow Connection

    I have a MBP 6,2 and powermode does not appear to make any difference at all:

    Code:
    $ sudo iwconfig eth1 power off
    $ ifconfig eth1
    eth1      Link encap:Ethernet  HWaddr 90:27:e4:e9:xx:xx  
              inet addr:192.168.1.x  Bcast:192.168.1.255  Mask:255.255.255.0
              inet6 addr: fe80::9227:e4ff:fee9:3478/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:2149274 errors:0 dropped:0 overruns:0 frame:105593
              TX packets:3607849 errors:2909 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000 
              RX bytes:583582414 (583.5 MB)  TX bytes:805004161 (805.0 MB)
              Interrupt:17 
    $
    Am I "holding it wrong?"

  10. #20
    Join Date
    Nov 2010
    Beans
    2
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Wireless BCM4322 Slow Connection

    Thanks krims0n32, that workaround worked just fine for me!

    Running Broadcom Corporation BCM4322 which was fine on 10.04, but slow as on 10.10




Page 2 of 3 FirstFirst 123 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •