Sponsored Content
Top Forums UNIX for Dummies Questions & Answers MIB OID for my Sun workstation Post 30676 by janr on Friday 25th of October 2002 04:29:03 AM
Old 10-25-2002
Maybe this will help

http://docs.sun.com/db/doc/816-0211/...?q=SNMP&a=view

I did a search for SMNP on the sun-docs guide
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

SUN IPC Workstation Q

I know that there are lots of UNIX pros here so I'm asking for some help. I have recently acquired 2 SUN IPC Workstations. The stations were destined for the garbage so I was unable to talk to the owners. Neither of them will make it through the boot process. One gives an error "le0: No... (2 Replies)
Discussion started by: shaggy
2 Replies

2. UNIX for Dummies Questions & Answers

How to backup a Sun Ultra 60 workstation?

Hi, I'm currently an CS intern working at a small biotech company that has just opened a new office. We are working on a new project, but we were given an older Sun workstation with just a SCSI interface in the back. We don't have a systems administrator, so a couple of us have been working hard... (7 Replies)
Discussion started by: PSC
7 Replies

3. Solaris

installing a UPS on a sun workstation

Has anyone ever setup the APC powerchute (business edition agent) software, using a USB drive on any solaris machines? We installed the software, and it doesnt seem to be giving the option for a /dev/usb device, it only gives options of /ttya, ttyb etc... anyone ever done this with a USB? or... (0 Replies)
Discussion started by: BG_JrAdmin
0 Replies

4. UNIX for Dummies Questions & Answers

Please help to configure Sun Blade 150 workstation

Hi, I am new to UNIX. I have a Sun Blade 150 worksation. I used a Dell monitor and Dell keyboard as input and output devices. However, workstation always told me that keyboard couldn't be found. I used Dell keyboard with USB and Dell keyboard with series connector. It all didn't work. Please help... (10 Replies)
Discussion started by: duke0001
10 Replies

5. Solaris

sun ultra 10 workstation

Hi All, I bought a sun workstation from ebay. Can I replace the cd-rom drive with a dvd-rom drive with any type? I mean, can I just buy a dvd-rom drive from a pc store? Thanks, itik (2 Replies)
Discussion started by: itik
2 Replies

6. Solaris

Solaris 10 on Sun W2100z workstation?

I am looking to buy W2100z workstation. I want to run solaris 10 on it. I realize it's a few years old, from 2004. Is it a good machine to get or should I look for a newer workstation? (1 Reply)
Discussion started by: etc
1 Replies

7. Solaris

Adding new Hdd in sun 10 with vmware workstation

hi, i am using vmware workstation 6.0 and i installed sun solaris 10. when i add new hard disk(vm->>settings->>add). when i start the system and try to use format command there i only see my old one hdd (new added hdd is not showing). but my new hdd is showing at the bottom right as a icon where... (2 Replies)
Discussion started by: Anand15880
2 Replies

8. Solaris

Sun Workstation Hardware - Is it broken?

Hi everyone! I have an odd question - If a sun workstation (Blade 2000) boots up into a login prompt, is there any chance that it could have hardware issues? Or once it gets that far is it 100% working. I cant play with it before buying, so was interested to see if anyone could shed some... (4 Replies)
Discussion started by: ajdiamond
4 Replies

9. Infrastructure Monitoring

Solaris 10 Snmp command to MiB OID

Hi guys, I am doing follow this guy Tech deposits. : iostat monitoring for zenoss and such I stuck at this step: Add a line into /etc/snmp/snmpd.conf file: pass .1.3.6.1.4.1.2021.255.1 /usr/local/bin/sar_iostat_snmp.sh -m 1 -d dev253 -o .1.3.6.1.4.1.2021.255.1 and test snmp by the... (1 Reply)
Discussion started by: tien86
1 Replies

10. Solaris

Need Sun Ultra 20 M2 Workstation Tools and Drivers CD 1.9

content deleted (1 Reply)
Discussion started by: hmb
1 Replies
VARIABLES(5)							     Net-SNMP							      VARIABLES(5)

NAME
variables - Format of specifying variable names to SNMP tools. DESCRIPTION
The syntax and semantics of management information in SNMP is given by the definitions of MIB objects, loaded from one or more MIB files (or "MIB modules"). These definitions are not strictly required for the SNMP protocol to operate correctly, but are typically needed by SNMP client applications to display information in a meaningful manner. The MIB file also serves as a design document when developing an SNMP agent (or sub-agent) that provides this information, and ensures that client and server share a common understanding about what management information represents. OIDs MIB objects are specified using Object Identifiers (OIDs), which can take a number of forms. Note that all of the examples in this sec- tion refer to the same MIB object. Numeric OIDs The fundamental format of an OID is a sequence of integer values (or "subidentifiers"), typically written using dots to separate the indi- vidual subidentifiers. .1.3.6.1.2.1.1.1 This is the format that is used within the SNMP protocol itself, in the packets that are sent over the network. This form of representing an OID does not require MIB files or MIB object definitions to be available. However it does rely on the client application and/or network administrator knowing what a given numeric OID refers to. As such, it is not a particularly helpful representa- tion to anyone just starting out with SNMP. This format can be obtained by giving the command-line option -On to most Net-SNMP commands. Full OID path A similar (but somewhat more informative) format uses the same dotted list representation, but with the numeric subidentifiers replaced by names, taken from the relevant MIB file(s). .iso.org.dod.internet.mgmt.mib-2.system.sysDescr This uniquely identifies a particular MIB object (as with the numeric OID), but the list of names should hopefully give some indication as to what information this object represents. However it does rely on the relevant MIB files being available (as do all formats other than the purely numeric OID). Such OIDs also tend to be fairly long! This format can be obtained by giving the command-line option -Of to most Net-SNMP commands. A variant of this (typically used when writing OIDs in descriptive text, rather than running programs), is to combine the name and numeric subidentifier: .iso(1).org(3).dod(6).internet(1).mgmt(2).mib-2(1).system(1).sysDescr(1) Module-qualified OIDs An alternative way to (more-or-less) uniquely specify an OID, is to give the name of the MIB object, together with the MIB module where it is defined. SNMPv2-MIB::sysDescr MIB object names are unique within a given module, so as long as there are not two MIB modules with the same name (which is unusual, though not unheard of), this format specifies the desired object in a reasonably compact form. It also makes it relatively easy to find the defi- nition of the MIB object. This is the default format for displaying OIDs in Net-SNMP applications. It can also be specified explicitly by giving the command-line option -OS to most Net-SNMP commands. Object name Possibly the most common form for specifying MIB objects is using the name of the object alone - without the full path or the name of the module that defines it. sysDescr This is by far the shortest and most convenient way to refer to a MIB object. However the danger is that if two MIB modules each define a MIB object with the same name (which is perfectly legal in some circumstances), then it's not necessarily clear which MIB object is actu- ally meant. For day-to-day use, particularly when using standard MIB objects, this is probaby safe. But it's important to be aware of the potential ambiguities. This format can be obtained by giving the command-line option -Os to most Net-SNMP commands. UCD-format Previous versions of the code (UCD v4.x and earlier) used a simple approach to shortening the way OIDs were specified. If the full path of the OID began with .iso.org.dod.internet.mgmt.mib-2 then this prefix was removed from the OID before displaying it. All other OIDs were displayed in full. Similarly, if an OID was passed to the UCD library that did not begin with a dot (and wasn't in the module::name format), then the same prefix was prepended. The example OID from the formats listed above would therefore be given or displayed as system.sysDescr The inconsistent handling of OIDs, depending on their location within the OID tree, proved to be more trouble than it was worth, and this format is no longer recommended. The previous behaviour can be obtained by giving the command-line option -Ou (for displaying output), or -Iu (for interpreting input OIDs without a leading dot) to most Net-SNMP commands. SEE ALSO
snmpcmd(1) BUGS
The parser of the MIB files file is not expected to handle bizarre (although correct) interpretations of the ASN.1 notation. V5.6.2.1 01 Oct 2010 VARIABLES(5)
All times are GMT -4. The time now is 09:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy