snmp v3 adding user

2016-12-20 Thread Pranesh Kulkarni
Hi All, When creating new user for snmpv3 using net-snmp-create-v3-user command, # net-snmp-create-v3-user -A asdfghjkl -X qwertyuio -x DES -a MD5 abcd adding the following line to /var/lib/net-snmp/snmpd.conf: createUser abcd MD5 "asdfghjkl" DES qwertyuio adding the following line to /etc/snm

How to query all possible OIDs supported by SNMP agent?

2016-12-20 Thread Martin T
Hi, am I correct that "snmpwalk -v 2c -c public ." will query all possible OIDs supported by SNMP agent in ? thanks, Martin -- Developer Access Program for Intel Xeon Phi Processors Access to Intel Xeon Phi processor-b

Re: How to query all possible OIDs supported by SNMP agent?

2016-12-20 Thread Ilya Etingof
You will see only OIDs that are accessible under the 'public' community. Depending on agent configuration, that may be all or just a subset of OIDs it serves. AFAIK, a more formal approach is to read SNMPv2-MIB::sysORTable where the agent should [indirectly] reference MIB objects it supports...

Re: How to query all possible OIDs supported by SNMP agent?

2016-12-20 Thread Martin T
Thank you! Martin On Tue, Dec 20, 2016 at 12:03 PM, Ilya Etingof wrote: > > You will see only OIDs that are accessible under the 'public' community. > Depending on agent configuration, that may be all or just a subset of > OIDs it serves. > > AFAIK, a more formal approach is to read SNMPv2-MIB: