public final class IpAddrTableEntry extends SnmpTableEntry
The IpAddrTableEntry class is designed to hold all the MIB-II information for one entry in the ipAddrTable. The table effectively contains a list of these entries, each entry having information about one address. The entry contains an IP Address, its netmask, interface binding, broadcast address, and maximum packet reassembly size.
This object is used by the IpAddrTable to hold information single entries in the table. See the IpAddrTable documentation form more information.
IpAddrTable
,
RFC1213 Modifier and Type | Field and Description |
---|---|
static String |
IP_ADDR_ENT_ADDR
Constant
IP_ADDR_ENT_ADDR="ipAdEntAddr" |
static String |
IP_ADDR_ENT_BCASTADDR
Constant
IP_ADDR_ENT_BCASTADDR="ipAdEntBcastAddr" |
static String |
IP_ADDR_ENT_NETMASK
Constant
IP_ADDR_ENT_NETMASK="ipAdEntNetMask" |
static String |
IP_ADDR_IF_INDEX
Constant
IP_ADDR_IF_INDEX="ipAdEntIfIndex" |
static NamedSnmpVar[] |
ms_elemList
Constant
ms_elemList |
static String |
TABLE_OID
The TABLE_OID is the object identifier that represents the root of the IP
Address table in the MIB forest.
|
IFINDEX
Constructor and Description |
---|
IpAddrTableEntry()
The class constructor used to initialize the object to its initial state.
|
Modifier and Type | Method and Description |
---|---|
InetAddress |
getIpAdEntAddr()
getIpAdEntAddr
|
InetAddress |
getIpAdEntBcastAddr()
getIpAdEntBcastAddr
|
Integer |
getIpAdEntIfIndex()
getIpAdEntIfIndex
|
InetAddress |
getIpAdEntNetMask()
getIpAdEntNetMask
|
getElementListSize, getElements, storeResult
getDisplayString, getHexString, getIfIndex, getInt32, getIPAddress, getObjectID, getUInt32, getValue, isEmpty, putIfIndex, putValue, size
public static final String IP_ADDR_ENT_ADDR
IP_ADDR_ENT_ADDR="ipAdEntAddr"
public static final String IP_ADDR_IF_INDEX
IP_ADDR_IF_INDEX="ipAdEntIfIndex"
public static final String IP_ADDR_ENT_NETMASK
IP_ADDR_ENT_NETMASK="ipAdEntNetMask"
public static final String IP_ADDR_ENT_BCASTADDR
IP_ADDR_ENT_BCASTADDR="ipAdEntBcastAddr"
public static NamedSnmpVar[] ms_elemList
ms_elemList
public static final String TABLE_OID
The TABLE_OID is the object identifier that represents the root of the IP Address table in the MIB forest.
public IpAddrTableEntry()
The class constructor used to initialize the object to its initial state. Although the object's member variables can change after an instance is created, this constructor will initialize all the variables as per their named variable from the passed array of SNMP varbinds.
If the information in the object should not be modified then a final modifier can be applied to the created object.
public InetAddress getIpAdEntAddr()
getIpAdEntAddr
InetAddress
object.public InetAddress getIpAdEntNetMask()
getIpAdEntNetMask
InetAddress
object.public InetAddress getIpAdEntBcastAddr()
getIpAdEntBcastAddr
InetAddress
object.Copyright © 2021. All rights reserved.