More wireless woes

Our frustration began with a black MacBook purchased in June of '08 (an older black MacBook running Tiger has no problems). This particular MacBook constantly had connection problems—either weak signal, dropped connections, or very slow. Now we have added a late '08 aluminum MacBook and a similar vintage MacBook Pro to our household. Neither of these will connect to our D-Link wireless router (WPA-Personal encryption). Meanwhile, every other computer in the house—a Dell, '06 MacBook Pro (10.5.6), '07 white MacBook (10.5.7), G4 iBook (10.4.11), and XBox Live—connect flawlessly. These 2 newer computers will not recognize our WPA password or connect (connection times out). If by some slim chance I do get connected, heaven help me if the computer sleeps as this will render any earlier connection null and void. One of the only ways I've been able to get a connection is to go through Network Diagnostics, which, despite the fact that it tells me that it can't connect, will avail me a connection. The wireless problem seems to be getting worse with each newer model. Am I overlooking something obvious? What used to be a no-brainer is now stretching our patience. Macs just connected. Period. That no longer seems to be the case.

Our frustration began with a black MacBook purchased in June of '08 (an older black MacBook running Tiger has no problems). This particular MacBook constantly had connection problems—either weak signal, dropped connections, or very slow. Now we have added a late '08 aluminum MacBook and a similar vintage MacBook Pro to our household. Neither of these will connect to our D-Link wireless router (WPA-Personal encryption). Meanwhile, every other computer in the house—a Dell, '06 MacBook Pro (10.5.6), '07 white MacBook (10.5.7), G4 iBook (10.4.11), and XBox Live—connect flawlessly. These 2 newer computers will not recognize our WPA password or connect (connection times out). If by some slim chance I do get connected, heaven help me if the computer sleeps as this will render any earlier connection null and void. One of the only ways I've been able to get a connection is to go through Network Diagnostics, which, despite the fact that it tells me that it can't connect, will avail me a connection. The wireless problem seems to be getting worse with each newer model. Am I overlooking something obvious? What used to be a no-brainer is now stretching our patience. Macs just connected. Period. That no longer seems to be the case.

Similar Messages

  • More Wireless Woes [solved]

    There's a lot on these fora about wireless, but I haven't been able to figure this out.  So forgive me if someone else has solved this problem elsewhere, but I didn't recognize it when I saw it, I guess.
    I have a Broadcom BCM4306 wireless adapter.  I followed the instructions here, http://wiki.archlinux.org/index.php/Wireless , for the bcm43xx module, which I've added to /etc/rc.conf, and it shows up in lsmod.  Then, I set up rc.conf as follows:
    lo="lo 127.0.0.1"
    eth1="dhcp"
    eth0="dhcp"
    wlan_eth0="eth0 essid [networkid] key [likei'mgoingtotypeithere]"
    WLAN_INTERFACES=(eth0)
    INTERFACES=(lo eth0 eth1)
    The wireless adapter shows up as eth0 because the rc.conf module list runs before udev gets the wired NIC going, so wireless is always eth0.
    Unfortunately, nothing has worked yet.  Most of the time, iwconfig doesn't show an essid.  It usually picks up the wireless key, and sometimes shows the right essid if I give it the key first (by iwconfig eth0 key xxxxx then iwconfig eth0 essid xxxxxx).  Here is a typical iwconfig output:
    eth0 IEEE 802.11b/g ESSID:"" Nickname:"Broadcom 4306"
    Mode:Managed Frequency=2.437 GHz Access Point: Invalid
    Bit Rate=1 Mb/s Tx-Power=15 dBm
    RTS thr:off Fragment thr:off
    Encryption key:xxxx-xxxx-xx Security mode:open
    Link Quality:0 Signal level:0 Noise level:0
    Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
    Tx excessive retries:0 Invalid misc:0 Missed beacon:0
    Doing iwconfig eth0 power on gives this error:
    Error for wireless request "Set Power Management" (8B2D) :
    GET failed on device eth0 ; Operation not supported.
    ifconfig shows eth0 having a valid MAC address (00:0D:0B:CF:EB:0F), which I guess is relevant.
    This is my first adventure in the land of Linux wireless.  Can anyone help me out?
    Thanks,
    John

    I'm using a Dell Inspiron 6400 laptop with an internal Dell wlan mini pci card (Truemobile 1390) that uses the Broadcom 4311 chipset.  I've tried to get this card working in half a dozen different Linux distros with the native Linux driver bcm43xx that's provided as a kernel module plus the firmware cutter software bcm43xx-fwcutter.  I've had no luck with this.  However, I've had good luck using a Windows driver running via ndiswrapper.  You may want to try that route.  For me it works well for 128-bit WEP encryption.  I haven't tried WPA encryption as yet; it may work for that too.
    Here's what you'd have to do.
    1. Connect your machine to WAN through the wired ethernet interface that almost certainly will be supported by Arch.
    2. Get the Windows driver for your wireless card, e.g. from the support CD that came with your card (it would be in the WinXP directory) or from the web if you don't have the CD.  To find it on the web, search  http://ndiswrapper.sourceforge.net/medi … x.php/List  for BCM4306 or for the pciid of your card, or go to the card manufacturer's website.  The Windows driver consists of two files with extensions .inf and .sys.  Perhaps the widely available standard driver bcmwl5.inf & bcmwl5.sys that I use for the BCM4311 would be appropriate for your card.  Put the driver folder on your Desktop.
    3. Install ndiswrapper-1.26-1 and ndiswrapper-utils-1.26-1 by running
    # pacman -Sy ndiswrapper
    4. Bring down the wired ethernet interface eth0:
    # ifconfig eth0 down
    5. Navigate to the folder on your Desktop that holds the Windows driver files and run
    # ndiswrapper -i bcmwl5.inf    (or whatever the name is of the .inf driver file)
    6. To check whether the driver has been installed (it should be in /etc/ndiswrapper/bcmwl5, some two dozen files)
    # ndiswrapper -l
    If all is well, this should say: "driver installed; hardware present"
    7. To insert the ndiswrapper kernel module run
    # modprobe ndiswrapper
    The LED for your card should come on.
    8. To check whether the kernel module is running run
    # lsmod | grep ndiswrapper
    9. To bring up the wireless interface wlan0 run
    # iwconfig wlan0 essid name_of_your_wireless_access_point channel number_of_your_channel
        key your_WEP_key_in_hexadecimal open
    10. To get an IP address via DHCP run
    # dhcpcd wlan0
    11. To set up a route to the internet gateway run
    # route add default gw 192.168.0.1    (substitute you gateway's IP address here)
    12. To check the connection run
    # ifconfig   (do you have an IP address?)
    # iwconfig   (does everything look all right?)
    # ping google.com   (can you connect to Google?)
    You should have a connection now.
    To make this setup permanent and initialize the wireless interface on bootup, edit the following two files.
    /etc/conf.d/wireless
    wlan_wlan0="wlan0 essid name_of_your_wireless_access_point channel number_of_your_channel
        key your_WEP_key_in_hexadecimal open"
    WLAN_INTERFACES=(wlan0)
    /etc/rc.conf
    MODULES=(ndiswrapper)
    HOSTNAME="your_hostname"
    lo="lo 127.0.0.1"
    wlan0="dhcp"
    INTERFACES=(lo wlan0)
    gateway="default gw 192.168.0.1"         (substitute you gateway's IP address here)
    ROUTES=(gateway)
    Then run # /etc/rc.d/network restart or reboot.  You should be all set.  If you use the wired interface too (which should be eth0), you can add that later.
    Robert

  • Valet M20 - Connecting another Valet Plus for more wireless connections

    Can you hook up on Valet Plus to another Valet Plus for more wireless connections?

    Like UnknownHero has asked, how many devices do you intend to connect? A single Valet Plus shouldn’t have trouble handling a normal home network which laptops, wifi phones, media players, DVRs etc.
    But to answer your question, yes, it is possible.

  • HELP! Can't connect on 2 or more wireless connection

    I have WRT110 Linksys wireless router. I also have the latest firmware. fw 1.0.04. I have no problems connecting wired connections(2 PCs) and 1 wireless connection. However, when i tried connecting 2 or more wireless connections(3 laptops). All computers gets disconnected. I need to turn off the router again and my computers to get connected but only 2 PCs and 1 wireless laptop... Any help please! I already talked to tech support and no help! We tried to power cycle, reset for 30 secs, remove adapter, cables, etc. and didn't help! Same results! Can't connect on 2 or more wireless connections. We edited the basic wireless setting to WEP/WPA personal, band, channels, still no luck too! Im getting frustrated with this router. PLEASE HELP! I have Time Warner Road Runner cable internet. Thanks in advance!
    Message Edited by rhenzhen on 10-02-2008 05:18 AM

    Try these settings  on Advanced Wireless
    settings>>Change the Beacon Interval to 75 >>Change the Fragmentation
    Threshold to 2304 Change the RTS Threshold to 2304. and Upload the same firmware on the router once again. 

  • Wireless Woes

    Many months back I got a Netgear WGR614 V6 wireless router. For a while it did the job but I noticed as soon as I left the room with the router in, the signal would degrade. By the time I got to the garden area (2 rooms away) and signal was dead. After much problems with it I decided to buy a new Linksys WRT160N £50 I installed it perfectly, pretty easy and connected my computer, xbox 360 and connected my iphone and laptop via wireless. Before I connected my upstairs computer via cable, I had the router downstairs connected to the laptop via cable so I could install it quicker. Once done, I popped outside the house and down the end of the garden and tested the iphone. Full strength!
    I then connected my upstairs computer and connected the laptop to wireless. About 20 minutes later I went to the french windows, which is about 2 rooms away from the router and was horrified to discover my iphone had no signal. Thats a good 6 meters less than I previously tested at the end of the garden. To eliminate my iphone I brought out the laptop to the room as well, signal strength was poor at best and no connection at worst. Now Im really stunned. The exact same signal problems are happening with this brand new router. Im dumbstruck as to what it could be causing this problem. But so far, apart from the new look, I may as well have set fire to £50. I did some testing.
    Unplugging all cables and just plugging in the routers (both of them) in various places around the home. The problems seemed to be the same. Poor signal. But oddly, it seemed that things got worse as soon as I plugged in my upstairs computer via Ethernet cable. I now have 2 routers and none can give me a strong signal, even though I only bought this Linksys router because the box stated it had superior signal strength. So theres either something in this house blocking the signals or I have bought 2 faulty routers. Which I don't believe.
    Ive tried resetting the Linksys to factory settings and scanned again. I do get a signal at the end of the garden but its intermittent and when I connect my upstairs pc, thwe signal strength seems to die. Please I hope someone can shed some light, Im pulling what little hair I got left out!
    Finally, when I got the router, the firmware was 1.54 or something, dated Dec 2007. On the linksys site I found version 1.02 but that date was 1/8/08 so I assumed it was better and updated. Now the router states the firmware version 1.02 was made Nov 2007! so I've actually downgraded?
    Message Edited by Triaxial on 08-01-2008 04:07 AM

    It seems that some homes have wireless "dead zones" in them.  In some cases, this can occur in a room that is closer to the router than other rooms where wireless works.  Most likely this has something to do either with the construction of your home, or else it is from wireless interference, from something near the room, or perhaps from your neighbor's wireless signals.
    In some cases, people have simply decided to run a wire through the house, either for a direct ethernet port connection, or to add a second transmitter  (a WAP, ie wireless access point).
    Also note that wireless n will only give you more range if you have a wireless n adapter in your computer.  If you computer (or iPhone) is using wireless g, your router must use wireless g to communicate with it, so you get wireless g range.
    Before you run an ethernet cable through your home, or add a second transmitter, try the following tips to "tune up" your wireless network.  In some cases, the tips below will be enough to get things working.
    There are many causes for poor wireless connections, and many solutions:
    First of all, give your network a unique SSID. Do not use "linksys". If you are using "linksys" you may be trying to connect to your neighbor's router. Also set "SSID Broadcast" to "enabled". This will help your computer find and lock on to your router's signal.
    If you are getting poor range when using a wireless n adapter in your computer, then, in the router, make sure the "Radio Band" is set to "Wide".  
    If all your devices are wireless g, set the router to "Wireless g only".
    Poor wireless connections are often caused by radio interference from other 2.4 GHz devices. This includes wireless phones, wireless baby monitors, microwave ovens, wireless mice and keyboards, wireless speakers, and your neighbor's wireless network. In rare cases, Bluetooth devices can interfere. Even some 5+ GHz phones also use the 2.4 Ghz band. Unplug these devices, and see if that corrects your problem.
    In your router, try a different channel. There are 11 channels in the 2.4 GHz band.  (13 channels in most of Europe).   Usually channel 1, 6, or 11 works best.  (or 13 in Europe).   Check out your neighbors, and see what channel they are using. Because the channels overlap one another, try to stay at least +5 or -5 channels from your strongest neighbors. For example, if you have a strong neighbor on channel 9, try any channel 1 through 4.    If you are using a wireless n adapter in your computer, and you need more range, make sure your standard and wide bands are at least 2 channels apart. For example try standard band on channel 11, and wide band channel 9.
    Also, try to locate the router about 4 to 6 feet above the floor, in an open area. Do not locate it behind your monitor or near other computer equipment or speakers. The antenna (if visible) should be vertical.
    Also, in the computer, go to your wireless software, and go to "Preferred Networks" (sometimes called "Profiles" ). There are probably a few networks listed. Delete any network named "linksys". Also delete any network that you do not recognize, or that you no longer use. If your current network is not listed, enter its info (SSID, encryption (if any), and key (if any) ). Then select your current network and make it your default network, and set it to automatic login. You may need to go to "settings" to do this, or you may need to right click on your network and select "Properties" or "settings".
    If the above does not fix your problem, download and install the latest driver(s) for your wireless card(s), including the latest iPhone wireless driver, if available.
    Some users have reported improved wireless performance by switching to WPA encryption.
    If you continue to have problems, try the following:
    For wireless n routers, try setting the "n Transmission Rate" to 162 Mbps, and the (wireless g) "Transmission Rate" to 54 Mbps.
    If you still have trouble, download and install the latest firmware for your router. After a firmware upgrade, you must reset the router to factory defaults, then setup the router again from scratch. If you saved a router configuration file, DO NOT use it.
    Hope this helps.

  • More Wireless issues..please help

    I have Infiniti2 and HH3. I used my 'old' draytek vigor 2710 as access for upstairs wireless. All well till few weeks ago. HH3 wireless is still strong, but I cannot connect to it? Strange. So, I changed various passwords and evem reset to original default as well as WPS to my ipad, laptop, iphone and galaxy all to no avail. Obviously the HH£ is broadcasting the signals well. Yet when I try the BT FON signal presumably from my own hub it connects?? There must be some protocol problem here. I am getting a bit cheesed off....I suppose a 'lazy' option would be to pruchase the alternate routers and such as te TP ;nk suggested? but what a waste of a new HH£??
    PLease help a newbie in need.
    Thanks

    zleon wrote:
    Thanks for quick response. I have tried different password solutions including wps, each time after resetting on the hub and web resetting too to the default, but with no positive result so far. Any more ideas?
    And as I mentioned above, can you confirm that you've removed the connection attempts on the devices - not just the hub
    You would need to navigate to the wireless settings on all wireless devices, look for any saved connection attempts and select 'forget network' or something similar.
    -+-No longer a forum member-+-

  • Broadcom Wireless Woes

    I think I have all relevant information in the link below, please let me know if there's anything you can think of, or some other useful information I should display. I have got this card working on arch/other distros before, but it's a struggle every time. Thanks
    http://pastebin.com/SrghpUip

    Thanks for the replies everyone.
    I switched to the b43 driver, at the advice of Trilby. Now, I have been able to see wireless networks, but intermittently. I will run a scan with iwlist, or networkmanager, and will see networks, but running that same scan 2 minutes later and no dice. Not sure of the cause of the intermittent behaviour. I have never had wicd see a network, but I dont know if thats something with my card and wicd, or just a biproduct of the intermittent results.
    Also, http://wireless.kernel.org/en/users/Dri … _b43legacy lists my card as being only partially supported, which is why I went with broadcom-wl initially. I didn't see where I could find what wasn't supported with this card.
    Here are another round of scans/logs/information. Appreciate any further advice
    pacman -Q | grep b43
    b43-firmware 5.100.138-2
    b43-fwcutter 018-1
    lspci -vnn
    04:02.0 Network controller [0280]: Broadcom Corporation BCM4321 802.11b/g/n [14e4:4329] (rev 01)
    Subsystem: Netgear WN311B RangeMax Next 270 Mbps Wireless PCI Adapter [1385:7d00]
    Flags: bus master, fast devsel, latency 64, IRQ 17
    Memory at f7ffc000 (32-bit, non-prefetchable) [size=16K]
    Kernel driver in use: b43-pci-bridge
    Kernel modules: ssb
    ip link
    1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    2: enp2s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000
    link/ether e0:cb:4e:b9:05:1e brd ff:ff:ff:ff:ff:ff
    3: wlan0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc mq state DOWN mode DORMANT qlen 1000
    link/ether c0:3f:0e:bd:89:df brd ff:ff:ff:ff:ff:ff
    At this point, I saw wlan0 state as being down, so I ran ip link set wlan0 up, which returned back successfully, or at least without an error. However, re running ip link, the adapter state remained down.
    iwconfig
    lo no wireless extensions.
    enp2s0 no wireless extensions.
    wlan0 IEEE 802.11bg ESSID:off/any
    Mode:Managed Access Point: Not-Associated Tx-Power=27 dBm
    Retry long limit:7 RTS thr:off Fragment thr:off
    Power Management:off
    iwlist wlan0 scan
    wlan0 Scan completed :
    Cell 01 - Address: 20:10:7A:06:FA:AB
    Channel:1
    Frequency:2.412 GHz (Channel 1)
    Quality=41/70 Signal level=-69 dBm
    Encryption key:on
    ESSID:"Pretty Fly For A Wifi"
    ... More to that network, as well as other seen networks. Didn't want to post all. Seemed redundant. Running that same command 2 minutes later, no networks found.
    dmesg | grep b43
    [ 2.668274] b43-phy0: Broadcom 4321 WLAN found (core revision 11)
    [ 2.703956] b43-phy0: Found PHY: Analog 5, Type 4 (N), Revision 1
    [ 3.297283] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    [ 3.384399] b43-phy0 ERROR: Fatal DMA error: 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000
    [ 3.384403] b43-phy0 ERROR: This device does not support DMA on your system. It will now be switched to PIO.
    [ 3.384405] b43-phy0: Controller RESET (DMA error) ...
    [ 3.587254] b43-phy0: Loading firmware version 666.2 (2011-02-23 01:15:07)
    [ 3.657348] b43-phy0 warning: Forced PIO by use_pio module parameter. This should not be needed and will result in lower performance.
    [ 3.674913] b43-phy0: Controller restarted
    No idea what the fatal DMA error means, and if I should be concerned by it, or if PIO is ok/good enough..?
    Thanks, sorry for information overload, but more is probably better than less. Let me know. All comments appreciated.
    On a semi-related note, anyone have recommendations for a wireless-n card that works out of the box? PCI preferred, PCI-e and usb also accepted. Lol.

  • For all, (or at least some), with wireless woes, just check..........

    Had a wireless drop today. For a good few minutes too. Very unusual for of late. Anyway, was using my browser and it took a while for the page to load, the wait lengthened an then; 'You are not connected to the internet'.
    I clicked the Airport menu bar icon and it said my network was there. I opened Airport Utility and sure enough the AEBS was there. Every now and then I do a hard reset on my equipment any way so thought I'd try one then, just before I did though I noticed that my router, (DG834), had only two of its usual three lights up. The power light and the LAN port light. The internet light was flashing orange which according to the manual means 'ADSL Training'. Airport appeared normal.
    My point is, all those times I assumed Airport was the problem. But maybe it is the router. I assume most people who run wireless networks have the router hidden away and so can't see what it's doing.
    Before you flame me, there will be some people who do have genuine Airport problems and this post is not directed at them.
    Just next time you have a signal drop check the router status too, and if by the time you get to it everything is normal, check the router logs to make sure it has always had a connection.

    OK 6 weeks into this I now have a new tuner card and some updaters drivers. Computer stayed two weeks at the shop! It seemed to work when the techie booted it up in front of me.
    Now the worst feeling of all. I get home, boot up  and the Raid controller on my MSI 655 board starting denying access to arrays! can't do anything!
    I read the MSI 655 forum boards asking for solutions and ALL i read is about super dissatisfied customers having to deal with RMA issues because this is a junk mobo!
    WOW! You need help. You turn to your manufacturer. You read boards hoping for solutions and  time after time people dish the 655 and I don't see techies admit or much less come to the rescue of owners.
    I bought a mobo and two cards becAuse of these boards and now I can only regret that decison.
    I guess the marketing department is doing a much better job than the problem solving department at MSI
    MSI 655 MAX FISR HT Ready (MS-6730) :0  
    P4 2.53  
    1Gb MEM PC3200
    MSI 4200-VTD8X  (MS-8894)
    MSI TV @nywhere 8o
    2* SEAGATE 80Gb 7200 8mb buff. SATA drives raid 0
    NEO 35 removable IDE 40 Gb drive MP3 player
    1 40 Gb IBM deskstar IDE drive
    HP DVD writer 200i
    Matrix Orbital MX221 USB
    Dual Voltage 4port Baybus
    ANTEC TRUE BLUE 480w PSU
    XP Pro Version 5.1 (build2600.xpsp2.021108-1929:Service Pack 1)[/FONT] [/COLOR ]
    DCW

  • Laserjet P1102w & Mac Wireless Woes (Have tried everything​!)

    Feels like I have tried everything, so I turn to here.
    Installing (reinstalling, actually) a P1102w on a Macbook running Leopard. I had this printer working beautifully a year and a half ago, no problems whatever. Changed the network name, everything fell apart. I went away for a few months and have come back to a new ISP and router/modem and am now trying to set it up on the network.
    Here is everything I have done so you have a sense of how this is failing me:
    Installed drivers from the cd
    Plugged in the printer and configured the HTML Config and the Wireless settings in the HTML Config exactly as every thread and guide on this website tells me to do. It finds my network, it takes the WPA key and says that everything is fine.
    Tried accessing it via "Bonjour" on Safari--it doesn't show up.
    Tried powercycling everything, doesn't work.
    Tried resetting the HTML config settings to factory default on the printer numerous times, nothing happens.
    Tried setting my own IP address for the printer within the IP Range of the router/modem and connecting to it that way--no luck. Whenever I add the printer connected that way it says the sheets have printed within the print queue but nothing happens to the printer.
    Have managed to connect to the printer under the AirPort drop down, the ad-hoc, but that still doesn't do anything.
    The printer when plugged in via USB works perfectly. When (as directed) I delete the USB printer from my Print/Fax list, unplug the USB Cable and attempt to re-add the wireless printer (As I did a year and a half ago) nothing shows up in that list.
    It used to show up as the printer name + Bonjour under "Kind", it doesn't any longer. Bonjour is turned on in HTML Config.
    I have looked at the youtube videos and searched these forums and others with zero luck.
    I called Tech Support but unforunately they are now charing you to fix problems (I'll leave my complaints on that for another thread...ha). I am sure $25 is worth it, but when you're a student and $25 is about half of your weekly food budget, it's hard to justify tech support.
    Any help is greatly appreciated.
    Thanks

    Also, this sounds totally stupid, but stay with me.
    I just went into the Add Printer window with the USB unplugged and, as usual, there is nothing there.
    I clicked to "FAX" and then back to "DEFAULT".
    When I clicked back to "DEFAULT" for a milisecond the printer name and "BONJOUR" flickered and was gone. It happens each time that I switch back to "DEFAULT". I can see it for barely a moment and it is gone.
    The wireless light on the printer is also flickering pretty constantly.
    Perhaps this information will help...

  • [Solved] Wireless woes, odd problems.

    Hey all. Working on my first install of arch. Had to go with packages from the CD for reasons that will become clear below.
    During the install I was able to bring up the wireless without much trouble. However, actually using it proves to be a problem. It's *extremely* slow - sometimes I can ping google (with 2000+ ms response times, always), sometimes I can't. Downloading packages is out of the question.
    So, with the installed system, same thing. I can only get the wireless working by stopping the network daemon from running during boot (!network in rc) and doing it all manually. Bringing up the interface (wlan0), setting the essid, dhcpcd, etc. This usually works, sometimes it doesn't and I need to reboot completely and start over. Same thing as during install - incredibly slow. Useless for all practical purposes.
    Signal is good. No security for now. I've tried editing the dhcpcd conf to read nameservers from resolv instead of getting them from dhcp - same thing. FWIW I've got multiple connections in the same room that work just fine (7/OSX).
    It's almost like it's having trouble resolving, but even once it finally does the speed is in the realm of .3-.6k/sec.
    Thoughts?
    Edit: Atheros, using ath5k, auto-detected and auto-loaded. Tried ath9k by manually removing 5k and loading it, no dice. Have not tried ath_pci as it is not installed. I may try to pull it off the CD somehow and load it up. It's a 5001X+ / AR5213A chip.
    Edit 2: Much google-fu. Not much help. I've got everything back to default - dhcpcd fails on boot - the following will bring it up;
        ifconfig wlan0 up
        iwconfig wlan0 essid myssidhere
        dhcpcd wlan0
    Tried manually setting the rate per the kernel.org ath5k help page. No change in speed, still getting ping responses in the 2000ms range. So while I do have connectivity it's still worthless. As an aside, if I add the correct lines to my rc.conf for the network to pull dhcp from my router/correct ssid automatically, it still fails. Needs manual doing.
    Edit 3: While attempting to update some select packages, it seems that downloading most anything over a few hundred kb fails. I'm unsure if it's killing my connection or if pacman is deciding to try another mirror or what. The speeds fluctuate wildly, sometimes around 35k/sec, but always end up very very low, quickly, up for a sec, down down down, then failure. Unfortunately I do not have the ability to have a wired connection =/
    Last edited by entity7 (2010-05-04 16:02:09)

    Problem solved. I'm posting this as a humbling reminder to not forget your basic troubleshooting steps. I reached back and moved the antenna 1/4 inch and went from crap to full connection instantly - mind that the signal quality did NOT change, just the speed. This is also quite strange considering that 2 other OS installs on that PC have/had a functioning connection.
    Anyway, thanks Sin and thunder!

  • Linksys Wireless Woes

    Moved my PC to another room which was out of range of my existing (2 year old) wireless network. Added a WMP300N due to it's extended range and planning on upgrading my wireless network to "N" in the future anyway.
    The future came sooner than expected (1 1/2 weeks). Had problems with new card so I tried to solve by adding a WRT350N router and a WPC300N for the Laptop. Still cannot get the WMP300N to work. Signal is good but speed is only 1mbps and keeps trying to acquire an IP. Any suggestions how to improve connection?
    (Edited post for guideline compliance. Thanks!)
    Message Edited by JOHNDOE_06 on 12-28-2007 08:37 AM

    try changing the wireless settings on the router
    SSID - any unique name
    radio band - wide
    wide channel - 9
    standard channel - 11
    beacon interval - 50
    fragmentation threshold - 2306
    RTS threshold - 2307
    N -Transmission rate - Max speed
    Also , the firmware of the router should be latest..

  • More wireless issues

    here's my problem. i have belkin router that i originally installed on my PC, then connected my imac wireless through the router. i want to use my imac as the primary computer for the router. when i try to install the CD to my mac....it tells me a "new set was not created."
    i was never able to connect my imac when i wired it through the router but was able to connect wirelessly using my pc but not vise versa. i'm stumped. is it the router or my mac that is having issues? i'm not too tech savvy so if anyone can help, i'd appreciate it!

    There is no "primary computer" for the router. Any computer connected to the router can configure the router.
    Forget the CD. Look at the Belkin's user guide and follow the instructions for using your web browser to configure the Belkin.

  • Wireless woes - tips

    I am sure this has been nearly beat to death, but I wanted to share my experiences.
    I have a stock 2.0 Ghz White MB and a Linksys WRT54G wireless router. I had been using one of the linux firmwares and noticed a tad of an erratic wireless connection on my mb (please note, my XP work laptop never, ever lost connection). So a friend recommended the DD-WRT firmware. I tried this and my wireless connection on my mb went to crap. I mean it was bad.
    So I went back to the stock linksys firmware:
    Firmware Date: 5/25/2006
    Firmware Release Version: 4.30.5 (.zip file)
    Firmware File Size: 2.76 MB
    and presto, my mb has not lost connection yet and even automatically reconnects to my network after waking from sleep.
    Just a tip, in case you missed it posted before.

    Thanks for the post, but it's what I keep telling you, specific firmware updates/revisions are often necessary for proper access/connection with many new Intel Macs.
    Thanks for sharing your experience.

  • Adding Two more Wireless bridges - Etherchannel

    Two facilites are connected via wireless bridge(AIR-BR1410A-E-K9).
    we wanted to add wireless bridge at each facility to increase the bandwidth.
    So we will have two wireless bridge at each facility connected wirelessly.
    and we wanted to achieve it by doing some kind of etherchannel in the switches at each location... will it work ? please advise.
    Thanks
    Sri

    Hi ,
    Here is the plan…
    • Top left bridge will be Root Bridge for VLAN3 and only vlan 3 traffic is traversed.
    • Bottom left bridge will be Root Bridge for VLAN 10 and only vlan 10 traffic is traversed.
    • If any one of the bridge/link goes down, traffic will be diverted to other link automatically.
    • By doing this we can use both of the links effectively.
    Configuration is attached.. please let us know your ideas/// (Or would it work)?
    Target device: Wireless Bridge 1
    vlan 3  - Root Bridge
    Vlan 123- non-root bridge
    interface Dot11Radio0.3
    encapsulation dot1Q 3
    no ip route-cache
    bridge-group 3
    no bridge-group 3 spanning-disabled
    bridge 3 protocol ieee
    interface Dot11Radio0.123
    encapsulation dot1Q 123
    no ip route-cache
    bridge-group 123
    no bridge-group 123 spanning-disabled
    bridge 123 protocol ieee
    interface FastEthernet0.3
    bridge-group 3
    no bridge-group 3 spanning-disabled
    bridge 3 protocol ieee
    interface FastEthernet0.123
    bridge-group 123
    no bridge-group 123 spanning-disabled
    bridge 123 protocol ieee
    bridge 3 route ip
    bridge 3 protocol ieee
    bridge 3 priority 9000
    bridge 123 protocol ieee
    bridge 123 priority 10000
    Target device : Wireless Bridge 2
    vlan 3  - Non-Root Bridge
    Vlan 123- Root bridge
    bridge 3 route ip
    bridge 3 protocol ieee
    bridge 3 priority 10000
    bridge 123 protocol ieee
    bridge 123 priority 9000

  • More printer woes?

    Hi, everyone - I have looked through the thread and seen that printing problems are common with Leopard, but I've never seen anything like this! I was able to get the library's new iMac printing perfectly - I just had to be sure it was recognizing the printer it was actually attached to! (We have 4 computers in the teen room, linked to three hp 810s - the eMacs are networked).
    But, when I bring our lovely new macbook in there and hook it up to the very same printer the iMac uses, it simply won't print. I get a message saying there was a fatal error and the printer connection failed. All we can do is to save stuff onto a flash drive and bring it over to the iMac or one of the pcs (for adobe and word files) and print that way.
    We'd love to be able to print directly from the macbook. Why on earth can't we?!!

    What we've done is to unhook the usb cable from the iMac and hook it to the macbook. It's a stand alone printer, and we make sure the cable is firm. Then we open whatever file it is (we've tried in word and print shop, both of which are installed on both machines). And it won't print. We get the "fatal error" message I've described above. We can print those very same files from the iMac after we transfer them, though there I think I'm having the postscript problem. But the macbook simply refuses to connect to the printer at all. That's the problem.
    Again, there's nothing wrong with the usb cable, it's firmly plugged in, and it's a standalone printer.
    Thanks for your response. Can you think of anything I should try, like maybe looking for printer drivers on the macbook?
    Unless we had out of date drivers, I've never come across anything remotely like this in any earlier version of OS X - or any version of the mac OS. Printers just used to work! I'm very frustrated that this doesn't seem to be so any more.

Maybe you are looking for

  • Syncing Issues with Creative Cloud - No Solution - Please Reply

    I have spent over two hours with your live chat team in which they took over my computer, deleted files from the CMD prompt and I am still receiving syncing errors using Creative Cloud. They had me, delete files, restart my computer, sign-in and out

  • Contact app in Yosemite 10.10.1 is crashing

    after installing Yosemite 10.10.1 my contact was working fine i was able to make make calls until now  contact app is taking several time to respond and even force quit say contacts not responding , i disable iCloud contact from system preference , t

  • On its own, mac goes online and launches safari. WHY?.

    i have a powermac G5, but am using an ATT dial-up. i know. when we wake up the mac, more often than not, it immediately starts dialing out, going online and then launching safari. anyone else have this problem?

  • Azure Cloud service fails when sent large amount of data

    This is the error; Exception in AZURE Call: An error occurred while receiving the HTTP response to http://xxxx.cloudapp.net/Service1.svc. This could be due to the service endpoint binding not using the HTTP protocol. This could also be due to an HTTP

  • Forgot code on anti-theft f-secure on nokia n8

    hello i have a problem with the anti-theft on my nokia n8 please help!! i forgot the password i already contact with f-secure support they told me to do the following 1) Borrow either your friend/family mobile phone. 2) Type this code carefully into