Anyconnect not working for Mac OS X users

I have AnyConnect newly configured on my ASA 5550, running 8.2.x code; however, Mac users cannot connect using the Apple client, nor using the Cisco AnyConnect client - they are getting a "posture error" of some kind or the laptop is failing some kind of machine profiling.
Help - I have no Apple OS experience on this.
Thanks,
Marc

Thanks for your reply;
Here are the relevant parts of the ASA config:
crypto ipsec transform-set fdoe3desset esp-3des esp-md5-hmac
crypto ipsec transform-set doe-sha esp-3des esp-sha-hmac
crypto ipsec transform-set des-sha esp-des esp-sha-hmac
crypto ipsec transform-set remoteset esp-des esp-md5-hmac
crypto ipsec security-association lifetime seconds 28800
crypto ipsec security-association lifetime kilobytes 4608000
crypto dynamic-map fdoedynmap 65530 set transform-set remoteset
crypto dynamic-map fdoedynmap 65530 set security-association lifetime seconds 7200
crypto map remotemap 65535 ipsec-isakmp dynamic fdoedynmap
crypto map remotemap interface outside
crypto ca trustpoint ASDM_TrustPoint0
enrollment terminal
subject-name ------------------
keypair doesslkey
crl configure
crypto ca trustpoint ASDM_TrustPoint1
enrollment terminal
subject-name --------------------
crl configure
crypto isakmp identity address
crypto isakmp enable outside
crypto isakmp policy 20
authentication pre-share
encryption des
hash md5
group 2
lifetime 3600
** snip **
crypto isakmp policy 70
authentication pre-share
encryption 3des
hash md5
group 1
lifetime 28800
crypto isakmp policy 65535
authentication pre-share
encryption 3des
hash sha
group 2
lifetime 86400
webvpn
enable outside
csd image disk0:/csd_3.6.6203-k9.pkg
csd enable
svc image disk0:/anyconnect-win-3.0.10055-k9.pkg 1
svc image disk0:/anyconnect-macosx-i386-3.1.00495-k9.pkg 2
svc image disk0:/anyconnect-linux-3.0.10055-k9.pkg 3
svc enable
group-policy fdoe_vpn internal
group-policy fdoe_vpn attributes
wins-server value xx.xx.xx.xx
dns-server value yy.yy.yy.yy
vpn-idle-timeout 240
vpn-session-timeout 720
vpn-tunnel-protocol IPSec svc
split-tunnel-policy tunnelspecified
split-tunnel-network-list value split
default-domain value fldoe.int
The user has an AnyConnect client installed on his Apple laptop; I wasn't aware that there was a component that needed to be installed in the ASA for AnyConnect clients to work. Am I confusing AnyConnect with another web SSL VPN application for the ASA 5550?

Similar Messages

  • I have a licensed copy of Adobe Acrobat X Pro for Windows.  I recently switched over to MAC OS and would like to move my Adobe X Pro over but the CD will not work for Mac OS?  Can anyone assist me with this conversion?  Best,  James.

    I have a licensed copy of Adobe Acrobat X Pro for Windows.  I recently switched over to MAC OS and would like to move my Adobe X Pro over but the CD will not work for Mac OS?  Can anyone assist me with this conversion?
    Best,
    James.

    you cannot use your pc license to install on a mac.  you would need a separate license (and serial number) for that.
    adobe allows platform swaps, but only with the latest (xi) version, Order product | Platform, language swap
    your option to use acrobat on a mac are to upgrade to acrobat pro xi and change platforms, use a windows emulator (parallels/boot camp etc) on your mac or swap with a third party.

  • Apple id not work for mac app store, what happen? It is available for others such as iTunes, my iPhone and iPad

    apple id not work for mac app store, what happen? It is available for others such as iTunes, my iPhone and iPad

    Try deleting the cache associated with the App Store..
    Quit the App Store if it's open.
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type this exactly as you see it here:
    ~/Library/Caches/com.apple.appstore/Cache.db
    Click Go
    Move the Cache.db file to the Trash.
    Relaunch the App Store. See if that made a difference.

  • My Help Viewer is not working for mac help

    My Help viewer is not working for mac help. Everytime i choose mac help the window opens then closes. But when i open another help like safari help it opens and works fine. If i switch it back to mac help the window just closes and the application quits.
    If you know how to fix please telll!

    noname212,
    Using "Search Discussions" with the term "Help Viewer" you will lead you to numerous posts which refer to Troubleshooting Help Viewer by Dr. Smoke.
    Good Luck
    ;~)

  • SPSecurity.RunWithElevatedPrivileges Not Working for Read Only Permissions Users

    I have the following code in a method that generates tabbed web parts on any page in SharePoint 2010.
    The problem is that it will not work for users who have Read access only on a SharePoint site.  It will work when those users have Contribute access.  
    So even though I have elevated permissions in the code it does not actually elevate the permissions at the point where it is needed.
    if (panel != null)
    try
    using (SPLimitedWebPartManager wpManager = SPContext.Current.Web.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    try
    // Elevated previleges required for EXPORT and IMPORT. Else Users with normal read access will get errors.
    SPSecurity.RunWithElevatedPrivileges(delegate()
    // Retrieve the web part titles in the ConfigureTabs XML string for this tab.
    var webPartTitles = from t in xDocument.Descendants("webPart")
    where (string)t.Parent.Attribute("name") == (string)e.Item.DataItem
    select (string)t.Attribute("title");
    foreach (string wpTitle in webPartTitles)
    foreach (System.Web.UI.WebControls.WebParts.WebPart webPart in wpManager.WebParts)
    // Find the matched closed web part in WebParts collection
    if (webPart.Title == wpTitle && webPart.IsClosed == true)
    string errorMessage;
    //ADD EXPORT PROPERTY
    webPart.ExportMode = WebPartExportMode.All;
    MemoryStream stream = new MemoryStream();
    XmlTextWriter writer = new XmlTextWriter(stream, System.Text.Encoding.UTF8);
    // Export the closed webpart to a memory stream.
    wpManager.ExportWebPart(webPart, writer);
    writer.Flush();
    stream.Position = 0;
    XmlTextReader reader = new XmlTextReader(stream);
    // Import the exported webpart.
    System.Web.UI.WebControls.WebParts.WebPart newWebPart = wpManager.ImportWebPart(reader, out errorMessage);
    reader.Close();
    writer.Close();
    // Show the imported webpart.
    panel.Controls.Add(newWebPart);
    break;
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please check your XML configuration for error. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    catch (Exception ex)
    // For debugging use only.
    Label label = new Label();
    label.Text = "Please Check SPContext.Current.Web is not null. " + Environment.NewLine + ex.Message;
    panel.Controls.Add(label);
    This snippet of code was originally pulled from a microsoft technet article on creating Tabbed web parts "the correct way" but it doesn't work in all scenarios.
    Is there a way to get this code working for Read/Visitors to a SharePoint site?

    From initial observation what I see is that your SPLimitedWebPartManager is not created from an elevated web. Try like below
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using(SPSite elevatedSite = new SPSite(SPContext.Current.Site.ID))
    using(SPWeb elevatedWeb = elevatedSite.OpenWeb())
    using (SPLimitedWebPartManager wpManager = elevatedWeb.GetLimitedWebPartManager(HttpContext.Current.Request.Url.ToString(), PersonalizationScope.Shared))
    { //Rest of your code
    Geetanjali Arora | My blogs |

  • Accounts search not working for only the specific user

    Hi friends,
      We have configured E.P 7.0 with CRM 5.0 and configured  CRM PCUI business package.
    We have role called <b>accounts abd products</b> in portal. So accounts can be searched in this role.
    Now our severity issue is for one of the super user,for ex su1,  accounts search is not working in portal  but the same is working in CRM GUI.
    for example if we search for an account 233445(or any other account) in portal its showing no data found but if we search with the same criteria data is displaying CRM GUI.
    We have checked with other 2 super ids. Both ends portal and gui search is  working fine.
    Am unable to figure out whats the cause of the issue as search is not working only for one user su1 .
    we have checked by restarting the server also to clear the memory cache.But still search is not working in portal.
    Could anyone of u please advice ASAP as this is severity issue.
    Thanks & Regards
    Sireesha.

    Hello,
    Go in debugging in the query method of your MAC to see why the BP is not selected (or deleted) before going to the read method.
    Regards,
    Fred

  • FormsCentral PDFs not working for Linux and Unix users

    I recently created a PDF (using Indesign > Acrobat IX Pro > Formscentral [AFC]) that includes radio buttons, form fields, linked videos set to play in the PDF once clicked and (after running through AFC) a submit button.
    The form has been distributed and we have already had hundreds of successful responses collected in the AFC site, all is working well there.
    One major problem we are having is that we have a lot of Linux/Unix users and the response from them is that they can't activate the videos, the form fields are out of kilter alignmentwise and the submit button does not work. Even when using the proper Adobe Acrobat Reader (v9, for example).
    Is the Adobe development team aware of problems such as these for Linux/Unix platforms and is there a suggested fix that they know of?
    The link to the actual file is here: http://cms.iopscience.iop.org/alfresco/d/d/workspace/SpacesStore/b5a48eac-8642-11e2-8cf8-e 50acbc9fd86/NJP-Video-Abstracts-Competition-2013.pdf
    Thanks in advance

    Hi Jesse,
    can you email me ([email protected]) the original PDF (before you imported it in FormsCentral)? Also, I'm curious about the format of the video in the PDF. Does the video in the PDF worked in Linux/Unix before going through the FormsCentral import/export?
    When I look at your PDF on my Red Hat Entrprise Linux 6.0 system with Reader 9.5.4 it does look fine (location of the fields) but the video generate an error (which I'm still investigating). I have not yet try the submit button on your form (as I don't want to submit bad data to you) but I seem to have an issue with the submit button on other PDF forms I generated (when I try to submit from a linux machine). Still investigating that as well.
    Gen

  • FaceTime not working for mac

    my FaceTime not working?

    Here are some suggestions for getting the best results from this site.
    Create a user profile that accurately reflects the type of hardware you're using and your version of OS X, or include that information in your first message.
    Give details of the problem. A remark such as "X doesn't work" conveys no useful information. If X did work, you wouldn't be here. Instead, you should post something like this: "I did A; I expected B; but I got C." Include the complete, verbatim text of any error messages you saw, and specify where you saw them: in an application window, a CrashReporter window, a log, or whatever.
    Also describe the steps you’ve taken yourself, if any, to try to resolve the issue. If the problem is of recent origin, did you make any changes to your setup just before you first noticed it? Is the problem reproducible or intermittent? That is, does it always manifest itself when you take a certain action, or only at unpredictable times?
    Before posting, ask yourself whether it’s likely that you are the the only person ever to have had this problem. If not, search the discussions for answered questions similar to yours. If you found any pertinent information, but it didn't help, give details.

  • Itunes store not working for Mac

    I have just downloaded the new itunes 10.5 and the itunes store won't open. I connect my iphone4s, and that won't connect to the itunes store either and won't update apps, or do much of anything. I've done all the software updates. Any help out there?
    For Mac OS X 10.5

    iTunes uses the back-side code in Safari for all its rendering of the Store, so no, there's no way around it. If you don't have the ca. forty megabytes Safari takes, then you're going to have problems with your computer - Mac OS X needs much more free space than that - so you really need to clear off some space on the drive. Then you'll be able to install the new version of Safari.
    Regards.

  • Flash Player 10.1 not working for Mac

    I recently downloaded the new flash player 10.1 for my mac and also have updated to the latest safari browser but every time i try and watch any videos or play flash games it doesn't work and i'm told to download the latest flash player. I've tried uninstalling the reinstalling and enabling the flash plugin but nothing is working. After it says that it has installed successfully which i do when all the browsers are shut and i restart the computer it doesn't work. Not sure if i've done something wrong, but this is driving me up the wall!!!! Can anyone please help me??

    Hi, Sometimes the update of the Safari browser disables the Shockwave Flash plugin. Look into the HD/Library/Internet Plug-ins/ directory and see if you have: Make sure it is Enabled.
        Flash Player.plugin
    Hope that helps,
    eidnolb

  • Gmail users not working with mac or me users

    Ive been having problems talking with users using mac.com emails, any suggestions?? (aside from bonjour)
    Thanks
    Joseph

    Hi,
    If Talking means Text Chats and Working means in iChat then in an AIM (Ppple ID or AIM screen Name at your end) the answer is No.
    If you have a Jabber (including GoogleTalk) ID then the theory is yes but the AIM to Jabber transport used are unreliable.
    See the section here for Alternatives
    http://www.ralphjohns.co.uk/page5.html#_other
    Video starts at 5-8 and again 9-12 for web based options.
    I say MeBeam. Defcom would say Tokbox (it is more versatile)
    8:26 PM Friday; September 18, 2009
    Message was edited by: Ralph Johns (UK) For Spelling

  • Outlook 2007 cached mode not working for old exchange 2003 users

    For some reason outlook isn't receiving emails straight away when in cached mode for users which we moved (few years ago) from exchange 2003 to 2007 (we now have everyone on exchange 2010). I checked the security tab in AD and compared new and old users
    and the permissions are completely different.
    Creating a new AD account and linking the old email account to it, fixes the issue but that's not really an option for over 100 users.
    Has anyone else had this issue?

    Hello,
    What's the difference between the permissions?
    Can the users receive emails from OWA?
    In addition, please make sure your Outlook 2007 has installed the latest update. And try to use
    outlook/cleanips and check if it helps. See:
    http://support.microsoft.com/kb/968773/en-us
    Best Regards,
    Steve Fan
    TechNet Community Support

  • Webauth redirect through WLC not working for Mac OSX

    We have a WLC5508 setup to redirect guest users to an ISE for web authentication. We configured the Flexconnect ACL's and external authentication. It works when using Internet Explorer on a PC, or when connecting from a IOS device (iPad, iPhone). When trying to connect from a Macbook Pro or Macbook Air, I get prompted with the guest portal to login, I type in my credential, then I see a window pop up that is attempting to launch the redirect window. That window never fully comes up. I get prompted about the certificate being from an unsigned authority, and I select to trust always. If I disconnect and try reconnecting, I get the same problem.
    Any ideas on why this would be specific to OSX?

    I had a case where I wanted to set something similiar up I just wanted "passthrough" (discaimer page) L3 security instead of some radius authentication.
    If the WLC doing the authentication is an "Anchor" WLC, then the only L3 security setting that works is the "Authentication" under "WLAN->SSID->Security tab->Layer 3" tab and enabling web-policy. Since I don't know if you use an anchor WLC I can't say if you have the same problem as I did.
    I got this information from
    http://www.cisco.com/en/US/docs/wireless/controller/7.2/configuration/guide/cg_mobility.html#wp1233539 maybe you have somthing there that can help.

  • Illustrator CC (2014) Live Mirroring not working for Mac

    I've been trying to get active mirroring to work on Adobe Illustrator and have followed numerous tutorials on getting this setup (Live Mirror Drawing in Illustrator - Vectips // Mirrored drawing in Adobe Illustrator tutorial - YouTube). I've followed the steps exactly, but when I set the number of copies =1, the mirroring turns off. I've done this next to a friend running illustrator on a PC, and his works just fine. Has anyone had any experience with getting this to work?
    I've made sure that all shapes and guides are on the same layer, that the bounding box is larger than the art board, and that when I apply the transform effect I have selected the entire layer.

    nk,
    It may be time for the list (5 is hardly relevant here):
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Password will not work for Mac account

    Hello,
    When I'm using the Mail app, it won't recognize my @mac.com accounts password and I can't get my mail.
    It is the same password I use to log on here, why doesn't it work?

    why not delete the account in your mail app and add it again.
    that way, you can add your new password when you re-enter your account in your mail app/program.
    good luck.

Maybe you are looking for

  • How do I sync my iPhone 5 with my iPad ?

    how do I sync my iPhone with my iPad so my pictures and other content from my phone go to my iPhone?

  • How to view po number in sap into t -code f.13

    how to view po number in sap into t -code f.13

  • PAYMENT PROGRAM PROBLEM

    When i create a payment proposal today with posting date in the future and the items that have to be paid are in foreign currency the payment run program (that executed in the future date) create postings with exchange rate the rate of proposal creat

  • Help required in building up the Java Bean for an XML data

    Hi , I want to build a Java bean which will actually represent an xml data . The class will be named as User and it will typically represent the data in the follwing xml: <user> <cwsId>barbete</cwsId> <firstName>William</firstName> <lastName>Barber</

  • Opening pdf in Internet Explorer on Windows

    I attempt to open a pdf file in Internet Explorer and get the following message: "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a web browser. Plesx exit Adobe Acrobat/Reader and try again". Acrobat Reader is then laun