A SNMP daemon that responds to SNMP requests.
Questions tagged [snmpd]
135 questions
0
votes
0 answers
snmpd on Beaglebone/Debian, reading file with source
I have installed snmpd on a Beaglebone Black with Debian and everything works perfect so far, except one thing.
I have configured snmpd.conf for a pass-through
pass .1.3.6.1.4.1.45919 /bin/sh /usr/local/bin/snmp-20
Then snmp-20 is a batch script…

junglejet
- 257
- 2
- 2
0
votes
0 answers
snmpd timeout: No response from localhost
I am running Centos 6.3 and attempting to use snmp v3 to query OID's on this server. Running Paessler's snmp tester 5.1.3 I get a no response from host. I have made sure that my iptables do not have any odd firewall settings. I can verify that snmpd…

Doug Ancil
- 1
- 3
0
votes
0 answers
C - Parse string from SNMP SET (weird)
I am working on my own SNMP agent and am having trouble processing strings. I am pretty new to SNMP as well.
I've referred to the following links for some of implementing my own agent :…

jtor
- 133
- 1
- 4
- 13
0
votes
0 answers
SNMP Make All OID's Public?
I have been attempting to access different OID's with no luck and significant research has lead me to believe that snmp is just configured to protect these parts of the system and I simply don't have access. How do I change the configuration to…

John Smith
- 283
- 2
- 19
0
votes
1 answer
Using snmpgetnext on a table
I am writing my own MIB Module containing a table with 2 columns. Using snmptable works just fine and retrieves all values of the table with all the rows.
But with snmpgetnext I can only retrieve the first row of the table.
snmpgetnext -v2c -c…

Christian
- 63
- 1
- 1
- 8
0
votes
1 answer
snmp logging through syslog-ng
I want to log snmpd logs by syslog-ng.
I added below lines in syslog-ng.conf file
filter f_snmpd { program("snmpd"); };
destination df_snmpd { file("/var/log/snmplog"); };
log {
source(s_all);
filter(f_snmpd);
…

user3990393
- 193
- 7
0
votes
1 answer
Sync MIB-files without folders tree (for snmp)
We have an svn-repo with some mib-files. For humans it is usable to keep files in subfolders:
MIBS
+VendorA
+MIB1.txt
+MIB2.txt
+VendorB
+MibN.txt
...
Users can update or add MIBs with Tortoise clients. Servers should update their…
0
votes
2 answers
snmp logs location
DEBUGMSGTL(("","Initializing scalar integer. Default value = %d\n"));
snmp_log(LOG_ERR,"fscanf failed in temp fun(),errno:\n");
with these log I want all logs from startinn of snmp service to end of it. But don't know where to see.
where these…

Jatin Bodarya
- 1,425
- 2
- 20
- 32
0
votes
1 answer
no response from the host :snmpwalk
I have implemented AgentX using mib2c.create-dataset.conf ( with cache enabled)
In my snmd.conf :: agentXTimeout 15
In testtable.h file I have changed cache value as below...
#define testTABLE_TIMEOUT 60
According to my…

jatin bodarya
- 72
- 3
- 8
0
votes
1 answer
getaddrinfo: start Temporary failure in name resolution Error opening specified endpoint "start" Server Exiting with code 1
While starting snmpd I am getting this error in /var/snmpd.log
**
> *getaddrinfo: start Temporary failure in name resolution Error opening
specified endpoint "start" Server Exiting with code 1*
**
For your info m using Fedora-14 & net-snmp-5.7.1…

Gaurav
- 91
- 1
- 4
- 14
-1
votes
1 answer
Snmp code gives me this error Caused by: java.lang.NoClassDefFoundError: org/snmp4j/TransportMapping
i have been trying to apply commands of snmp at java on Ubuntu, i find an example code at stackoverflow and code's github link: https://github.com/jineshmathewt/snmpbulkwalk/blob/master/snmpbulkwalk/src/TestSNMP.java
But when i try to execute i m…

Berkay Ünsal
- 17
- 3
-1
votes
1 answer
snmpget() with different port other than port 161 not working
I have tried to get the name of snmp device through the below source.
$sysname1 = snmpget("192.168.0.9:161", "public", ".1.3.6.1.2.1.1.5.0.0");
$sysname2 = snmpget("192.168.0.10:164", "public", ".1.3.6.1.2.1.1.5.0.0");
$sysname3 =…

Senthilkumar Ramasamy
- 101
- 3
- 14
-1
votes
1 answer
OpenNMS threshold checks only one server
So I'm trying to configure OpenNMS to check the disk space on my linux servers.
After some work I got it to check one server through SNMP :
I installed snmpd on the server I'm monitoring, defined a threshold(in fact I use the predefined default…

Orez17
- 29
- 5
-1
votes
1 answer
snmp Bad operator (DEFINITIONS):
I'm using SNMP (agent) and server but executing snmp agent (snmpwalk or snmpget) on centos,ubuntu system occurs that failure 'Bad operator (DEFINITIONS):'
-1
votes
1 answer
How does snmpd process SNMP requests?
I am new to the SNMP protocol. I want to know how snmpd processes SNMP requests. For example:
snmpget -v1 -c public localhost sysName
My understanding is it is implementing MIBs, e.g. SNMPv2-MIB, but is executing the uname -n command?