indusoft SNMP

Hi, can anyone help me? Need to know if indusoft can send SNMP traps?
  • Yes,

    According to the StudioSNMP.pdf document

    It involves creating a SNMP.INI file in the config folder of the application.

    <Excerpt from document below>

    Traps
    Defines traps generated by Studio.

    [<Node Name>]
    item = trap
    oid = <relative oid>
    trigger = <tag name>
    Columns = <number of columns>
    Column[<column number>].oid = <relative oid>
    Column[<column number>].tag = <tag name>
    Column[<column number>].type = string | integer | unsigned32


    Node Name - Name of the node. It can be any string up to 64 characters. This name must be unique; it cannot be reused by other objects.
    oid - Relative object identifier. This OID is appended to the root OID to make the real OID for the table.
    trigger - Name of the tag that triggers the trap. Every time the value of this tag changes, a new trap is generated;
    columns - Number of values returned by the trap.
    column[n].tag - The name of the tag returned as value n.
    column[n].type - The type of data in returned as value n.
    column[n].oid - OID of data in returned as value n.

    Example:

    [trap1]
    item = trap
    OID = 1.4
    trigger = second
    Columns = 2
    Column[1].tag = date
    Column[1].type = string
    Column[1].oid = 1.5.1
    Column[2].tag = time
    Column[2].type = String
    Column[2].oid = 1.5.2

    This example configures a trap that is generated every time the tag “second” changes. It returns 2 string values, from the tags “date” and “time”.