No records in Live Authentications

We have not updated to 1.2.1 yet and are running 1.2.0.899. the only changes made to the system was alarm settings, which was just adding emails to alarm notification in settings.
Four hours after the alarm notif. change we started gettings alerts that ISE had not had any authent requests, 2 days later it shows no records in LIve authent or live sessions 4 hours after the change. All subfeilds at the top(i.e., Misconfigured Network Devices, Repeat Counters) are all zero as well. Authentication still SEEMS to be working, i am still able to log into network devices and users are still getting domain access so we are really puzzled as to why nothing is being reported in the logs. On the home page of ISE, it also shows the system summary as "no data available" and we get "no heartbeat" alarms continuously and Critical : health status alerts.

ISE 1.2 Dashboard Statics do not update
CSCul94611
Description
Symptom:
Issue with the Live dashboard in ISE 1.1.4 not displaying information and only showing "No Data Available".
The Dash Board will run and work for awhile, but it will randomly stop updating any statistics on the dashboard.
Data will show and is seen in the database, but never updates per incoming/outgoing endpoints.
Live authentications will work fine as well as all users are able to be authenticated. Customer reports do not produce data.
Seen on multiple customer's deployments with fresh installs, a fresh install with a backup from a previous 1.1.x version, as well as upgrading to 1.1.4 from any earlier 1.1.x version.
Conditions:
Cisco ISE 1.2 or 1.1.4
Any browser
Distributed or single node deployment.
Workaround:
The workaround that fixes this M&T corruption is to enter the following commands below:
ms-ise-mgm01/admin# app config ise
Selection ISE configuration option
[1]Reset Active Directory settings to defaults
[2]Display Active Directory settings
[3]Configure Active Directory settings
[4]Restart/Apply Active Directory settings
[5]Clear Active Directory Trusts Cache and restart/apply Active Directory settings
[6]Enable/Disable ERS API
[7]Reset M&T Session Database
[8]Rebuild M&T Unusable Indexes
[9]Purge M&T Operational Data
[10]Reset M&T Database
[11]Refresh M&T Database Statistics
[12]Display Profiler Statistics
[13]Exit
We need to select the following options:
7 to reset the session db
10 to reset the M&T database
11 to refresh the statistics (Possibly do not need. Was only needed in 1 case.)
Once you have run these commands the DashBoard should begin to display information.
This process can take up to 12 hours to complete all three steps. Roughly 1 to 3 hours per option selected.
Known Affected Releases:
(1)
1.2(0.899)

Similar Messages

  • IP address in ISE live authentication after vlan change

    Hi all,
    on ISE live authentication dashboard we can see IP address of the client (known from FRAMED-IP-ADDRESS).
    But what about vlan change and the situation when client gets new IP address after relocation to different vlan.
    Live logs shows only the first IP address - client mapping (from the guest vlan), after authorization new vlan and dACL is assigned but logs don't include new IP address.
    session ID is the same all the time.
    so maybe ip helper or other trick?
    regards

    thx for reply.
    I added "aaa accounting update newinfo" and I'll see tommorow how it works with anyconnect and 802.1x.
    Meanwhile I think I must clarify what I meant
    Not all logs have IP address present in live authentication (this is MAB for test only)
    the situation with 802.1x and anyconnect is a bit better cause there are IP addresses but only from the first dhcp address assignment (authentication open with default ACL). Then if the policy changes vlan and the client gets new IP address from different scope we have wrong information in this log.
    but getting back to our MAB...
    details of this entry looks like:
    so this is probably the reason that no IP address is visible it was too soon for MAB to get this info and send it as framed IP address (according to this config command "radius-server attribute 8 include-in-access-req")
    nevertheless clicking the accounting details (from the 2nd screenshot)
    we see that this information is present
    so my first question is on which stage this column is fulfilled? only when "FRAMED-IP-ADDRESS" is send in radius-request? or from accounting?
    maybe ISE should dynamically modify this record after each accounting newinfo message?
    regards

  • How do you watch and record a live h.264 stream at the same time using fmis and FMLE?

    I've read all the similar post but could not find a solution that actually works, and please no "just use the dvr or record on the FMLE suggestions" as neither will work for me.
    Some posts I've read suggest naming the stream in the FMLE to something like mp4:mystream.mp4 or mp4:mystream.f4v but then you can no longer view the stream, and according my the admin console the stream will not even publish using this syntax.
    I can view the published stream if I name the FMLE stream to something like mystream.mp4 or just mystream, but then it doesn't record at all or records as a FLV file depending on how I code the main.asc file.
    Here's one version of my main.asc, this one correctly publishes the live stream after the client triggers the joinStreams function but will not record it.
    application.onConnect = function (client, userType)
        trace("userType is " + userType);
        this.acceptConnection(client);
        //this.clientCount++;
        client.joinStreams = function (channel)
            trace("joinStreams on channel " + channel);
            liveVid = Stream.get("livevideo/" + channel + ".mp4");
            liveVid.play("hdvideo/" + channel, -1, -1);
            liveVid.record("append");
        client.clearStream = function (channel)
            trace("clearStream on channel " + channel);
            liveVid = Stream.get("livevideo/" + channel + ".mp4");
            liveVid.play(false);
            delete liveVid;
    I've been working on this for 48 hours straight, please advise.

    I think lets keep it simple, will explain what you have for watching live streams and recorded streams
    Live Publish and Play:
         FMLE Settings:
    Video Codec: H.264
    Audio Codec:<any of your choice>
    Server URI : Please put your server uri with application name here , for example i will use "rtmp://myServer/myApp"
    Stream name: livestream
        Subscriber Settings:
              Server URI :  "rtmp://myServer/myApp"          Stream name: livestream
              Mode: "live" ( i.e. ns.play("livestream",-1,-1,true)
    Playing VOD H.264 file:
         Subscriber settings:
              Server URI :  "rtmp://myServer/myApp"
              Stream name: if file name is "sample", use "mp4:sample", if file name is sample.f4v, use "mp4:sample.f4v"
              Mode: "record" ( i.e. ns.play("mp4:sample.f4v",0,-1,true)
    For DVR (Record-in-progress stream)
    If you are using FMLE and want to use "Record" option of FMLE then you need to have to dvrcast_origin application and subscrier needs to FLVPlayback 2.5 component
    If you want to use that option, do let me know i will give details later.
    For now we will use simple server-side code and FMLE as publisher.
    main.asc of "myApp"
    application.onPublish = function(myclient,mystream){
         mystream.record();
    application.onUnpublish = function(myclient,mystream){
         mystream.record(false);
    FMLE Settings:
    Video Codec: H.264
    Audio Codec:<any of your choice>
    Server URI : Please put your server uri with application name here , for example i will use "rtmp://myServer/myApp"
    Stream name: mp4:mydvrstream.f4v
        Subscriber Settings:
              Server URI :  "rtmp://myServer/myApp"          Stream name:  mp4:mydvrstream.f4v
              Mode: "live" ( i.e. ns.play(" mp4:mydvrstream.f4v",0,-1,true)
    Try out above and let me know if that works or does not work for you.

  • I just bought a docking station for my iPad so I could plug into a mixing board and record a live show.  I was disappointed at the time limitation for the recordings.  What is the maximum amount you can record a song into GB for the iPad?

    I purchased a docking station for my iPad so that I could record a live recording of my band directly from a mixing board this weekend using GarageBand.  Unfortunately, I was unaware of the song length limitations of the iPad version of this program.  Basically, was unable to capture more than 15 minutes of the gig.  I've read other conversations on this forum and can't really determine the maximum amount of time this application can record.  Can anyone tell me how long GarageBand for ipad can record at one single time and how to adjust the settings to achieve this?  Also, is anyone aware of any other apps than could be used to record a longer please share.  Thanks.
    CP

    I received an email reply from George, the Founder and CEO of Studiomini, he indicated to me that their app does not have any time limitations in regards to recording like GB does, you are only limited by the amount of free space on your iPad.  Fo what it's worth, I think the Alesis IO Dock is an amazing piece of equipment.  I would highly recommend purchasing the IO Dock and plugging your mixing board into the dock to capture your rehearsal.  Hopefully the feedback I received from Studiomini is accurate and I can capture my entire rehearsal at one time.  I hope this feedback helps.  One last note, apparently their will be a update soon to view Studiomni in the landscape view on the iPad instead of just the portrait view.

  • Can I record a live streaming concert (audio

    Is there a way to record a live streaming concert (audio & video) with Quicktime on my iMac?

    Sure.  The built-in iSight camera of all Intel iMacs supports both video and audio.  The following link shows how to use Quicktime to record video and audio with your iSight:
    http://support.apple.com/kb/HT4024
    If you wish to append that video with examples on the computer, SnapZ Pro is a great tool for screen capture:
    http://www.ambrosiasw.com/utilities/snapzprox/
    Note, SnapZ Pro is probably the easiest to record an existing webinar.  Note, when recording any webinar, you should be licensed to record the said video, or allowed to by the professor/school offering it for the use of your own instruction.

  • ISE Live Authentications Not Visible

    Hi,
    I have a single node ISE deployed and have been adding and deleting policies for the past two weeks without issue.  It's using our production AD and CA server and connected to NCS.  My problem is that today when I was working on a new MAB policy, the policy would let the laptop on the network, but nothing appeared in live authentications screen or the reports.  I tried this with both a MAB and 802.1x policy set and both times I logged on with the correct policy, but nothing was showing in the logging.  These were both wireless and I had both the authentication and the accounting pointing at ISE.  As well as SNMP too.
    I forgot to see if the clock was off, but if the authentications are working, I'm not sure why the reporting is not.
    Any help would be appreciated.
    Thanks,
    Mike                  

    Is your log target set up?
    Admin/System/Logging/Remote Logging Targets/LogCollector
    Also if this is a guest wifi setup between a Cisco foreign & anchor WLC, make sure Auth & Accounting are set up on the foreign WLC.

  • Dashbord and Live authentication ISE 1.1.3.124 p1

    Hello all,
    not long time ago, i lost all data in the HOME pannel, all sub windows says: no data avalable no nothing
    the only number i have there is the number of endpoints
    And now, in the live authentication, i dont any results, no pass, failed etc... running heath report gives me nothing.
    Am running ISE 1.1.3.124 patch 1 and the Admin and PSN are not separeted by any FW.
    i know i should go to 1.1.4 patch 2 but maintenance windows are hard to managed.
    Anyone seen that behavior?
    ps: replication are ok...
    Thx

    The issue could be due to incorrect or corrupted indexing and it need to rebuild via root patch. You may check the mnt-collector.out logs from the support bundle. I'd also suggest you to go directly to ISE 1.2 that is scheduled for July 3rd week. In order to resolve current issue, you may need to open a TAC case.
    Jatin Katyal
    - Do rate helpful posts -

  • Third party application retrieve live authentication info from ACS40

    We have ACS40 in place authenticating users and machines. There is another separate key application in our network, which will grant access to authenticated user only. How can ACS forward/share the live authentication information with other application? Please share your ideas.
    Thanks,
    Lahki

    Hi
    Live authentication data will appear in the passed and failed authentication logs. In ACS these can be logged locally and/or remotely.
    If you have an appliance you're probably stuck with syslog, however if you have s/w ACS ODBC logging could inject the data directly in your applications database.

  • How to record a live camera stream inside Adobe Media Server?

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

    I am using Adobe Flash Builder 4.6 with Adobe Media Server Extended 5. I am streaming my webcam in Adobe Media Server ("rtmp://localhost/live") successfully. I need to record and save this live video inside Adobe Media Server.
    Could you suggest me how I can record a live webcam streaming inside my server?
    Thanks in advance
    Martin

  • ISE Live Authentications

    I have ISE with latest version 1.2.1.198
    I never see any entries in the live authentications page even though I have clients successfully authenticating and being authorised.
    Different browsers seem to make no difference.
    Has anyone also seen this and has anyone found a bug relating to this?
    Regards
    Roger

    make sure your NAD is configured correctly . and try
    ms-ise-mgm01/admin# app config ise
    Selection ISE configuration option
    [1]Reset Active Directory settings to defaults
    [2]Display Active Directory settings
    [3]Configure Active Directory settings
    [4]Restart/Apply Active Directory settings
    [5]Clear Active Directory Trusts Cache and restart/apply Active Directory settings
    [6]Enable/Disable ERS API
    [7]Reset M&T Session Database
    [8]Rebuild M&T Unusable Indexes
    [9]Purge M&T Operational Data
    [10]Reset M&T Database
    [11]Refresh M&T Database Statistics
    [12]Display Profiler Statistics
    [13]Exit
    try
    7 to reset the session db
    10 to reset the M&T database
    Once you have run these commands the DashBoard should begin to display information.

  • Customize live authentications dashboard

    Hello,
    is it possible to customize the live auth dashboard to see only the failed authentications? Also is it possible to extend the view and to see the last 100 failed authentications? The filters one can apply to the live authentications dashboard does not give me those options.

    Not as far as I can see but you can be a little clever.
    For example, you can definately choose to view the last 100 entries,  That is a standard option (click the screwdriver to select)
    But to see fialed auth (in your case) you could filter on Authentication does not contain MSCHAPv2
    Looking at your screenshoot that should give you a list of failures.
    The ACSview add on to 5.x is certainly a nice feature that just missed on a lot of customisation options.
    Paul

  • Export ISE Live Authentications and Sponsor activities

    Dear all,
    We need to know if it is possible to export to a syslog or any other service the live authentications logged on ISE.
    In addition, I need to know if is possible to export the sponsor activities.
    Thanks in advance!
    David

    make sure your NAD is configured correctly . and try
    ms-ise-mgm01/admin# app config ise
    Selection ISE configuration option
    [1]Reset Active Directory settings to defaults
    [2]Display Active Directory settings
    [3]Configure Active Directory settings
    [4]Restart/Apply Active Directory settings
    [5]Clear Active Directory Trusts Cache and restart/apply Active Directory settings
    [6]Enable/Disable ERS API
    [7]Reset M&T Session Database
    [8]Rebuild M&T Unusable Indexes
    [9]Purge M&T Operational Data
    [10]Reset M&T Database
    [11]Refresh M&T Database Statistics
    [12]Display Profiler Statistics
    [13]Exit
    try
    7 to reset the session db
    10 to reset the M&T database
    Once you have run these commands the DashBoard should begin to display information.

  • ACS 5.4 Can´t see device name in "Live Authentication"

    Hello,
    under dashboard i activated "Live Authentication". Under register card "General" i can see the IP-Adress of the switch (authenticator) but not the name. The IP-Adress is not listed under IP-Adress but under NAD.
    Under AAA Protocol > RADIUS Authentication it is perfect. Network device and IP-Adress is listed correct.
    Is there a way to see NAD in Dashboard?
    Regards Horst

    Hi,
    in the attachment, you can see the IP Adresses of the switches (authenticator) in the column of NAD but not in the column of IP Address.
    If you open the Authentication-RADIUS-Today the name and the IP Adress of the authenticator can be seen.
    I like to see the IP Adress and the name of the network device.
    Regards Horst

  • RECORDING A LIVE M2P STREAM?

    Can FCP2 capture a live m2p stream? I would like to record a live switch in M2P format saving the conversion time later. The event could be as long as 8 hours with a few breaks. I would be using my G4 notebook. Any other suggestions? Thanks!

    How do you get the stream? From Internet?
    For my experience, QT don't even recognize the .m2p. extension. If you want to open one, you need to change it to .mpg.
    The problem I see (I not an expert at all) is that you are trying to capture a stream a live. Is not just a file that you download. FC and QT can do that with certain video codecs (as Shane says) and though certain hardware ports.
    I don't know if one of those applications (I've never used then) that capture whatever goes on on the screen could do it.
    Probably the PC world is more prepared for that task.

  • Recording a live band through Garage Band

    How do I record a live band (my own) using an iBook G4 with Garage Band 2.0.2?

    I too am trying to record a live band, but in Garageband 3. I want to record multiple tracks. Not sure how or if I can record more than one track at a time using what I have, which is an 8 channel mixer and an i mic (simple rca to usb interface). Do I need to buy one of these fancier interfaces?

Maybe you are looking for

  • Batch convert Pages files to Doc and stay in the same folder?

    Hi there, I use iWork '09 on Mountain Lion. I recently switched to Microsoft Word and prefer it over Pages (personal preference). However, I have nearly 1000 files on my computer that are in Pages format. I have extensively searched this issue in the

  • Practical use of UML diagramming tool....

    Hi , the use of UML diagramming tool is to present the system to end user (use cases) ... like the Entity Relationship Diagram in the Oracle Designer.... However , i 'd like to ask if the product of this tool can be used as a base to produce somethin

  • Scanner that is compatible

    I am trying to find a flatbed scanner that is compatible with my OS X 10.2.8 and I am having great difficulty finding one. The Apple store would be happy to sell me a new computer but at this time I do not want one. Any advice on a make/model of a fl

  • Do I have a valid backup - or not?

    I have been concerned that my backup clocks up the % completion until it gets to 'Contacts & Calendar' at around 65%, then says 'Backup complete'. This might be explained by what I saw when I reinstalled BB Link, which was a reference to 'Where conta

  • FocusListener and other listener problem

    I don't know why i can't catch Deactivated and LostFocus and other relevant event. I try to make a simplepanel as Popup because Jpopupmenu have some problem. please take a look. regards thanks import java.awt.BorderLayout; import java.awt.event.Actio