Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

snmpset notWritable (That object does not support modification)

Status
Not open for further replies.

daniloreiss

IS-IT--Management
Jun 16, 2016
1
0
0
IT
Hi I'm trying to write a new agent snmp. I start with a file written in ASN.1 and then I execute:
./configure --with-mib-modules = "mymib"
the ASN.1 code is as follows:

mymib OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"My mib"
:: = {1} myoid

when I start the snmpd process and try to run the snmpset command, I get the following error:

snmpset -v2c -c myprivate localhost mymib.0 s "test"
Error in packet.
Reason: notWritable (That object does not support modification)
Failed object: myoid :: mymib.0

with the command:
snmpset -v2c -c myprivate localhost sysName.0 s "test"
the command works properly

if I change "SYNTAX String Display" to "SYNTAX Integer32" and execute:

snmpset -v2c -c myprivate localhost mymib.0 i "10"

it works properly

can someone help me?
Thank you all
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top