The net-snmp tag has no wiki summary.
5
votes
1answer
97 views
mib name printing from mib values in perl
This is the code that I used to walk through the table in net:snmp using perl:
#! /usr/local/bin/perl
use strict;
use warnings;
use Net::SNMP qw(:snmp);
my ...
3
votes
1answer
244 views
How to get data form SNMP with python?
How to get value mac and vlan from fdb table uses python?
In bash snmpwalk work fine:
snmpwalk -v2c -c pub 192.168.0.100 1.3.6.1.2.1.17.7.1.2.2.1.2
pysnmp:
import os, sys
import socket
import ...
3
votes
1answer
298 views
sendto: Operation not permitted: netsnmp
I get an error from the net-snmp library doing an snmp get that says
Operation not permitted error from sendto.
I am wondering what could make the sendto(2) system call fail with this error.
...
2
votes
1answer
46 views
Control Sanyo projector with snmp
I'm trying to control Sanyo projectors (PLC-XU106) using snmp. Windows application PJ Network Manager uses snmp to get temperatures from projectors and to control its status (power on, outputs ...
2
votes
1answer
136 views
How to print an integer and Counter32 value in net-snmp
I founded this code that print string values and it works fine:
add_mibdir(".");
pdu = snmp_pdu_create(SNMP_MSG_GET);
read_objid(if_index, id_oid, &id_len);
snmp_add_null_var(pdu, id_oid, ...
2
votes
1answer
121 views
snmpset Object not writable. Why? [closed]
I have been trying to understand how to create a MIB : here what I did so far :
I created a MIB, and tried to allocate values to new OID => fail
Here is the MIB :
TEST-MIB DEFINITIONS ::= BEGIN
...
2
votes
2answers
122 views
snmpset/get returns Timeout:no response for ipv6
I am using snmp to query and set some OIDs in IPv6 mode. I use the below snmp command. I have checked and configured it to listen to udp6:161.
snmpget -cpublic -v2c ...
2
votes
1answer
177 views
Implement a net-snmp subagent (linux/C)
i have look how to implement a snmp sub-agent with the net-snmp library (http://net-snmp.sourceforge.net/tutorial/tutorial-5/toolkit/demon/index.html)
The exemple works well, but i am asking a ...
2
votes
1answer
225 views
Re-read the configuration 'snmpd.conf' file? HOW?
Well, a year back I developed an agent module for net-snmp to monitor disk usage/statistics. It was locally installed on a system in LAN.
Now, I intend to use the same module for my Home PC and to ...
2
votes
3answers
219 views
Calling a function in Perl with different properties
I have written a Perl script that would start a SNMP session and extracting the data/counters and it's value to a csv file. There are 7 perl scripts; different properties/definition/variables on the ...
2
votes
3answers
797 views
How can my perl script receive SNMP traps from a managed system?
I would like to do the following, but I'm not sure I'm using the best method:
A perl script, running on a Sparc/Solaris 10 machine, should wait for incoming SNMP trap packets (on port 162 for ...
1
vote
1answer
15 views
Getting data from my program into snmpd
I guess I have missed the obvious, maybe, but I am lost for a good answer.
I am developing a stand alone program that will be running on a Linux (Ubuntu?) embedded PC inside a piece of hardware. I ...
1
vote
2answers
69 views
how to see the log of the DEBUGMSGTL in net-snmp
I am trying to write a snmp subagent that using agentX, which is supported by net-snmp.
At first, I used the example codes from net-snmp FAQ:
...
1
vote
0answers
116 views
python net-snmp loading mibs
i'm using net-snmp's python libraries to do some long queries on various switches. i would like to be able to load new mibs - but i cannot find any documentation on how to do this.
i know the perl ...
1
vote
1answer
66 views
help needed for SNMP protocol
I need some information and guidance about SNMP, I am new in development so I need help.
I studied SNMP protocol in detail(MIB,OID, and how it works),
I have some questions
can we change read-only ...
1
vote
1answer
66 views
is it possible to programatically change an executable name (ucmd) of a unix process?
Is it possible to programatically change an executable name (ucmd) of a unix process as reported by ps?
unix/POSIX way would be nice but Linux specific solution would suffice.
I want to change what ...
1
vote
1answer
120 views
Remove User in snmp by agent
I could quickly go through the snmp installation and it works fine.
In one of the agent modules I am currently looking into and trying to modify the source. I came across an issue where I need to ...
1
vote
1answer
132 views
snmpd doesn't respond when I compile from source
OS that I am using: Fedora 15.
Today morning, I removed net-snmp rpm package previously installed on my system. Then, I compiled and installed snmp from source. Compiled snmpd does not respond to ...
1
vote
1answer
161 views
Perl Net::SNMP::Interfaces | Interace errors
I have the following script that I am using to see if an interface has errors against Cisco switches. The only problem I am experiencing is when I clear counters on an interface, Net::SNMP still ...
1
vote
1answer
485 views
How to find out the number of CPUs using SNMP
Is there a way to get the number of CPUs using SNMP in linux + net-snmp package (with the default net-snmp package mibs installed)?
UC Davis SNMP mib provides a lot of CPU information, but I do not ...
1
vote
1answer
94 views
UC Davis SNMP mib summing ssCPU* causes overlaps
UC Davis SNMP MIB states the following for ssCpuRawSystem:
ssCpuRawSystem: This object may sometimes be implemented as the
combination of the 'ssCpuRawWait(54)' and
'ssCpuRawKernel(55)' ...
1
vote
2answers
483 views
Get oid's type (syntax) from MIB using Net-SNMP API
I would really appreciate it if somebody could answer me how to get syntax type and read/write access for an OID using Net-SNMP API.
What I need is the following. I am writing a SNMP tool that reads ...
1
vote
1answer
89 views
Defining Scalar Sequence of Dynamic Length in MIB
I'm trying to figure out a way to define a dynamic length sequence of scalars (in this case IpAddress) in a MIB file. I'm fairly certain that just using SYNTAX SEQUENCE OF IpAddress will not work, and ...
1
vote
1answer
324 views
Can't get Extended SNMP output in Perl
I have written a Perl script to put back some SNMP values, which works fine. I have now written a script on the remote server and used the extend function in SNMP to put the value from the script into ...
1
vote
1answer
102 views
Resetting all global internal state of the net-snmp library from the Python bindings
I'm trying to create automated integration tests for this hardware+software test subject which runs a SNMP agent as it's command interface. Our test setup looks like this: We're using Fitnesse as a ...
0
votes
0answers
8 views
netsnmp dynamic table/list
I am new to SNMP. We use in my company net-snmp. The customer requested to GET a LIST of objects via SNMP. The size of the list changes dynamically. The only limitation is the MAX number.
I am ...
0
votes
1answer
10 views
SNMP MIB Structure Conventions for nodes below the Enterprise Identifier
I have developed a Linux/Umbutu program running on what will be an imbedded P-based device. I wish for that piece of code to be able to send and receive the SNMP data for the entire product. So, I ...
0
votes
2answers
65 views
SNMP v3 with NET::SNMP working, but snmpwalk/snmpget not?
I have the following (working) perl script:
use Net::SNMP;
# create session to the host
my ($session, $error) = Net::SNMP->session(
-hostname => $hostname,
...
0
votes
1answer
18 views
How do I set up NET-SNMP with OpenVMS?
I'm having trouble getting started off with installing net-snmp.
So far I've installed the binary for net-snmp version 5.6.1.1 on my Windows XP machine and I'm trying to install net-snmp on OpenVMS ...
0
votes
1answer
24 views
SNMP: Would linkDown trap be notified after link status becomes up?
The linkDown trap description states:
"A linkDown trap signifies that the SNMPv2 entity, acting in an agent role, has detected that the ifOperStatus object for one of its communication links left the ...
0
votes
0answers
22 views
how to get trap massages about cpu usage using ssCpuRawSystem
im trying to get CPU usage in snmpd.conf while using the ssCPURawSystem MIB
these are the relevant lines from my snmpd.conf
#CpuUsage
#view all included ...
0
votes
0answers
24 views
how to get trap massages about cpu usage using snmpd.conf
im trying to create a threshold for cpu usage in snmpd.conf.
i included the MIB in the configuration file for the cpu usage:
.1.3.6.1.4.1.2021.11.10.0
but i really don't know what are the flags ...
0
votes
2answers
45 views
Timeticks to date format?
How to convert time from Timeticks (ASN_TIMETICKS from net-snmp library) to any c++ datetime format?
Thx.
0
votes
1answer
39 views
Finding total Sum of memory utilization in Windows using NEt:SNMP
Well , i have digged out individual OIDs for the process and i am able to get the memory usuage for each of them , but the issue is how do i get the total process usuage.
The problem is the OID for ...
0
votes
1answer
40 views
SNMP wrapper agent?
So we have some internal applications that provide metrics via a RESTful api. We would like to expose this data via SNMP. What I am thinking is that at the host level an SNMP wrapper would receive a ...
0
votes
1answer
70 views
Net-SNMP returns HexString and then just String (Eclipse and Pydev)
I am doing an snmpget using Net-SNMP. Specifically I am sending a command via os.popen("etc"). The value returned is a Hex-string separated by spaces, something like this : "A0 f0 D0". The returned ...
0
votes
1answer
72 views
net-snmp tutorial snmpset failed
I am trying to make net-snmp to support my own MIB, but I failed. I was following the instructions here:
http://www.net-snmp.org/wiki/index.php/TUT:Writing_a_MIB_Module.
Then I think maybe I could ...
0
votes
1answer
59 views
open source snmp manager library
I know one can build an snmp client using net snmp. Does anyone know an open source snmp manager library in C? or maybe my understanding is not correct. The net snmp library can also be used to build ...
0
votes
0answers
46 views
FabFi Imagebuilder openwrt net-snmp error
Im starting to build a wifi service based on the project FabFi! Im building a custom image for the M2nano ubiquity AP using their scripts... but I keep having a problem once compiling net-snmp:
...
0
votes
0answers
58 views
what difference with net-snmp-5.4 and net-snmp-5.3
i have a problem in suse 11 and net-snmp 5.4
i have wrote a program in suse 10 with net-snmp 5.3 and i create a customized MIB and its works right
configuration of my MIB is like this:
imports ...
0
votes
2answers
80 views
how to set the port of snmp agentX subagent?
I am working on extending net-snmp to write a subagent with agentX.
Now I use the example codes from net-snmp, and compiled to a subagent.
Below is the codes I get from:
...
0
votes
0answers
98 views
python net-snmp ctypes with walk
i have a basic ctypes implementation of net-snmp under python. i'm trying to piece together a snmp walk. the basic code is thus:
where lib = CDLL( find_library('netsnmp') ), str_to_oid uses ...
0
votes
1answer
65 views
How to translate SNMP “specific trap” number?
I'm currently using snmptranslate from net-snmp to translate EnterpriseOID for
the traps received by my custom coded trap receiver using the following command:
snmptranslate -M. -mALL ...
0
votes
1answer
74 views
How to create snmp agent from net-snmp
I want to implement SNMP-agent for PowerPC board using net-snmp.
Previously it was implemented using SMASH. SMASH has a parser
which could read MIB and generate C code (blank function imlementation)
...
0
votes
1answer
49 views
net-snmp: how should I approach the project of making a bilingual snmpd?
I apologize that this question comes from the uninformed, huddled masses: I've been away from net-snmp for three years and I've missed all of the developments.
I have to deliver a bilingual v2c/v3 ...
0
votes
0answers
101 views
PYTHON EGG Cache extraction error
I am trying to execute a python script from php webpage. The python script uses netsnmp module which logged the following error in httpd error_log:
Traceback (most recent call last):
File ...
0
votes
1answer
49 views
Is there a generic web app MIB that allows custom variables to be sent via SNMP Trap?
Looking for a Management Information Base (MIB) designed for web applications (Note: i'm working in PHP) that I can send multiple variables to my Network Management System via a SNMP Trap. Do I have ...
0
votes
2answers
140 views
How to use open source net-snmp library in C#
I want to use net-snmp library in C#, do I need to write some wrappers around this C++ library or there are any ready made wrappers available?
0
votes
1answer
209 views
When does snmp_synch_response() in NET SNMP return STAT_TIMEOUT?
I'm trying to make an SNMP v3 get request from a simply c program using net-snmp5.5. The code is as below:
struct snmp_session session;
/* I've set all the properties, to make an SNMPv3 get */
...
0
votes
1answer
113 views
snmpbulkwalk in c
is it possible to create an snmpbulkwalk in C with netsnmp?
A snmpget is quite easy - but I cannot find an example to send an snmpbulkwalk...
Here is a little example for an snmpget:
#include ...