Difference between revisions of "SNMP Information Gathered"

From Observer GigaFlow Support | VIAVI Solutions Inc.
Jump to: navigation, search
(Created page with "The following describes what is collected by each SNMP collection type No Collections = Disables Collections Of All SNMP Data Basic SNMP Information=Only Host And Interface I...")
 
 
(7 intermediate revisions by one user not shown)
Line 2: Line 2:
  
 
No Collections = Disables Collections Of All SNMP Data
 
No Collections = Disables Collections Of All SNMP Data
 +
 
Basic SNMP Information=Only Host And Interface Information (including interface IPS)
 
Basic SNMP Information=Only Host And Interface Information (including interface IPS)
 +
 
No Interface Stats= Disables Interface Statistics but still gathers everything else
 
No Interface Stats= Disables Interface Statistics but still gathers everything else
 +
 
Default Infrastructure Device= Gathers all bellow information
 
Default Infrastructure Device= Gathers all bellow information
  
  
What can be collected depending on the collection type
+
What can be collected depending on the collection type:
SNMP System Details
+
 
SNMP Interface Details
+
'''Basic'''
SNMP Interface IPs
+
 
 +
SNMP System Details every 30 minutes
 +
 
 +
SNMP Interface Details every 30 minutes
 +
 
 +
SNMP Interface IPs every 30 minutes
 +
 
 +
'''No Interface Stats  (Above plus)'''
 +
 
 +
SNMP IP Net To Media every 30 minutes
 +
 
 +
SNMP ARP Tables every 60 minutes
 +
 
 +
SNMP CAM Tables every 60 minutes
 +
 
 +
SNMP VLAN Tables every 30 minutes
 +
 
 +
SNMP LLDP Tables every 30 minutes
 +
 
 +
'''Default Infrastructure Device (Above plus)'''
 +
 
 +
SNMP Interface Octets every 1 minute
 +
 
 +
SNMP Interface Packets every 1 minute
 +
 
 +
SNMP Interface Errors every 1 minute
 +
 
 +
SNMP Interface State every 1 minute
 +
 
 +
 
 +
 
 +
"SNMP System Details",
 +
("name", "SNMP System Details")
 +
("description", "Collects sysDescr, sysName, sysObjectID, sysUpTime, sysLocation via SNMP")("calling", "getSystemDetails")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP Interface Details",
 +
("name", "SNMP Interface Details")
 +
("description", "Collects Interface Information such as speed and duplex via SNMP")("calling", "getInterfaceDetails")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP Interface IPs",
 +
("name", "SNMP Interface IPs")
 +
("description", "Collects IP Address Information From Interfaces")("calling", "getInterfaceIPs")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP IP Net To Media",
 +
("name", "SNMP IP Net To Media")
 +
("description", "Collects information Interface mapping IP to MAC addresses")("calling", "getIPNetToMedia")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP ARP Tables",
 +
("name", "SNMP ARP Tables")
 +
("description", "Collects ARP tables mapping IP to MAC addresses")("calling", "getARP")
 +
("pollPeriod", CROSUtils.hourMS)
 +
 
 +
"SNMP CAM Tables",
 +
("name", "SNMP CAM Tables")
 +
("description", "Collects CAM tables mapping MAC address to interfaces")("calling", "getCompleteCAM")
 +
("pollPeriod", CROSUtils.hourMS)
 +
 
 +
"SNMP VLAN Tables",
 +
("name", "SNMP VLAN Tables")
 +
("description", "Collects VLAN Tables")("calling", "getVLANs")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP LLDP Tables",
 +
("name", "SNMP LLDP Tables")
 +
("description", "Collects information about neighbouring devices using LLDP or CDP")("calling", "getLLDP")
 +
("pollPeriod", CROSUtils.minute30MS)
 +
 
 +
"SNMP Interface Octets",
 +
("name", "SNMP Interface Octets")
 +
("description", "Collects interface octet count")("calling", "getIfOctets")
 +
("pollPeriod", ROS.snmpinterfaceperiod)
 +
 
 +
"SNMP Interface Packets",
 +
("name", "SNMP Interface Packets")
 +
("description", "Collects interface packet count")("calling", "getIfPackets")
 +
("pollPeriod", ROS.snmpinterfaceperiod)
  
SNMP IP Net To Media
+
"SNMP Interface Errors",
SNMP ARP Tables
+
("name", "SNMP Interface Errors")
SNMP CAM Tables
+
("description", "Collects interface error count")("calling", "getIfErrors")
SNMP VLAN Tables
+
("pollPeriod", ROS.snmpinterfaceperiod)
SNMP LLDP Tables
+
  
SNMP Interface Octets
+
"SNMP Interface State",
SNMP Interface Packets
+
("name", "SNMP Interface State")
SNMP Interface Errors
+
("description", "Collects interface State")("calling", "getIfState")
SNMP Interface State
+
("pollPeriod", ROS.snmpinterfaceperiod)

Latest revision as of 11:45, 23 May 2024

The following describes what is collected by each SNMP collection type

No Collections = Disables Collections Of All SNMP Data

Basic SNMP Information=Only Host And Interface Information (including interface IPS)

No Interface Stats= Disables Interface Statistics but still gathers everything else

Default Infrastructure Device= Gathers all bellow information


What can be collected depending on the collection type:

Basic

SNMP System Details every 30 minutes

SNMP Interface Details every 30 minutes

SNMP Interface IPs every 30 minutes

No Interface Stats (Above plus)

SNMP IP Net To Media every 30 minutes

SNMP ARP Tables every 60 minutes

SNMP CAM Tables every 60 minutes

SNMP VLAN Tables every 30 minutes

SNMP LLDP Tables every 30 minutes

Default Infrastructure Device (Above plus)

SNMP Interface Octets every 1 minute

SNMP Interface Packets every 1 minute

SNMP Interface Errors every 1 minute

SNMP Interface State every 1 minute


"SNMP System Details", 
("name", "SNMP System Details")
("description", "Collects sysDescr, sysName, sysObjectID, sysUpTime, sysLocation via SNMP")("calling", "getSystemDetails")
("pollPeriod", CROSUtils.minute30MS)
"SNMP Interface Details", 
("name", "SNMP Interface Details")
("description", "Collects Interface Information such as speed and duplex via SNMP")("calling", "getInterfaceDetails")
("pollPeriod", CROSUtils.minute30MS)
"SNMP Interface IPs", 
("name", "SNMP Interface IPs")
("description", "Collects IP Address Information From Interfaces")("calling", "getInterfaceIPs")
("pollPeriod", CROSUtils.minute30MS)
"SNMP IP Net To Media", 
("name", "SNMP IP Net To Media")
("description", "Collects information Interface mapping IP to MAC addresses")("calling", "getIPNetToMedia")
("pollPeriod", CROSUtils.minute30MS)
"SNMP ARP Tables", 
("name", "SNMP ARP Tables")
("description", "Collects ARP tables mapping IP to MAC addresses")("calling", "getARP")
("pollPeriod", CROSUtils.hourMS)
"SNMP CAM Tables", 
("name", "SNMP CAM Tables")
("description", "Collects CAM tables mapping MAC address to interfaces")("calling", "getCompleteCAM")
("pollPeriod", CROSUtils.hourMS)
"SNMP VLAN Tables", 
("name", "SNMP VLAN Tables")
("description", "Collects VLAN Tables")("calling", "getVLANs")
("pollPeriod", CROSUtils.minute30MS)
"SNMP LLDP Tables", 
("name", "SNMP LLDP Tables")
("description", "Collects information about neighbouring devices using LLDP or CDP")("calling", "getLLDP")
("pollPeriod", CROSUtils.minute30MS)
"SNMP Interface Octets", 
("name", "SNMP Interface Octets")
("description", "Collects interface octet count")("calling", "getIfOctets")
("pollPeriod", ROS.snmpinterfaceperiod)
"SNMP Interface Packets", 
("name", "SNMP Interface Packets")
("description", "Collects interface packet count")("calling", "getIfPackets")
("pollPeriod", ROS.snmpinterfaceperiod)
"SNMP Interface Errors", 
("name", "SNMP Interface Errors")
("description", "Collects interface error count")("calling", "getIfErrors")
("pollPeriod", ROS.snmpinterfaceperiod)
"SNMP Interface State", 
("name", "SNMP Interface State")
("description", "Collects interface State")("calling", "getIfState")
("pollPeriod", ROS.snmpinterfaceperiod)