Difference between revisions of "NXSL:SNMPSet"

From NetXMS Wiki
Jump to navigation Jump to search
(Created page with "__NOTOC__ Assign a specific value to the given SNMP object for the node. The node and all SNMP communication details defined by SNMP transport. == Syntax == SNMPSet(''trans...")
 
Line 25: Line 25:
== Examples ==
== Examples ==
<syntaxhighlight lang="c">
<syntaxhighlight lang="c">
ret = SNMPSet(transport, oid, "192.169.1.1", "IPADDR");
ret = SNMPSet(transport, oid, "192.168.0.1", "IPADDR");
if (!ret)
if (!ret)
{
{

Revision as of 22:16, 6 May 2012

Assign a specific value to the given SNMP object for the node. The node and all SNMP communication details defined by SNMP transport.

Syntax

SNMPSet(transport,oid,value,[data type]);

Parameters

transport SNMP_Transport SNMP transport object.
oid SNMP object id to start walking from.
value Value to assign to oid.
data type SNMP data type (optional).

Return Value

TRUE on success, FALSE in case of failure.

Examples

	ret = SNMPSet(transport, oid, "192.168.0.1", "IPADDR");
	if (!ret)
	{
		trace(1,"SNMPSet failed");
		return -1;
	}