14 questions
0
votes
0
answers
51
views
Pass script with SNMPD server returns duplicate OID
I have this snmpd.conf that uses a pass script for retrieving custom information:
root@srvweb:~# cat /etc/snmp/snmpd.conf
...
pass .1.3.6.1.2.1.1.9.1.5.0 /etc/snmp/users.sh
Contents of this script ...
0
votes
1
answer
674
views
Ciphering services not available error on pysnmp v3 walk
I can run this command from the command line:
snmpwalk -v3 -m +MY-MIB-ROOT -m +MY-MIB -l authPriv -u MYUSER -a SHA -A "XXXXXXXX" -x AES -X "XXXXXXXX" 1.2.3.4 .1.3.6.1.4.1.52330.6....
0
votes
1
answer
143
views
IPv6 send is not working in pysnmp when snmpwalk is being run through IPv6 from external servers
So I have an agent implemented in past that is facing the issue.
When I have 2 servers joined in a cluster, the publisher server cannot serve polling on IPv6. Running polling on IPv6 works locally on ...
0
votes
1
answer
227
views
snmp4j agent responds to snmpget requests but fails to respond to snmpwalk request
I'm trying to create a snmp4j agent that can respond to snmp v3 walk (getBulk) requests. I managed to get the SampleAgent class from snmp4j library running and capable of responding to snmp get ...
1
vote
0
answers
81
views
How do I display units when doing snmpwalk?
This is a part of my MIB :
callSuccessRate OBJECT-TYPE
SYNTAX Integer32
UNITS "%"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Success rate of ...
0
votes
0
answers
960
views
Why do SNMP walks fail here?
I'm learning about zabbix and how to use SNMP to monitor networks. As a test, I wanted to create a MIB of my PC and find the CPU temperature.
So I got Paessler SNMP tester and started an SNMP walk. ...
0
votes
1
answer
315
views
How can I output the variable name instead of the numerical OID with SNMP walk in python?
I'm writing a python script for an SNMP walk and want to print out the variable names along with their associated values. The code I'm currently using gives the numerical OIDs and their values. I have ...
1
vote
1
answer
8k
views
How to list nodes from a custom mib file using snmpwalk?
I'm trying to add a custom mib file that contains few nodes.
For an example I tried loading SNMP-COMMUNITY-MIB as it's a standard mib and thus shouldn't throw errors.
I copied the mib into the path
~/....
0
votes
0
answers
532
views
Some optimization required in snmpwalk, getting response in 5 sec from SNMP Manager . Need to reduce this time either in 1 sec or milisec?
I am using this snmpwalk command to query :
snmpwalk -c public -v 2c 10.10.68.70:18089 1.3.6.1.4.1.11080.300 -t 4
port : 18089 -> where SNMP Manager is running
timeout - 4 sec
In locally , I can ...
0
votes
1
answer
2k
views
Why cann't I use snmptable to search a mib table in net-snmp?
I know this oid is a table from the web, so I try to use snmptable,but it return wrong.
scEnclFanTable 1.3.6.1.4.1.674.11000.2000.500.1.2.20
snmptable -c public -v 2c 192.168.1.10 1.3.6.1.4.1.674....
0
votes
1
answer
14k
views
snmpwalk: –c: Unknown Object Identifier (Sub-id not found: (top) -> –c)
I am relatively new to snmp and am trying to test out snmp on a device with snmpwalk command. I am using it as such: snmpwalk -v2c -c public <ip>
and it returns and error of –c: Unknown Object ...
2
votes
2
answers
102
views
Trying to store interface when preg_match_all is executed using php
I would like to store the interface name only. So in this case, I would like to store Interface900. Below is my code. Can't seem to figure out how to do this.
$str = '[TIMETRA-VRTR-MIB::vRtrIfName.22....
2
votes
1
answer
107
views
data gets overwritten when using array_combine in php after creating another array
Trying to figure out how I can update the new array with a value.
$data = array('[ETRA-VRTR-MIB::vRtrIfName.1.1]' => 'STRING: "intf1"', '[ETRA-VRTR-MIB::vRtrIfName.1.2]' => 'STRING: &...
0
votes
1
answer
382
views
SNMP Find correct OID to get specific port data from FA-EXT-MIB
I want to fetch data from FA-EXT-MIB::swSfpTxPower.
Is there any way to snmpwalk this OID (1.3.6.1.4.1.1588.2.1.1.1.28.1.1.5) for a specific port?
Looking at the output (added below) I do not ...