Questions tagged [mib]

A MIB is an acronym for Management Information Base in use with the SNMP Protocol.

A MIB is the schema for an entity, such as a corporation, that wishes to exchange SNMP packets with another entity. They use the MIB, or Management Information Base, which is the schema that allows the computers to communicate and establish understanding, such as data types, permissions and other values.

MIBs are written in Abstract Syntax Notation One (ASN.1).
MIBs are written in plain text.

Programs such a smilint can test MIB syntax for correctness and conformity to SNMP standards such as SMIv1 and SMIv2, which are subsets of ASN.1

368 questions
0
votes
1 answer

Trying to understand what Alarm and Alarm Reporting Control Management Information base are used for

I am new to SNMP and have troubles understanding the SNMP requirements of a Java application I am required to implement. I am using openDMK to provide the SNMP support. Please excuse any brutal ignorance in my questions. I have read the RFC…
His
  • 5,891
  • 15
  • 61
  • 82
0
votes
1 answer

How can I get a list of devices that support a specific OID?

I need to get a list of the devices that support the OID .1.3.6.1.2.1.31.1.1.1.1 in my network. Is there a command for doing that?
rredondo
  • 503
  • 1
  • 10
  • 19
0
votes
1 answer

What is IF-MIB: snimpy.mib.SMIException: unable to find b'IF-MIB' (check the path)?

I followed the doc but got the following error: >>> from snimpy.manager import Manager as M from snimpy.manager import load load("IF-MIB") m = M("localhost") print(m.ifDescr[0]) Traceback (most recent call last): File "", line 4, in…
Édouard Lopez
  • 40,270
  • 28
  • 126
  • 178
0
votes
0 answers

UCDevis mib configuration in windows

I am trying to configure UCDEVIS MIB to get cpu information in windows. In Linux system its working fine. but in windows it's not working. Please some one help me . Thanks UCDEVIS Setup I want to use following MIBS. OID_CPU_FREE =…
Ravendra Kumar
  • 1,072
  • 10
  • 29
0
votes
2 answers

SNMP Walk without specifying oid in Polycom device

I would like to do an snmp walk on a Polycom device.But I don't know the oid of the root node from where the walk must be started.By walking without specifying an oid i am getting no result.How can I get the oid of the root node for starting the…
0
votes
1 answer

pysnmp - get output from NET-SNMP-EXTEND-MIB extend script?

How can I properly invoke an SNMP extend script by MIB with pysnmp 4.3? I have this entry in the remote server's snmpd.conf file: extend check_fd_wap /app/users/nagios_checks/check_fd_wap.sh which in turn can be invoked by: snmpwalk -t 60 -v2c -c…
André Fernandes
  • 2,335
  • 3
  • 25
  • 33
0
votes
2 answers

How can I get a list of active processes using PowerSNMP for .NET?

I would like to user dart PowerSNMP for .NET to retrieve a list of all the processes and their respective pids and write them to the Visual Studio console whenever I receive a message in event. I assume this is done by walking the mib tree and then…
dimlee
  • 452
  • 1
  • 10
  • 22
0
votes
1 answer

SNMP Get Request returns NULL

I am newbie to SNMP, I am trying to use SNMP Operations, I am using http://techdive.in/snmp/snmp4j-snmp-get-example code But I am not able to get the expected output. I am getting NULL response as below: Output: SNMP GET Demo Sending Request to…
Thej
  • 191
  • 1
  • 6
  • 23
0
votes
0 answers

Will it be possible to access SNMP MIB (agent in Mobile) via EPS Bearer (4G transportation layer) from Manager?

It will be really helpful to know the mechanism for accessing the MIB database located in the mobile phone (snmp agent) from snmp manager (located in remote server) connected to internet. Could someone please clarify. Thanking you in advance.
0
votes
0 answers

Array of integer in SNMP

I want my custom SNMP agent to expose some metrics. But I don't know how to deal with arrays of simple types (byte, int, double). How can I write a MIB file to expose array of int ? Is there a simpler way than the tables/entries/columns/indexes…
tpol
  • 910
  • 10
  • 16
0
votes
1 answer

pysnmp 4.2.5 sending trap with object fails in sendPdu

so I'm trying to get traps working in our project. We are using a custom mib and walking it already works, also sending traps without additional data works fine with the following code and the OBJECT property removed from the trap in the MIB: def…
Niklas Schnelle
  • 1,139
  • 1
  • 9
  • 11
0
votes
0 answers

snmp v1 trap not reaching mib browser trap listener

I have a snmp4j trap sender and I am trying to send trap to mib browser. I can see packet reaching in wireshark on the machine where trap listener is running. But mib browser tool trap listener not able to get it. Code for sending…
sgu
  • 1
  • 1
0
votes
1 answer

Fetching entire branch of MIB

I'm still quite new to SNMP and I was wondering how I would go about getting an entire branch of a MIB with as few queries as possible. My approach: Use GETBULK messages to get pow(2,tries) entries at a time and then stop when I get an object that…
WxY
  • 43
  • 1
  • 2
  • 4
0
votes
2 answers

SNMP OID with non-unique node names

I am writing an extension to my companies existing SNMP MIB. I have a whole list of objects, with the same properties on each. I want to be able to get and set these through SNMP. So for example, consider my object has name, desc, arg0, arg1. What…
Jon
  • 1,013
  • 1
  • 10
  • 17
0
votes
1 answer

Declare INDEX cluase in MIB without using the variable in table

I'm finding the solution to declare INDEX clause without using/bind with any variable in MIB table. Generally when declare INDEX clause I use 1 variable as index e.g. dataEntry OBJECT-TYPE SYNTAX dataEntry ACCESS not-accessible STATUS …