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
-1
votes
0 answers

Why is my script not printing all my OID descriptions?

import csv import re from pysnmp.entity.rfc3413.oneliner import cmdgen from concurrent.futures import ThreadPoolExecutor # Define your SNMP oids and other variables here # (Keep your OID definitions and descriptions here) UPS_Mode =…
-1
votes
1 answer

How to compile a code with MIB_IPINTERFACE_ROW structure

I am trying to compiling a code with the MIB_IPINTERFACE_ROW structure. Let's include the following class in my working code: class IpInterfaceRow { private: MIB_IPINTERFACE_ROW mib_ipinterface_row; }; Using Visual Studio 2015 I am facing the…
n3mo
  • 663
  • 8
  • 23
-1
votes
1 answer

snmpGetVariableBindings returning null and ASN1_ERROR_ERR when ObjectIDList size > 8

I am trying to query a device for specific sensors, and get ASN1_ERROR_ERR depending on the number of oids that I specify. Here is the code where the problem is. target.setObjectIDList(objID); try { resultArray=…
Jess
  • 140
  • 1
  • 1
  • 8
-1
votes
1 answer

Siklu etherhaul-1200f snmpset reebot

Is there anyway to reboot the radio the above radio trough snmpset ? What else can I do with snmpset and where do I get the mibs ? Thanks
NoName2
  • 113
  • 1
  • 8
-1
votes
1 answer

Windows SNMP extension agent - snmp4j

I currently have an agent built using snmp4j that implements some custom mibs. What Im looking to do is run this snmp4j agent under windows as an snmp extension agent to the windows snmp service. The reason is I need this new snmp4j agent to handle…
-1
votes
1 answer

Scientific Notation Warning: named number `b10E-2' must not include a hyphen in SMIv2

I have the integer field with scientific notation. But I have the next warnings: pThreshold OBJECT-TYPE SYNTAX INTEGER { b10E-2(2), b10E-3(3) } (4) warning: named number `b10E-2' must not include a hyphen in SMIv2 (4)…
user1310873
  • 389
  • 1
  • 6
  • 17
-3
votes
1 answer

How to replace oid with string in net-snmp agent perl

I am struggling with the problem of building a snmp agent to receive a snmpwalk like this: NET-SNMP-TMC-MIB::nsTMCState."tmcd" = INTEGER: 3 NET-SNMP-TMC-MIB::nsTMCState."drecd" = INTEGER: 3 NET-SNMP-TMC-MIB::nsTMCInfo."tmcd" = "" …
Paul
  • 1
  • 2
-3
votes
1 answer

SNMP MIB OID classification into "providing status" versus "settable"

Would it be correct, for better understanding and simplicity, to classify all MIB OID identifiers into two main categories ? those providing status (information) about something (provisioning, load, frequency, etc.) i.e. read-only access. those…
user2427839
1 2 3
24
25