A SNMP daemon that responds to SNMP requests.
Questions tagged [snmpd]
135 questions
7
votes
1 answer
command output not captured by shell script when invoked by snmp pass
The problem
SNMPD is correctly delegating SNMP polling requests to another program but the response from that program is not valid. A manual run of the program with the same arguments is responding correctly.
The detail
I've installed the correct…

PhilJ
- 303
- 1
- 8
6
votes
1 answer
snmpget returns "No Such Object available on this agent at this OID"
I am trying to configure SNMP agent as per the below link.
http://www.net-snmp.org/tutorial/tutorial-5/toolkit/mib_module/
I have placed .c and .h file in the agent/mibgroup folder then ./configure…

Naseeb Panghal
- 159
- 1
- 11
5
votes
1 answer
snmpset Object not writable. Why?
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
IMPORTS
MODULE-COMPLIANCE, OBJECT-GROUP FROM…

Ant
- 1,812
- 5
- 22
- 39
5
votes
1 answer
Difference between snmpd and net-snmp
I am new to SNMP. As far as I know snmpd is a Linux daemon for SNMP which acts as SNMP agent. We can install it from the package snmpd. Now net-snmp also provides a SNMP agent.
Does net-snmp provide snmpd daemon as its agent, if so then what is the…

user1578656
- 131
- 1
- 3
- 6
4
votes
3 answers
snmpget: No such object available on this agent at this OID
I am trying to add my own MIB-Module into a snmp agent, following this tutorial: http://www.net-snmp.org/wiki/index.php/TUT:Writing_a_MIB_Module
Now, I followed the tutorial step by step and doubled checked everything, searched a really long time…

Christian
- 63
- 1
- 1
- 8
4
votes
2 answers
Service snmpd restart issue
I am facing this particular error
/usr/sbin/snmpd: symbol lookup error: /usr/sbin/snmpd: undefined symbol: smux_listen_sd
when I restart the snmpd service on my computer. Whenever I do the sudo service snmpd restart, it gives me the error shown…

nitin
- 49
- 1
- 8
3
votes
1 answer
error Compile shared libraries with -fPIC
While I run snmpd daemon on powerpc board(a.p.) I am getting this error:
R_PPC_REL24: Compile shared libraries with -fPIC!
/usr/local/sbin/snmpd: symbol 'strlen': can't handle reloc type 0xa in lib
/lib/libnetsnmpmibs.so.15'
sh: you need to specify…

Nachiket Jagade
- 255
- 1
- 3
- 12
3
votes
1 answer
snmpget timeouts when using unix socket address
I'm using Ubuntu 16.04. I've changed snmpd.conf for listening to unix socket instead of its default udp port 161, but snmpget fails with Timeout error.
Before changing the config file this was working:
snmpget -v2c -c public localhost…

Seyed Mehran Siadati
- 190
- 4
- 9
3
votes
1 answer
What does the mteTrigger option in snmpd's SNMPDOPTS do?
I am trying to determine why a number of sites are recommending the mteTrigger,mteTriggerConf optons below be placed as options in SNMPDOPTS for snmpd's /etc/default/snmpd (Ubuntu).
SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -g snmp -I…

Solomon Gifford
- 81
- 1
- 6
3
votes
1 answer
SNMP unsupported security level
I'm trying to configure my snmp daemon but I seem to be experiencing some difficulty. Whenever I try to run the following command:
snmpget -u bootstrap -l authPriv -a MD5 -x DES -A temp_password -X temp_password remote_host 1.3.6.1.2.1.1.1.0
I get…

NSaid
- 689
- 2
- 16
- 32
3
votes
1 answer
SNMP not working in amazon server
I'm trying to monitor amazon server from my local server,I installed and configured snmpd but I can't arrive from my local server to amazon server using snmpwalk.
I check it with the command:
snmpwalk -Os -c public -v 2c XX.XX.XX.XX
from amazon…

abdel
- 31
- 1
3
votes
1 answer
How to receive SNMP traps using net-snmp API?
How can I receive traps using C or C++ and net-snmp module. I need sample code but the examples at http://www.net-snmp.org/ use syscalls but not API methods.

madhu babu sunkara
- 41
- 1
- 2
3
votes
1 answer
SNMP - C - Implement subtree from MIB
I've been working on my own SNMP agent using the example found here :
http://www.net-snmp.org/dev/agent/example_8c_source.html
I am wanting to better organize my tree structure to make more sense which in turn makes using client commands easier.
I…

jtor
- 133
- 1
- 4
- 13
2
votes
2 answers
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 udp6:[2001:db8:3c4d::41a9:8e4e:a094:3840] .1.3.6.1.4.1.1429.5.1.1.2.5.6.0
It gives…

Sathya
- 525
- 1
- 8
- 15
2
votes
0 answers
Proxy snmp v3 request to snmp v2c supported servers
I am trying to configure Net-SNMP to accept incoming SNMP v3 requests at proxy agent and forward the requests to other internal application servers.
I have investigated and read tons of comments but I could not find how to query the proxy agent with…

korayguney
- 169
- 1
- 11