On 05/10/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I am trying to write C code for the "snmp set " operation for the WLAN > IEEE 802.11 MIB. I could able to set only the ESSID . But for any > integer values when I am trying to set the control not reaching the Write > Method.
The two most likely causes are: a) access control settings of the agent b) code to register the module If the run-time configuration for this particular OID is read-only, then the agent will reject the SET request, and will never call your write method. Similarly, if the MIB module code is registered as read-only, then SET requests will also be rejected before they get to your write method. There's no problem in principle in setting integer values. It's impossible to comment as to what is happening here, without knowing a bit more about what you've actually done. Dave ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Net-snmp-users mailing list [email protected] Please see the following page to unsubscribe or change other options: https://lists.sourceforge.net/lists/listinfo/net-snmp-users
