Time capsule wifi stops working with MacBooks, but nothing else

I have a newer model time capsule.  Lately, the wifi stops working intermittently on my macbook pro and the wife's macbook air.  While this is happening, our iphones and other peripherals have functional wifi.  This resolves if I reboot the time capsule.  Even more weird is that the 'guest network' on the time capsule will work fine while the main wifi network remains non-functional.
Fairly annoyed, please help

It isn't strange at all.. it is a feature of Lion.. totally unstable useless networking.. particularly wireless.
I would be very surprised if you came back and told me you were on Snow still.
If Lion was installed by upgrade, worse and worse.. clean install seems to reduce if not remove the issues.
So ring Apple .. keep annoyed at their new vista class OS. Did you turn that off and on again??
I can suggest a few things..
Short wireless and network names.. no spaces.. pure alphanumeric. Different name for 5ghz to stop band swapping.
Lock wireless to on a/n -b/g
Lock wireless channels.
Use wpa2 personal security only.. with 8-12 character passkey.. pure alphanumeric.
Set dhcp to very short lease time.. 30min.. might help Lion to remember the name of the TC.. otherwise it suffers from early onset dementia and alzheimer's.

Similar Messages

  • My time capsule wifi stops working several times per day

    In the last several weeks, my time capsule wifi will suddenly stop working. Both the guest and main networks  go down. I unplug the time capsule and plug it back in and then it works again for a while. My internet is ADSL. The signal comes in through a Actiontec Modem and then by ethernet to the time capsule which broadcasts the wifi.

    Not sure what you mean by "suddenly stop working".
    Does this mean the power indictor light on the Time Capsule goes off and then comes back on when you restart the Time Capsule?
    Or, does this mean that the power indicator light stays on, but devices cannot connect to the wireless network?
    If you are using an Actiontec modem/router and trying to run both "main" and "guest" networks on the Time Capsule, that is creating an error known as Double NAT.  Sometimes you can get away with this on a simple home network, but the better option would be to run the Time Capsule correctly in the "Off (Bridge Mode" setting.
    Unfortunately, the "guest" network will not operate correctly when the Time Capsule is in Bridge Mode.
    If your Actiontec device really is a modem/router or gateway....as we suspect.....the Double NAT error can cause loss of one or both networks, Can you post back with the model number of the Actiontec "modem" that you have so we can check out the possibility that you have an incorrect setup?

  • Time Capsule wifi stopped working but drive access is ok and 2nd bridged time capsule is working

    After six months of successful setup, the wifi on my new 3TB Time Capsule stopped working. At first I would just power everything down and then power it up and it would come back but it had to be reset multiple times per day. Now it is not working at all. I find this very weird because even though the wifi is not working and I can't access the internet, I still have access to the hard drive through finder on my MAC and through the Network on a PC. Also the 2nd (much older) time capsule I have in bridged mode is working just fine for both the drive and the wifi.

    I think you should take the TC back to apple for testing.
    It does make it confusing if you have multiple wireless AP's .. you should turn off everything but the TC that is giving you problems.. then when the wifi drops out, test with ipad or iphone for instance.. if it is gone .. then take the TC to apple for replacement.

  • My Time Capsule / WiFi stop working.

    My Time capsule stop working and I looked for the support page on Apple's website and to be sure about the model of my Time Capsule I wrote down the serial number of it on the technical support page to make sure that my TC is the 1st generation and as many of you have said already, I'm very lucky to have it working for so long despite the issues of the equipment but I also could read on the Apple's website tech page that " The AppleCare Protection Plan for your computer covers Time Capsule." . Is it true ? Because I do have the Apple Care for my iMac.

    Where can I buy and have the specifications of the parts to replace the dead ones ? I saw a guy who change the power supply to an external MagSafe of MacBooks ... lol
    Thanks.
    Ebay HK will ship anywhere in the world. That is still the best way at the moment. Unless you want to start changing capacitors.. if you have not done soldering of fairly fine boards.. don't!! Get a solution made up.
    Or contact a repairer in your country or nearby.
    The cost of repairs starts to go too high to be economic though.
    You need a set of capacitors if you want to diy. There are plenty of sellers on ebay. You must get the exact right type. Size and performance are vital.
    I gave a whole bunch of methods to fix the TC.. including Magsafe power supplies on my website. The easiest though is a 12v to 5v module and 12v supply.
    See https://sites.google.com/site/lapastenague/a-deconstruction-of-routers-and-modem s/apple-time-capsule-repair
    And there is a list of repairers.
    https://sites.google.com/site/lapastenague/a-deconstruction-of-routers-and-modem s/apple-time-capsule-repairers
    If you want the very cheapest method to at least get the TC running as an airport extreme.. you only need a 5v 2A power supply.. but that is real 2A.. not peak.. continuous, so it is usually better to find 3A. You can then cut off the existing supply board plug and just wire it to the supply. Put the hard disk in a usb holder and connect via usb or buy an esata box and run the cable out..
    Good luck with it.

  • Onload Problem works with IE but nothing else

    I have a flash file in my page which I control the time line
    from buttons . Code as follows.
    I load my swf into a container div with swfobject.
    var flashvars = {};
    var params = {};
    params.menu = "false";
    params.wmode = "opaque";
    var attributes = {};
    attributes.id = "FlashIntro";
    swfobject.embedSWF("./Flash/Banner.swf", "Flashmovie", "914", "201", "8.0.0", "./Flash/expressInstall.swf", flashvars, params, attributes);
    I control its timeline with this code.
    function thisMovie(movieName) {
      // IE and Netscape refer to the movie object differently.
      // This function returns the appropriate syntax depending on the browser.
      if (navigator.appName.indexOf ("Microsoft") !=-1) {
        return window[movieName]
      } else {
        return document[movieName]
    // Checks if movie is completely loaded.
    // Returns true if yes, false if no.
    function movieIsLoaded (theMovie) {
      if (typeof(theMovie) != "undefined") {
        return theMovie.PercentLoaded() == 100;
      } else {
        return false;
    function go(theFrame) {
      if (movieIsLoaded(thisMovie(movieName))) {
        thisMovie(movieName).GotoFrame(theFrame);
    The function go is run onload in the body tag.
    set up cookies
    //Get cookie routine by Shelley Powers
    function get_cookie(Name) {
      var search = Name + "="
      var returnvalue = "";
      if (document.cookie.length > 0) {
        offset = document.cookie.indexOf(search)
        // if cookie exists
        if (offset != -1) {
          offset += search.length
          // set index of beginning of value
          end = document.cookie.indexOf(";", offset);
          // set index of end of cookie value
          if (end == -1) end = document.cookie.length;
          returnvalue=unescape(document.cookie.substring(offset, end))
      return returnvalue;
    function blue() { document.cookie="sitename=0" ;}
    function green() { document.cookie="sitename=1" ; }
    function red() { document.cookie="sitename=2"; }
    function orange() { document.cookie="sitename=3" ;}
    function yellow() { document.cookie="sitename=4" ; }
    function purple() { document.cookie="sitename=5" ;}
    set variable result to positon in timeline
    var result=get_cookie("sitename");
    The functions above control the timeline position and set a cookie variable result is last position so when you leave the page it remembers last position.
    <body onload="go(result);">
    It works fine in IE but any other browser it don't work.
    <body onload="go(result);">
    Please can anyone advise me

    Sorry that still only works in IE.

  • I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data.

    I have an external hard drive from my time capsule that stopped working on me. I am attempting to access the data with a hard drive reader on my MAC. I am able to see the drive in disk utility and under system info USB. But I am unable to access the data and it does not show on the desktop when connected.

    Ok if disk utility was able to verify the drive I doubt there is any problem.. are you trying to open a TM backup??
    You need to mount the sparsebundle then check the actual info inside the bundle.
    Don't use disk warrior.. if the disk has verified then unless you deliberately deleted files there is nothing that is going to do.
    Pondini has a lot of stuff about getting access to the sparsebundle.
    http://pondini.org/TM/17.html
    But if you have copied info to the TC that is now gone.. and the disk is ok.. I am not sure.. the TC will not have deleted the files itself.

  • My Time Capsule does not work with existing WiFi

    Following a question solved on March 24 by LaPastenague, but gone bad again.
    Apple AirPort Time Capsule
    I felt the need for a physical backup of my data, as I would not completely trust the different clouds. I use, and have used Dropbox for 4-5 years and are very satisfied with that, but I am still not sure if or when a political lunatic will shut off the internet.
    I purchased the Apple AP Time Capsule 2T, because all my other stuff are Apple, and that it's wireless. My old backup is Maxtor 300 GB.
    Since we stay 2-3 weeks on two locations, one in Norway and one in Sweden (two different countries) we must use Mobile Broadband 4G, cables or fibre connections are useless for us, and we don't have it up to the houses. I have one mini router for each country, we bring with us iPhones, iPads, iMac, Apple TV, APExpress. When we pass the boarder I change the mini router, and the system continues working perfect on the WiFi, except the APExpress that needs to be reconfigured,  but then it works.
    The APTC was difficult to make working as it would not accept to be in an existing network, but with good help from the Apple Community, LaPastenague, with forcing the TC connect to the APE with Ethernet cable in bridge mode, ref "My Time Capsule does not work with existing WiFi" from March 24, the problem was solved and all gadgets worked together in a perfect harmony, until we changed location.
    Now, as I have my second WiFi network, and the APExspress is reconfigured, it's like the TC thinks, I am the base boss here, I am not taking orders from APE one more time, and it simply does not work, not only that, it fluctuates all the time.
    I have a slight feeling that the two WiFi bands are making the trouble as during the configuration of the TC sometime the last figure 6 and 7 pops up, and that has something two do with the two different 2,4 and 5 GHZ bands
    So, I am curious if you have any idea ?
    I am thinking of returning the TC if I don't make it work now, but how do I delete all the data that's on it?

    I can deal with the last question first and easily.
    I am thinking of returning the TC if I don't make it work now, but how do I delete all the data that's on it?
    Open the airport utility .. go to the disk tab and select erase.
    When you select erase you will get mulitiple options.
    Quick removes the file table but does not delete the files,, it takes 2min or less.
    A Zero out data is the secure way,, by writing 0 ie low level drive format.
    It can take several hours..
    7 pass will take a week.. not recommended..
    35 pass erase is ridiculous.. it would take a month.. put an ax through the TC. It is quick and better.
    Now, as I have my second WiFi network, and the APExspress is reconfigured, it's like the TC thinks, I am the base boss here, I am not taking orders from APE one more time, and it simply does not work, not only that, it fluctuates all the time.
    The fact that it did work and has now failed might point to faulty unit.
    The only way to tell is reset it properly to factory and start over.
    Universal Factory Reset.. any model TC or AE.
    Unplug your TC/AE from power or turn off at the power point.
    Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. (this is often difficult without a 2nd person or a 3rd arm).
    Release it when the status light flashes rapidly. If it doesn’t flash rapidly you have missed it and try again.
    Note..
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations of the router.
    No files are deleted on the hard disk in a TC.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Generally having multiple wireless AP should not cause problems.. but it is better to set channels manually.. so it doesn't go beserk rotating channels.
    Remember to keep all names short, no spaces and pure alphanumeric.
    Sadly though the Apple routers have no logging now and no SNMP and almost nothing to help diagnose a problem, so if it continues .. take it back to apple.. they have given you no other method of fixing it.

  • HT2284 My Time Capsule just stopped working.

    Thank you in advance for any help. My Time Capsule just stopped working and I do not get the 'Connection Failed' error message as the Time Capsule is not showing up in the finder window. The light continues to flash amber on the Time Capsule. I am using it with my iMac running Lion. Any help will be really appreciated.

    This is just typical Lion.. reboot the TC.. if that doesn't work.. reboot the whole network from fully off.. in order.. modem.. router/TC.. clients. 2min gap between each.
    If still has issues.. press reset on the TC and redo it.
    Download a utility that has tool properties..
    http://support.apple.com/kb/DL1482
    Just ignore the toyland version in Lion.
    Next time it happens go to disk page in the utility and hit disconnect all users..
    C12 and C17 can suggest some other things.
    http://pondini.org/TM/Troubleshooting.html

  • My time capsule has stopped working.

    My time capsule has stopped working. I get following error message The backup disk image “/Volumes/Michael Campbell's Time Cap/iMac.sparsebundle” could not be accessed (error -1). I tried everything including deleting all the data and starting again. It then works for a few back ups and then gives the error message. I have tried to repair the disk but that is grayed out.

    Found this elsewhere so I will try it
    Go to App folder
    Open Utilities
    Click on AirPort Utility
    Highlight your Time Capsule
    Go to Manual Setup
    Click on Disks
    Highlight your Time Capsule
    Click on Disconnect All Users
    Close AirPort Utility
    Go to Systems Preferences
    Click on Time Machine
    Click on Select Disk
    Find your Time Capsule and highlight it
    Then click on USE BACKUP DISK.
    Go to the Menu Bar and click on the Time Machine Icon
    Click on Backup Now
    It should work

  • The WiFi on my Time Capsule suddenly stopped working

    Hi,
    Im not sure what to do, hopefully somebody out there is able to help me with this... Suddenly the Wifi stopped working from my TC. I have not changed any settings or anything...
    I only use the wifi on my MacBookPro and on my iPhone 4S. I was streaming a movie this morning and everything was working fine. Then a few hours later when my computer is trying to connect to the wifi "PPPoE Connecting" scrolls next to the wifi-symbol, and nothing happens. My iPhone connects to the Wifi, but I am not able to surf the net or check my emails...
    My MacBook can find the TC and all the data I have stored on it, it is only the wifi that is not working.
    I have tried to switch it off and on again, but nothing helps...
    I really hope that someone out there might know what happened and what I can do about it???
    /Eva

    Is it the AC model.. tall one?? If not the exact model model please from the rubber mat on the bottom.. A1xxx ..please don't give us the serial number.. that is harder to work with.
    Please tell us the whole network setup..
    What modem you use? make and model helps..
    Is the modem running also as the main router or is bridged?
    Is the TC router or bridge?
    You have power cycled the TC .. have you power cycled the whole network? Power on in correct order.. modem.. wait two min.. TC .. wait 2min then the clients.
    No luck factory reset.. see method below.
    Redo the setup.
    This time use all short names, no spaces and pure alplhanumeric.
    ie TC name = TC
    Name of 2.4ghz = TC24ghz
    Name of 5ghz = TC5ghz (please set a different name for 5ghz).
    The Factory Reset TC Gen1-4. Or AE Gen1-5
    Unplug your TC/AE. Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec.
    Release it when the status light flashes rapidly. If it doesn’t flash rapidly you have missed it and try again.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Factory reset TC Gen 5 or AE Gen 6
    Hold in reset for about 5sec until the status light flashes quickly.
    If your AirPort AE or TC still doesn’t respond, do a similar reset to the Gen1-4.
    Unplug your AE/TC .. hold in reset and power the TC/AE back on.. without releasing the reset.. wait until status led flashes rapidly.

  • My time capsule has stopped working since installing Yosemite. It says to wait to tell me how much longer but it stays that way for hours.

    My time machine has stopped working since I upgraded to Yosemite. It gets to the point that says it will estimate the time remaining, but it never gives me that answer and it just stays on that page and never completes it's backup. This is a brand new macpro, so I wanted to capture the previous info on my computer I was able to put my external hard drive on new computer and it did the migration and all my old info returned. However, two days later I wanted to do a backup using Time Machine with my Western Digital Mac external hard drive but it won't progress past saying how much time remaining, even after several hours of sitting there.

    You do need to wait a long time.. as it takes a long while for Yosemite to index the existing backup if it is large.
    Here is Apple's List of bad things that happen to TM in Yosemite.
    OS X Yosemite: Time Machine problems
    It is clearly no where near as comprehensive as it needs to be.
    I presume your disk has your old backup.. it may be better to keep the old backup.. save that for the future.. and get a new disk and start a fresh clean backup.
    I would also recommend using Carbon Copy Cloner or similar for the time being. Make a bootable clone backup of your drive to a new external drive.. it is really superior in lots of ways to Time Machine. And does show you what it is doing.
    For TM at least you can still use the widget so you have some log access to that TM does.
    A1 here. http://pondini.org/TM/Troubleshooting.html

  • Time Capsule WiFi stops when copying large files to Windows 7 (Bootcamp) using WiFi

    I've got a new Time Capsule (Purchased less than a month ago) and a new Macbook Pro.
    I copied a large set of files (large in QTY & some Large in size > 2GB) to my Time Capsule from a Windows 7 computure via a Wired connection.
    When I access the time capsule from Mac OS X (10.8.2) I can copy all of the existing files to my Mac without any issue (Time machine also seems to be working fine).
    However when use I Bootcamp (Windows 7 Ultimate) from my MacBook (The Time Capsule / Airport software for windows has been installed) I can only copy about 100 MB before the WiFi in the time capsule stops working. The WiFi doesn't just stop working for Windows, it stops working on the actual Time Capsule; I can tell because my phone and iPad both lose their connection and the AirPort Utility on the iPad can't detect the Time Capsule any more.
    The issue is reproducable every time with the set of files I am trying to copy.
    I've called Apple Support and they said there was nothing they can do to help (It took a long time to even convince some one that this is a supported configuration even though the Technical Specifications of the time capsule clearly state that Windows 7 is supported - http://www.apple.com/timecapsule/specs.html "For AirPort Disk with a USB hard drive - PC with Windows XP (SP3), Windows Vista (SP2), or Windows 7 (SP1)")  at which point they told me to take it to a Genius bar. I've subsequently done that and been told that they will not support the Time Capsule because I am trying to connect to it using Bootcamp.
    From what I've seen on this forum some people previously had this issue and worked around it by downgrading the firmware. However, since my Time Capsule is new, I am unable to downgrade the firm ware (& it is the latest).
    Any suggestions?

    No, it's not a Windows driver issue. 1) If it was a Windows driver issue the network copy would drop out on the Windows machine or fail rather than the whole Time Capsule losing WiFi connectivity for all devices in my house. 2) I am able to copy the exact same set of files, via the Time Capsule WiFi, when the files are stored on my PC which is plugged in to the Time Capsule via an Ethernet cable.
    It's not a problem copying the same files from another location on my network with the MBP in Bootcamp therefore it' not a windows driver issue and it's not a network IP issue. It's a Firmware issue with the Time Capsule.
    At best this is a bug that has been reintroduced in the latest firmware which is why the suggestions have been to downgrade the firm ware.
    At worst this is a major security issue with the Time Capsule as copying a set of files from it's hard disk via it's WiFi, using a Windows computer, cause the Time Capsule to be subseptiable and result in a Denial-of-Service.

  • Time Capsule and iTunes working with external HDD

    Hello all.
    I have a situation I would to share with you and see if there is a solution.
    I have a PC and a Macbook Air. I had a Time Capsule which had my iTunes library but the drive failed and I lost everything. However when it was running things weren't going great. Because the Time Capsule was a bit clever, it only spun the HDD when TIme Machine was backing my MBA.
    This meant that I had trouble accessing my iTunes library because it wasn't always available. So I would have to locate the library on most occasions and on even more occasions iTunes lost the links with my media files and had to go through the time consuming 'Find files' process.
    I was wondering if an answer to my problem would be to store all my music and other media on an external HDD (like the GoFlex). The I could plug it into my PC, then my MBA and if I wanted to make it avable to both I could plug it into Time Capsule and it would 'broadcast' it to both.
    I was wondering if anyone had tried this and how it worked, Would iTunes see the HDD plugged directly into the MBA as the same as the HDD being plugged into the Time Capsule?
    I look forward to hearing your suggestions.

    Scipio7 wrote:
    it shows 3GB out of 3GB instead of 3GB out of 40Gb total.
    Where are you seeing those values?

  • HP All in One mx8500 stopped working with MacBook Pro

    So I have a MacBook Pro and a small Sony Vaio (that I seldom use) and both were configured to the HP when I brought it home.  I have used it almost exclusively as a wiresless with good results until one day it stopped working with the MacBook Pro.  MacBook is operating on Snow Leopard and is routinely updated.  The HP simply does not recognize the MacBook any longer-won't print from it nor won't scan to it.  It doesn't give an error message, it just pauses and when I tell it to resume, it pauses again.  I have tried using it with the wire to connect the two and that doesn't work either.  All this time, if I switch to the Sony, it performs perfectly.  Any hints???

    Download and install this: http://support.apple.com/kb/DL907
    Reset the printing system:
    - Go to System Preferences > Print & Scan
    - Right (or control) click in the rectangle listing your printers and select Reset Printing System.
    WARNING - this will delete ALL of your printers!
    - Select the plus sign to re-add a printer. Select the Defualt tab on the top of the window. Look for the printer, select it and wait until the "Add" button becomes available. Click it.
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Time capsule wifi not working

    My time capsule wifi is not working.  I believe the issue happened around a couple upgrades ago. 
    I've searched the internet the found that others have downgraded airport utility and time capsule firmware.
    Airport Utility - 5.6.1
    Time Capsule - 7.5.2
    OS x yosemite
    I'm able to see the time capsule and backup but I can't see the wifi SID.

    That is gen3 and getting well past the 3year reliable period.
    I think you are simply due for replacement.
    You can update the firmware to 7.6.4 although on these old units I recommend no greater than 7.6.1
    And I doubt it will fix anything. There is no reason 7.5.2 should not work.
    I am unsure how you are getting 5.6 utility to work in Yosemite.. but try using the native airport utility.. which is 6.3
    Please open the airport utility and set fixed names for wireless and the base station that are short, no spaces and pure alphanumeric.
    Then lock the wireless channel but put no wireless password onto the TC .. if it still won't work, sorry it is dead on the wireless side and it is time to replace.

Maybe you are looking for