Problem using the SNMP OID to query the in use and available ds0 channels?

When using the MIB CISCO-POP-MGMT-MIB, particularly the OID .1.3.6.1.4.1.9.10.19.1.1.9.1.3.0.0 or .1.3.6.1.4.1.9.10.19.1.1.4
I have a pair of  2811 voice Gateways, both running IOS c2800nm-spservicesk9-mz.124-24.T4.bin
The value for active calls from 1 of the gateways is correct.
The value fromthe second is 4294967278
Has anyone seen this issue before, could it be a problem with firmware on the E1 card?
Can you check the firmware from the command line on the router.
Thanks
Colin

Unfortunately, the POPM MIB is not fully supported on ISR platforms due to the triple numbering scheme of interfaces.  See this thread for an alternative: https://supportforums.cisco.com/message/662852#662852 .

Similar Messages

  • ACE module - should 'sh serverfarm' and the SNMP OID 'slbVServerNumberOfConnections' show the same value?

    I've recently begun to notice that the current connections value displayed by the ACE when using the 'sh serverfarm' command isn't matching up with the value returned by a custom MIB poller I'm using to return the value of the associated 'slbVServerNumberOfConnections' OID when I had assumed that they represented the same thing?
    As an example at the moment the ACE is showing 400 current connections for a particular serverfarm but my customer poller is returning 250?
    I'd noticed this behaviour whilst the ACE was running software version A2(1.6a) and had hoped that an upgrade to A2(2.3) might fix it but it hasn't - assuming it's a bug as opposed to just my misunderstanding of what value 'slbVServerNumberOfConnections' is actually returning?
    Can anyone explain what I'm seeing or am I polling the wrong OID?
    Thanks in advance
    regards
    Matthew

    What about the 'show conn' ? do you see 400 or 250 concurrent connections ?
    What about 'sho service-policy'
    The OID refers to the VIP not the serverfarm.
    Also the show serverfarm is known to display incorrect information
    CSCtc94844: ACE: show serverfarm current connection counter incorrect
    The fix will be in A2(2.4)
    Gilles.

  • What is the quickest way to query the init.ora?

    What is the quickest way to query the init.ora?

    Use SHOW PARAMETER at the sql plus prompt.
    SQL> show parameter undo
    NAME                                 TYPE        VALUE
    undo_management                      string      AUTO
    undo_retention                       integer     7200
    undo_suppress_errors                 boolean     FALSE
    undo_tablespace                      string      rollback01
    SQL>

  • Connecting kurzweil sp88 to GB I want to connect my Kurzweil sp88 to GB. The Kurzweil has a baffling array of buttons and possible MIDI channels. It also has the old style MIDI plug ins. I've got the MIDI out connected to my MacBook Pro via USB adapter.

    I have my Kurzweil connected to my MacBook Pro via an adapter (old style MIDI from Kurzweil to USB adapter connecting to Mac). The Kurzweil has a baffling array of buttons and possible MIDI channels. Can anyone please tell me which of the channels I should use? Also, should I leave the MIDI In cable out of the Kurzweil? Thanks for as detailed an answer as possible. If you like you can respond directly to me at [email protected]

    First of all I do not own this keyboard. But a quick look at the manual (found on the internet) says that when first powered up the SP88 is in Internal Sounds mode. Meaning you hear the sounds selected when playing the keyboard. It also stated that the default Midi Transmit Channel is Midi Channel #1.
    Looks like you would need to go to the SP88 Keyboard's MIDI SETUP and simply select LOCAL OFF. Now the keyboard should be ready to transmit Midi Out only and no internal sounds should be heard.
    Next you may or may not need to do this but you might need to go into the Utilities Folder found in your Applications Folder on your Mac and double click AUDIO MIDI SETUP the keyboard Icon. Figure #1 below.
    Next you need to make a physical connection from the Midi Out of the SP88 to the Midi In on your Midi Interface. Figure #3 below. You may need to Click on Add Device first. Figure #2 below.
    In the examples shown below I have a Yamaha Electronic Drum Kit that is Midi Out only... not USB out. I had to plug a Midi cable from the Midi Out Port on the back of my Drum Module to the Midi In Port on the back of my Motu 828 Audio Inferface which is connected to my Mac. Next I created the Audio Interface and Drum Module "Devices" as mentioned above.
    I then double clicked on the Drum Module and made my Midi Out Selections. Figure #4 Below. And once it was setup and the icons closed I used my mouse to draw a virtual cable connection from the Drum Module Out to the Audio Interface In. Figure #3 below. This is how I got my Midi Devices to talk to one another.
    Once you have made your setup as I have outlined create a MIDI Instrument Track in Garageband, select an instrument for example a Piano then Record Enable that track in Garageband and see if you now hear what you are playing. In this example the SP88 is a Midi Controller only and you will only hear sounds selected in Garageband which is what you want.
    Keep in midi your setup may be different than mine. You can keep your SP88 Keyboard on the default Midi Channel #1. That would be a good place to start. Garageband receives Midi on all channels.

  • How to show the data of one query since Forms9i using to Report built-in on

    Hello!!!, I have Developer 9i (Forms and Reports), the OCJ4 and repserver90 are running, now, I attempt to run one report from Forms9i, and only it appears an empty page HTML. I don't understand why doesn't show the data of query?
    Please, give me a solution for this problem, thanks for your help.
    PD: I am using the below code.......
    PROCEDURE bring_report IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('Q_DATA1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://172.16.2.18:8888/reports/rwservlet/getjobid'||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;

    Alex,
    the code does look good. maybe the Reports query does not produce an output. You can trace this ny adding a header on top of teh Reports (e.g. a date or just saying "Hello World"). So instead of an empty page this should now show the text strings. If you don't see the string then there is something else going on. Since you are not getting any error message I assume that the Reports itself executes fine.
    Frank

  • 9i forms/sso - at runtime can I display the current oid user on the form

    Hi ,
    Is it possible programically retrieve the current oid user name so that I can display this name on the form at run time.
    I am also wanting to use the oid user name as a parameter to call a stored procedure inside the form,
    is there a built-in to do this ?
    Thanks
    sd.

    Hi,
    guess that
    declare
    currentuser Varchar2(100);
    begin
    currentuser := get_application_property(sso_userid);
    end;
    does a better job.
    Frank

  • Compare the result of a query with a number and return a message

    Hello,
    I have the following query in oracle 9i:
    SELECT COUNT(*)
    FROM hourly_files
    WHERE date_received = TO_DATE((SELECT TO_CHAR(SYSDATE - INTERVAL '1' DAY,'DDMMYYYY')
    FROM DUAL), 'DDMMYYYY');
    This will produce a count of the required rows
    I need to compare the output number with another hardcoded number (threshold) and print an appropriate message e.g.
    if the output of the above query is 18000 and the threshold number is set to 20000, then output a meesage:
    Number of files received less than 2000
    Any help will be much appreciated !
    Thank you.

    SQL> ed
    Wrote file afiedt.buf
      1  SELECT CASE WHEN COUNT(*) >5 THEN 'Number is > than 5'
      2              WHEN COUNT(*) <1 THEN 'Its less than 1'
      3  ELSE 'Its in between'
      4  END
      5  FROM emp
      6* WHERE deptno=20
    SQL> /
    CASEWHENCOUNT(*)>5
    Its in between
    SQL> SELECT COUNT(*) FROM emp
      2  WHERE deptno=10;
      COUNT(*)
             3

  • The cisco snmp oids do not work, I can't get cpu or memory data.

    Hello. I want to monitor the cpu and memory usages on my cisco devices using snmp. I found the snmp oids related to cpu in the following page :
    http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094a94.shtml
    I just copy the table here:
    But the oids in the table do not work on my devices. For example, I have a cisco 3550 switch with the ip 192.168.1.211, version 12.2(25)when I want to get the informations about the oids up in the table, I got these results:
    It shows that the oids cisco given up in the table are not existed in my 3550 switch's MIB. More weird is that when i add a number "1" to
    the end of the oid cisco given, I can get some meaningless data for some unkonwn item names like "entreprises.x.x".
    For most mib items, the snmp oids work well on my switch. For example, the following graph shows the interface out rate of the swtich:
    I think the essence is when I executed the following command:
    in all the output results, there's not any item relevant with "cpu" or "memory", but most other items are ok, such as interfaces, as shown below:
    IF-MIB::ifDescr.47 = STRING: FastEthernet0/39
    IF-MIB::ifDescr.48 = STRING: FastEthernet0/40
    IF-MIB::ifDescr.49 = STRING: GigabitEthernet0/1
    IF-MIB::ifDescr.50 = STRING: GigabitEthernet0/2
    IF-MIB::ifDescr.51 = STRING: Null0
    IF-MIB::ifDescr.52 = STRING: Vlan1
    IF-MIB::ifType.1 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.2 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.3 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.4 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.5 = INTEGER: ethernetCsmacd(6)
    So why the cisco given oids won't work on my cisco switch, and how can I get the datas I want? Anyone has some advices? Thanks in advance!
    In case the pictures I inserted missing, I attach my problem in the doc.

    Have you looked at this previous discussion:
    Can't Activate FaceTime

  • NX-OS - How include or exclude an OID from the SNMP view entry???

    Hi, I'm working with Nexus 7010 - System version: 5.1(3).
    For example, in the 7200 we can include or exclude an OID from the SNMP view entry using the command #snmp-server view.
    How can we include or exclude an OID from the SNMP view entry in the Nexus 7010???
    Thanks.

    Greetings Marcelo,
    SNMP views are not currently supported on NX-OS. You can use Role-based Access Control to restrict what SNMP users can manage which is somewhat limited in scope - mainly permit/deny read/write access to specific features.
    Cheers,
    /Phil

  • 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

  • Procedure to save the output of a query into excel file or flat file

    Procedure to save the output of a query into excel file or flat file
    I want to store the output of my query into a file and then export it from sql server management studio to a desired location using stored procedure.
    I have run the query --
    DECLARE @cmd VARCHAR(255)
    SET @cmd = 'bcp "select * from dbo.test1" queryout "D:\testing2.xlsx;" -U "user-PC\user" -P "" -c '
    Exec xp_cmdshell @cmd
    error message--
    SQLState = 28000, NativeError = 18456
    Error = [Microsoft][SQL Server Native Client 10.0][SQL Server]Login failed for user 'user-PC\user'.
    NULL
    Goel.Aman

    Hello,
    -T:
    Specifies that the bcp utility connects to SQL Server with a trusted connection using integrated security. The security credentials of the network user,
    login_id, and password are not required. If
    –T is not specified, you need to specify
    –U and –P to successfully log in.
    -U:
    Specifies the login ID used to connect to SQL Server.
    Note: When the bcp utility is connecting to SQL Server with a trusted connection using integrated security, use the
    -T option (trusted connection) instead of the
    user name and password combination
    I would suggest you take a look at the following article:
    bcp Utility: http://technet.microsoft.com/en-us/library/ms162802.aspx
    A similar thread regarding this issue:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/b450937f-0ef5-427a-ae3b-115335c0d83c/bcp-connection-error-sqlstate-28000-nativeerror-18456?forum=sqldataaccess
    Regards,
    Elvis Long
    TechNet Community Support

  • Selecting first N characters when querying the CMS

    I am trying to retrieve only the first 6 characters of the SI_KEYWORDS field when querying the CMS from within the SDK.  When testing within QueryBuilder the following in bold does not work, although LEFT is a command for achieving this in SQL.  Can someone help me to know if this is possible within QueryBuilder SQL and if so how to achieve it?
    Select LEFT(SI_KEYWORD,6) as keyword, SI_NAME From CI_INFOOBJECTS, CI_SYSTEMOBJECTS, CI_APPOBJECTS WHere SI_KIND='webi'
    and SI_KEYWORD != '' and SI_KEYWORD != 'Hidden' and SI_KEYWORD != 'Auditor'
    ORDER BY keyword, SI_NAME
    Thanks,
    Dave

    Hi Ted,
    Thanks for your reply.  I understand the querying of the CMS better after reading it. 
    We are utilizing the keywords field and the description field to obtain some metadata about our reports that I need to access from java code.  Unfortunately, we have 4 different pieces of metadata we want to store and only the 2 fields in which to store them, so we are using delimiters in the keywords field to separate the values.  For example, we have "value1value2" as the keyword field in one report, but in another report if value2 is blank we simply have "value1".  This works well as we just parse the delimiters in java and we can store the 2 different values in the one keyword field.  The part that is not working well with this approach, though, is ordering the results.  We want to order the reports by value1 and then by SI_NAME.  Because some of the reports have value1value2 and others just have value1 it throws this ordering off if I use "ORDER BY SI_KEYWORD, SI_NAME". 
    I've been looking for ways to get around this without doing a re-sort in Java and this is all I could think of:
    1. Are there some additional user-defined fields that we could expose in the report properties in the CMC, and then retrieve via Query Builder / SDK?  Something like SI_UDF1, SI_UDF2, etc.  All we could find were keywords and description.
    2. Using a SUBSTR or LEFT-like function on the keywords field so that it only gets value1 for sorting purposes only, but still retrieve the entire keywords field in the SELECT.  I understand now based on your explanation that this will not work as (if I understand correctly) it would modify the report object in the CMS to set the keyword to the truncated value.
    Any advice you could offer would be greatly appreciated.  I know I can always bite the bullet and do the sorting java-side once I get the resultset back, but I was hoping to avoid the performance hit of doing that.
    Thanks,
    Dave

  • Is there anyway to monitor network traffic on the newer Time Capsules, similar to the SNMP monitoring previously?

    Is there anyway to monitor network traffic on the newer Time Capsules, similar to the SNMP monitoring previously?

    Can I use a real router and still have the Time Capsule for backups etc?
    Yes, that is what Bridge Mode is for.  Just connect the Time Capsule to a LAN <--> Ethernet port on your "main" router.

  • How to query the count of the temporary table from user_objects

    e.g. select count(*) from user_objects where object_type='TABLE'
    According to the SQL,I can query the all table including the temporary table,Can I how to query the count of the temporary table from user_objects excluding the permanent table?
    thanks a lot!

    select count(*)  from user_objects where object_type='TABLE' and temporary = 'Y'

  • ACE SNMP OIDs

    Good afternoon
    I need your help.
    I´m trying to extract some information through SNMP queries to my ACE, specifically, in each serverfarm the rserver weight state (if he is OPERATIONAL or OUTOFSERVICE, etc), and the number of current conns he has.
    Now I´ve been trying to find the Cisco OIDs to extract that info but with no luck.
    I´ve managed to find out how to find the Hex-STRING that corresponds to each rserver.
    For example, the rserver 10.134.53.111 which converted to hexadecimal is 0A 86 35 6F:
    snmpwalk -v 2c -c dsws3g! 192.168.1.1 1.3.6.1.4.1.9.9.470.1.1.1.1.4 | grep 0A 86 35 6F
    iso.3.6.1.4.1.9.9.470.1.1.1.1.4.9.8.69.83.66.45.70.69.48.49 = Hex-STRING: 0A 86 35 6F
    After that I´ve searched in the CISCO cesRealServer table for the number of current conns and the correspondent OID concatenated with the rserver string discovered previously returns me the number of conns the rserver has:
    snmpwalk -v 2c -c dsws3g! 10.167.2.227 1.3.6.1.4.1.9.9.470.1.1.1.1.19.9.8.69.83.66.45.70.69.48.49
    iso.3.6.1.4.1.9.9.470.1.1.1.1.19.9.8.69.83.66.45.70.69.48.49 = Counter64: 99
    The problem is that this rserver is being used in 2 different serverfarms, and the number of connections it returns me does not correspond to the number of connections of a specific farm...it seems to be adding the number of conns it currently has on both serverfarms.
    How can I filter the results through each serverfarm?
    I´ve found how to discover the correspondent OID to each serverfarm:
    snmpwalk -v 2c -c dsws3g! 10.167.2.227 1.3.6.1.4.1.9.9.161.1.4.2.1.2.9 | grep TEST
    iso.3.6.1.4.1.9.9.161.1.4.2.1.2.9.76 = STRING: "TEST-HTTP"
    iso.3.6.1.4.1.9.9.161.1.4.2.1.2.9.77 = STRING: "TEST-HTTPS"
    but I don´t know how to match all this info in order to get the data I need.
    I apreciate your input.

    Ok, so after a couple of hours searching for the right OID tree I finally found it: cesServerFarmRserverTable:
    http://tools.cisco.com/Support/SNMP/do/BrowseOID.do?local=en&translate=Translate&objectInput=1.3.6.1.4.1.9.9.470.1.1.3.1#oidContent
    Here you can get the data you need from a rserver from a specific serverfarm

Maybe you are looking for

  • Map BID line item to PO line item

    I have to find out  which bid line item , the particular PO line item corresponds to. Suppose we have a Bid with multiple line item and we have created multiple POs from that bid, I have to find this link , between the particular line item of purchas

  • Premiere cs4 sequence to audition

    hello, is there a way to send a premiere cs4 sequence to audition 3 so it appears in audition just as it does in premiere? i know you can send one clip at a time, or export an entire audio track and then import it into audition, but i want all the cl

  • Event in Menu

    the book says we can add ActionEvent to menu object(though it is not preferred) but when I do this in my code it does not work. It shows nothing when I click the menu. import java.awt.*;                  import java.awt.event.*;                  clas

  • [Developer 10 Forms 9i] How to display a value in a PopList?

    Hi, I have a PopList that is populated by a record group. However, when the block is in Insert mode, I would like to display the current value for this record in the fied. The code: :variable := select column from table where database id = current id

  • What do ya do when the software your attempting to download is mis-configured?

    I have adobe photoshop elements 8 and tried to install Adobe Photoshop Inspiration Browser and I get an error message that the installer is mis-configured.  I'm referring to Adobe Photoshop Inspiration Browser.