There's no SNMP record (on rttMonStatsCollectTable) for IP SLA DNS, FTP operation on IOS 15.3 and above

Hi,
I try to collect data of an IPSLA probe through SNMP on a Cisco 1900 with IOS 155.1T , when I create a DNS and FTP probes and run those probes, I look at rttMonStatsCollectTable (.1.3.6.1.4.1.9.9.42.1.3.2) to get the result as I did before on IOS 12, but there's no record for DNS nor FTP.
The other probe (TCP, UDP ...) has statistic records here, but not for DNS, FTP.
Could you help to show me where to get the result of DNS, FTP probe (number of disconection, timeout, no connection ...) or this is a bug?
Thanks

To get the MOS score i'm using this:
1.3.6.1.4.1.9.9.42.numberoftheoperation   and then you must divide it by 100
"ip sla monitor 1"  the operation number is 1

Similar Messages

  • Trying to open Aperture, but I get the message, "There was an error opening the database for the library "/Users/davewasson/Pictures/Aperture Library.aplibrary". - and it forces me to quit. What do I do?

    Trying to open Aperture, but I get the message, "There was an error opening the database for the library “/Users/davewasson/Pictures/Aperture Library.aplibrary”. - and it forces me to quit. What do I do?

    Dave-
    You can try opening the old (problem) library by launching Aperture into Library First Aid mode and choosing to Repair (first option) or Rebuild the library. Before doing this, make a backup copy of the old library, since both Repair or Rebuild will write changes to the library database.
    Repair is the faster and less drastic option, so try that first: After backing up your library, hold down both the Option and Command keys while dragging and dropping the problem library on the Aperture icon. The Photo Library First Aid window appears. Select Repair Database, then click Repair. After some time Aperture should open the library, if possible.
    If that fails launch Aperture back into Library First Aid and select Rebuild Database. Depending on the size of your library this operation could take some time, up to several hours for a very large library. When the main window appears you may have some extra Recovered folders/projects. This operation rebuilds the library from scratch and is usually successful at reviving problem libraries.

  • Is there a limit on number of characters for WPA2/AES on Itouch 4th Generation, IOS 5.0?

    Seen on a few sites that the Itouch prefers 10 to 24 characters, 24 being the maximum.  We are using MobileIron to create profiles, and the current WPA2 Pass phrase is 58 charcters long in ASCII format.  Any help is greatly appreciated.
    King regards

    FWIW I use a 63-character random ASCII key and WPA2-Personal (aka WPA2-PSK [AES]) on my iPod Touch (4th gen) device, running iOS 5.0.1, and my home wireless networks. The key is similar to this...
    The only problem is its quite a pain to key in using the iPod Touch keyboard. I got around that by creating an Outlook 2010 Note, syncing the note with the iPod, then using copy-n-paste to insert the key into the wireless network profile. All that works well with my home ZyXEL wireless router and my travel Belkin wireless router.
    My wireless network security guidelines for home users...
    http://theillustratednetwork.mvps.org/LAN/SoHoWirelessSecurity.html

  • HT5361 Just now accidentally deleted email account. No warning appears and was deleted. Mail was not back up ed. Does exist any way how for Undo of this delete operation (need to recover mails and contacts there)

    I just accidnetally deleted email account and there wa sno warining so it went through and I lost all my emails. The email was not Back up. Is there any way how this account could be recovered?

    If the account was an IMAP account your emails should re-appear if you recreate the email account. If the account was POP you hopefully have backup (TIme Machine?) you can restore the emails from.

  • I can not open aperture. Following message appears: There was an error opening the database for the library.

    I can't open aperure. Following message appears: There was an error opening the database for library.

    Try starting Aperture while holding down the command and option keys. This will open the library first aid window. Select library repair, when it is finished the library should open.
    If you still have a problem post back.

  • Are the newer ipod classics (80GB and above) compatible with docks for the older ipod classics (20GB)?)

    are the newer ipod classics (80GB and above) compatible with docks for the older ipod classics (20GB)?)

    I have an iPod Touch 2 with iOS 4.2.1.  This is the highest version that works on this device.  I checked it once and it had to do with iOS 4.3 and above only supporting the higher RAM CPUs on newer devices.
    Apple does make it harder than it needs to be.  There still remain a number of apps available on iTunes that will work but they are hard to find because you must manually look at each app specs to see if the app supports an iOS below 4.3
    App backups are your friend since iTunes has no way to keep older version of apps.

  • DB_GET_BOTH_RANGE fails when there is only one record for a key

    Using the DB_GET_BOTH_RANGE flag doesn't seem to work when there is a
    single record for a key.
    Here's a sample Python program that illustrates the problem. If you
    don't know Python, then consider this to be pseudo code. :)
    from bsddb3 import db
    import os
    env = db.DBEnv()
    os.mkdir('t')
    env.open('t',
    db.DB_INIT_LOCK | db.DB_INIT_LOG | db.DB_INIT_MPOOL |
    db.DB_INIT_TXN | db.DB_RECOVER | db.DB_THREAD |
    db.DB_CREATE | db.DB_AUTO_COMMIT)
    data = db.DB(env)
    data.set_flags(db.DB_DUPSORT)
    data.open('data', dbtype=db.DB_HASH,
    flags=(db.DB_CREATE | db.DB_THREAD | db.DB_AUTO_COMMIT |
    db.DB_MULTIVERSION),
    txn = env.txn_begin()
    #data.put('0', '6ob 0 rev 6', txn)
    data.put('0', '7ob 0 rev 7', txn)
    #data.put('0', '8ob 0 rev 8', txn)
    data.put('1', '9ob 1 rev 9', txn)
    txn.commit()
    cursor = data.cursor()
    print cursor.get('0', '7', flags=db.DB_GET_BOTH_RANGE)
    cursor.close()
    data.close()
    env.close()
    This prints None, indicating that the record who's key is '0' and
    who's data begins with '7' couldn't be found. If I uncomment wither of
    the commented out puts, so that there is more than one record for the
    key, then the get with DB_GET_BOTH_RANGE works.
    Is this expected behavior? or a bug?

    You can use the DB_SET flag which will look for an exact key match. If
    you use it with the DB_MULTIPLE_KEY flag, it will return multiple keys
    after the point it gets a match. If you can post here how all your
    LIKE QUERIES look, I may be able to provide you with the suited
    combination of the flags you can use for them.I'm not doing like queries. I'm using BDB as a back end for an object
    database. In the object database, I keep multiple versions of object
    records tagged by timestamp. The most common query is to get the
    current (most recent version) for an object, but sometimes I want the
    version for a specific timestamp or the latest version before some
    timestamp.
    I'm leveraging duplicate keys to implement a nested mapping:
    {oid -> {timestamp -> data}}
    I'm using a hash access method for mapping object ids to a collection
    of time stamps and data. The mapping of timestamps to data is
    implemented as duplicate records for the oid key, where each record is
    an 8-byte inverse timestamp concatenated with the data. The inverse
    timestamps are constructed in such a way that they sort
    lexicographically in inverse chronological order. So there are
    basically 3 kinds of query:
    A. Get the most recent data for an object id.
    B. Get the data for an object id and timestamp.
    C. Get the most recent data for an object id who's timestamp is before
    a given timestamp.
    For query A, I can use DB->get.
    For query B, I want to do a prefix match on the values. This can be
    thought of as a like query: "like <inverse-time-stamp>%", but it can
    also be modelled as a range search: "get the smallest record that is >=
    a given inverse time stamp". Of course, after such a range search,
    I'd have to check whether the inverse time stamp matches.
    For query C, I really want to do a range search on the inverse time
    stamp prefixes. This cannot be modelled as a like query.
    I could model this instead as {oid+timestamp -> data}, but then I'd
    have to use the btree access method, and I don't expect that to scale
    as I'll have hundreds of millions of objects.
    We tried using BDB as a back end for our database (ZODB) several years
    ago and it didn't scale well. I think there were 2 reasons for
    this. First, we used the btree access method for all of our
    databases. Second, we used too many tables. This time, I'm hoping that
    the hash access method and a leaner design will provide better
    scalability. We'll see. :)
    If you want to start
    on a key partial match you should use the DB_SET_RANGE flag instead of
    the DB_SET flag.I don't want to do a key partial match.
    Indeed, with DB_GET_BOTH_RANGE you can do partial
    matches in the duplicate data set and this should be used only if you
    look for duplicate data sets.I can't know ahead of time whether there will be duplicates for an
    object. So, that means I have to potentially do the query 2 ways,
    which is quite inconvenient.
    As you saw, the flags you can use with cursor.get are described in
    detailed here.But it wasn't at all clear from the documentation that
    DB_GET_BOTH_RANGE wouldn't work unless there were duplicates. As I
    mentioned earlier, I think if this was documented more clearly and
    especially of there was an example of how one would work around the
    behavior, someone would figure out that behavior wasn't very useful.
    What you should know is that the usual piece of
    information after which the flags are accessing the records, is the
    key. What I advice you is to look over Secondary indexes and Foreign
    key indexes, as you may need them in implementing your queries.I don't see how secondary indexes help in this situation.
    BDB is
    used as the storage engine underneath RDBMS. In fact, BDB was the
    first "generic data storage library" implemented underneath MySQL. As
    such, BDB has API calls and access methods that can support any RDBMS
    query. However, since BDB is just a storage engine, your application
    has to provide the code that accesses the data store with an
    appropriate sequence of steps that will implement the behavior that
    you want.Yup.
    Sometimes you may find it unsatisfying, but it may be more
    efficient than you think.Sure, I just think the notion that DB_GET_BOTH_RANGE should fail if
    the number of records for a key is 1 is rather silly. It's hard for me
    to imagine that it would be less efficient to handle the non duplicate
    case. It is certainly less efficient to handle this at the application
    level, as I'm likely to have to implement this with multiple database
    queries. Hopefully, BDB's cache will mitigate this.
    Thanks again for digging into this.
    Jim

  • I have iwork on two computers, but my account doesn't show record of it for my being able to reinstall on the new computer.  Is there a time limit?  I tried airdrop, but it won't let me use it.

    I have iwork on two computers, but my account doesn't show record of it for my being able to reinstall on the new computer.  Is there a time limit?  I tried airdrop, but it won't let me use it.

    Sounds like you installed iWork from before there was the Mac App Store.
    If you installed it from a Family DVD you are entitled to install that on 5 computers and can do that from the DVD.
    If not then you need to purchase it from the M.A.S. and will be able to install it on any of your computers using the same Apple I.D. However Apple is promising a new version before Christmas so it may not be a good time to buy now.
    Peter

  • I had my favorite actress record my custom voicemail greet (Iphone 6), but in all of the hustle and bustle, I didn't tap the 'save' button. Is there a miracle I can pray for? I assume it never existed in the device, but it DID record. Anybody???

    I had my favorite actress record my custom voicemail greet (Iphone 6), but in all of the hustle and bustle, I didn't tap the 'save' button. Is there a miracle I can pray for? I assume it never existed in the device, but it DID record. Anybody??? It was recorded on March 25. 2015 around 10:45-ish (in NYCon 45th street), if that matters at all. Not like I can call her up and get her to do it again. Desperation, here, people!!
    Stockardguru

    I went in to voicemail, signed up with my pin and then opened it up clicked on custom greeting pressed record, she said the greeting, I pressed stop. There was a red line when I pressed stop. It was in the voice m ail app. I just forgot, being so nervous and all to press record.

  • Is there a single snmp oid for flash and dram ?

    Does a single univeral oid (or 1 for flash and one for dram) exist that will provide total amount of flash and total amount of dram across all chassis families ?
    Thanks

    This link is your best bet:
    http://www.cisco.com/warp/public/477/SNMP/contiguous_memory.html

  • Is there a way to RECORD the mouse as a pointer when recording?

    Is there a way to RECORD the mouse as a pointer when recording a voiceover on a slideshow?  I want to use the mouse as a pointer (I know how to do that live), but the recorded show does not show my motions as I voiced.

    Oh, I see. I don't have Keynote, I've only recorded my screen for other things, so I don't know about that. Maybe someone else can help.

  • Error: Data cannot be inserted as there is no matching record

    Hi,
    I have migrated SharePoint 2010 site to SharePoint 2013.
    I have a custom list, which i was able to do edit multiple records after "opening in Access" in SharePoint 2010.
    After the migration, when i open the list in "open with Access", and try to modify any data, I am getting the error "Data cannot be inserted as there is no matching record". The custom list has columns which are taken from lookup list.
    I have tried the re-link the list, which has not helped.
    Found this: For some of the lookup colums, for which the data is empty, it is getting shown as 0.
    This is causing the issue.
    How to fix this?
    Thanks

    Hi Venkatzeus,
    According to your description, my understanding is that the error occurred when you open the list with Access after migrating SharePoint 2010 to SharePoint 2013.
    Did this issue occur with other lists?
    I recommend to create a new blank database in Access and then import the list into the new one to see if the issue still occurs.
    For test, I recommend to test the same scenario with a new list to narrow the issue scope.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Info Record Not Appearing for all materials in classic scenario.

    HI ALL, 
                I am working on Classic Scenario and all the follow-on documents are getting created properly. But the problem is With SOS. Currently i am able to view the info record for only one of my material, I am also referring backend contracts through vendor list. The contracts are visible in SOS.
               Can somebody pls put a light as to why for other materials the info records is not displayed in SOS, is there a report which has to be run to get the info record into SRM from ECC. If not then how does the system bring these contracts and info record from ECC to SRM.
              I am working on SRM 5.0 and ECC 5.0.
    THANKS AND REGARDS
    Debu

    Hi
    Please read this as well.
    <u>You have created sources of supply. These could be:
    -> Contract items in Enterprise Buyer
    -> Vendor-specific prices
    For this, you have created Product Linkages in the SRM System with vendor-specific prices via the SAP Menu Master Data -> Products -> Process Products.
    -> Entries in the vendor list of Enterprise Buyer
    In Customizing you have assigned product categories to which the system is to automatically group requirements and you have scheduled report BP_SC_TRANSFER_GROUPED to run periodically.
    For more information, see the Supplier Relationship Management Implementation Guide (IMG): SRM Server -> Sourcing ->  Define Interactive Sourcing for Product Categories.</u>
    Sourcing is completely integrated with the global availability check in SAP APO and executes a vendor search. You can activate third-party order processing in the check instructions by choosing how you want the system to start sourcing and which sourcing method you want to use for it. There are two different options here:
    &#9675;     If you want the products to be delivered exclusively by external vendors, the system performs sourcing directly at the external vendors without evaluating internal locations. For this, SAP APO requires corresponding purchasing records, delivery plans and contracts that are transferred from SAP ECC.
    &#9675;     If you only want to have products delivered by external vendors occasionally, that is to say, if you are unable to deliver the product from your own warehouse stock, choose an ATP profile in which both internal and external vendors are evaluated. In this case, the external vendor is treated like an internal location in SAP APO, and is integrated into location determination in the rule-based availability check.
    You can also choose the vendor manually. If you have already specified a vendor as the source of supply in SAP CRM, SAP SCM does not carry out any further sourcing. In this case, SAP SCM merely checks the validity of this vendor and confirms the requirement in its full amount if the vendor is valid.
    For more information, see SAP Library for SAP SCM at SAP Advanced Planning and Optimization (SAP APO) -> Global Available-to-Promise (Global ATP) -> Advanced Availability Check Methods -> Third-Party Order Processing in the Global ATP -> Sourcing in Third-Party Order Processing.
    <u>Refer these links for more details -></u>
    <u>Assignment of Existing Sources of Supply</u>
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/25/40f23a53cd0e04e10000000a11402f/content.htm</b>
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/55/4af548688211d4977e0004ac962ee6/frameset.htm
    http://help.sap.com/saphelp_crm50/helpdata/en/fa/84944279c0c66ae10000000a155106/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/18/db183d30805c59e10000000a114084/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/63/36f2323326da4da25d9d0a06f550a0/frameset.htm</b>
    <u>Processing Contracts</u>
    <b>http://help.sap.com/saphelp_srm50/helpdata/en/43/0f234a9e242a8be10000000a1553f6/frameset.htm
    http://help.sap.com/saphelp_srm50/helpdata/en/5a/4cc5376848616ae10000009b38f889/frameset.htm</b>
    <u>See also</u><b>SAP Note 519794 EBP: Replication of Materials exclusively for Purchasing
    SAP Note 505030 (Restrictions for the integration of external requirements).</b>
    Regards
    - Atul

  • Are there benefits to the Blackmagic Intensity Pro for HDV capture ?

    Are there benefits to the Blackmagic Intensity Pro for HDV capture ? 
    I have a Sony HDR-FX1 that records in HDV 1440 x 1080 
    I have already captured the footage to miniDV tape. 
    Can the intensity card get the full 1920 x 1080 video ? 
    I now use Premiere to capture my video and my HDV is in mpeg2 and my SD is in DV type 2 AVI 
    What format does the intensity card capture at ? 
    Are there other ways to capture that would make the footage better. 
    From what I have read allot of people have had problems with these cards. 
    Im just looking for the best way to get the footage off my camera with the best resolution. 
    Thanks:  Glenn 

    Glenn,
    I have posted this before in the PC Buying Guide (post #23 and later), but have a look at this diagram:
    The problem is that once recorded to tape, the material is compressed to MPEG and there is no way to get the data back, that were lost during compression. The only thing you achieve is that you lose device control, lose all timecode information, lose all metadata like date and timestamp and exposure data and lose the capability of scene detection. There are no gains to compensate the losses.
    Compare it to a glass of orange juice, that was made by heavily compressing oranges. How do you think you can reconstruct the original oranges that the juice came from? Were there 4 large oranges or 6 small ones or a mixture? Were they light colored or were they dark or a mixture of light and dark?
    BlackMagic in their marketing may lead you to believe otherwise, but the truth is they can only guess at how many oranges were used, their size and color. It is nothing more than a guess.

  • Cs5 , Is there a way to record a script or convert an action to a script?

    Hi
    i understand nothing about script
    but is there a way to record a script?
    i mean like an action
    for example click and select a tool , the hand tool , and let photoshop write the script (that have the command to select the hand tool)
    or is there a tool to convert an action to a script?
    thanks
    cheers

    xbytor provides ActionToJavascript in xtools.
    http://ps-scripts.sourceforge.net/xtools.html
    thanks
    hope it's easy to use
    But why do you not post on the Photoshop Scripting Forum?
    because i know nothing about photoshop scripting
    i mean i really know nothing, i guess to post in the photoshop scripting forum needs some skills and i haven't
    thanks
    cheers

Maybe you are looking for