2010-03-28 22:10:10 +00:00
<?xml version="1.0" encoding="utf-8"?>
2009-07-11 08:54:10 +00:00
<!-- $Revision$ -->
2007-06-20 22:25:43 +00:00
<refentry xml:id= "function.snmpset" xmlns= "http://docbook.org/ns/docbook" >
2007-01-07 01:04:21 +00:00
<refnamediv >
<refname > snmpset</refname>
2011-02-18 00:52:47 +00:00
<refpurpose > Set the value of an <acronym > SNMP</acronym> object</refpurpose>
2007-01-07 01:04:21 +00:00
</refnamediv>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
<refsect1 role= "description" >
&reftitle.description;
<methodsynopsis >
<type > bool</type> <methodname > snmpset</methodname>
2011-02-18 00:52:47 +00:00
<methodparam > <type > string</type> <parameter > host</parameter> </methodparam>
2007-01-07 01:04:21 +00:00
<methodparam > <type > string</type> <parameter > community</parameter> </methodparam>
<methodparam > <type > string</type> <parameter > object_id</parameter> </methodparam>
<methodparam > <type > string</type> <parameter > type</parameter> </methodparam>
<methodparam > <type > mixed</type> <parameter > value</parameter> </methodparam>
2011-02-20 12:03:34 +00:00
<methodparam choice= "opt" > <type > int</type> <parameter > timeout</parameter> <initializer > 1000000</initializer> </methodparam>
<methodparam choice= "opt" > <type > int</type> <parameter > retries</parameter> <initializer > 5</initializer> </methodparam>
2007-01-07 01:04:21 +00:00
</methodsynopsis>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
<para >
2009-05-03 15:59:44 +00:00
<function > snmpset</function> is used to set the value of an <acronym > SNMP</acronym> object
2011-02-18 00:52:47 +00:00
specified by the <parameter > object_id</parameter> .
2007-01-07 01:04:21 +00:00
</para>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
</refsect1>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
<refsect1 role= "parameters" >
&reftitle.parameters;
<para >
<variablelist >
<varlistentry >
2011-02-18 00:52:47 +00:00
<term > <parameter > host</parameter> </term>
2007-01-07 01:04:21 +00:00
<listitem >
<para >
2011-02-18 00:52:47 +00:00
The hostname of the <acronym > SNMP</acronym> agent (server).
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > community</parameter> </term>
<listitem >
<para >
2008-08-08 19:05:11 +00:00
The write community.
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > object_id</parameter> </term>
<listitem >
<para >
2011-02-18 00:52:47 +00:00
The <acronym > SNMP</acronym> object id.
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > type</parameter> </term>
<listitem >
2011-06-12 13:00:30 +00:00
&snmp.set.type.values;
&snmp.set.type.values.asn.mapping;
&snmp.set.type.values.equal.note;
&snmp.set.type.values.bitset.note;
2007-01-07 01:04:21 +00:00
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > value</parameter> </term>
<listitem >
<para >
2011-02-18 00:52:47 +00:00
The new value.
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > timeout</parameter> </term>
<listitem >
<para >
2009-11-13 19:40:19 +00:00
The number of microseconds until the first timeout.
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
<varlistentry >
<term > <parameter > retries</parameter> </term>
<listitem >
<para >
2011-07-29 10:46:17 +00:00
The number of times to retry if timeouts occur.
2007-01-07 01:04:21 +00:00
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
<refsect1 role= "returnvalues" >
&reftitle.returnvalues;
<para >
&return.success;
</para>
2011-02-18 00:52:47 +00:00
<para >
If the SNMP host rejects the data type, an E_WARNING message like "Warning: Error in packet. Reason: (badValue) The value given has the wrong type or length." is shown.
If an unknown or invalid OID is specified the warning probably reads "Could not add variable".
</para>
2007-01-07 01:04:21 +00:00
</refsect1>
2011-02-18 00:52:47 +00:00
<refsect1 role= "examples" >
&reftitle.examples;
<example >
2011-02-20 12:51:42 +00:00
<title > Using <function > snmpset</function> </title>
2011-02-18 00:52:47 +00:00
<programlisting role= "php" >
< ![CDATA[
< ?php
snmpset("localhost", "public", "IF-MIB::ifAlias.3", "s", "foo");
?>
]]>
</programlisting>
</example>
2011-06-12 13:00:30 +00:00
<example >
<title > Using <function > snmpset</function> for setting BITS <acronym > SNMP</acronym> object id</title>
<programlisting role= "php" >
< ![CDATA[
< ?php
snmpset("localhost", "public", 'FOO-MIB::bar.42', 'b', '0 1 2 3 4');
// or
snmpset("localhost", "public", 'FOO-MIB::bar.42', 'x', 'F0');
?>
]]>
</programlisting>
</example>
2011-02-18 00:52:47 +00:00
</refsect1>
2007-01-07 01:43:53 +00:00
<refsect1 role= "seealso" >
&reftitle.seealso;
<para >
<simplelist >
<member > <function > snmpget</function> </member>
</simplelist>
</para>
</refsect1>
2011-02-18 00:52:47 +00:00
2007-01-07 01:04:21 +00:00
</refentry>
2002-04-15 00:12:54 +00:00
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
2009-09-25 07:04:39 +00:00
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
2002-04-15 00:12:54 +00:00
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->
2011-02-18 00:52:47 +00:00