Important
|
Deprecated in 3.0. Please use set method of [class-snmptransport] class. |
SNMPSet(transport, oid, value, dataType) => Boolean
Perform SNMP SET request for oid
over provided transport. Return boolean success indicator.
value
is automatically converted from string based in dataType
. If dataType
is not provided, default type "STRING" will be used.
transport |
Transport created by [func-createsnmptransport]. |
oid |
SNMP OID string. |
value |
New value. |
dataType |
Type of the |
Return
Boolean. TRUE on success and FALSE in case of failure.
Example
>>> if (!SNMPSet(transport, oid, "192.168.0.1", "IPADDR") { >>> trace(1, "SNMPSet failed"); >>> }