Vutlan analog sensors have analog inputs and analog or discrete outputs.

If the analog sensor is not connected or undefined, such sensor will be in a state of 'not connected'.

The analog sensor parameters of the VUTLAN devices can be located depending on their physical location in the sub-branches:

Example. Viewing analog sensors:

$ snmptable -Ci -Cb -v2c -cread 192.168.0.193 VUTLAN-SYSTEM-MIB::ctlInternalSensorsAnalogsTable


1
2
3
4
5
6
7

SNMP table: VUTLAN-SYSTEM-MIB::ctlInternalSensorsAnalogsTable
 
     Id Module Num          Type          Name          State  Value     Min    Max LowAlarm LowWarning HighWarning HighAlarm   At0  At75 Expression Specific
 201001      2001    -1  "temperature"  "Temperature"      "high alarm"  "34.2"  "-50.0" "110.0"       "5.0"          "10.0"            "15.0"        "20.0"   "1.0"  "0.0"        "x"       ""
 203001      2001    -2          "voltage"          "Voltage"            "warning"  "11.3"      "0.0"   "24.0"       "5.0"          "10.0"            "15.0"        "20.0"   "1.0"  "0.0"        "x"       ""
 204001      2002      2        "fvoltage"        "Analog-2"        "low alarm"    "0.0"      "0.0"   "10.0"       "5.0"          "10.0"            "15.0"        "20.0"   "1.0"  "0.0"        "x"       ""
 201002      2002      3  "temperature"        "Analog-3"      "high alarm"  "27.5"  "-50.0" "110.0"       "5.0"          "10.0"            "15.0"        "20.0"   "1.0"  "0.0"        "x"       ""

The location of such sensors in the system is determined by the module identifier in which this element is physically located and with the port number in the module - Num.

Sensor with analog output can be in one of the following states defined with thresholds ctlAnalogLowAlarmctlAnalogLowWarningctlAnalogHighWarning, ctlAnalogHighAlarm:

Fields ctlAnalogAT0 (default "1.0") and ctlAnalogAT75 (default "0.0") are only for the voltage sensors and set the coefficients to convert the measured value using the following formula:

U=ctlAnalogAT0*U0+ctlAnalogAT75

Field ctlAnalogExpression (default "x") has meaning only for the current sensor (4-20mA), and sets the expression to convert the measured value:

Value=ctlAnalogExpression(x)

thus the default readings correspond to the measured values with no additional changes.

It supports the following operations: "+", "-", "/", "*", "%"(modulo), "^"(involution)

Support the following functions:

Example. Setting thresholds for a sensor with analog output with ElementID=22:

$ snmpset -v2c -cwrite 192.168.0.193 VUTLAN-SYSTEM-MIB::ctlAnalogLowAlarm.2 s "5" \
 VUTLAN-SYSTEM-MIB::ctlAnalogLowWarning.2 s "35" VUTLAN-SYSTEM-MIB::ctlAnalogHighAlarm.2 s "45"

VUTLAN-SYSTEM-MIB::ctlAnalogLowAlarm.2 = STRING: "5"
VUTLAN-SYSTEM-MIB::ctlAnalogLowWarning.2 = STRING: "35"
VUTLAN-SYSTEM-MIB::ctlAnalogHighAlarm.2 = STRING: "45"