User trying to authenticate from invalid location

Hi,
I have reciently attmepted to upgrade our 5508 DMZ WLC to 7.6.100.0 from 7.2.x - we are using Cisco NAC Guest Server version 2.0.3 for web portal authentication.
Upon completing the upgrade to the WLC guest users were not able to authenticate and I was seeing the following log message on the NAC server.
_SYSTEM_ ( - 10.3.240.10) User trying to authenticate from invalid location: [email protected] 2709 05-Mar-2014 18:30:58
I have seen CSCsq86376 but we are using the IP Address as the attribute.
Has any one else run into this problem before or could perhaps point me in the right diretion of potential configuraiton to change/further trouble shooting?
Thank you in advance.

Hi,
Any customer that has the calling-station-id attribute on their controller set to MAC address will not pass any authentications, change the attribute to use the IP address instead of the MAC address and then try.

Similar Messages

  • Firefox 8.01 won't install, just disappears. No error msg. Many attempts. Seasoned Firefox user trying to upgrade from 3.6.24 on Windows 7 machine.

    I downloaded Firefox 8.0 and later 8.01. When the upgrade is launched it unpacks and then gets ready to install and I'm prompted to select a user or administrator. No matter which I select when click on install the prompt disappears and that's the end of it. Nothing happens. Tried about 5 times on both upgrade packages. Running on a Gateway laptop with plenty of memory and disk space with Windows 7. I have never had a problem with Firefox.

    HI Paul,
    no sorry, did not manage to get it running. Hopefully someone from Adobe could have a look at the installation logs.
    -- Andi

  • GUI closes if user tries to change work directory location

    I have an issue with a user (running Windows7 and GUI 720). He wants to save to a local file and change the work directory to his desktop. As soon as he changes the path , his GUI completely shuts down. No one else has this issue. We are all able to change the path of our work directories at will but not this user. He doesn't want to change it in SO21 , he just wants the option to change it when he needs to from the popup.
    I am guessing it is a setting somewhere but I don't know where to look
    Any advice is appreciated

    Hi,
    this is working fine on my Windows 7 with GUI 7.20. have you tried the latest GUI Patch?
    cheers,
    Rainer

  • Crossdomain.xml trying to Load from default Location

    I'm loading data from a remote server, and I've specified a
    custom location for my policy file using
    System.security.loadPolicyFile( ); ... everything works, and loads
    correctly... though I get an error in Firefox and Safari on mac
    that its unable to load the file from the root of my Remote server.
    In the status log, it shows calls to both my custom location,
    and the default location - with the error being on the default
    location. Is it possible to suppress the call to the default
    location (looking for the file on the server root), so the error
    doesn't appear?

    Nice one, thanks for the tip kglad. After much studying and reading this weekend based off your reply, I got it
    figured out this morning.
    Cheers to you,
    ~Chip

  • Trying to authenticate aginst server deleted from account

    I think I'm in a bit of a catch 22 and desperately need help. When I came home my family was complaining that the 'media' mini connected to the Westell wireless DSL modem and to the TV couldn't connect to the internet. Last night, I fired up <virtually> all the services in a new Snow Leopard Server installation and proudly 'Joined' the server from the Accounts Prefs on the 'media' mini.
    Figuring I was in a catch 22 - can't authenticate to get on the network/can't get on the network to authenticate - I 'deleted' the server from the Accounts Prefs setting.
    Now it still tries to authenticate from 801.1X on Network Prefs and tells me that my server is unavailable. How can I make my 'media' mini forget that it ever 'Joined' the server and go back to happily connecting to the internet directly through logging into my wireless network?
    Any info would be greatly appreciated.
    Message was edited by: victorsixtus

    OK, so although slightly different from the Open Directory Administration manual (http://images.apple.com/server/macosx/docs/OpenDirectory_Adminv10.6.pdf) I intuitively performed the steps on page 143, Deleting a Configuration for Accessing an LDAP Directory. Except I don't remember a step asking me to unbind from LDAP.
    So, I guess I need to find out how to unbind from the Directory. Any command line options?

  • User can't authenticate...auth-failed/windows workstation not allowed

    Keep on running into an odd problem. I have some users logging in via soft vpn connection. Yesterday, they were able to log in without a problem. Today they are getting 01/31/2007 08:09:21
    Authen failed
    Windows workstation not allowed .. ..
    Why can they authenticate 1 day and then be denied. This happened last week as well. The server adminstrator seemed to think it was a user setup issue and gave them another user account. Now as you can see above, the same thing has happened. I don't get it. Any help would be appreciated.

    For ACS to perform Windows authentications we need to specifiy a workstation name.
    In AD , the user should have access to all computers.
    OR
    A computer account named CISCO should exist.
    All users that Windows will authenticate have permission to log in to the computer named CISCO.
    ACS shows this error message only when the user tries to login from a work station he has no permission to log on.
    If you are using ACS 4.1 this link will be useul.
    http://www.cisco.com/en/US/products/sw/secursw/ps2086/products_installation_guide_chapter09186a008070a63c.html#wp1041202

  • Will changing the partition of the Home Folder automatically move files from old location?

    I want to change the home folder for my users.  Currently they are saving to the C: drive and using up the space on the root drive.  There is a D:  partition that has 774 GB free, so I would like to move use directories over to a new Home
    Folder on the D: drive. 
    http://support.microsoft.com/kb/816313
    What I am unsure of is whether or not I will have to manually move their files once I change the home directory.  Will it or do I need to take an extra step to move files in order to provide a seemless experience to the users?
    I am working with Windows Small Business Server 2011 Essentials.  

    Hi,
    Did you use the group policy to set the user home folder?
    As Ahmed MALEK mentioned, a user account is moved from one location to another in AD the users home drive setting is not automatically updated as its a static configuration on the users account. You need to manually move the file to the new location.
    Maybe you could consider the folder redirection, more detail information, please refer to:
    How to “Set users home folder” via group policy in Windows 8
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Calling HttpServletRequest authenticate() from preRenderView listener

    Hi,
    I'm trying to use the authenticate() in a preRenderView listener method, in order to trigger authentication conditionally, depending on view parameters in the page. I tried adding a simple method:
    @Named
    @RequestScoped
    public class PermissionBean implements java.io.Serializable {
    public void preRender() {
    System.out.println("IN PRERENDER");
    HttpServletRequest request = (HttpServletRequest)FacesContext.getCurrentInstance().getExternalContext().getRequest();
    HttpServletResponse response = (HttpServletResponse)FacesContext.getCurrentInstance().getExternalContext().getResponse();
    try {
    request.authenticate(response);
    } catch (Exception e) {  // may throw ServletException or IOException
    e.printStackTrace();
    The authenticate method itself doesn't throw an exception, it triggers the redirect to Login.xhtml as expected. However, I'm getting in my server log, I get this exception:
    INFO: IN PRERENDER
    FINEST: GET /Login.xhtml previous[3]
    INFO: Exception when handling error trying to reset the response.
    java.lang.NullPointerException
         at com.sun.faces.facelets.tag.jsf.core.DeclarativeSystemEventListener.processEvent(EventHandler.java:126)
         at javax.faces.component.UIComponent$ComponentSystemEventListenerAdapter.processEvent(UIComponent.java:2508)
         at javax.faces.event.SystemEvent.processListener(SystemEvent.java:106)
         at com.sun.faces.application.ApplicationImpl.processListeners(ApplicationImpl.java:2129)
         at com.sun.faces.application.ApplicationImpl.invokeComponentListenersFor(ApplicationImpl.java:2077)
         at com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:286)
         at com.sun.faces.application.ApplicationImpl.publishEvent(ApplicationImpl.java:244)
         at javax.faces.application.ApplicationWrapper.publishEvent(ApplicationWrapper.java:670)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:108)
         at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:594)
    So my request is not redirected to Login.xhtml.
    My question is - is this something that should work within a JSF managed bean, or is it only legal outside of JSF request lifecycle? I tried calling authenticate() from a WebFilter, and it works as exptected.
    Thanks,
    Ellen

    I also posted this question on StackOverflow, and got an answer, which is that I have to set responseComplete() in order for the redirect to the Login page to work:
    http://stackoverflow.com/questions/7015516/problem-using-httpservletrequest-authenticate-within-jsf-2-0-prerenderview-list
    Unfortunately, this doesn't work, because after authenticate() is called, FacesContext.getCurrentInstance() returns null.
    Edited by: 878628 on Aug 31, 2011 8:50 AM

  • Suddenly my event library in iMovie 11 is empty.  I have tried deleting the plist, importing clips from multiple locations (to see if they show up in the library), re-installing iMovie, and re-installing Mountain Lion. Help??

    Suddenly my event library in iMovie 11 is empty.  I have tried deleting the plist, importing clips from multiple locations (to see if they show up in the library), re-installing iMovie, and re-installing Mountain Lion.
    I was working on a project, when all of a sudden the event library went blank.  There are no devices showing in the left column, only "last import" and "aperture videos".  There are no video clips in the editing window.  I have "Show: All Clips" selected.  I've tried "group events by disk". 
    When I have a Project open, it plays just fine.  There are no yellow triangles saying "source clip is missing".  Yet, again...nothing is in the event library large editing window.  So, it seems the data is still there, but invisible.  This is true with all the projects, and all the external devices I've experimented by plugging in to see if their video clips show up in the event library. 
    I have tried to import new movies, and iMovie responds as normal...looking like it's importing, then "generating thumbnails", then it makes the "ding" signalling that the import is complete...but nothing shows in the event library.  I've tried importing movies from the harddrive, from quicktime, and from an external drive.
    I have searched the forums, and found many users with a similar, but not the same, problem.  For them, it seems the "go to users-library-preferences and delete iMovie plist" has solved their problem.  This didn't work for me. 
    I uninstalled/reinstalled iMovie, I even have re-installed Mountain Lion (from a last-ditch effort suggestion from Apple technician). 
    HERE'S AN INTERESTING DETAIL:  After almost 5 hours on the phone with Apple, I decided to cut my losses and take my project to another Mac I have.  I'm working on a project, for work, that is critical that it's completed by tonight (whoops), and all my video is on an external drive.  So, I plug in the external drive to Mac #2, open iMovie, and everything is looking fine.  I continue importing some files I was converting, through Wondershare, and suddenly (whether or not this has to do with the importing, I'm not sure), the SAME THING happened to Mac #2!!!!  I can't believe this. 
    Does anyone have any suggestions?  Have you ever heard of this happening?  Could it have to do with the files I'm importing??? 
    I apologize if my language is confusing.  Obviously, I'm not an Apple genius-person!  I hope I've provided all the information you need.
    Mac #1 is a 27" desktop, mid-2012, software up-to-date.  Mac #2 is a 24" desktop, about 4 years old, OSX 10.7.5

    I'm adding more information:
    in Finder, my iMovie folders are all visible and accessible.  When I click on a clip from iMovie Events folder, Quicktime opens and plays the clip.  ALL my video is not missing - it just isn't showing up in the Event Library!
    This happened all of a sudden, while I was working on iMovie project (on both computers).
    All my Projects are intact, and play when I open them. 

  • The Bookmarks toolbar is empty, doesn't allow me to add any bookmarks. I have tried all the options indicated in the support website, but none work. The toolbar remains empty and does not even allow me to drag something down to it from the location bar.

    Please see the question above, as that is the problem I am having. I don't understand why the Bookmarks tab does not show any of the bookmarks which I have tagged. They can only be chosen from the drop down menu. I tried dragging the page to the bookmark toolbar from the location bar but that does not work. Is it a glitch in the system?

    If the menu bar is hidden then press the F10 key or hold down the Alt key to make the menu bar appear.
    Make sure that toolbars like the "Navigation Toolbar" and the "Bookmarks Toolbar" are visible: "View > Toolbars"
    *Open the Customize window via "View > Toolbars > Customize"
    *Check that the "Bookmarks Toolbar items" is on the Bookmarks Toolbar
    *If the "Bookmarks Toolbar items" is not on the Bookmarks Toolbar then drag it back from the toolbar palette in the customize window to the Bookmarks Toolbar
    *If missing items are in the toolbar palette then drag them back from the Customize window on the toolbar
    *If you do not see an item on a toolbar and in the toolbar palette then click the "Restore Default Set" button to restore the default toolbar set up
    *http://kb.mozillazine.org/Toolbar_customization
    *https://support.mozilla.org/kb/Back+and+forward+or+other+toolbar+items+are+missing

  • Error from users trying to send through Ironport

    Hi guys,
    I have an intermittent problem with users trying to send mails through the our C150. It happens from Vista and XP users using Outlook 2003 and 2007.
    From the users point of view the error message is "Your outgoing SMTP server does not support SSL-secured connections".
    TLS is enabled on the Ironport, outlook 2003 only has the SSL option, but 2007 and Thunderbird users see the error message sometimes even though TLS is selected.
    The Ironport works for 99% of users all of the time, but every now and again this error will rear its head.
    If anyone has any wisdom to impart it would be greatly appreciated.
    This is what it looks like from the smtp_conversation
    address 77.95.162.96 dns host unknown sbrs None
    Fri Apr 24 17:23:23 2009 Info: ICID 517652 >> 220 smtps.tssg.org ESMTP
    Fri Apr 24 17:23:23 2009 Info: ICID 517652 <<x80L>> 500 #5.5.1 command not recognized
    Fri Apr 24 17:23:23 2009 Info: ICID 517652 close
    Fri Apr 24 17:23:23 2009 Info: ICID 517653 address 77.95.162.96 dns host unknown sbrs None
    Fri Apr 24 17:23:23 2009 Info: ICID 517653 >> 220 smtps.tssg.org ESMTP
    Fri Apr 24 17:23:26 2009 Info: ICID 517653 - Error occured during incoming SMTP command: ('oserrors.pyx oserrors.map_exception|26', "<class>", '[Errno 54] Connection reset by peer', '[imh/smtp_server.py read_line_timeout|273] [read_stream.pyx read_stream.stream_reader.read_line|340] [read_stream.pyx read_stream.stream_reader.read_search|383] [imh/smtp_server.py read|248] [imh/smtp_server.py _with_appropriate_timeouts|222] [_coro.pyx coro._coro.sched.with_timeout|1052] [imh/injector.py read|830] [_coro.pyx coro._coro.sched.with_timeout|1052] [socket.pyx coro._coro.sock.recv|473] [socket.pyx coro._coro.sock._wait_for_read|870] [poller.pyx coro._coro.kqueue_poller._wait_for_read|304] [poller.pyx coro._coro.kqueue_poller._wait_for_with_eof|299] [pyrex_helpers.pyx coro._coro.raise_oserror_with_errno|15] [oserrors.pyx oserrors.map_exception|26]')

    Hi Roen,
    Maybe I'm pointing you into the wrong direction, on forehand my apologies for that.
    What I need you should check: Ironport has a limit on the number of concurrent TLS session. Your problem might occur when this limit is reached and an additional host tries to setup a TLS connection.
    (Not sure, just a shot in the dark)
    Good luck with this problem,
    Best Regards,
    Steven

  • Prompt users to download air sdk from a location other than Android Market

    Hi,
    I am developing a android app using adobe air sdk for a device that DOESN'T have Android Market.
    Is there a way for my app to prompt a user to download the air sdk from a location other than Android Market?
    Thanks,
    Kai

    Well your in luck,
    If the app is going to be pre-installed, then you can pre-install the AIR Runtime with the app.
    First download the AIR 2.5 SDK or go to where your AIR SDK is located on your machine.
    go to the following directory within the SDK folder....
    "\runtimes\air\android\device\"
    "Runtime.apk" will be the name of the file. install that on the device and your done.
    They dont need to be prompted because they will have it pre-installed.
    This will allow them to start the app, then if there are any updates to the Runtime.apk, you can prompt them within the app to download with instructions.

  • TS1702 most of my apps are stuck on 'waiting' have tried everything possible from trying to delete them and re-booting ipad, nothing seems to work...is there a solution to this problem which seems that quite a few users seem to have....

    most of my apps are stuck on 'waiting' have tried everything possible from what I read however nothing seems to work for me, does anyone know the right way PLEASE as it's very annoying....

    When I open emails with PDFs I click on the attachment (doing this all on my iPad) it gives me the option to "open in iBooks", I accept then after that the document is sucked into my iPad but I can't do anything with the PDF after that.  Where is the actual file on my iPad? Why can't I email or send these PDFs to my cloud (Dropbox)?
    It's like once they go into iBooks they're stuck forever.

  • My Login Page is Trying to Authenticate Me When it Loads

    Hey Guys,
    I have an application with LDAP authentication and a custom login page (pg 101). When I run this app, the login page displays first, logs me in and logs out fine. However, when I branch to this application from another application, the login page shows up with the following error:
    ORA-31202: DBMS_LDAP: LDAP client/server error: Invalid credentials
    Error ERR-1082 Error in executing authorization scheme code.
    I looked at debug and this is happening because when this page is loaded, it goes to my authentication scheme and tries to authenticate me even though I havnt logged in and because no user exists at this point the error happens.
    I have set the login page to 'Page is Public' and have also used the following code in the authentication scheme's Page Sentry Function:
    IF APEX_CUSTOM_AUTH.CURRENT_PAGE_IS_PUBLIC = TRUE THEN;
    RETURN TRUE;
    ELSE
    RETURN FALSE;
    END IF;
    Any ideas of how I can stop my login page from being authenticated? Or where I am going wrong
    Thanks
    -Mark

    Mark,
    Try using the same cookie name to avoid the login page. You can find the cookie attribute under Home>Application Builder>Application #>Shared Components>Authentication Schemes>Edit Authentication Scheme. Thanks.
    Regards,
    Manish

  • Issues when trying to setup alternate sync location of OneDrive for Business / SharePoint 2013 Libraries

    Hello,
    I have an issue that prevents me from choosing the alternate location of sync'ed OneDrive for Business folders. I'm trying to setup an alternate location for synchronization, using the guidelines found in the Office support web site.
    The option to replace the default sync location appears the first time a SharePoint 2013 Library or OneDrive for Business is setup for synchronization.
    Here would be a link to a snapshot (since my account has not been verified): /Forums/getfile/443247
    At this point, the Library or personal OneDrive folder syncs correctly and the files are stored in the alternate choosen location.
    However, on when trying to setup an additionnal Library for synchronization, the alternate sync location has not been saved and reverts to the default sync location. Furthermore, the option to replace the default sync location does no longer appear
    on the dialog box.
    Here would be a link to a snapshot (since my account has not been verified): /Forums/getfile/443249
    I have tried by first sync'ing a SharePoint 2013 Library (instead of the personal OneDrive for Business folder) with the same result. Meaning that the first SharePoint 2013 Library correctly sync's in the alternate location of my choosing. However,
    any subsequent attempts to sync either a SharePoint 2013 Library or the OneDrive for Business folder results in them being sync'ed to the original default location in a folder under the user's profile directory.
    I'm using Office Professional Plus 2013 (64bits). The version of Groove.exe is 15.0.4605.1000 (12th March 2014 - 13 383 360 bytes).
    Is there something I'm missing ?
    Thanks for any help on this issue.

    Hi SpringComp,
    You can change the root path for libraries you sync to your computer, though you can do this only if you’re not currently syncing any libraries. If you’re already syncing at least one library and you want to change the path, you must first
    stop syncing all libraries. Then, the first time you run the OneDrive for Business wizard to sync a library to your computer, you’ll see an option to change the location.
    More information, please refer to the link:
    http://office.microsoft.com/en-001/support/change-the-location-where-you-sync-sharepoint-libraries-on-your-computer-HA102893480.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

Maybe you are looking for

  • ITunes / Windows / PC not booting when iPod is connected

    (Posted this in 5th gen iPod forum few days ago with no response, thought I would try here.) I've been using iTunes for at least 2 years now on my Windows XP system. I've never really had any issues with iTunes until I bought my 120Gb iPod Classic. N

  • Acs 4.2.1.15 and ssh authentication with ios xr

    Hello, we have a new acs appliance (1113) with version 4.2.1.15 and we want to authenticate user through ssh from routers with ios xr software. unfortunately this doesn't work. Here ist our configuration of the router: line template VTY access-class

  • Griffin iMic output problem

    I bought an iMic and tried to use it today. The input side seems to be working correctly. But the output side isn't. According to the iMic Quickstart Guide, in the Sound Control Panel under the Output tab, I should see 2 options: 1 - Built-in 2 - USB

  • Multi Language support for C/S Applications

    User requires Desktop GUI forms display in FRENCH / or ENGLISH as the case may be while working on FORMS developed either in VB or Developer 2000. This is proposed on click of Button ava for toggling language mode on toolbar. Pl confirm and advise us

  • [Solved] Atheros AR9271 802.11n usb wifi disconnect with 3.18.5 kernel

    After moderate network traffic, wi-fi will disconnect and the adapter becomes unresponsive. I fixed the problem by downgrading to 3.17.6 kernel. This topic is to determine if this is a kernel bug or a problem with my setup. I am using the ath9k_htc d