A SNMP daemon that responds to SNMP requests.
Questions tagged [snmpd]
135 questions
0
votes
1 answer
SNMP operations on MIB
Hello i am creating a MIB and i have a table with attributes of files. I have name, file type. etc... and a DateAndTime object to represent the time at which the file was created.
In order to delete elements of said table one column has to be of the…

Joao s
- 150
- 1
- 8
0
votes
2 answers
SNMP Agent: Could mib2c generate code for InetAddress or String type (ie something not an integer type)
I was able to transform 95% of a dedicated MIB to C code and make it run in a sub-agent like described in the last part of this Net-SNMP tutorial
For this I naturally use the mib2c.mfd.conf (I just read that mfd stands for Mib For Dummies ... all is…

NGI
- 852
- 1
- 12
- 31
0
votes
1 answer
SNMPD active but got errors in status
I've got a server running on Debian 8 with snmp service working on it.
However when I get the status of snmpd, it says that it is running but with errors:
service snmpd status:
snmpd[30734]: Cannot statfs /sys/kernel/security
:…

Guillaume Niwanet
- 58
- 1
- 2
- 13
0
votes
1 answer
Zabbix SNMPv3 Agent Discovery
I have a network emulation with Zabbix server, pc-1 with Zabbix-Agent and pc-2 with SNMPv3 Agent in VirtualBox.
With this discovery rule and action Zabbix easily discovers Agent on pc-1 and adds it to the hosts.
I tried to make Zabbix to discover…

Igor Nehoroshev
- 308
- 1
- 3
- 13
0
votes
3 answers
Why is CMake apparently referring to host system files while cross-compiling a Net-SNMP agent despite a proper toolchain file is being used?
I am developing a Net-SNMP subagent whose final target will be an ARM board, so I'm using CMake to make it easier to manage building the native and cross-compiled versions. I started testing it on my host platform (x86_64) and it builds and works…

Claudio
- 2,191
- 24
- 49
0
votes
1 answer
Why am i getting these error while executing the snmpset command?
snmpset -OQ -v 2c -c SNMPv2-MIB::ocStbHostRebootReset.0 i = 1
above written is the code I have executed this in putty as I have to reboot the box, so for true value, i am giving as i=1.
but I am getting below error after executing this
snmpset:…
0
votes
1 answer
snmpd.conf + snmp configuration
I have the following snmpd.conf ( this file is the same file on all 125 linux redhat machines , versions 5,6,7 )
more /etc/snmp/snmpd.conf
dlmod cmaX /usr/lib64/libcmaX64.so
rocommunity sec999 127.0.0.1
rocommunity sec999 mach23
rocommunity sec999…

King David
- 500
- 1
- 7
- 20
0
votes
2 answers
How to parse mibs for trap message for snmp4j
I enabled Snmptrap on Windows and I got trap messages from remote devices. Following describes result.
2016-10-25 10:19:02 [UDP: [172.16.11.250]:62451->[0.0.0.0]:0]:
DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (287374) 0:47:53.74 …

Wendy
- 73
- 2
- 15
0
votes
2 answers
Not able to create snmpv3 session using IPv6 address
I am not able to create SNNMPv3 session in perl using IPv6 address .
I am using below SNMP API to create SNMPv3 session but it throws error during session creation . If anyone have any idea , please let me know .
($session,$error) = new…

Ravi
- 71
- 1
- 7
0
votes
1 answer
Zabbix server 3 : Using SNMP trap for monitoring specific SNMP OID item
In Zabbix Server 3, I have a linux host monitored through SNMP.
The SNMP OID of the monitored MIB is as below:
SNMPv2-SMI::enterprises.94.7.1.4.2.1.5.1 = STRING: "CLUSTER STARTED (RESTARTED)"
I have configured this SNMP OID to be monitored for…

anoop.babu
- 405
- 2
- 6
- 13
0
votes
1 answer
SNMPv3 user entries got deleted after reboot on SNMPv3 machine
After reboot on our SNMPv3 server SNMPv3 user entries get deleted from file /var/net-snmp/snmpd.conf.
It appears on doing reboot engineBoots is set to 1 in /var/net-snmp/snmpd.conf randomly and whenever engineBoot is set to 1 it erases snmpv3…

Ravi
- 71
- 1
- 7
0
votes
1 answer
how to configure SNMP services on F5 server
Need instructions on how i can install and configure SNMPD service on the logical F5s servers.
on RHEL servers, I can update /etc/snmp/snmpd.conf file and restart the snmpd process with command # service snmpd restart.
but in my F5 server i can't…

Amit
- 53
- 1
- 6
0
votes
1 answer
Starting and stopping snmpd subprocess with global variable
I am starting snmpd with subprocess, storing a reference to this as a global variable, then want to kill this process later on.
I start the process like so:
snmp_proc = subprocess.Popen(['snmpd', '-p', pid_file,'-Lf', log_file],
…

Paul
- 5,756
- 6
- 48
- 78
0
votes
0 answers
SNMP subagent application crashes at init_agent()
I have implemented SNMP subagent functionality in my application using net-snmp library (http://www.net-snmp.org/tutorial/tutorial-5/toolkit/demon/).
The application crashes at init_agent() call.
GDB-BackTrace for the same:
#0 0x00002b123483aaa1 in…

Akshay
- 36
- 6
0
votes
1 answer
Why does SNMP convert Counter64 to Counter?
I need to send custom data over SNMP, and for this I use a script in Python, which takes the data and parses it. This is the output of script:
#…

ur3an0
- 39
- 4