MIB issue


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users MIB issue
# 1  
Old 01-26-2011
MIB issue

can someone please help me out with this.

why do i keep getting a "No Such Instance..." error message?

The MIB file is in the proper directory and with the proper permissions. What could be wrong? I restarted snmpd already.

Thank you.

Code:
snmpwalk -v2c -c AH$%FJY ferenty01.blah.net BAILER-MIB::ssBailerVersion
BAILER-MIB::ssBailerVersion = No Such Instance currently exists at this OID

Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

How install the HOST RESOURCES MIB

Hello to all, I need monitor some AIX servers version 5.3 it, would want to know how if these servers or bring installed HOST RESOURCES MIB, is necessary to compile it, if I can unload it or of it could obtain where it, since I take with this problem around 2 weeks… I am trying to collect data... (0 Replies)
Discussion started by: julius_MIB
0 Replies

2. AIX

SAP and MIB

Hi there all.. I got SAP running on AIX systems. Now I got SNMP running and it is collecting info. But I want the SAP MIB to be running so I can also retrieve SAP info. How can I neable it on AIX? When I do a MIB walk on SAP it isnt showing anything. Thanx in advance! :) (1 Reply)
Discussion started by: draco
1 Replies

3. HP-UX

HP O/S MIB file?

HI all, please let me know where i can find the HP OS system MIB file.? Thanks in advance. Rgds, Jagadeesh. (2 Replies)
Discussion started by: bjagadeesh
2 Replies

4. UNIX for Dummies Questions & Answers

From Where Can I download MIB

Hi, From Where I can download MIB for Linux 7.2. Please help. Regards, Sumit Roy (4 Replies)
Discussion started by: sumitroy
4 Replies

5. UNIX for Dummies Questions & Answers

MIB OID for my Sun workstation

hi, as far as i know, every sun solaris 8 workstation has a snmp agent running by default. i want to know my SNMP agent MIB oid. please tell me how to find out this information. thanks and urgent (1 Reply)
Discussion started by: champion
1 Replies
Login or Register to Ask a Question
snmpwalk(1M)						  System Administration Commands					      snmpwalk(1M)

NAME
snmpwalk - communicate with a network entity using SNMP GETNEXT requests SYNOPSIS
snmpwalk [application options] [common options] [oid] DESCRIPTION
The snmpwalk utility is an SNMP applicationthat uses SNMP GETNEXT requests to query a network entity for a tree of information. You can specify an object identifier (OID) on the command line. This OID specifies which portion of the object identifier space will be searched using GETNEXT requests. All variables in the subtree below the specified OID are queried and their values returned. Each variable name must be entered in the format specified in snmp_variables(4). If no OID argument is present, snmpwalk searches MIB-2. If the network entity has an error processing the request packet, an error packet is returned and a message displayed, indicating t the way in which the request was malformed. If the tree search causes attempts to search beyond the end of the MIB, the message "End of MIB" is displayed. OPTIONS
The following options are supported: -Cc Do not check whether the returned OIDs are increasing. Some agents (for example, agents for Laser-Jet printers) return OIDs out of order, but can complete the walk anyway. Other agents return OIDs that are out of order and can cause snmpwalk to loop indefinitely. By default, snmpwalk tries to detect this behavior and warns you when it encounters an agent acting illegally. Use -Cc to turn off this feature. -Ci Include the given OID in the search range. Normally, snmpwalk uses GETNEXT requests starting with the OID you specify and returns all results in the MIB tree beyond that OID. This option allows you to include the OID specified on the command line in the displayed results (assuming the OID is a valid OID in the tree). -Cp Upon completion of the walk, display the number of variables found. In addition to these options, snmpwalk takes the common options described in the snmpcmd(1M) manual page. EXAMPLES
Example 1: Retrieving All of the Variables Under system The following command retrieves all of the variables under system: # snmpwalk -Os -c public -v 1 zeus system Output from this command will be similar to: sysDescr.0 = STRING: "SunOS zeus.net.cmu.edu 4.1.3_U1 1 sun4m" sysObjectID.0 = OID: enterprises.hp.nm.hpsystem.10.1.1 sysUpTime.0 = Timeticks:(155274552) 17 days, 23:19:05 sysContact.0 = STRING: "" sysName.0 = STRING: "zeus.net.cmu.edu" sysLocation.0 = STRING: "" sysServices.0 = INTEGER: 72 ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Availability |SUNWsmcmd | +-----------------------------+-----------------------------+ |Interface Stability |External | +-----------------------------+-----------------------------+ EXIT STATUS
0 Successful completion. 1 A usage syntax error. A usage message is displayed. Also used for timeout errors. 2 An error occurred while executing the command. An error message is displayed. SEE ALSO
snmpbulkwalk(1M), snmpcmd(1M), snmp_variables(4), attributes(5) SunOS 5.10 20 Jan 2004 snmpwalk(1M)