Any way to force a specific 802.11X protocol?

We have a Cisco wifi system that offers 802.11a/b/g/n simultaneously. In viewing the network with the Cisco admin tools, we are seeing that a bunch of the Macs are connecting over 802.11b and many over 802.11a. Almost all the machines are Core 2 Duo MacBook Pros (with the N enabler). Is there a way to tell the MacBook Pros to connect to a given network forcing a SPECIFIC protocol (802.11n)?
We will be turning off 802.11b, so that won't be a problem in the future. But for some strange reason, most of the Macs are not choosing 802.11n as their first choice. We cannot turn off 802.11a because it takes n with it.
Any help, even if it means going to the command line, is appreciated.
Also, a related question, is there a way on my Mac to see which protocol I'm using at the moment? That doesn't seem to be shown in System Preferences or in System Profiler. TIA!
Cheers,
Alex

Alex, I have a Cisco AP-1131AG 802.11a/g WAP at home and I've overcome the problem by setting the a and g networks to different SSIDs. They also use different encryption keys. The only way I've been able to consistently get my MBP to always attach to the a network is to not have a network profile/preference set to the g network in System Preferences -> Network -> Advanced -> Preferred Networks. I use the a network and the kids use the g network.
Periodically however, the MBP doesn't see the a network so since it doesn't have the g network information it can't connect. I suspect this is an OS X issue but I don't have another a device to verify that the a network is still connecting. The WAP reports 'authentication failed' and then 'packet to client reached max retries, removing the client'. I resolve this by disabling and then re-enabling the MBP AirPort.
There seems to be an issue with OS X not always abiding by the Preferred Network order so only the above solution works. Incidentally, not too long ago Apple changed OS X so each network location profile maintains its own set of configurations. This is a bit of a pain for me with my cellular broadband card (I have to remember to switch between location profiles or create a configuration for every location profile). I wish OS X had an option to mark certain configurations as 'global' to work across every location.
Anyway you can also manage the issue with say one location profile for work and another for home, etc. Is your enterprise using the same SSID for all protocols? If so, then different encryption keys would accomplish the same thing but I don't know if that's possible at the protocol level.
Are you using an Aironet 1250? I wish there was a way to communicate these issues to Apple but this is way too technical for the AppleCare folks. There just doesn't seem to be a way for sophisticated customers to get to the higher level support folks and with no corporate level support organization, we just have to wait and hope someone notices the problem and fixes it.

Similar Messages

  • Is there any way to force time machine to keep retrying after disk i/o error?

    a little background to my problem:
    i've had a hard drive problem previously, and i managed get all the data off of my mac by trying and retrying to access the same files and also from my working time machine backup. after zeroing out and reformatting my drive and doing a clean install of Mavericks i had everything back up running no problems.
    recently, my macbook pro would be stuck and slow in recently imported iphoto pics so i figured my hard drive is really failing this time around
    i try to get a time machine backup to save what i can, but after a couple of tries time machine would just stop backing up and in console i would see a disk i/o error.
    is there any way to force time machine to keep trying to backup through the disk i/o error so i can save what i can before getting a new drive?
    edit: a little more info, i know i have a harddrive error from looking at the console, but when i do a verify disk in disk utility it comes up clean and even after doing a disk repair it comes up clean i still see disk i/o errors in the console.

    See:
    *http://kb.mozillazine.org/Preferences_not_saved
    Thee can also be a problem with the file(s) that store the extensions registry.
    Delete the files extensions.* (extensions.sqlite, extensions.rdf, extensions.cache, extensions.ini) and compatibility.ini in the Firefox [[Profiles|profile folder]] to reset the extensions registry.<br />
    New files will be created when required.
    See "Corrupt extension files":
    * http://kb.mozillazine.org/Unable_to_install_themes_or_extensions
    If you see disabled, not compatible, extensions in "Tools > Add-ons > Extensions" then click the Tools button at the left side of the Search Bar (or click the "Find Updates" button in older Firefox versions) to do a compatibility check or see if there is an update.

  • Is there any way to force iPhoto to present faces by folder for identification rather than randomly?  Would provide better context for identification especially if a huge number of images is involved.

    Before I commit the time and energy required to load and tag faces in 25,000 images within iPhoto, I need some questions answered;
    Is there any way to force iPhoto to present faces by folder for tagging rather than randomly?  When so many images need tagging, over many years, the context of a folder helps with the identification. The work around is to load the images into iPhoto one folder at a time and do the tagging then.
    How do I get iPhoto to present the tagged faces by last name rather than first name? When so many faces will be identified, it is much easier to find people by surname, particularly when I share the library within the family. The work around is to enter names as last name and first name.  Being able to toggle the sort is much more desireable.
    Is there a way to export a portion of the library including faces?  I want to pass on portions of this huge 125 GB library to my family members.
    Since my family members will need an Apple computer to view the images and faces, they will likely have their own photo library.  So is there any way to combine two libraries and merge the faces?
    About 2/3 of my images have been scanned, so the date of creation is the scanned date rather than the date the photo was taken.  Will this mess up any sequencing or the retrieval of faces?

    If I want to carve off part of a library, I presume the way to do this is to make a copy of the library using PLM then go into iPhoto and delete what I don't want.  The result is the carved off portion.
    You don't need Library Manager to delete the portion you don't want.
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    If I want to merge two libraries, PLM implies that it will do this but will the Faces be merged too?
    I believe so.

  • Is there any way to force purchase an unsupported app?

    I'm currently stuck on OS X 1.7.5 since my MacBook Pro isn't compatible with anything more recent than that.
    However, I'll be upgrading to a new Retina MacBook Pro very soon and I'd like to purchase an OS X app that requires 10.8, since it's currently heavily discounted.
    Is there any way to force purchase it on my 10.7.5 system so that I'll be able to use it when I upgrade to a new Mac?
    Thanks!

    No.
    GB

  • Is there any way to force Sun C++ Preprocessor preserve whitespace?

    Hello!
    I'm preprocessing simple source file:
    void test()
        int i;
    }with command: CC -E test.cpp
    and CC preprocessor eats all whitespace at the beginning of each line, like this:
    void test()
    int i;
    }Is there any way to force CC preprocessor preserve whitespace?

    You cannot use the C preprocessor on C++ code, for at least two major reasons.
    1. The default -I options in CC are not the same as for cc. Try adding
    #include <iostream>
    #include <cstdlib>
    to your example.
    Even if you add the missing -I options, the conventions for finding the C++ standard headers are not known to the C preprocessor.
    Example:
    % cc -P -I/opt/SUNWspro/prod/include/CC/Cstd -I/opt/SUNWspro/prod/include/CC -I/opt/SUNWspro/prod/include/cc z.c
    "z.c", line 2: cannot find include file: <cstdlib>
    cc: acomp failed for z.c2. The predefined macros (-D options and predefined macros built into the compilers) are different for cc and CC.
    In particular, the C compiler predefines macros saying it is a C compiler. The C++ compiler predefines macros saying it is a C++ compiler. Code that is conditionalized on whether it is compiled by the C or C++ compiler will give different results. If you add -D options for C++ macros, the results will depend on the way the tests are coded. That is, testing for a C compiler or a C++ compiler will not give mutually exclusive answers, as they would if you use the correct compiler. The Solaris headers have conditional code for C and C++.

  • IS THERE ANY WAY TO FORCE KEY COMMIT

    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

    Hello,
    Try the following in Key-Exit trigger:
    BEGIN
    IF :system.form_status = 'CHANGED' THEN
    DO_KEY('COMMIT_FORM');
    ELSE
    EXIT_FORM(NO_VALIDATE);
    END IF;
    END;
    Regards,
    George
    Hi:
    Is there any way in forcing when inserting/updating a record in a block to call KEYCOMMIT. For Example, if the user inserted/updated a record and before saving the user may quit the form. I would like to enforce the keycommit trigger to be called when the form is opted to close.

  • On a large monitor, the bookmarks toolbar is opening outside of the Firefox window itself - is there any way to force it to stay inside?

    Recently I installed Windows 7 on my computer, along with a device called a Triplehead2Go, which spoofs the operating system into thinking that the computer has one monitor attached (when it really has three). When the Firefox window is relatively small on the desktop and with excess space to the right, the bookmarks toolbar opens to the right (and extends outside of the window). This creates a problem for me, as the monitor bezels get in the way of navigation. When the Firefox window is all the way to the right of the desktop, the bookmarks toolbar opens inside of the window (as there is not enough space to the right for it).
    Is there any way to force this menu to stay within its boundaries?

    The screen dimensions are "right," but I don't want it to use up any more space on-screen than is in the window.

  • Af:fileDownloadActionListener - any way to force new browser session?

    Hi all
    I'm using af:fileDownloadActionListener to download a file.
    It works fine except for one thing:
    For some file types it does not open a new browser session but just replaces the existing page content.
    That's really ok by itself, but we have a problem if the users presses the browser Back Button to get back to the application.
    As we're using partial page rendering and af:region this will result in an error:
    Error 403--Forbidden
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.4 403 Forbidden
    The server understood the request, but is refusing to fulfill it. Authorization will not help and the request SHOULD NOT be repeated. If the request method was not HEAD and the server wishes to make public why the request has not been fulfilled, it SHOULD describe the reason for the refusal in the entity. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable
    So my question is: is there any way of forcing a new browser session to open when using af:fileDownloadActionListener?
    We're using JDeveloper 11.1.1.1.0.
    Regards,
    Tove

    Hello
    I have the same problem
    Frank, is it possible to know when we'll have the correction available.
    It is just to inform our client about this issue.
    Thx
    Jack
    PS: is there a workaround till the correction is done?

  • Is there any way to force the applet to load the file without using cache?

    Hi,
    I have the applet that renders some data from a file specified as the parameter. The problem is that the user can do something, that changes the input file and reloads the page, but the applet renders old data (from browser cache most probably)
    Is there any way to force the applet to load the file without using cache?
    Regards,
    Zdenek

    The initial view (IV) settings within a PDF file are static tags - they can't be made to dynamically-adapt based on the window dimensions,it's the renderer (Acrobat, Reader, or whatever else is opening the file) that decides if and how it will follow the IV requested by the file header.
    It would be possible to use a Page Open action on the first page of the file, which does some nasty math with the various doc.*WindowRect objects to work out how much "wasted" space there is, and then set the doc.layout and doc.zoomType properties - but page actions are a different concept to IV as the zoom will reset itself every time that page is viewed. Users don't like their application apparently fiddling with the zoom level without being told to!

  • Any way to force audio to stay on HDMI?

    Any way to force audio to stay on HDMI and not go back to Internal Speakers once the a/v receiver is off?
    To explain what is happening in more detail I have a mac mini hooked up to my TV and my computer monitor using an HDMI Distribution Amplifier. This way I can use the mac on my tv or at my desk. For some reason when the TV is shut off or if I switch the source of my desktop monitor to something else. The mac will go back to internal speakers. Is there any way to prevent this? I am assuming this is happening becuase the mac is losing the handshake with the monitor when I switch my source. If that is the case is there anything I can get to put before my DA that will make my mac think that something is always there?
    It would be more ideal if I can just permanently set the audio output to hdmi from within the mac itself though.

    The only really effective solution requires buying a Gefen HDMI Detective Plus this 'spoofs' the HDMI signal so the Mac thinks it is still there even if the AV receiver is turned off, or disconnected, or switched away from the Mac.
    See http://www.gefen.com/kvm/dproduct.jsp?prod_id=8005
    I bought a couple on eBay.

  • Disc in drive that Mini will not recognize, will not eject. Is there any way to force eject?  The computer says it's empty, but it's not.

    I have a disc in the super drive but cannot eject it because the Mini does not recognize that it's there. I've tried the eject button on top of the screen and in the dvd player controls. I wish there was an eject button on the machine. Is there any way to force eject?
    Thanks.

    RGA,
    Unfortunately, I do not believe that it is possible for a DAQ board to generate an AI Start Trigger from an analog trigger, but not be triggered itself until it receives a digital trigger.
    Spencer S.

  • Is there any way to force Firefox to remember passwords?

    As many have complained about, there is a growing trend for websites to prevent browsers, including Firefox, from remembering passwords. This is absolutely infuriating. Like most people, I have on the order of 100 passwords, and thanks to idiotic, overzealous IT guys who need to justify their own jobs, we are forced to constantly change them to ludicrous, impossible-to-remember combinations of symbols and numbers. (Does anybody really get their accounts stolen because some hacker sits down and tries to guess their password? Somehow I find that very, very hard to believe.)
    First world problems, I know. My question though is simple: is there any way to force Firefox to remember passwords? Perhaps an add-on or external program of some kind? I know there are password manager programs, but the last time I checked, those were all but worthless and didn't work as well as the built-in Firefox support for remembering passwords. Thanks for any help.

    hello andrew, yes you can either [https://addons.mozilla.org/firefox/addon/remember-passwords/ install an addon] or [https://www.squarefree.com/bookmarklets/forms.html#remember_password use a bookmarklet] to circumvent this restriction.
    in an upcoming version of firefox, this functionality will also be built-in directly into the browser: http://www.ghacks.net/2013/12/24/firefox-29-save-fill-autocompleteoff-passwords/

  • Any way to force a complete refresh of contacts from Yahoo Address Book?

    Any way to force a complete refresh of contacts from Yahoo Address Book?
    About once a month I delete all my Yahoo contacts and upload a new file. (That may sound crazy but I do it from a master file (a database) both to Yahoo and Lotus Notes and blackberry via Notes. Only takes a few moments. Works for me.)
    When I do this with my iphone it's duplicating some contacts, not a whole lot, but some - maybe 3%. I have reset the sync history before doing this.
    So, any way to wipe the slate clean on the iphone and force a one way refresh?

    Please check you contact name in the device and verify if the names does not start with none alphabetic characters (e.g. @, &, *, etc).  This characters will actually stop the sync process and will not be able to successfully complete the transfer of data. Do the same thing with the contact data you have online just to be sure..
    If that it still doesn't work, delete your Google account on the device, restart, and then recreate the same account.
    Let me know how it goes... 

  • HT4718 wpa2 enterprise 802.11x protocol with pap authentication.  Lion Reformat

    My school has only wpa2 enterprise 802.11x protocol with pap authentication.  Due to this I can not reinstall lion as a fresh copy.  I realized that I can download lion again from the app store.  Can it do a fresh install?

    I am having the exactly same problem as ecko04. I also tried to intall the certificate provided by my university but it failed. Could somebody help us out? Thanks

  • Any way to force order of changes applied?

    After more testing on my install program, I'm running into an issue where I get an exception due to a duplicate named report in a CMS folder.  This is because in the InfoObjects collection that I am trying to commit in a batch, I am deleting a prior archived version of the report, "then" moving the current version into the archive folder (before creating the new version of the report in the original folder).  If there is no prior version of the report in the archive folder, I do not get this exception.  (I am already changing the name of the archived version to include a date, and I don't really want to just keep making new archived versions ad infinitum.)
    I tried to create three InfoObjects collections, one for objects to add, one for objects to change, and one for objects to delete.  I then merged all three into one InfoObjects collection to do my CommitBatch().  I tried merging in the order deleteObjects, changeObjects, addObjects, and the reverse (in case the merged collection ends up "on top of the stack"), and I get the exception either way.
    I really, really, really want to do this in all one commit transaction.  Is there any way to tell the SDK what order to attempt to apply the changes in?
    I am using the XI R1 version of the SDK.  Will upgrading to XI R2 help (which I need to do anyway; just need to get the CD from my sysadmin)?
    Thanks for the help,
    Carl

    It tuns out that I wasn't deleting the prior archived version the way I thought I was.  (The deleteObjects collection was empty.)  I had thought (based on the reply to a prior thread) that the InfoObjects.Delete() would "mark" the report for deletion upon a commit.  However, it just removed the object from the collection. 
    I see the InfoObject.DeleteNow() method, but that sounds like it immediately goes out and removes the object from CMS, outside the scope of a CommitBatch() (which was also stated in that same thread).
    Is there a way to delete an object from the CMS as part of the CommitBatch() call?
    This might be just an issue with my approach to accomplishing the task.  Since I am potentially doing this specific task any number of times, I am creating a InfoObjects collection by querying the CMS for the objects I am looking to delete.  I then call Delete() for each InfoObject in the collection, and then Merge the collection into deleteObjects.  This Merge() apparently does not move the deleted InfoObjects into the deleteObjects collection.  How would I go about doing this?  Should I collect all of the objects in deleteObjects than, right before committing, delete each object in the collection?  Is there another approach that I have to take?  Here is my code, which is in a method that can be called multiple times:
    // delete prior archive version (one per date; keep other-dates history until cleanup)
    InfoObjects pa = infostore.Query("select * from CI_INFOOBJECTS where SI_NAME = '"
        + archiveName + "' and SI_KIND = 'CrystalReport' and SI_PARENTID = " + pid.ToString());
    if (pa.Count > 0)
    { // zap 'em
      foreach (InfoObject oa in pa) { pa.Delete(oa); }
      deleteObjects.Merge(pa);
    If I put a breakpoint on deleteObjects.merge(pa), the value of pa.Count is zero, where it is 1 at the point of the IF statement...
    [Referenced thread|Clearification of InfoObject.DeleteNow() method, please;
    Thanks for the help,
    Carl

Maybe you are looking for

  • I Movie 09 can I combine projects into one project?

    Can I combine 3 seperate IMovie projects into one so I can burn a short film to DVD? I had three different people shoot 3 different sections of a short for me, now I want to put them in one project together in order and burn a DVD.

  • Error while loading shared libraries: libjvm.so

    Hi, Hopefully, this is the right list for this problem. I am working on a computer that has Linux 2.6.20-1.2952.fc6. I am trying to deploy a program to a Sun SPOT using over-the-air functionality; however, I get the following message: -pre-suite: -do

  • Strange display fonts in Safari...

    What would account for fonts not displaying correctly in Safari? Sometimes sections of a web page appear as jumbled, random characters. Often, it will only be headlines, while the body copy displays correctly. I have my display fonts set to Helvetica

  • Query based on main table and audit table

    Hi, I had created auditing on some table. Values might not change and if they changed, it should be stored in audit table. I want to get the values in the table a on real time basis, like dimentions in datawarehouse. Trying to write a query based on

  • Can't pair my phone with my mac

    I have an iPhone 6 plus and a new late 2013 mac pro and I can't get them to pair. I've followed all the rules but it connects for a second then disconnects. Says that the network is not available. As far as I know my network is available but not a ne