VantagePointDisplay.com Vantage Point Online Reference
Search:
Contents
Display Legacy Contents

IndexBookmarkPrint

Home > Vantage Point Server > Configuration Files > Legacy INI Configuration > Devices > SNMP

SNMP

A device section starts with <Device> and ends with </Device>. You will need a separate Device section for each device you want this Point Server to query. We recommend using a comment immediately after the opening tag to provide a long description of the device.

  • Device Type – SNMP

  • Device Description – A short description of the device, contained within double-quotes (").

  • PortID – The PortID that you assigned to the device in the Comm Ports section.

  • Device Address – The device's IP address. This must be a static or reserved address.

  • Device Bus Number – 0

  • Interval Seconds – The frequency devices are queried for new values.

  • TimeOut Seconds – How many seconds the Vantage Point Server will wait for a response from a devices before it times out.

  • Unreliable TimeOutSec – How many seconds the Vantage Point Server is to go without any response from a device before it marks that the device as Unreliable. The Vantage Point Server will then report the unreliable status to the Vantage Point Presentation.

3     <Device> 'Device Long Description                                                                                                                                                      
4         '                                                  Device      Device      Interval     TimeOut     Unreliable
5         'Device Type     Device Description     PortID     Address     Bus Num     Seconds      Seconds     TimeOutSec
6         '-----------     ------------------     ------     -------     -------     --------     -------     ----------
7          SNMP            "Short Description"    4          10.0.0.20   0           4.0          4.0         300 'Default is 300
8  
9         <Points>
10  
11         </Points>
12  
13     </Device>

Points Subsection Parameters

A Points subsection starts with <Points> and ends with </Points> and it is contained within a Device subsection. A Device subsection can have only one Points subsection. It contains every Point on a Device from which you want to retrieve data but not necessarily every point available on the Device.
  • Point TagA short name that identifies the point and must be unique within the entire configuration file.

  • Point Address – This is the object identifier (OID) plus the Value Multiplier, separated by a colon (:). Both are found in the manufacturer's documentation.

  • Type

    • RB: Any device that returns a binary value (ie, 0 or 1, True or False).

    • RS: Any device that returns a text value.

    • R: All other devices.

  • Point Description – Contained within double quotes, this is a brief description of the point.

  • Number of Entries – The maximum number of history records stored for this calculation.

    • Auto or Optimized: Sets the Interval to Hourly and records 336 hourly records, 60 daily records, and 120 monthly into history.

    • Numeric Value: Sets the maximum number to the value indicated.

    • Default (-): Designated by a hyphen, default stores only the last record.

  • Value Type

    • Accumulated, Accum, Total, Totalize, Meter, or Metered: An aggregate value for the specified Interval is recorded in history.

    • Minimum or Min: The lowest value received in the specified Interval is recorded in history.

    • Maximum or Max: The highest value received in the specified Interval is recorded in history.

    • Average or Avg: The average of all values received in the specified Interval is recorded in history.

    • Instantaneous, Instant, Inst, or (-): The last value received in the specified Interval is recorded in history. If no value type is specified, it will default to this.

  • Interval – The frequency in which the result of the calculation is stored in history.

    • Minute

    • Hour or Hourly

    • Day or Daily

    • Month or Monthly

  • Multiplier – Multiplies the Interval by the value indicated. The default value, indicated with a hyphen, is 1. (An hourly interval with a multiplier of 3 would record entries 3 times an hour, or every 20 minutes.)

  • Rollover – Some points return an accumulating value that resets to zero once it reaches a maximum value (eg, a meter). This setting adds the accumulated value reached at the reset to the values now received. The default, designated by a hyphen, is zero.

3     <Device>                                                                                                                                                                        
4  
5         <Points>
6             '                                                               Num Of      Value
7             'Point Tag     Point Address           Type     Point Description     Entries     Type      Interval     Multiplier     Rollover
8             '---------     ----------------------  ----     -----------------     -------     -----     --------     ----------     --------
9              P_snmp1       1.3.6.1.2.1.1.1.0:0     R        "P1 Example"          auto        accum     -            -              1000000
10              P_snmp2       1.3.6.1.2.1.1.3.0:/100  R        "P2 Example"          auto        inst      -            -              -
11  
12         </Points>
13  
14     </Device>

Complete SNMP Device Sample Configuration

7     <Device> 'Device Long Description                                                                                                                                                      
8         '                                                  Device      Device      Interval     TimeOut     Unreliable
9         'Device Type     Device Description     PortID     Address     Bus Num     Seconds      Seconds     TimeOutSec
10         '-----------     ------------------     ------     -------     -------     --------     -------     ----------
11          SNMP            "Short Description"    4          10.0.0.20   0           4.0          4.0         300 'Default is 300
12  
13         <Points>
14             '                                                               Num Of      Value
15             'Point Tag     Point Address           Type     Point Description     Entries     Type      Interval     Multiplier     Rollover
16             '---------     ----------------------  ----     -----------------     -------     -----     --------     ----------     --------
17              P_bn1         1.3.6.1.2.1.1.1.0:0     R        "P1 Example"          auto        accum     -            -              1000000
18              P_bn2         1.3.6.1.2.1.1.3.0:/100  R        "P2 Example"          auto        inst      -            -              -
23  
24         </Points>
25  
26     </Device>


Next Article: Configuring a SQL Device



See also