IPWorks SNMP 2020 Python Edition

Questions / Feedback?

node_index Property

The index of the node in a table.

Syntax

def get_node_index() -> str: ...

node_index = property(get_node_index, None)

Default Value

""

Remarks

If the selected node has stxSequence syntax then the NodeIndex represents the column used to distinguish among different table rows.

Example:

MibParser.LoadMib(""SNMPv2-MIB"")
MibParser.SelectNode("1.3.6.1.2.1.2.2")
Debug.Print MibParser1.NodeLabel // prints "ifTable"

MibParser.SelectNode("1.3.6.1.2.1.2.2.1")
Debug.Print MibParser1.NodeLabel  // prints "ifEntry"
Debug.Print MibParser1.NodeIndex  // prints "ifIndex"

This property is read-only.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks SNMP 2020 Python Edition - Version 20.0 [Build 8202]