10.4.8: Airport busy-loops when in range of a WPA2 Enterprise network

After installing the 10.4.8 upgrade, the airport process hangs at 100% CPU when within range of a network secured with WPA2 Enterprise. The solution has been to kill it via "Activity Monitor". Everythin works fine with a normal WEP network.
The workaround has been to turn airport off before entering the office. Forgetting to can completely disable login. The machine just hangs, without accepting keyboard input for the password. The mouse pointer (that delightful beach ball) moves, though.
Anyone have suggestions as to how this may be fixed?
MacBook Pro 15"   Mac OS X (10.4.8)  

And, yes, I have tried that "remove & add back to preferred networks"-thing.

Similar Messages

  • Administrative credentials when adding a WEP/WPA/WPA2 Enterprise wifi profile?

    Hello,
    Why do users need to provide administrative credentials when they install a configuration profile containing installation of a WEP Enterprise or WPA/WPA2 Enterprise Wifi-profile? This is not the case when installing a Wifi-profile usning standad WEP, WPA or WPA2.
    Is this a bug? It confuses users with user profiles when they need to confirm the installation with administrative credentials.

    I don't know the answer to your question. Maybe you can find something here:
    http://training.apple.com/pdf/WP_8021X_Authentication.pdf

  • Airport Express bridge mode over WPA2 Enterprise?

    I have an Airport Extreme running WPA2 Enterprise with RADIUS on a Snow Leopard Server. Is it possible to have the Express join the WPA2 Enterprise network as an ethernet bridge? I can't seem to set it up. Something tells me this only works with WPA2 Personal?

    When you set up the APExtreme through Server Admin, it takes care of all the secret passwords and what-have-you. I did some digging on Apple's site, and it looks like the APExpress can only act as a bridge on WPA2 Personal networks and below. No worries; I am just temporarily running an engineer's SIP phone over wireless, so I brought an old Buffalo router I had kicking around at home into the office; set it up as a WPA2 Personal access point, and have him running off of that with the APExpress as the bridge. This is just a stopgap until I can get him a proper ethernet drop. Thanks for the help regardless.

  • System Exit Overriding Busy Loop

    Hi,
    Why would the following code not result in a clean JVM termination when SIGINT is sent? The JVM appears to capture the SIGINT correctly (it hits the shutdown hook), but the System.exit(-1) call cannot seem to override the busy loop and terminate the spawned thread. Is this expected behavior for the VM?
    public class TestSigInt {
         public TestSigInt()
              new Thread()
                   public void run()
                        while(true)
              }.start();
              Runtime.getRuntime().addShutdownHook(new Thread()
                   public void run()
                        System.exit(-1);
         public static void main(String[] args)
              TestSigInt tsi = new TestSigInt();
    }Thanks,
    hhung

    Is this expected behavior for the VM?Yes. See javadoc for System.exit(), that leads to to Runtime.exit():
    If this method is invoked after the virtual machine has begun its shutdown sequence then if shutdown hooks are being run this method will block indefinitely
    So the method blocks (and presumably does nothing, but I admit I'm making up that last bit) if called as part of a shutdown hook.
    the System.exit(-1) call cannot seem to override the busy loop and terminate the spawned threadRegardless of the fact that it's called from a shutdown hook, which previous messages (and the javadoc quoted) already question, there's nothing in the API javadoc that suggests that threads are gracefully "terminated".
    This situation is not different from regular situations when you want to nicely end a thread in an otherwise running Java application: the API does not provide any built-in API (except Thread.stop() and destroy() which are deprecated and which use is strongly discouraged) to stop a running thread.
    See Thread.interrupt() which somehow "kindly" requests interruption of a running thread, but this requires cooperation of the target thread (whose code shoud regularly poll Thread.getCurrentThread().isInterrupted() and terminate accrodingly).
    The usual recommendation to make this more explicit in the code, is that the thread's code regularly checks a business-logic specific boolean, such as:
    class StoppableTask implements Runnable {
        private boolean shouldContinue = true;
        public void run() {
            while (shouldContinue) {
                // do stuff
        public void requestStop() {
            shouldContinue = false;
    public void class StopperThread {
        StoppableTask target;
        public void doOtherStuff() {
            target.requestStop();
    }This requires cooperation form the target thread's code as well, so this is not conceptually different from the interrupt() scheme, it just has different scope (it won't unblock IOs for example).
    Note that I deliberately used Runnable as opposed to Thread, first because it is a recommend practice (but you may know that already and your example was intentionally shorter to get to the point), second to highlight that the specific-solution does not use any built-in java.lang.Thread method.
    Edited by: jduprez on Dec 8, 2009 11:28 AM

  • I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.

    I can't print wirelessly using Airport Express.  I have my HP printer connected to a USB hub, and the hub to the Airport Express, but when I select the HP from the printer list, my MacBook says the printer is "off-line" - even when it is not.  I've tried several USB connectors, and several different ports on my USB hub; same result.  I need to have the HP connected to the hub 'cause from there it's connected to our desktop Mac.

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to terminate or exit a for loop when the user clicks on stop button

    Actually my problem is to stop a loop when i click on stop button.
    example:i have two buttons 'start' and 'stop'
    in start buttom i wrote a for loop as
    dim i as integer
    For i=1 To 100000
    print i
    Next
    when i click on start buuton it prints 'i' value up tp 100000.
    my question is when i click on 'Stop' button the for loop has to terminate or Exit from the  loop and should stops the execution.
    Is it possible to termianate or Exit the 'for loop'
    PS.Shakeer Hussain
    Hyderabad

    I am unable to stop the loop and application not at all allowing to Press the Stop button.
    It seems like Hung, any advise ?
    Private Sub btnStart_Click(sender As Object, e As EventArgs) Handles btnStart.Click
            btnStop.Enabled = True
            btnSelectFile.Enabled = False
            btnStart.Enabled = False
            btnStop.Focus()
            Dim strFileName As String = txtFileName.Text.ToString
            Dim strLineText As String
            If System.IO.File.Exists(strFileName) = True Then
                Dim objReader As New System.IO.StreamReader(strFileName)
                While objReader.Peek() <> -1 And stopclick = False
                    strLineText = objReader.ReadLine()
                    MsgBox(strLineText, MsgBoxStyle.Information)
                    Application.DoEvents()
                    Thread.Sleep(My.Settings("strDelay") * 1000)
                    'System.Diagnostics.Process.Start(My.Settings("strFireFoxLocation"), strLineText)
                End While
            End If
        End Sub
        Private Sub btnStop_Click(sender As Object, e As EventArgs) Handles btnStop.Click
            stopclick = True
            btnSelectFile.Enabled = True
            btnStart.Enabled = True
            btnStop.Enabled = False
        End Sub
    Raman Katwal
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • How to stop while loop when a specified function is terminated?

    I want to make a program which has 2 thread, one of which is to control some devices, and the other is to measure outputs of the devices.
    To do that, I should make a 2 independent loops, but there comes a problem here.
    I want to terminate 2 loops at the same time, but it's difficult for me to do that, because when I try to notify upper sequence's termination to lower loop by some value change, they have some dependency.
    That's why I need your help. I want to know how to stop lower loop when the upper sequence's termination keeping their independency.
    Please let me know. Thank you.
    Attachments:
    help.JPG ‏200 KB

    Is the upper loop commanding the lower loop at all?  I would think you would have some type of communication between the loops.  Just use that communication to send a stop command.  Or the next best way is to just simply use a notifier.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Airport error message when trying to connect to internet

    Hi,
    My iBook G3 has been unable to connect to the internet via our newly installed satellite service. When the service was first installed, it connected, but now it doesn't/ My G4 desktop iMac connects fine but not the laptop.
    I have gone into the keychain control, deleted the network and then tried to reconnect, to no avail. The computer knows that the network is there, but can't join.
    Another related issue: I get into an endless loop when I try to go into Network in System Prefs. The error message says, "Your network settings have been changed by another application." The same message shows up on my iMac desktop computer, too, although I have no trouble getting online with that computer.
    Thanks for any help you can give.

    This article may help explain the Error -43
    http://docs.info.apple.com/article.html?artnum=107032
    Even though the article is about connecting to an SMB share, most of it can still hold true when connecting via FTP.
    If you haven't yet, you may want to try using a 3rd party FTP application, such as CyberDuck http://www.versiontracker.com/dyn/moreinfo/macosx/14426
    Ben

  • How do I resolve error 10057 when trying to set up my airport express to extend the range of my wireless network

    I have a Dell XPS running on Windows 7 and use an AirPort Extreme 802.11n Wi-Fi to get wireless internet access for other laptops in the home. I want to connect an AirPort Express 802.11n into the network to wirelessly extend the range of my wireless network. I have installed the AirPort Utility but when I attempt to connect to the AirPort Express, it gives me an error code 10057 and says I should check the internet connection. I have tried resetting the TCP/IP settings on my PC but that did not fix the issue. The Airport Express is also flashing yellow rather than solid green. Has anyone found a fix for this issue?

    This sounds as if you have an older AirPort Express that is no longer supported by the newer Mavericks operating system.
    To check and see if  that might be the case, locate the model number on the side of the AirPort Express. It will start with an "A" followed by four numbers. Hard to see in the faint print.....so you may need reading glasses or a magnifying class to see the model number clearly.
    Model numbers A1084 and A1088 of the AirPort Express are no longer supported by AirPort Utility in Mavericks.
    You will need to use a Mac running Leopard, Snow Leopard, or a PC to be able to administer the older AirPort Express.

  • Do you have to add effects to Logic Pro X loops when mixing a song?

    Hi everyone,
    I have a question that has been puzzling me and I cannot seem to find an answer for! I have searched high and low on the internet and still cannot find the answer and so I would be grateful to everyones help with this issue.
    My question is that you hear so much about the fact that when you are recording and mixing a track that different instruments for example the Bass Drum and the Bass guitar occupy similar frequencies and we are told that this is why you have to add effects to these instruments when mixing but what I want to know is are they talking about just organic instruments like real drums and a real bass guitar that you manually play and record to Logic Pro X`s audio tracks? Or should you treat the Loops exactly the same? And should you also add effects to the Logic Pro X loops when you are mixing those specific tracks?
    For example if I add a Drum Loop or Bass Loop to a project and then start mixing the song should I add any effects for example EQ, Compression to these Loops? And what would be the best effects to add to the Bass and the Drums when mixing to help them stand out in the mix?
    Many thanks.

    Jamiesroom wrote:
    ... when you are recording and mixing a track that different instruments for example the Bass Drum and the Bass guitar occupy similar frequencies and we are told that this is why you have to add effects to these instruments when mixing ...
    Whoever told you that overly generalized rule, please stop listening to that person .
    The way you post your question (and they are good questions) points out a big problem nowadays. There is so much cookie cutter solutions out there like if you have this, then use that, if you want to get this sound, press that button. The problem with that is that you you often have no idea why you are doing that in the first place.
    Let me give you a simple example about gardening (sorry about that). If I grow tomatoes and look up on the internet how often to water them, I can find an answer "water the tomatoes once a week". I might do that and result is that the tomatoes will die. What I didn't take into account is that the advice was given from someone growing tomatoes in Russia, and I live in California where I might need to water them once a day. So, the answer you are looking for is not "how often to water the tomato", instead you have to learn how much water, depending on your climate, the tomato needs"
    Your music is the tomato. So the question is not what button to press (how often to water), but what button needs to be pressed, depending on your specific recordings (your climate).
    If your bass drum and and bass guitar are more further apart frequency wise, then there might be no need to EQ them, it depends
    Nobody should or could tell you what to do, unless he or she sits next to you at the mix and "hears' what is going on and what needs to be done.
    Don't get me wrong, I don't say that there is a lot of great advice and general guidelines out there. The problem is when you apply that blindly without knowing a little bit why that advice is give and how to apply that, or if it applies to your situation at all.
    In addition: The skills and knowledge about the theory is as important as the skills and experience of listening and judging your recording/mix and decide what action to take.You have to learn what to listen to and what you hear. If you don't know how distortion sounds then you miss out on fixing that issue. If you don't know how a pumping compressor sounds, then you miss out on fixing that issue.
    I think you get the idea
    Hope that helps
    Edgar Rothermich
    http://DingDingMusic.com/Manuals/
    'I may receive some form of compensation, financial or otherwise, from my recommendation or link.'

  • I have an airport extreme attached to cable, then one airport express to extend the range. when i try to add an additional airport express to extend range in another area of house, can't get it to work. unility says it has found a new base station

    i have an airport extreme attached to cable, then one airport express to extend the range. when i try to add an additional airport express to extend range in another area of house, can't get it to work. utility says it has found a new base station and asks if i want to use it. if i click yes, then the old setup is disabled.

    Ok, thanks for clarifying which models you have. Please see the following Apple Support article on how to configure these older base stations for a Wireless Distribution System (WDS).

  • My time capsule will allow only one machine to connect to the internet at a time. Connection sharing is "off" on the Airport Utility. When I try to share an IP address I get the message that "DHCP range that I entered conflicts with the WAN IP address" I

    Suddenly, my time capsule will not allow more than one computer to connect to the internet at a time. On the Airport Utility on the internet tab, Connection Sharing is "Off (Bridge Mode)" When I try to change it to sharing an IP address, I get two messages that the beginning and ending DHCP addresses that the DHCP addresses I've entered conflict with the WAN address of my Apple wireless device."
    Any ideas?
    Thanks

    I use a DSL to connect to the internet. The modem is a Westell C90-810030-06. Two things happened in connection with the fail. I upgraded the firmware in both my Time Capsule (connected to the DSL) and the Airport Extreme (connected to my printer--used to extend the network). I also upgraded my Colof Nook to the Android Faux Tablet version. I can't imagine that that is creating some sort of mismatch.
    I have now downgraded the firmware on the Time Capsule to 7.4.1 which is what I had before. Fortunately, I found the trick to downloading the older airport utility to find the older firmware. All the older versions disappeared from my computers.
    I still have the same problem. Wifi works fine. If a second device connects to the wifi, then it works fine, but the first no longer has a connection.
    And my Airport Extreme is not working at all. It cannot be seen by the computer. I tried resetting it. I'm going to connect it by ethernet and downgrade the firmware on it.
    I appreciate any help. This is so frustrating.

  • Looping Quicktime Movies in Keynote & Keeping them Looped when Rendered

    Okay I have a quicktime movie that I am using as the background of my slide show. I have text fly in and out over the movie. I can get the movie to loop when I view the slideshow but when I try to export the slideshow to Quicktime the Background quicktime movie only plays once and then stops. I want the quicktime background to continue to loop when I render the entire slideshow to quicktime. And yes I have checked the loop box in the quicktime tab in the inspector window. Please Help!

    Yes, it is one slide with layered builds going in and out. The first 2 times I tried this it worked then on the same keynote file it stopped working on the second render and now it does not work even if I create a new file.
    While I do understand that I could make my slideshow, time it and loop the movies together in iMovie I do not feel that I should have to render two separate things loosing quality on each render because of the time aspect.
    Why would it work and all of a sudden stop? I should not have to go through iMovie making loops and rendering things twice when Keynote should be working.

  • I have a for loop inside of while loop.when i press stop for while loop, i also would like to stop for loop.how can i solve this problem?thanks

    i have a for loop inside of while loop.when i press stop for while loop, i also would like to stop for loop.how can i solve this problem?thanks

    Hi fais,
    Following through with what JB suggested. The steps involved in replacing the inner for loop with a while loop are outlined below.
    You can replace the inner for loop with a while by doing the following.
    1) Right-click of the for loop and select "Repalce" then navigate to the "while loop".
    2) Make sure the tunnels you where indexing on with the for loop are still indexing.
    3) Drop an "array size" node on your diagram. Wire the array that determines the number of iterations your for loop executes into this "array size".
    4) Wire the output of the array size into the new while loop.
    5) Set the condition terminal to "stop if true".
    6)Drop an "OR" gate inside the while loop and wire its output to the while loops condition terminal.
    7) C
    reate a local of the boolean "stop" button, and wire it into one of the inputs of your OR gate. This will allow you to stop the inner loop.
    8) Drop a "less than" node inside the inner while loop.
    9) Wire your iteration count into the bottom input of the "less than".
    10) Wire the count (see step 4 above) into the top input of the less than. This will stop the inner loop when ever the inner loop has processed the last element of your array.
    Provided I have not mixed up my tops and bottoms this should accomplish the replacement.
    I will let others explain how to takle this task using the "case solution".
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to stop a while loop when using tab control

    How do you use a tab contol to stop what is happening on one tab when you switch to another tab?  In the test example I attached, I have a while loop nested inside a case structure controlled by the tab control.  When I tab to page two the elapsed timer starts but when I switch to another tab it does not stop.  I can't come up with an easy way to stop or exit the while loop when I change tabs. 
    Thank you
    Danny
    Attachments:
    tab control.vi ‏24 KB

    I played with it a little more and came up with this fix.  This fixes it but is not tied to the changing tabs as I was looking for.  Is this just too many nested loops and a bad idea?
    Danny
    Attachments:
    tab control fix maybe.vi ‏26 KB

Maybe you are looking for

  • Does spline-interpolation work? (what's it supposed to do?)

    Hello!       I was told (by a co-worker) that Spline_Interpolation[Xi] should exactly match a "tabulated" Y (input) if Xi was one of the "tabulated" X input values.  I don't know if this is correct - if it is, then the function isn't working as expec

  • ESS Scheduler metadata information in SOA Composite

    Hi, I am working on SOA 12c and Scheduling a SOA Composite, in the process i need to track the ess scheduler request id within SOA Composite and log the composite details with ess scheduler request id. how this can be achieved Thanks & Regards, ANVV

  • Memory managment for classes inheriting from PObject.

    Hey, I have a class that inherits form PObject, and im not sure how to manage the memory for it. In profiles, it shows up as leaks, so im sure im doing something wrong. First, how do i figure our what type of PObject it is (Transient or Persistent) .

  • How to reset connection to server?

    Somehow when clients  are logging in they are retaining a login that  doesn't allow them to see the shares from  the Snow leopard server. I've trashed managed prefs, trashed the keychain and recreated, but when the client Logs in, and performs a conn

  • Is a Macbook up to running FCP?

    Hi all. I know FCP is a 'heavy' program and in an ideal world you would not want to mess about trying to use FCP on a Macbook (the specs are as listed for my machine), however my employers have recently requested that I be able to capture clips off a