Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Starts the SNMP agent. Call this method once all OID handlers have been registered. As of BrightSign OS 8.3.R1, other the default parameters below can be provided on object construction:

...

. Note that when both ro_community and rw_community are set, they must be unique values. Otherwise, simply provide rw_community

...

:

  • [string] rwro_community: Optional. When both ro_community and rw_community are set, they must be unique values. Otherwise, simply provide rw_community Optional. Sets the read community string.
  • [string] rw_communityOptional. Sets the write community string.


Code Block
titleExample
agent = CreateObject("roSnmpAgent")
agent.AddOidHandler("1.3.6.1.4.1.26095.1.1.1.4.4.0", false, "ValueOfOid")
agent.AddOidHandler("1.3.6.1.4.1.26095.1.1.1.4.5.0", true, 10)
agent.Start() 

...