Looking for an OID string for the IE-3000 switch

I'm looking for the OID string on a IE-3000 switch to give me the results for the optical Tx and Rx power as shown in the "show interface transceiver" command (this is the output i ran directely from the IE-3000 switch, BTW):
                                 Optical   Optical
           Temperature  Voltage  Tx Power  Rx Power
Port       (Celsius)    (Volts)  (dBm)     (dBm)
Gi1/1        30.1       3.29      -6.1      -7.3
The OID I am using on our 6509 switch for Rx power is .1.3.6.1.4.1.9.9.91.1.1.1.1.4.xxx (where xxx is the ifindex number), but I can't seem to find anything similar for it on the IE3000.  The closest I have found are the following, but those appear to be just descriptor tags:
.1.3.6.1.2.1.47.1.1.1.1.2.1029 (tx)
.1.3.6.1.2.1.47.1.1.1.1.2.1030 (rx)
Thanks for any help!
Kim

Kim,
Have you tried the Cisco on-line tool called the SNMP Object Navigator?
You can use it to translate OID into object name or object name into OID to receive object details.
http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?local=en
If you cannot find the reply you need in this forum, try posting to the LAN or WAN Routing and Switching forums.  This forum is mainly for optical issues (SONET, SDH, equipment)
Hope this helps,
-SteveN

Similar Messages

  • User defined function for getting last string in the line

    Hi Experts,
    I am not java expert, can anyone give me user defined function for getting last string in the line.
    for example if the source field is "NEW ARBOUR SQUARE"  i want to pass to target field only last string that is "SQUARE"
    please help me out of this.
    Kind Regards.
    Praveen.

    You don't even need a UDF for this. In the graphical editor look for the standard functions and once you do a scroll over on 'text functions; you will find what you are looking for.
    Just a piece of advice, try keeping UDF's to minimum unless really required or it is complicated without it.
    regards

  • Is there a difference for user agent string for firefox desktop & firefox mobile?

    Is there a difference for user agent string for firefox desktop & firefox mobile?

    Yes. All versions of mobile Firefox have "Fennec" in the useragent string. For example:
    Mozilla/5.0 (Android; Linux armv7l; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 Fennec/2.0.1
    For more details and examples, please see this article:
    http://hacks.mozilla.org/2010/09/final-user-agent-string-for-firefox-4/

  • How to search for a pattern string in entire registry and delete all the keys and subkeys that contain the pattern (C# or VB)?

    I want to search for a pattern string in the entire registry and need to delete all the keys and sub-keys that contain the pattern. How can I implement this in VB Script or C#? Appreciate if you can give some sample examples. Now every time, I am manually
    searching for the pattern in registry and deleting one by one.
    Thanks Prasad

    There is no built in way to do this. You'll end up having to enumerate all keys and values in the entire registry and comparing each one for a pattern using Regex or similar.  This is going to be really slow but there isn't much else you can do about
    it (other than parallelize the enumeration).  Also note that you won't have permissions to all keys for read and/or write access so you'll need to skip over those using exception handling.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Searching for a string in the xml present in a particular row and column.

    Hi All,
    We have a table in which in one of the column a complete payload xml is getting stored.
    Is there any way to search for a particular string in the stored xml of a particular row?
    Thanks in Advance,
    Bob

    Here is a simple example of what Blu is saying
    I have create a table temp_dept like this
    SQL> desc temp_dept
    Name                          Null?    Type
    DEPTNO                                 NUMBER
    DNAME                                  VARCHAR2(10)
    LOC                                    VARCHAR2(8)
    EMP_XML                                XMLTYPE
    I have loaded employee detail from emp table into emp_xml as xml data. here is a sample
    SQL> select * from temp_dept;
        DEPTNO DNAME      LOC      EMP_XML
            10 ACCOUNTING NEW YORK <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7782</EMPNO>
                                     <ENAME>CLARK</ENAM
            20 RESEARCH   DALLAS   <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7369</EMPNO>
                                     <ENAME>SMITH</ENAM
            30 SALES      CHICAGO  <?xml version="1.0"?>
                                   <ROWSET>
                                    <ROW>
                                     <EMPNO>7499</EMPNO>
                                     <ENAME>ALLEN</ENAM
    Now i can convert the emp_xml into a table and query like this
    SQL> select d.deptno
      2       , d.dname
      3       , d.loc
      4       , e.*
      5    from temp_dept d
      6       , xmltable
      7         (
      8              '/ROWSET/ROW' passing d.emp_xml
      9              columns empno          number        path 'EMPNO'
    10                    , ename          varchar2(100) path 'ENAME'
    11                    , job            varchar2(100) path 'JOB'
    12                    , mgr            number        path 'MGR'
    13                    , hiredate       varchar2(100) path 'HIREDATE'
    14                    , sal            number        PATH 'SAL'
    15                    , com            number        PATH 'COM'
    16         ) e
    17  /
        DEPTNO DNAME      LOC           EMPNO ENAME      JOB               MGR HIREDATE          SAL     COM
            10 ACCOUNTING NEW YORK       7782 CLARK      MANAGER          7839 09-JUN-81        2450          0
            10 ACCOUNTING NEW YORK       7839 KING       PRESIDENT             17-NOV-81        5000          0
            20 RESEARCH   DALLAS         7369 SMITH      CLERK            7902 02-APR-81        2975          0
            20 RESEARCH   DALLAS         7566 JONES      MANAGER          7839 02-APR-81        2975          0
            20 RESEARCH   DALLAS         7788 SCOTT      ANALYST          7566 19-APR-87        3000          0
            20 RESEARCH   DALLAS         7876 ADAMS      CLERK            7788 23-MAY-87        1100          0
            30 SALES      CHICAGO        7499 ALLEN      SALESMAN         7698 20-FEB-81        1600        300
            30 SALES      CHICAGO        7521 WARD       SALESMAN         7698 22-FEB-81        1250        500
            30 SALES      CHICAGO        7654 MARTIN     SALESMAN         7698 28-SEP-81        1250       1400
            30 SALES      CHICAGO        7698 BLAKE      MANAGER          7839 01-MAY-81        2850          0
            30 SALES      CHICAGO        7844 TURNER     SALESMAN         7698 08-SEP-81        1500          0
    11 rows selected.
    SQL>
    You can apply filter for the necessary value that you are searching.

  • Look Up For Comma Separated Strings

    Hi,
    How to look up for comma separated string from livecycle forms manager ??
    Plz gimme an idea on this.
    Raghava Kumar V.S.S.

    Hi
    My point is that the more detailed you ask your question, the more likely you are to get an answer.
    Those of us who monitor these newsgroups also appreciate you doing as much of your own research as possible, before asking us for help - we're more likely to spend our own (personal and valuable) time helping you, if we know that you've spent your own time doing research, and you've still not been able to solve the problem.
    I look forward to your next question :-)
    Howard

  • [svn] 3519: Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service .

    Revision: 3519
    Author: [email protected]
    Date: 2008-10-08 04:17:40 -0700 (Wed, 08 Oct 2008)
    Log Message:
    Fix typo in error string for situations where there are advanced messaging configuration settings from LCDS used in the configuration files but no AdvancedMessagingSupport service. The error string said that there was no flex.messaging.services.AdvancedMessagingService registered but it is the flex.messaging.services.AdvancedMessagingSupport service that needs to be registered.
    Add configuration test that starts the server with a destination that has the reliable property set which is an advanced messaging feature but there is no AdvancedMessagingSupport service registered.
    Modified Paths:
    blazeds/trunk/modules/common/src/flex/messaging/errors.properties
    Added Paths:
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/error.txt
    blazeds/trunk/qa/apps/qa-regress/testsuites/config/tests/messagingService/ReliableDestina tionWithNoAdvancedMessagingSupport/services-config.xml

    Hi,
    Unfortunately I already tried all kinds of re-installs (the full list is in my original message). The only one remaining is the reinstall of Windows 8 itself, which I would really like to avoid.
    What I find really strange is the time it takes for the above error message to appear. It's like one hour or even more (never measured exactly, I left the computer running).
    What kind of a timeout is that? I would expect that, if ports are really used by some other application, I get the message in less than a minute (seconds, actually). To me this looks like the emulator itself for some reason believes there's a problem with
    some port while in reality there isn't.
    I'll eventually contact Microsoft Support, thanks for the suggestion.

  • Publishing server doesn't work - error 'The request URL doesn't contain the query string for the client OS'

    Hi,
    I'm trying to setup an App-V environment in my lab.
    I've used the App-V 5.0 Trial guide to help me configure all necessary components.
    I'm able to install everything without error.
    when come time to publish an app, it simply doesn't show up on my client.
    after looking at events on the client and server, I found that the Publishing server is returning under Admin the following message.
    'The request URL doesn't contain the query string for the client OS'
    My setup is pretty simple.
    App-V Server managament and Publishing on the same box
    App-V database on my SQL server.
    I'm able to see the publishing "webpage" by using http:://localhost:889.
    It only display this :
    -<Publishing Protocol="1.0"
    <Packages />
    </Publishing>
    I've published one app from the management console.
    any idea what could mean this error?
    thanks

    Hi,
    thanks for the link.
    I've validated the suggested debug steps. It seems that the problem is with my Publish server again.
    I've looked in the web.config file. It seems to be missing some parts compare to the example provided.
    Again, I've published an application from the management console. Management and Publishing are running on the same box, while SQL is remote.
    Here's the web.config
    <?xml version="1.0" ?>
    - <configuration>
    - <system.web>
    <compilation debug="false" targetFramework="4.0" />
    <machineKey validationKey="AutoGenerate,IsolateApps" decryptionKey="AutoGenerate,IsolateApps" />
    - <authentication>
    - <!-- We don't support form authentication, but this will supress x-ray security warning
    -->
    <forms requireSSL="true" />
    </authentication>
    </system.web>
    - <system.webServer>
    - <modules runAllManagedModulesForAllRequests="true">
    <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </modules>
    - <security>
    - <requestFiltering>
    - <verbs>
    <remove verb="GET" />
    <add verb="GET" allowed="true" />
    </verbs>
    </requestFiltering>
    </security>
    </system.webServer>
    - <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
    + <behaviors>
    - <serviceBehaviors>
    - <behavior name="">
    <serviceAuthorization impersonateCallerForAllOperations="true" />
    <serviceMetadata httpGetEnabled="false" httpsGetEnabled="false" />
    </behavior>
    </serviceBehaviors>
    </behaviors>
    - <bindings>
    - <webHttpBinding>
    - <binding name="SecureBinding">
    - <security mode="Transport">
    <transport clientCredentialType="Windows" />
    </security>
    </binding>
    <binding name="UnsecureBinding" />
    </webHttpBinding>
    </bindings>
    - <protocolMapping>
    <add scheme="http" binding="webHttpBinding" bindingConfiguration="UnsecureBinding" />
    <add scheme="https" binding="webHttpBinding" bindingConfiguration="SecureBinding" />
    </protocolMapping>
    - <standardEndpoints>
    - <webHttpEndpoint>
    - <!--
    Configure the WCF REST service base address via the global.asax.cs file and the default endpoint
    via the attributes on the <standardEndpoint> element below
    -->
    <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true" />
    </webHttpEndpoint>
    </standardEndpoints>
    </system.serviceModel>
    </configuration>

  • [svn] 4748: Externalizing strings for the flex4 project.

    Revision: 4748
    Author: [email protected]
    Date: 2009-01-29 16:31:42 -0800 (Thu, 29 Jan 2009)
    Log Message:
    Externalizing strings for the flex4 project. We now produce a resource bundle swc (flex4_rb.swc) that has all of the externalized strings for the flex4 project. We include 3 new bundles: components, layout and sparkEffects for the en_US locale. Other locales will come shortly.
    QA: Yes, please doublecheck error messages are thrown with the correct error message.
    Checkintests: Pass
    Reviewer: Gordon
    Modified Paths:
    flex/sdk/trunk/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/build.xml
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/DataGroup.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxApplication.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/FxScroller.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/Group.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/components/baseClasses/FxComponent.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/Animation.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/FxAnimateShaderTransition.as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/effectClasses/FxAnimateInstance.a s
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/interpolation/ArrayInterpolator.a s
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/effects/interpolation/NumberInterpolator. as
    flex/sdk/trunk/frameworks/projects/flex4/src/mx/layout/LinearLayoutVector.as
    Added Paths:
    flex/sdk/trunk/components.properties
    flex/sdk/trunk/layout.properties
    flex/sdk/trunk/sparkEffects.properties

    I have just managed to fix this problem !
    My second Strings.plist file (FR) had an absolute path. The drop down menu for path type (absolute, relative) was greyed out in the info pane of xcode so I could not change it to a relative path.
    The solution is to change it manually in the project.pbxproj file:
    If you open the file to view the source, and search for "plist", find the following line:
    /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = /Users/[YOUR-USER]/[PATH_TO_PROJECT]/fr.lproj/InfoPlist.strings; sourceTree = "<absolute>"; };
    Notice that the path attribute is the full path to the file, and that the sourceTree attribute is set to .
    Now change the path so that it's relative:
    /Users/[YOUR-USER]/[PATH_TO_PROJECT]/fr.lproj/InfoPlist.strings
    should become
    fr.lproj/InfoPlist.strings
    Also change the sourceTree value from <absolute> to <group>
    The line should now look like this:
    /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/InfoPlist.strings; sourceTree = "<group>"; };
    Repeat these steps for all your localizations that are stuck with absolute paths.
    Save the file, commit the changes, and voilà! no more no such file problem

  • JRE Uninstall string for v7 all the same - but do not work

    We have multiple Windows 7 machines running v7u1 thru v7u10.
    I found the uninstall string and was able to run MsiExec.exe /X{26A24AE4-039D-4CA4-87B4-2F83217010FF} on my own machine to remove the software successfully.
    In looking at u6,u7,u9 and u11 installations, I noticed the Uninstall Strings are exactly the same. But when ran on those machines, the system states "This action is only valid for products that are currently installed".
    However, I can remove the version from the Control Panel.
    So what are the correct uninstall strings for v7u1 thru v7u11?

    All of our users are local admins and tend to install whatever. This leads to a messy environment and we don't always know which version of Java is installed. So, to address that, I created a small script that scours 'HKLM\software\microsoft\windows\currentversion\uninstall' for Java entries, reads the uninstall string then runs the reported uninstall string. The assumption here is that the uninstall string will be an MSI command. (All the machines & versions of Java used the same format.)
    This is a Windows 7 Enterprise (32-bit) environment, but the script also works on 64-bit installations of Windows 7 Enterprise.
    I've tested this with 7u11 and went as far back as 6u21. It should work with just about any version that uses MSI for uninstalling.
    @echo off
    setlocal enabledelayedexpansion
    echo. & echo Checking for Obsolete Versions of Java...
    for /f "usebackq tokens=*" %%a in (`reg query HKLM\software\microsoft\windows\currentversion\uninstall`) do (
         rem echo a is %%a
         for /f "usebackq tokens=2*" %%b in (`reg query "%%a" /v DisplayName 2^>nul ^| find /i "java"`) do (
              rem echo b is %%b
              rem echo c is %%c
              for /f "usebackq tokens=3,4" %%d in (`reg query "%%a" /v UninstallString 2^>nul`) do (
                   echo.     Removing %%c
                   rem echo d is %%d
                   rem echo e is %%e
                   set uninstallcmd=%%e
                   set uninstallcmd=!uninstallcmd:^/I=^/X!
                   rem %%d %%e /qb-
                   %%d !uninstallcmd! /qb-
    :end
    endlocal
    Standard Dislaimer:*
    Neither I nor the respective owners and/or maintainers of Oracle make representations about the suitability of this software for any purpose. This material is provided "as is", with absolutely no warranty of the attached items whatsoever, whether express, implied, or statutory, including, but not limited to, any warranty of merchantability or fitness for a particular purpose or any warranty that the contents of the item will be error-free. Any use is at your own risk. Blah blah blah.

  • [svn:bz-trunk] 11030: Tweak the deserialization of ASObjects to treat an empty string for the type of an object as null .

    Revision: 11030
    Author:   [email protected]
    Date:     2009-10-20 11:35:02 -0700 (Tue, 20 Oct 2009)
    Log Message:
    Tweak the deserialization of ASObjects to treat an empty string for the type of an object as null. It appears that there is some logic in the LC remoting code that relies on a non-null class name to always exist. This change reverts to the old behavior of not allowing empty string as a value for the ASObject.namedType.
    This should fix bug 2448442 and its duplicates caused by the recent serialization changes.
    I don't think this is the perfect fix. Pending further investigation, a better fix would be either:
    a. If it's OK to assume that empty string should always mean null for the type of the ASObject, the code that enforces it should be in the setter/getter inside ASObject and not in the deserializer.
    b. ASObject doesn't guarantee that a named type exists or is valid. In that sense an empty string is as bad as some random characters that cannot be a valid class name in java, so depending on how disruptive it may be, the fix should be in any logic that uses ASObject.getType().
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/io/amf/AbstractAmfInput.java

    Hi Pavan,
    "In your payload there is no namespace prefix for the elements under PayloadHeader element."
    Yes, you are right - but this message is standard AQ Adapter Header message - it's not defined by me. I just used message which was automatically added to my project when I have defined AQ Adapter.
    "In your process is the default namespace is same as namespace value of tns ??"
    Do you mean targetNamespace? If yes it's different as it points to process "targetNamespace="http://xmlns.oracle.com/PF_SOA_jws/PF_APPS/APPS_PROCESS" (names of application and process have changed as I try different ways to do that)
    ns1 is: xmlns:ns1="http://xmlns.oracle.com/pcbpel/adapter/aq/PF_SOA/PF_APPS/PO_AQ"
    "another thing is tns and ns1 should have same values.."
    When I create a variable of header type, namespace ns1 is automatically created for it. I set it as property of receive activity. When process is instantiated on the serwer I get the error in which you can see that namespace is tns.
    Maybe I'm doing something wrong but I don't see how I could fix this in my process.
    You can see that the message I get on the server has nothing in common with the application/project/process names. Is it possible to define such variable?
    Regards
    Pawel
    PS:
    In Transformation xsl file, both variables (source and target) has tns namespace for Header and PayloadHeader, and no namespace for subfields.
    Edited by: pawel.fidelus on 2010-01-05 02:37

  • I just updated iOS on my iPhone 5. What a shock!! Where is the premium look and feel I bought my iPhone for? If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone. Please let me know how I can return to the origina

    I just updated iOS on my iPhone 5.
    What a shock!! Where is the premium look and feel I bought my iPhone for?
    If I wanted the lokale feel of iOS 7.0 I would have bought a much cheeper taiwanese smartphone.
    Please let me know how I can return to the original look and feel of the iPhone surface I bought my phone for.

    You had plenty of time to look at screenshots on the internet and read various blog posts about iOS 7.

  • We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    We are trying to do a Quick payment from payment workbench and getting 'FRM-41830: List of values contains no entries' error for payment document column/field. Payment document setup looks good. Not sure what the issue is.

    Already gone through following three notes but didn't found resolution.
    APXPAWKB: FRM-41830 When Clicking on Payment Document LOV (Doc ID 1081305.1)
    R12: APXPAWKB: Payment Document Lov Is Empty When Entering A Payment (Doc ID 857587.1)
    R12: Payment Workbench Error: FRM-41830 List Of Values Contains No Entries (APXPAWKB.FMB) (Doc ID 1323875.1)

  • Looking for a 12v charger for the 13" macbook pro

    looking for a 12v charger for the 13" macbook pro

    There are a number of 12V chargers available for the MBP but I prefer to use a 12V Inverter which allows me to use the provided chargers for my laptops and IOS devices both in-car and whilst out sailing.

  • Looking for a phone replacement, want the Nexus 5 or One Plus One. Why aren't they compatible?

    Hi all,
    I am currently in the process of shopping for an acceptable replacement for my current phone. I am looking to buy a phone full price off contract and use it on the network. A few different ones I am looking at and prefer to have are the One Plus One and the Nexus 5. Now I understand when looking online people have tried popping a VZ sim card into both of these phones but have had no luck successfully connecting. Why is this? (I understand Verizon is a CDMA network)
    When looking on the two websites, both of these phones contain the appropriate LTE radios and have support for the bands that Verizon currently uses. In addition the Nexus 5 also appears to have support for the CDMA radio and can utilize the Band Classes: 0, 1, and 10; (I'm not familiar with the ones that Verizon currently uses, some incite could be helpful?). The actual tech specs found on the two websites can be seen below:
    Nexus 5:
    Networks
    2G/3G/4G LTE
    North America:
    GSM: 850/900/1800/1900 MHz
    CDMA: Band Class: 0/1/10
    WCDMA: Bands: 1/2/4/5/6/8/19
    LTE: Bands: 1/2/4/5/17/19/25/26/41
    One Plus One:
    GSM: 850, 900, 1800, 1900MHz
    WCDMA Bands: 1/2/4/5/8
    LTE Bands: 1/3/4/7/17/38/40
    If those are the correct CDMA bands that Verizon uses on their network, then why does the Nexus 5 not work on the network? Is there anything that can be done to make it work? Secondly, I understand that the One Plus One is not equipped with a CDMA radio, but why does it not connect to the LTE network? In addition I understand that Verizon is in the process of rolling out their VoLTE network, if either the Nexus or the One Plus One was able to connect using just LTE then theoretically you would not need the phone to connect using CDMA and everything would work properly, correct?
    Looking forward to the responses. Have been a customer for years now and would like to continue that, but am starting to loose faith.

    These will never work, and even after VoLTE it probably won't. They're both missing Band 13 which is key to Verizon.
    They want you to buy THEIR phones on THEIR network. They don't make money when you buy those phones at cost. Another reason why the terrible Gnex was over $500 when it launched on Verizon. I'm surprised Verizon is getting another Nexus, but then again, it's now $650 so the appeal of Nexus devices is gone. To some, not all. Hope you can find a replacement.

Maybe you are looking for