IP SLA SNMP trap: ¿any way to include a meaningful message in it?

Hello team:
I managed my router to generate a SNMP trap when one IP SLA object detects a trigger condition.
I would like this SNMP trap (or the associated SYSLOG message) to have a meaningful, easy to identify message (ex: SERVER NOT REACHABLE).
¿is there any way to accomplish this?
Hints will be greatly appreciated
Best regards
Rogelio Alvez
Argentina

Try changing
ip sla reaction-configuration 500 react timeout action-type trapOnly
to
ip sla reaction-configuration 500 react timeout threshold-type immediate action-type trapOnly
and post "show ip sla reaction configuration".

Similar Messages

  • By default, Teststand will not include the test step result in subsequence, is there any way to include these step result in report?

    By default, Teststand will not include the test step result in subsequence, is there any way to include these step results in report?
    Thanks
    Jacky

    Hi,
    If your subsequence is in a separate sequencefile, then check the properties of the sequencefile to make sure that the record has not been disabled.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • Is there any way to include excluding one field

    hi all,
    is there any way to include a structure or type in another structure or type by excluding one field?
    regards
    hyma

    I think you are trying to include 2 structures but it is giving error that some fields are common
    you can overcome that like this , these are the 2 additions
    INCLUDE STRUCTURE ZTAB AS name1.
    INCLUDE STRUCTURE ZTAB AS name1 RENAMING WITH SUFFIX name2
    for more info check the help for INCLUDE STRUCTURE

  • I have an IPhone 4s and am getting an IPad Mini. Do I have to change my Verizon plan in any way to include the IPad?  After all I already have the phone number.

    I have an IPhone 4s and am getting an IPad Mini. Do I have to change my Verizon plan in any way to include the IPad?  After all I already have the phone number.

    Gina your post was very helpful to me as well. I recently Traded In my Apple IPad 3 WIFI Only Device for a Verizon Wireless Apple IPad Mini Pre-Order. This is actually my very first WIFI + Cellular IPad Purchase. The Price was Finally Affordable.

  • I am setting up a new Time Capsule to replace another hard drive.  Is there any way to include the the Time Machine history from the old drive on the new Time Capsule?

    I am setting up a new Time Capsule to replace another hard drive.  Is there any way to include the the Time Machine history from the old drive on the new Time Capsule?

    Check item #18 of Time Machine FAQ, particularly the material in #3 of the "How to" section.
    By the way, you've been misled by poor field labeling on this forum into typing a large part of your message into the field intended for the subject.  In the future just type a short summary of your post into that field and type the whole message into the field below that.

  • Is their any way to include your play count on a song, when copying?

    I have a POS computer right now. It's a Dell Dimension 3000, with the Stock 40GB HDD. But I bought a 250GB HDD which I plan to take with me to my new computer that I plan to get, and i'm not having any trouble with copying the songs their, but is thier any way to include the Play Count of the song, so that I will have it on my new PC?
    Thanks

    There is nothing within DW that can do this for you. You also cannot go straight from HTML to an emailed XML file, which is likely why you couldn't find anything online about it.
    You will need to find out what server scripting language(s) your hosting company supports (php is a common one).
    Once you know that, you'll need to create/purchase/download a script in that language that you attach your html form to in order for it to be converted by your server and sent to your email as an XML file, again php is a very common choice for this.
    As Murray suggests, there are a lot of sources online once you know which language you can use.

  • Is there any way to LOCK/save text messages?

    Is there any way to LOCK/save text messages?

    Not really, except with third-party apps:
    https://discussions.apple.com/message/15205763#15205763
    https://discussions.apple.com/message/5537905#5537905

  • Hi! Is there any way I can save my messages in Imessage?

    Hi! Is there any way I can save my messages in Imessage aside from taking screenshots of it?

    Shaun,
    Recently I got an iPhone 5 and when I activated it, I lost all of my voicemails from my previouse phone.  With Verizon (I'm not sure about other carrier's), they were able to provide me with a phone number where I could access my old messages.  I then used a website www.SaveMyVM.com to make permanemnt MP3 backups of them.
    I believe the messages only remain on Verizon's system for a few days after activating a new phone, so time I would give them a call as soon as possible.
    Hope this helps,
    Jaimie

  • Any way I can view received messages online ?

    My phones not turning on so I've been using imessage on my mac, i usually sign out of it so no peeping could happen but I'm afraid I'm missing some messages being sent to me. Is there any way I can view the messages that have already been sent and not read ?

    Not online.
    In my experience with the Messages app on my Mac if quit while a number of iMessages have been exchanged, all are downloaded when launching the app. I don't sign out which may be different from having the app quit only.

  • Is there any way to click the System Message Box button  through code?

    Hi,
    Is there any way to click the System Message Box button through code?
    Is there any way to restrict the System Message Box ?
    The requirement is, i need to open the MRP Wizard form in MRP.it s run automatically.after completion of the wizard is there finish button.after clicking of the finish button, there have a system message. i want to click on "Yes" button through coding.
    when system message box open.my code is stopped.if i press yes code is running.   
    Thanks in advance.

    Thanks for replay
    bellow given the code
    i am using, when i call the finishMrp function its going to take the itemId from XML and click to the finish button.
    There have a system message .when system message fair my debugging stopped. Please give me any idea.
    Public Function Execuate() As Boolean
    Dim strSQL As String
      Dim objRS As SAPbobsCOM.Recordset
        Dim intLoop As Integer
        Dim objForm As SAPbouiCOM.Form
        objForm = objAddOnCentral.objApplication.Forms.ActiveForm
        objRS = objAddOnCentral.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
        strSQL = "SELECT U_MRPCode From [@ACSYMRPLIST]"
        objRS.DoQuery(strSQL)
        If objRS.EoF Then
        Throw New Exception("No MRP Scenario Scheudled")
        Return False
        End If
    For intLoop = 1 To objRS.RecordCount
                objForm.Freeze(True)
                If intLoop = 1 Then
                initializeMRPRun()
                System.Windows.Forms.Application.DoEvents()
                Else
                reinitialize()
                System.Windows.Forms.Application.DoEvents()
                End If
                MRPRun(objRS.Fields.Item("U_MRPCode").Value)
                System.Windows.Forms.Application.DoEvents()
                objForm.Freeze(False)
                objRS.MoveNext()
            Nex
            finishMRPRun()
            Return True
        End Function
       Private Sub finishMRPRun()
            Dim strResource As String
            Dim objXML As New XmlDocument
            Dim objXMLNode As XmlNode
            Dim objXMLNodeList As XmlNodeList
            strResource = System.Reflection.Assembly.GetExecutingAssembly().GetName().Name & "." & "AutoStart.xml"
            objXML.Load(System.Reflection.Assembly.GetExecutingAssembly.GetManifestResourceStream(strResource))
            objXMLNodeList = objXML.SelectNodes("/AutoMRPScript/FinishMRP/Instruction")
            For Each objXMLNode In objXMLNodeList 'objXML.ChildNodes.Item(1).ChildNodes
                Select Case objXMLNode.Attributes("OPType").Value
                    Case "2"
                        systemMessageactiveFormButton(objXMLNode)
                End Select
            Next
        End Sub
    Private Sub systemMessageactiveFormButton(ByVal Instruction As XmlNode)
            Dim objForm As SAPbouiCOM.Form
            objForm = objAddOnCentral.objApplication.Forms.ActiveForm
            objForm.Items.Item(Instruction.Attributes("ItemID").Value).Click()
        End Sub
    Edited by: Badulla Sk on Dec 31, 2009 11:24 AM
    Edited by: Badulla Sk on Dec 31, 2009 11:25 AM

  • Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    Is there any way that a normal SMS message (i.e. A green message) can be sent through to an iPad? I have linked my iPad to my phone but I don't want certain messages getting through. If I turn my imessenger off, does this mean these won't go to my ipad?

    SMS is a voice cell service and since the iPad does not have voice cell circuitry, it does not natively support SMS or MMS. There are third-party apps in the iTunes Store that purport to send SMS, but I have no personal experience with any of them.
    If I turn my imessenger off, does this mean these won't go to my ipad?
    If you disable Messages in the Restrictions on the iPad, then it will not be able to send nor receive messages. Or you can change the email address used for Messages on either the iPad or the iPhone. The iPad will then only receive messages sent via that address.
    For more information, see:
    http://support.apple.com/kb/HT3529
    Regards.

  • Is there any way to save my text messages?

    I am having problems with the lock button on my iphone 4 not responding. I called apple and they told me to try restoring it to new, I'm wondering if there is any way to save my text messages when doing this

    No. However, you could import them to your computer using third-party software, but there is no way to restore them to your phone.
    http://www.wideanglesoftware.com/touchcopy/index.php

  • Is there any way to retrieve deleted texts messages from KIN TWO M?

    is there any way to retrieve deleted texts messages on KIN TWO M?

    Unfortunately, no, not unless you had them backed up somewhere (like with bitpim software).  Once the texts are deleted from the phone, they're gone.

  • My iphone screen has broke and i cant see anything but i can still hear my messages coming through, is there any way i can read those messages online?

    Please help, my iphone screen was repaired with a faulty screen and my screen has went sheet white with all coloured lines so i cannot see anything on the screen at all. My phone is still on and i can still hear all my messages coming through, is there any way i can read those messages before dumping the phone?

    Only if:
    1. It's iMessages
    2. You have a newer Mac and iMessage is configured
    3. You use the same Apple ID

  • Is there any way to include a Numbers table into a Pages document?

    I have a nice useful well-formatted table in a Numbers sheet and now I'd like to include it in a Pages document.
    Is there any way to do this?
    I don't care that the table remain "active" (that is, it doesn't have to allow me to change values and recalculate from within Pages) BUT I do care that the formatting and values remain exactly like I painstakingly set them in Numbers.
    Dave

    You can copy and paste the entire table. Select it so you get the little square handles at each corner and side, then copy. Switch to pages and paste.
    Every cell that's calculated from other cells in that table will remain calculable in Pages. Any cell that's calculated from other tables will just have its value.
    There is no need to create a table in Numbers just because you want calculations. Tables in Pages behave just the same way, but without the help and function building facilities.

Maybe you are looking for

  • I can't open a pages document on my air that was saved from my desktop through my idisk - please help!!

    Pages is installed on my lap stop, desk top but I guess not on my Air - how can I read that document until I am able to load pages into the AIR - I really need to see and change this document?  Thanks.

  • Import bulk users ad

    Guys, I would like to get some more info about the import users through a csv in Ad. First, i did read some fine articles(like this: http://www.computerperformance.co.uk/Logon/Logon_CSVDE_Bulk.htm) but most of the time i get more questions after read

  • Can't install After Effects 11.0.4 on OSX Yosemite 10.10.2.

    Get notice that "Updates have been suppressed by the Administrator" - I am admin on this computer though. Tried numerous things (deleting files, using Terminal, etc). After Effects won't load, Render program doesn't load -- Any ideas?

  • What is the point of Labelflash?

    I have a Qosmio X500 series that I bought a couple of years ago (slightly dusty but when I dust if off, it looks pretty good) and I have just got around to wanting to use Labelflash but after downloading the software, I've discovered that apparently

  • Use raw IP to create a socket

    Dear All, Dear All Given a raw IP number 126.124.35.41 and port number 1950,how to create a socket? i.e. how to use the following constructor to create a socket. Socket s = new Socket(InetAddress address, int port) I know the key is to use raw IP to