ISE offloading syslogs real time to MARS

I am working on my implementation of ISE and I want to offload real time logs from ISE to MARS.  Is this possible and is there anything special that is needed to perform this?                  

To collect logs externally, you configure external syslog servers, called targets.Logging targets are locations where the system logs are collected. In Cisco ISE, targets refer to the IP addresses of the servers that collect and store logs. You can generate and store logs locally, or you can FTP them to an external server. Cisco ISE has the following default targets, which are dynamically configured in the loopback addresses of the local system:
•LogCollector—Default syslog target for the Log Collector.
•ProfilerRadiusProbe—Default syslog target for the Profiler Radius Probe.
To create an external logging target, complete the following steps:
Step 1 From the ISE Administration Interface, choose Administration > System > Logging > Remote Logging Targets.
The Remote Logging Targets page appears.
Click Add.
Step 2 The Log Collector page appears.
Step 3 Configure the following fields:
a. Name—Enter the name of the new target.
b. Target Type—By default it is set to Syslog. The value of this field cannot be changed.
c. Description— Enter a brief description of the new target.
d. IP Address—Enter the IP address of the destination machine where you want to store the logs.
e. Port—Enter the port number of the destination machine.
f. Facility Code—Choose the syslog facility code to be used for logging. Valid options are Local0 through Local7.
g. Maximum Length— Enter the maximum length of the remote log target messages. Valid options are from 200 to 1024 bytes.
Step 4 Click Save.

Similar Messages

  • Directing fsck output to syslog and screen in real-time

    Hello,
    I have the following under Debian 6. The procedure should check and automatically repair the file system and write the result to the user's screen and also to syslog.
    #!/bin/bash
    output=`fsck -y /dev/disk/by-label/oracle-xe; retval=$?`
    logger -is "$output"The procedure seems to work, but I don't see the output until the fsck command has completed. Is there a possibility to write the output to syslog while presenting the fsck output in real-time?
    Kind regards.
    Edited by: Dude on Jan 30, 2012 6:44 PM

    I make some progress:
    outfile=/tmp/`date +%N`
    retfile=/tmp/`date +%N`
    (fsck -y /dev/disk/by-label/oracle-xee; echo $? > $retfile) | tee $outfile
    logger -i < $outfile
    retval=`cat $retfile`
    rm $outfile
    rm $retfileThe above gives me the results I was looking for
    I also tried
    logger -is "`fsck -y /dev/disk/by-label/oracle-xee`"But it the syslog output in this case is just one long line of text without any newlines
    If there is a better way, please let me know.
    Edited by: Dude on Jan 30, 2012 6:57 PM

  • Help needed with CVI real time

    Hi,
    I am new to CVI real time and need help related to this. I will explain my scenario:
    1. I have few configuration files (INI). Need to validate the files (range checking..etc) during start of the application.
    2. When user clicks "START" in the user interface on the host machine, I need to generate outputs (analogs/discretes...) based on the settings in the config file and read some inputs from other instruments. ( I/O tasks like generating outputs/reading inputs i am planning to perform in RT side)
    3. From the user interface,  user can also change the config files. if user changes the files, again file validation needs to be performed. After changing the files, if user clicks START, need to take the newly enetered config files to perfom I/O tasks.
    4. I am NOT using reflective memory for my application.
    I am confused in the following area:
    1. File validation during startup , do i have to perform on both host and RT side?????
    2. if configuration files are changed in the host side by the user, how i have to send this latest file names to RT??? I think i should not send file names, i need to read from the file and its contents i need to pass to RT....Pls correct me , I am not sure about this....
    3. If I have to send file contents to the RT, how I have to do that....means i have to use structures,..???
    Please guide me. Any help would be highly appreciated.
    Regards,
    haari
    Solved!
    Go to Solution.

    Hey haari,
    1. File validation during startup , do I have to perform on both host and RT side?????
    This depends on the full range of responsibility for the INI files. If they are all needed simply to change what the I/O tasks are for, then you would technically only need to validate the INI file contents on the RT side. You could, however, validate on both sides if you wanted to. However, I would probably set it up such that I send a validation command to the target, have the target run a component of the code that validates the INI contents based on how I instructed it, and then return a message that says whether or not it met the requirements I specified. However, if you are concerned with offloading that process to the user desktop (instead weighing down the RT controller performance), you could FTP the file off of the controller and perform the validation process on the host side.
    2. if configuration files are changed in the host side by the user, how i have to send this latest file names to RT??? I think i should not send file names, i need to read from the file and its contents i need to pass to RT....Pls correct me , I am not sure about this....
    You can send them to the target over FTP. This can be done programmatically, through MAX, command window, or a Web browser.
    3. If I have to send file contents to the RT, how I have to do that....means i have to use structures,..???
    This is basically addressed in answer to question two. You would not need another structure in your RT code to handle the FTP receive component as this is handled by the FTP Client/Server communication. However, in the event that you successfully FTP a file to the target, you should likely send a message from the host to the target so that the target can respond accordingly and reload the file, reestablish the I/O values, run an idle procedure, or do whatever you like.
    Hope this helps. Have a great day!
    Tim A.
    National Instruments

  • 11gR2 Real Time Apply / open read only

    Hi,
    I have a single instance primary database with a physical standby. The release is 11.2.0.1.0.
    Max Availability mode
    LGWR SYNC transport
    Data Guard Broker configuration enabled
    Both the primary and standby database are registered with the Grid Infrastructure (Standalone installation on each server, no cluster)
    When I stop and start the standby database it seems to default to open read only using Managed Real Time Recovery.
    SQL> SELECT DEST_ID, RECOVERY_MODE FROM V$ARCHIVE_DEST_STATUS
    2> WHERE DEST_ID=2;
    DEST_ID RECOVERY_MODE
    2 MANAGED REAL TIME APPLY
    I do not want to Active Data Guard on this particular database. So I removed and added the database again using srvctl this time supplying the -s mount flag. Now when I stop/start the standby it opens in mount mode and MANAGED recovery which is OK.
    My question is why did the standby automatically get opened in read only. Is the a change in behaviour introduced along with Active Data Guard? Is the default behaviour for a database registered with Grid Infrastructure to simply start the database in open mode and becuase this is 11.2 standby this means open read only?
    Thanks

    Dear user234564,
    This has been introduced in Oracle Database 11g Data Guard New Features and it is called the Active Data Guard. With the new release you can open the physical standby database in read only mode and the real time apply will continue as it is on the mount stage. This ability has not been granted on 10g. So i think it could be the normal behaviour.
    11g physical standby database will be opened and the MRP process will still apply the archivelogs to the standby database. You can simply have it tested.
    Please refer;
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10700/manage_ps.htm#CHDGJEFF
    Let me give you a quick hint but it is off topic;
    The number of standby databases that a primary database can support is increased from 9 to 30 in this release.
    The capability to create 30 standby databases, combined with the functionality of the Oracle Active Data Guard option, allows the creation of reader farms that can be used to offload large scale read-only workloads from a production database.Hope That Helps.
    Ogan

  • LMS 3.2 real time graphs

    Hi Guys,
    Can somebody tell me how to set up the following in LMS 3.2 running the latest version of various modules like RME, CS etc.
    1. Real time graphs. If I am monitoring 100 switches in LMS, to be able to display reachability status of 100 switches in a graph (say refresh interval of 5 mins)
    2. When a switch goes down, to generate an email.
    TIA

    You can't view syslogs in real-time through LMS.  You can run reports within RME to view them once they are stored in the RME database.  This is done under RME > Reports > Report Generator.
    LMS is not a general purpose trap receiver.  The DFM application does receive and process SOME traps.  Instead of traps, DFM primarily relies on polling to build its fault events for devices.  These can be viewed in real time under DFM > Alerts and Activities > Alerts and Activities.

  • Can you think of a nifty trick to work in grayscale, while previewing in real-time a 2 color separation?

    I need to come up with a procedure that allows a customer to work on a black and white image while assessing the effect of a translation into a 2-color separation.
    To visualize what I’m looking for, place a grayscale image in the magenta channel of an empty (white) cmyk document, and the same grayscale image inverted into the yellow channel. The other 2 channels stay empty (white).
    Now we have the white end of the grayscale expressed as yellow, the black end as magenta. Since one channel is a direct inversion of the other, the sum total of the 2 is always 100% at any point along a gradient.
    I have written a action, that allows one to quickly look at the effect, but what I am being asked is to is to deliver the same thing in real-time.
    Duotone? NO!
    In a duotone document I can only move one curve at atime, thus creating overlap (too much red) or a gap (whashed-out hue) between the profiles of the 2 curves.
    CMYK? NO!
    In a cmyk document I have the option to move 2 curves simultaneously, but what I would need is an option to work one curve, while the other automatically moves equally in opposite.
    Gradient mapping?
    Here I have a rudimentary way to set the starting, mid, and endpoints, but it needs to be done in RGB and I don't know of any way to separate the resulting RGB channels into a grayscale that maintains all the information.
    Anyone? Any ideas are much appreciated.

    Mars_Red wrote:
    I need to come up with a procedure that allows a customer to work on a black and white image while assessing the effect of a translation into a 2-color separation.
    To visualize what I’m looking for, place a grayscale image in the magenta channel of an empty (white) cmyk document, and the same grayscale image inverted into the yellow channel. The other 2 channels stay empty (white).
    Now we have the white end of the grayscale expressed as yellow, the black end as magenta. Since one channel is a direct inversion of the other, the sum total of the 2 is always 100% at any point along a gradient.
    I have written a action, that allows one to quickly look at the effect, but what I am being asked is to is to deliver the same thing in real-time.
    Duotone? NO!
    In a duotone document I can only move one curve at atime, thus creating overlap (too much red) or a gap (whashed-out hue) between the profiles of the 2 curves.
    CMYK? NO!
    In a cmyk document I have the option to move 2 curves simultaneously, but what I would need is an option to work one curve, while the other automatically moves equally in opposite.
    Gradient mapping?
    Here I have a rudimentary way to set the starting, mid, and endpoints, but it needs to be done in RGB and I don't know of any way to separate the resulting RGB channels into a grayscale that maintains all the information.
    Anyone? Any ideas are much appreciated.
    Mars Red,
    This might work. Assuming you now have a CMYK document, with no cyan, no black, and magenta and yellow are inversions of one another
    1. Create a solid yellow fill color layer on top, blend mode normal 100% opacity
    2. Create an empty layer on top of that, blend normal, 100% opacity.
    3. Select all, fill this layer with solid magenta
    3. Hide this and the yellow layer
    4. Load the magenta channel as a selection
    5. Click on the solid magenta layer, Layer - Layer Mask - Hide Selection
    6. Show all the layers
    7. Click on the mask on the magenta layer. You can apply curves to this mask. No matter what you do to the mask, the yellow separation will always remain an exact inversion of the magenta. You will always have 100% ink coverage in every area, no more, no less. The only catch is the mask is opposite the ink, so curve adjustment is opposite of ink behavior.
    That is CMYK solution. Here is duotone solution, much simpler:
    Assuming you have a grayscale image:
    1. Mode duotone
    2. Type duotone.
    3. Ink 1 : color picker, CMYK, 100M (yields name Magenta)
    4. Ink 2: color picker, CMYK, 100Y (yields name Yellow)
    5. Ink 2 curve: 0 = 100, 100 = 0 (inversion)
    6. Hit enter. Now you can make curve adjustments to the duotone channel (not the duotone curves) using Image: Adjustments: Curves. No matter what you do to the duotone channel, you will maintain inversions of magenta and yellow, and you will always have 100% ink coverage in any given area.

  • Real time lms

    Hello guys,
    I am doing FxLMS project. I created LMS subvi from this example http://www.ni.com/example/31220/en/, but output from LMS, keeps increasing very fast. Can you please tell where I am doing wrong?
    Thank you
    Attachments:
    lms_new.vi ‏19 KB
    cool.vi ‏140 KB

    You can't view syslogs in real-time through LMS.  You can run reports within RME to view them once they are stored in the RME database.  This is done under RME > Reports > Report Generator.
    LMS is not a general purpose trap receiver.  The DFM application does receive and process SOME traps.  Instead of traps, DFM primarily relies on polling to build its fault events for devices.  These can be viewed in real time under DFM > Alerts and Activities > Alerts and Activities.

  • Real time project

    can anyone please provide with some real time projects documents if any.
    [email protected]
    thanks
    andrea

    Hi
    http://www.ondemandgk.com/content/docs/whitepapers/OnDemand_Personal_Navigator_and_Solution_Manager.pdf
    If you are working on new implementation then life cycle is same for all ..
    Implementation steps:
    1. AS IS process
    2. To be process mapping
    3. customizaiton in SAP + devepment
    4. Unit testing
    5. Full testing
    6. End-user training
    7. Go-live
    8. Support for initial month-ends.
    9. Ongoing support....
    Basically full life cycle is ised in the context of full implementation of the project which involves - Business Blue Print, Realization, Testing, Go live and post go live support.
    End to End can be related to a particular business process. For example, we can consider Order to Cash as end to end cycle. This will involve - creation of a Sales Order, Delivery, Billing , Customer Payment.
    SAP full life cycle starts with Reqirements gathering to go-live.
    1. Requirement gathering.
    2. Project initiation
    3. Blue print Analysis
    4. Dev. Phase
    5.Testing
    6.Go-live.
    <b>Reward if usefull</b>

  • How to reset numbers in real time display in Cisco Supervisor Desktop?

    Hi all,
    I wonder about numbers in real time display in Cisco Supervisor Desktop. There are many statistic number for example : Call Handled, Max Talking, Avg Talking, Max Ready, Total Ready, Call abandoned, etc. Is there any way to reset those numbers back to zero? Please let me know.
    Thank you.

    Joe,
    I haven't tried that, but I'm very skeptical. The CAD Agent gets stats from two places - CTIOS and RASS. RASS keeps the call log information in a SQL Desktop Engine database.
    Stats derived from CTIOS reset at midnight. Obviously, restarting the RASS service has no effect on those. Call log information is being kept in a database so it seems to me that a restart of RASS should also have no effect.
    I guess I will have to try for myself.
    Regards,
    Geoff

  • How to download an FPGA vi along with a real time application

    Hello
    I am targeting cRIO 9012, cRIO 9102. I downloaded the FPGA vi on flash memory and then built a real time application and set it as startup.  But there was no signals on the modules IOs which are handled by FPGA vi.
    Also the shared variables of that application when running as standalone aren't accessible. Please provide me the steps that should be followed to access the shared variables of a standalone real time system. Please help me resolve these problems.
    Best Regards
    Mani

    Hi Mani,
    What modules do you have?  What kinds of signals are you measuring?
    Have you deployed your shared variable library on your host PC?
    Regards,
    Jeremy_B
    Applications Engineer
    National Instruments

  • What is the real time use of implicit and explicit cursors in pl/sql

    what is the real time use of implicit and explicit cursors in pl/sql.............please tell me

    You can check the following link ->
    http://www.smart-soft.co.uk/Oracle/oracle-plsql-tutorial-part5.htm
    But, i've a question ->
    Are you student?
    Regards.
    Satyaki De.

  • InDesign auto-size frame feature not working in real time in InCopy why?

    We have just recently migrated from InCopy CS4 to CS6 to take advantage of the new features like the auto resize frame option, however it now seems that this feature is not working in real-time.
    Basically the steps are needed to be complete before it auto-resizes the frame in InCopy, we use both layout and assignment based workflows:
    1. From an ID document ('doc1'), exported a 'layer' to IC, certain frames are set to auto-size in height using the text frame options. So that editorial can review and make changes to text and the frame should resize according to the specifications set. IC stories are saved to a folder located in a content folder inside the top issue working folder.
    2. Editorial opens the IC software, then opens the ID 'doc1'. Check’s out correct .icml file and makes edits to frame with auto resize.
    3. Frame does not resize according to text frame set options and InCopy file does not respond in same fashion as InDesign.
    4. Change only occurs when InCopy file is closed and updated in InDesign, which is frustrating as this feature would save huge amounts of time serving editorial requests.
    Has anybody experienced this type of workflow problem? If anyone can provide mw with some pointers as to what can I do to get this to update in real time perhaps run a script? Update file in InCopy and refresh I will very much appreciate their assistance. I have run out of ideas.
    Thanks!

    We've had all sorts of problems with this feature as it should've worked straight out of the box but after some testing we have found that its something to do with the way you open the actual file in InCopy. Which is far from ideal and should have been UAT by Adobe before release.
    This will not work consistently work if you open the designed .indd or .icma file in InCopy using the file open command within the application.
    If you need this to work, the InCopy user has to open the .indd or .icma file by dragging and droping from OS windows explorer into InCopy, we use Windows 7 acrros all the teams. Check out .icml files add text changes to the set auto resized frames, this process will expand/collapse the frames to fit the content but as you have to use the drag and drop method to open the .indd and .icma file, 2 users cannot access the same time doc at the same time (a serious flaw in the programming architecture!) which stops people working in parallel. Save changes, check in .icml content and close .indd or .icma.
    However the flaw comes in if you then open the .indd and .icma file in InCopy using the file open command within the application, before an InDesign user opens and saves the file (updates the design). The corrections added in the previous stage above, will not show the frames expanded/collapsed to take in the added text and instead show over matter???? The only way around this is to ask an InDesign user to open, update and save the design that way the InCopy user will see the same result no matter what file open method they use.
    Another suggestion is to design the page to have some of the auto resize frames anchored within main body of text and that way the frames will expland/collapse when checking out and editing the content. However, this does cause issues with InDesign crashing etc. so we have tried to stop this method within the working group.
    Have you experienced other more serious issues with InDesign crashing consistently when re-importing .icml files? See other forums here:
    http://forums.adobe.com/thread/671820?start=80&tstart=0
    http://forums.adobe.com/message/5045608#5045608
    As far as we can see this is a major flaw in how the application(s) work, we have an enterprise agreement with Adobe and purchase a large volume of Adobe products globally but so far the technical support team are unable to find a solution to this and I'm not hopeful of any resolution soon even with the new release of Adobe CC.

  • Updating a Real-time Infocube

    Hi All,
    In one of the requirements in BPS planning.
    We are using the Exit function for validating the data.
    In our function module we are fetching the data and two of the fields in the cube needs to be modified in the cube after completion of the validations.
    I would like to know if there is any existing functionality or Function module in BPS planning for this for updating the Real-time Info cube.
    Thanks
    Prathish

    Try this link:
    www.geocities.com/cynarad/reference_for_bps_programming.pdf
    In the chapter where table xth_data is described more detailed this can be one possibility to validate your realtime IC.
    Have fun,
    Clemens

  • Office Web Apps Server 2013 / Real-Time co-authoring

    Hello,
    In general, I would like
    to ask the development team or product
    manager SharePoint /Office web Apps.
    As you already know in the cloud
    product version introduces new features. Such as
    authoring and other unlike on-premises version . This link demonstrate it.
    http://blogs.office.com/2013/11/06/collaboration-just-got-easier-real-time-co-authoring-now-available-in-office-web-apps/ . 
    Please tell me the plans or roadmaps for the implementation
    of these functions in the server version. Or Microsoft
    has no plans to develop this area?

    great, and as i said, we are working to keep parity, but there are still many features which are technically considered in preview in the O365 environment.  after several months, depending on stability, feedback, and whether the feature fits well with
    the product, it may either be tested to go into on-prem farms and come out of preview or be dropped altogether (auto-hosted apps).
    This feature is definitely one that is key to the future of the product, but there isn't a timeline on when it will come to onprem.  there ia a lot of additional testing before anything can be integrated to on-prem as the environments have many
    more variables than the rather rigid architecture at O365, as well as the fact that the o365 farms have many of the preview features and so then anything to go into a feature for on-prem needs to be re-vetted in farms without those extras and checked for dependencies
    (not normally an issue, but still part of the process).
    Christopher Webb | Microsoft Certified Master: SharePoint 2010 | Microsoft Certified Solutions Master: SharePoint Charter | Microsoft Certified Trainer| http://tealsk12.org Volunteer Teacher | http://christophermichaelwebb.com

  • How to change the default Real-Time Collaboration page?

    Who can tell me how to change the default Real-Time Collaboration page?
    If I want to add my corporation logo in the top of the default page.How to do?
    Thanks!

    Thanks for your help.
    "Click the Sites tab to display all sites and their IDs for your system." But I clicked the sites tab ,it showed "http://hostname:7777/imtapp/app/home.uix". I could not find the siteID parameter from it. Why?
    How to get it from command?

Maybe you are looking for