I would really appreciate it if somebody could answer me how to get syntax type and read/write access for an OID using Net-SNMP API.

What I need is the following. I am writing a SNMP tool that reads and sets values on remote machine using SNMP protocol. Before setting value I need to check its type and access permissions (whether it is allowed to write this value on the server or not) from MIB file. Unfortunately, I could not find any mentioning about how to do this with Net-SNMP in its documentation. Does anybody know if it is possible and how to do it?

Thank you in advance.

link|improve this question
feedback

2 Answers

Roughly speaking:

  oid name[128];
  size_t name_length = OID_LENGTH(name);
  strict tree *tp;

  read_objid("sysContact.0", &name, &name_length);
  tp = get_tree(name, name_length, get_tree_head();
  

Then look through the net-snmp/library/parse.h file for the tree structure and all the good data you need is inside it.

Also see the apps/snmptranslate.c file for further examples.

link|improve this answer
feedback

What Wes said should probably work for what you're trying to do. Alternatively, in your implementation, to check the input type of the set value explicitly, use netsnmp_check_vb_type(). For checking permissions, net-snmp will throw a notWritable error if you try to modify a field without write access (as defined in the relevant MIB).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.