Initial commit
This commit is contained in:
149
MIBS/corero/CORERO-CMS-CLUSTERS-MIB
Normal file
149
MIBS/corero/CORERO-CMS-CLUSTERS-MIB
Normal file
@ -0,0 +1,149 @@
|
||||
CORERO-CMS-CLUSTERS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
||||
TimeTicks, Counter32, Unsigned32, Counter64, enterprises, IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
coreroCMSMIBObjects, coreroCMSMIBCompliances, coreroCMSMIBGroups
|
||||
FROM CORERO-CMS-MIB;
|
||||
|
||||
|
||||
clusters MODULE-IDENTITY
|
||||
LAST-UPDATED "201806290000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
"info@corero.com"
|
||||
DESCRIPTION
|
||||
"Corero Management Server MIB."
|
||||
REVISION "201708240000Z"
|
||||
DESCRIPTION
|
||||
"Initial revision"
|
||||
REVISION "201805030000Z"
|
||||
DESCRIPTION
|
||||
"Add ingressSampleRate field"
|
||||
REVISION "201805230000Z"
|
||||
DESCRIPTION
|
||||
"Add optimizeForScrubbing field"
|
||||
REVISION "201806290000Z"
|
||||
DESCRIPTION
|
||||
"Updated clusterOptimizeForScrubbing description"
|
||||
::= { coreroCMSMIBObjects 3 }
|
||||
|
||||
clusterTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ClusterEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of Clusters"
|
||||
::= { clusters 1 }
|
||||
|
||||
clusterEntry OBJECT-TYPE
|
||||
SYNTAX ClusterEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry in the Cluster table which represents a single Cluster"
|
||||
INDEX { clusterIndex }
|
||||
::= { clusterTable 1 }
|
||||
|
||||
ClusterEntry ::= SEQUENCE {
|
||||
clusterIndex INTEGER (1..2147483647),
|
||||
clusterName OCTET STRING (SIZE(1..64)),
|
||||
clusterDescription OCTET STRING,
|
||||
clusterProtectionProfile OCTET STRING,
|
||||
clusterIngressSampleRate INTEGER (1..4096),
|
||||
clusterOptimizeForScrubbing INTEGER
|
||||
}
|
||||
|
||||
clusterIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The SNMP index of the Cluster"
|
||||
::= { clusterEntry 1 }
|
||||
|
||||
clusterName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING (SIZE(1..64))
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Cluster"
|
||||
::= { clusterEntry 2 }
|
||||
|
||||
clusterDescription OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The description of the Cluster. If no description is entered, this is blank."
|
||||
::= { clusterEntry 3 }
|
||||
|
||||
clusterProtectionProfile OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Protection Profile associated with this Cluster"
|
||||
::= { clusterEntry 4 }
|
||||
|
||||
clusterIngressSampleRate OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..4096)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"External ingress sampling rate for all devices in the cluster"
|
||||
::= { clusterEntry 5 }
|
||||
|
||||
clusterOptimizeForScrubbing OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
true(1),
|
||||
false(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Indicates whether the devices in the cluster are optimized for scrubbing deployments"
|
||||
::= { clusterEntry 6 }
|
||||
|
||||
-- compliance statements
|
||||
|
||||
coreroCMSMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for SNMPv2 entities which
|
||||
implement the SNMPv2 MIB."
|
||||
MODULE -- this module
|
||||
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
|
||||
-- snmpBasicNotificationsGroup }
|
||||
|
||||
GROUP coreroClusterGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for SNMPv2 entities which
|
||||
support community-based authentication."
|
||||
|
||||
::= { coreroCMSMIBCompliances 3 }
|
||||
|
||||
|
||||
-- units of conformance
|
||||
|
||||
coreroClusterGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
clusterIndex,
|
||||
clusterName,
|
||||
clusterDescription,
|
||||
clusterProtectionProfile,
|
||||
clusterIngressSampleRate,
|
||||
clusterOptimizeForScrubbing
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects providing status and statistics for the site."
|
||||
::= { coreroCMSMIBGroups 3 }
|
||||
|
||||
|
||||
END
|
339
MIBS/corero/CORERO-CMS-DEVICES-MIB
Normal file
339
MIBS/corero/CORERO-CMS-DEVICES-MIB
Normal file
@ -0,0 +1,339 @@
|
||||
CORERO-CMS-DEVICES-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
||||
TimeTicks, Counter32, Unsigned32, Counter64, enterprises, IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
coreroCMSMIBObjects, coreroCMSMIBCompliances, coreroCMSMIBGroups
|
||||
FROM CORERO-CMS-MIB;
|
||||
|
||||
|
||||
devices MODULE-IDENTITY
|
||||
LAST-UPDATED "202009300000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
"info@corero.com"
|
||||
DESCRIPTION
|
||||
"Corero Management Server MIB."
|
||||
REVISION "201712050000Z"
|
||||
DESCRIPTION
|
||||
"Initial revision"
|
||||
REVISION "201712070000Z"
|
||||
DESCRIPTION
|
||||
"Rename of deviceDeploymentAction's 'not-in-progress to 'none'"
|
||||
REVISION "201712190000Z"
|
||||
DESCRIPTION
|
||||
"Updated to support revised operating-modes configuration"
|
||||
REVISION "201801090000Z"
|
||||
DESCRIPTION
|
||||
"Add invalid-modules-detected deploy-state"
|
||||
REVISION "201802050000Z"
|
||||
DESCRIPTION
|
||||
"Rename of deviceHealth object to deviceStatus"
|
||||
REVISION "201809250000Z"
|
||||
DESCRIPTION
|
||||
"Change deviceAdminState to use enabled/disabled"
|
||||
REVISION "201810020000Z"
|
||||
DESCRIPTION
|
||||
"Add redeploy-pending deploy-state"
|
||||
REVISION "201810080000Z"
|
||||
DESCRIPTION
|
||||
"Added unknown device type value"
|
||||
REVISION "202009030000Z"
|
||||
DESCRIPTION
|
||||
"Added deviceHardwareVersion object to deviceStatus"
|
||||
|
||||
::= { coreroCMSMIBObjects 2 }
|
||||
|
||||
-- devices
|
||||
|
||||
deviceTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF DeviceEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of devices"
|
||||
::= { devices 1 }
|
||||
|
||||
deviceEntry OBJECT-TYPE
|
||||
SYNTAX DeviceEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry within the device table which represents a single device"
|
||||
INDEX { deviceIndex }
|
||||
::= { deviceTable 1 }
|
||||
|
||||
DeviceEntry ::= SEQUENCE {
|
||||
deviceIndex INTEGER (1..2147483647),
|
||||
deviceName OCTET STRING,
|
||||
deviceAddress OCTET STRING,
|
||||
deviceDescription OCTET STRING,
|
||||
deviceDefenseMode INTEGER,
|
||||
deviceAdminState INTEGER,
|
||||
deviceModel INTEGER,
|
||||
deviceSerialNumber OCTET STRING,
|
||||
deviceConnectionState INTEGER,
|
||||
deviceDeploymentState INTEGER,
|
||||
deviceDeploymentAction INTEGER,
|
||||
deviceSXOSVersion OCTET STRING,
|
||||
deviceSoftwareVersion OCTET STRING,
|
||||
deviceUptime OCTET STRING,
|
||||
deviceStatus OCTET STRING,
|
||||
deviceType INTEGER,
|
||||
deviceBypassMode INTEGER,
|
||||
deviceHardwareVersion OCTET STRING
|
||||
}
|
||||
|
||||
deviceIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The SNMP index of the device"
|
||||
::= { deviceEntry 1 }
|
||||
|
||||
deviceName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the device"
|
||||
::= { deviceEntry 2 }
|
||||
|
||||
deviceAddress OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The IP address which the CMS uses to look for the device"
|
||||
::= { deviceEntry 3 }
|
||||
|
||||
deviceDescription OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device description. If no description is entered, this is blank."
|
||||
::= { deviceEntry 4 }
|
||||
|
||||
deviceDefenseMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
monitor(0),
|
||||
mitigate(1),
|
||||
pass-through(2),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The configured Defense Mode for the device"
|
||||
::= { deviceEntry 5 }
|
||||
|
||||
deviceAdminState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disabled(1),
|
||||
enabled(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current admin-state of the device"
|
||||
::= { deviceEntry 6 }
|
||||
|
||||
deviceModel OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
ntd-virtual-edition(0),
|
||||
ntd1100(1),
|
||||
ntd120(2),
|
||||
nba(3),
|
||||
unknown(4),
|
||||
ntd280(5)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The type of device"
|
||||
::= { deviceEntry 7 }
|
||||
|
||||
deviceSerialNumber OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The serial number of the device"
|
||||
::= { deviceEntry 8 }
|
||||
|
||||
deviceConnectionState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
connected(0),
|
||||
authentication-failed(1),
|
||||
connection-timed-out(2),
|
||||
connection-refused(3),
|
||||
unknown-connection-error(4),
|
||||
no-connection(5),
|
||||
locked-by-user(6)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current state of the connection between the CMS and the device"
|
||||
::= { deviceEntry 9 }
|
||||
|
||||
deviceDeploymentState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
in-sync(0),
|
||||
sync-required(1),
|
||||
force-sync-required(2),
|
||||
unknown(3),
|
||||
not-in-cluster(4),
|
||||
initial-sync-pending(5),
|
||||
not-licensed(6),
|
||||
unsupported-version(7),
|
||||
deploy-pending(8),
|
||||
unexpected-device-type(9),
|
||||
invalid-modules-detected(10),
|
||||
redeploy-pending(11)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device's current deployment state"
|
||||
::= { deviceEntry 10 }
|
||||
|
||||
deviceDeploymentAction OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
none(0),
|
||||
deploy-in-progress(1),
|
||||
sync-to-in-progress(2),
|
||||
force-sync-in-progress(3),
|
||||
commit-in-progress(4),
|
||||
upgrade-in-progress(5)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The deployment action the device is currently performing"
|
||||
::= { deviceEntry 11 }
|
||||
|
||||
deviceSXOSVersion OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The version number of the device's operating system (SXOS)"
|
||||
::= { deviceEntry 12 }
|
||||
|
||||
deviceSoftwareVersion OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device's current software version in '{MAJOR}.{MINOR}.{PATCH}.{BUILD}' format"
|
||||
::= { deviceEntry 13 }
|
||||
|
||||
deviceUptime OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The amount of time since the device was last rebooted in '{DAYS}d {HOURS}h {MINUTES}m {SECONDS}s' format"
|
||||
::= { deviceEntry 14 }
|
||||
|
||||
deviceStatus OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device status indicates whether traffic is running to the device (normal), or if there is an issue which may affect traffic or its connection to the CMS"
|
||||
::= { deviceEntry 15 }
|
||||
|
||||
deviceType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
defense(0),
|
||||
bypass(1),
|
||||
unknown(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device type indicates whether this is a Defense (0) or Bypass (1) device"
|
||||
::= { deviceEntry 16 }
|
||||
|
||||
deviceBypassMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disabled(0),
|
||||
automatic(1),
|
||||
physical-bypass(2),
|
||||
switched-bypass(3),
|
||||
monitor-tap(4),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The configured Bypass Mode for this device."
|
||||
::= { deviceEntry 17 }
|
||||
|
||||
deviceHardwareVersion OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device's hardware revision in '{MAJOR}.{MINOR}' format or n/a if not applicable"
|
||||
::= { deviceEntry 18 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
coreroCMSMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for SNMPv2 entities which
|
||||
implement the SNMPv2 MIB."
|
||||
MODULE -- this module
|
||||
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
|
||||
-- snmpBasicNotificationsGroup }
|
||||
|
||||
GROUP coreroDeviceGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for SNMPv2 entities which
|
||||
support community-based authentication."
|
||||
|
||||
::= { coreroCMSMIBCompliances 2 }
|
||||
|
||||
|
||||
-- units of conformance
|
||||
|
||||
coreroDeviceGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
deviceIndex,
|
||||
deviceName,
|
||||
deviceAddress,
|
||||
deviceDescription,
|
||||
deviceDefenseMode,
|
||||
deviceAdminState,
|
||||
deviceModel,
|
||||
deviceSerialNumber,
|
||||
deviceConnectionState,
|
||||
deviceDeploymentState,
|
||||
deviceDeploymentAction,
|
||||
deviceSXOSVersion,
|
||||
deviceSoftwareVersion,
|
||||
deviceUptime,
|
||||
deviceStatus,
|
||||
deviceType,
|
||||
deviceBypassMode,
|
||||
deviceHardwareVersion
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects providing status and statistics for the site."
|
||||
::= { coreroCMSMIBGroups 2 }
|
||||
|
||||
|
||||
END
|
775
MIBS/corero/CORERO-CMS-MIB
Normal file
775
MIBS/corero/CORERO-CMS-MIB
Normal file
@ -0,0 +1,775 @@
|
||||
CORERO-CMS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
||||
TimeTicks, Counter32, Unsigned32, Counter64, enterprises, IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF;
|
||||
|
||||
|
||||
coreroCMSMIB MODULE-IDENTITY
|
||||
LAST-UPDATED "201706160000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
" Corero Support
|
||||
E-mail: support.portal@corero.com"
|
||||
DESCRIPTION
|
||||
"Corero Management Server MIB."
|
||||
REVISION "201706160000Z"
|
||||
DESCRIPTION
|
||||
"Added interface error counts."
|
||||
REVISION "201601280000Z"
|
||||
DESCRIPTION
|
||||
"Added Protection Group Interface statistics."
|
||||
REVISION "201404240000Z"
|
||||
DESCRIPTION
|
||||
"First version."
|
||||
|
||||
::= { corero 4 }
|
||||
|
||||
corero OBJECT IDENTIFIER ::= { enterprises 41036 }
|
||||
|
||||
-- Administrative assignments ++++---------------------------------
|
||||
|
||||
coreroCMSMIBObjects OBJECT IDENTIFIER ::= { coreroCMSMIB 1 }
|
||||
coreroCMSMIBConformance OBJECT IDENTIFIER ::= { coreroCMSMIB 2 }
|
||||
|
||||
-- ----------------------------------------------------------------
|
||||
UnsignedShort ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "d"
|
||||
STATUS current
|
||||
DESCRIPTION "xs:unsignedShort"
|
||||
SYNTAX Unsigned32 (0 .. 65535)
|
||||
|
||||
ConfdString ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "1t"
|
||||
STATUS current
|
||||
DESCRIPTION "xs: and confd: types mapped to strings"
|
||||
SYNTAX OCTET STRING
|
||||
|
||||
String ::= TEXTUAL-CONVENTION
|
||||
DISPLAY-HINT "1t"
|
||||
STATUS current
|
||||
DESCRIPTION "xs:string"
|
||||
SYNTAX OCTET STRING
|
||||
|
||||
TYPE-CMS-MODULE-STATE ::= TEXTUAL-CONVENTION
|
||||
STATUS current
|
||||
DESCRIPTION ""
|
||||
SYNTAX String
|
||||
|
||||
--
|
||||
-- The defense node aggregates the defense status and statistics of the site
|
||||
-- It has several nodes corresponding to the different containers in the defense-summary yang
|
||||
--
|
||||
defense OBJECT IDENTIFIER ::= { coreroCMSMIBObjects 1 }
|
||||
defenseStatus OBJECT IDENTIFIER ::= { defense 1 }
|
||||
|
||||
defenseStatusThreatAwareness OBJECT IDENTIFIER ::= { defenseStatus 1 }
|
||||
|
||||
excessivePacketsFromBadClients OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Awareness indication for this type of threat."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 1 }
|
||||
|
||||
excessiveProxySetupRate OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Proxy is no longer supported in the system."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 2 }
|
||||
|
||||
excessiveNewIpAddresses OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Awareness indication for this type of threat."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 3 }
|
||||
|
||||
excessiveAddressTableUsage OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Awareness indication for this type of threat."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 4 }
|
||||
|
||||
excessiveTcpSetupRate OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Awareness indication for this type of threat."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 5 }
|
||||
|
||||
excessiveNonTcpSetupRate OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Awareness indication for this type of threat."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 6 }
|
||||
|
||||
excessiveFailedProxyRate OBJECT-TYPE
|
||||
SYNTAX TruthValue
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Proxy is no longer supported in the system."
|
||||
DEFVAL { false }
|
||||
::= { defenseStatusThreatAwareness 7 }
|
||||
|
||||
|
||||
defenseStatistics OBJECT IDENTIFIER ::= { defense 2 }
|
||||
|
||||
defenseBlockRateStatistics OBJECT IDENTIFIER ::= { defenseStatistics 1 }
|
||||
|
||||
|
||||
allRulesBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"All rules block rate (packets/sec)"
|
||||
::= { defenseBlockRateStatistics 1 }
|
||||
|
||||
systemIssueBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"System isues rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 2 }
|
||||
|
||||
networkAccessRestrictionBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Network threat access restriction rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 3 }
|
||||
|
||||
networkRateLimitBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Network thread rate limit rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 4 }
|
||||
|
||||
networkProtocolValidationBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Network threat protocol validation rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 5 }
|
||||
|
||||
networkIntegrityAnalysisBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Network threat integrity analysis rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 6 }
|
||||
|
||||
applicationAccessRestrictionBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Application threat access restriction rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 7 }
|
||||
|
||||
applicationRateLimitBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Application threat rate limit rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 8 }
|
||||
|
||||
applicationProtocolValidationBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Application threat protocol validation rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 9 }
|
||||
|
||||
applicationIntegrityAnalysisBlockRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Application integrity analysis rules block rate is not longer supported in the system"
|
||||
::= { defenseBlockRateStatistics 10 }
|
||||
|
||||
|
||||
defenseSetupRateStatistics OBJECT IDENTIFIER ::= { defenseStatistics 2 }
|
||||
|
||||
tcpSetupRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"TCP protocol flow setup rate (packets/sec)"
|
||||
::= { defenseSetupRateStatistics 1 }
|
||||
|
||||
nonTcpSetupRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Non-TCP protocol aggregate flow setup rate (packets/sec)"
|
||||
::= { defenseSetupRateStatistics 2 }
|
||||
|
||||
udpSetupRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"UDP protocol flow setup rate (packets/sec)"
|
||||
::= { defenseSetupRateStatistics 3 }
|
||||
|
||||
icmpSetupRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"ICMP protocol flow setup rate (packets/sec)"
|
||||
::= { defenseSetupRateStatistics 4 }
|
||||
|
||||
otherIpSetupRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"IP protocols other than TCP and UDP flow setup rate (packets/sec)"
|
||||
::= { defenseSetupRateStatistics 5 }
|
||||
|
||||
defenseUsageStatistics OBJECT IDENTIFIER ::= { defenseStatistics 3 }
|
||||
|
||||
inUseFlows OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of flows in use across the devices"
|
||||
::= { defenseUsageStatistics 1 }
|
||||
|
||||
inUseTcpFlows OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of TCP flows in use across the devices"
|
||||
::= { defenseUsageStatistics 2 }
|
||||
|
||||
inUseUdpFlows OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of UDP flows in use across the devices"
|
||||
::= { defenseUsageStatistics 3 }
|
||||
|
||||
inUseIcmpFlows OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of ICMP flows in use across the devices"
|
||||
::= { defenseUsageStatistics 4 }
|
||||
|
||||
inUseOtherFlows OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of non-TCP, non-UDP, non-ICMP flows in use across the devices"
|
||||
::= { defenseUsageStatistics 5 }
|
||||
|
||||
totalProxySetups OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Proxy is no longer supported in the system"
|
||||
::= { defenseUsageStatistics 6 }
|
||||
|
||||
totalProxyFailedSetups OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS obsolete
|
||||
DESCRIPTION
|
||||
"Proxy is no longer supported in the system"
|
||||
::= { defenseUsageStatistics 7 }
|
||||
|
||||
defenseInterfaceStatistics OBJECT IDENTIFIER ::= { defenseStatistics 4 }
|
||||
|
||||
externalPortPacketReceiveRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Receive rate on external ports (packets per second)"
|
||||
::= { defenseInterfaceStatistics 1 }
|
||||
|
||||
externalPortBitReceiveRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Receive rate on external ports (Mbits per second)"
|
||||
::= { defenseInterfaceStatistics 2 }
|
||||
|
||||
externalPortPacketTransmitRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Transmit rate on external ports (packets per second)"
|
||||
::= { defenseInterfaceStatistics 3 }
|
||||
|
||||
externalPortBitTransmitRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Transmit rate on external ports (Mbits per second)"
|
||||
::= { defenseInterfaceStatistics 4 }
|
||||
|
||||
internalPortPacketReceiveRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Receive rate on internal ports (packets per second)"
|
||||
::= { defenseInterfaceStatistics 5 }
|
||||
|
||||
internalPortBitReceiveRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Receive rate on internal ports (Mbits per second)"
|
||||
::= { defenseInterfaceStatistics 6 }
|
||||
|
||||
internalPortPacketTransmitRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Transmit rate on internal ports (packets per second)"
|
||||
::= { defenseInterfaceStatistics 7 }
|
||||
|
||||
internalPortBitTransmitRate OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Transmit rate on internal ports (Mbits per second)"
|
||||
::= { defenseInterfaceStatistics 8 }
|
||||
|
||||
externalPortReceivedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the external port"
|
||||
::= { defenseInterfaceStatistics 9 }
|
||||
|
||||
externalPortTransmittedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets transmitted from the external port"
|
||||
::= { defenseInterfaceStatistics 10 }
|
||||
|
||||
externalPortReceivedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes received to the external port"
|
||||
::= { defenseInterfaceStatistics 11 }
|
||||
|
||||
externalPortTransmittedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes transmitted from external port"
|
||||
::= { defenseInterfaceStatistics 12 }
|
||||
|
||||
internalPortReceivedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the internal port"
|
||||
::= { defenseInterfaceStatistics 13 }
|
||||
|
||||
internalPortTransmittedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets transmitted from the internal port"
|
||||
::= { defenseInterfaceStatistics 14 }
|
||||
|
||||
internalPortReceivedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes received to the internal port"
|
||||
::= { defenseInterfaceStatistics 15 }
|
||||
|
||||
internalPortTransmittedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes transmitted from the internal port"
|
||||
::= { defenseInterfaceStatistics 16 }
|
||||
|
||||
externalPortReceivedBadCrcPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the external port with an invalid CRC"
|
||||
::= { defenseInterfaceStatistics 17 }
|
||||
|
||||
internalPortReceivedBadCrcPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the internal port with an invalid CRC"
|
||||
::= { defenseInterfaceStatistics 18 }
|
||||
|
||||
externalPortReceivedOversizedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of oversized packets received to the external port"
|
||||
::= { defenseInterfaceStatistics 19 }
|
||||
|
||||
internalPortReceivedOversizedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of oversized packets received to the internal port"
|
||||
::= { defenseInterfaceStatistics 20 }
|
||||
|
||||
externalPortReceivedJabberPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of jabber packets received to the external port"
|
||||
::= { defenseInterfaceStatistics 21 }
|
||||
|
||||
internalPortReceivedJabberPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of jabber packets received to the internal port"
|
||||
::= { defenseInterfaceStatistics 22 }
|
||||
|
||||
externalPortTransmitErrorPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of errors transmitting packets from the external port"
|
||||
::= { defenseInterfaceStatistics 23 }
|
||||
|
||||
internalPortTransmitErrorPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of errors transmitting packets from the internal port"
|
||||
::= { defenseInterfaceStatistics 24 }
|
||||
|
||||
defenseIpAddressStatistics OBJECT IDENTIFIER ::= { defenseStatistics 5 }
|
||||
|
||||
inUseAddresses OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of IP table entries across the devices"
|
||||
::= { defenseIpAddressStatistics 1 }
|
||||
|
||||
inUseTrustedAddresses OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of trusted IP addresses across the devices"
|
||||
::= { defenseIpAddressStatistics 2 }
|
||||
|
||||
inUseSuspiciousAddresses OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of suspicious IP addresses across the devices"
|
||||
::= { defenseIpAddressStatistics 3 }
|
||||
|
||||
inUseMaliciousAddresses OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of malicious IP addresses across the devices"
|
||||
::= { defenseIpAddressStatistics 4 }
|
||||
|
||||
inUseUnclassifiedAddresses OBJECT-TYPE
|
||||
SYNTAX Gauge32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Total number of unclassified IP addresses across the devices"
|
||||
::= { defenseIpAddressStatistics 5 }
|
||||
|
||||
|
||||
protectionGroupStatistics OBJECT IDENTIFIER ::= { defense 3 }
|
||||
|
||||
protectionGroupTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF ProtectionGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Table containing interface statistics for the Protection Group"
|
||||
::= { protectionGroupStatistics 1 }
|
||||
|
||||
protectionGroupEntry OBJECT-TYPE
|
||||
SYNTAX ProtectionGroupEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Port Statistic"
|
||||
INDEX { pgName }
|
||||
::= { protectionGroupTable 1 }
|
||||
|
||||
ProtectionGroupEntry ::= SEQUENCE {
|
||||
pgName OCTET STRING ,
|
||||
pgExternalPortReceivedPackets Counter64,
|
||||
pgExternalPortTransmittedPackets Counter64,
|
||||
pgExternalPortReceivedBytes Counter64,
|
||||
pgExternalPortTransmittedBytes Counter64,
|
||||
pgInternalPortReceivedPackets Counter64,
|
||||
pgInternalPortTransmittedPackets Counter64,
|
||||
pgInternalPortReceivedBytes Counter64,
|
||||
pgInternalPortTransmittedBytes Counter64,
|
||||
pgExternalPortReceivedBadCrcPackets Counter64,
|
||||
pgInternalPortReceivedBadCrcPackets Counter64,
|
||||
pgExternalPortReceivedOversizedPackets Counter64,
|
||||
pgInternalPortReceivedOversizedPackets Counter64,
|
||||
pgExternalPortReceivedJabberPackets Counter64,
|
||||
pgInternalPortReceivedJabberPackets Counter64,
|
||||
pgExternalPortTransmitErrorPackets Counter64,
|
||||
pgInternalPortTransmitErrorPackets Counter64
|
||||
}
|
||||
|
||||
pgName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Protection group name as an Index"
|
||||
::= { protectionGroupEntry 1 }
|
||||
|
||||
pgExternalPortReceivedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the external port"
|
||||
::= { protectionGroupEntry 2 }
|
||||
|
||||
pgExternalPortTransmittedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets transmitted from the external port"
|
||||
::= { protectionGroupEntry 3 }
|
||||
|
||||
pgExternalPortReceivedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes received to the external port"
|
||||
::= { protectionGroupEntry 4 }
|
||||
|
||||
pgExternalPortTransmittedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes transmitted from external port"
|
||||
::= { protectionGroupEntry 5 }
|
||||
|
||||
pgInternalPortReceivedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the internal port"
|
||||
::= { protectionGroupEntry 6 }
|
||||
|
||||
pgInternalPortTransmittedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets transmitted from the internal port"
|
||||
::= { protectionGroupEntry 7 }
|
||||
|
||||
pgInternalPortReceivedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes received to the internal port"
|
||||
::= { protectionGroupEntry 8 }
|
||||
|
||||
pgInternalPortTransmittedBytes OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of bytes transmitted from the internal port"
|
||||
::= { protectionGroupEntry 9 }
|
||||
|
||||
pgExternalPortReceivedBadCrcPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the external port with an invalid CRC"
|
||||
::= { protectionGroupEntry 10 }
|
||||
|
||||
pgInternalPortReceivedBadCrcPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of packets received to the internal port with an invalid CRC"
|
||||
::= { protectionGroupEntry 11 }
|
||||
|
||||
pgExternalPortReceivedOversizedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of oversized packets received to the external port"
|
||||
::= { protectionGroupEntry 12 }
|
||||
|
||||
pgInternalPortReceivedOversizedPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of oversized packets received to the internal port"
|
||||
::= { protectionGroupEntry 13 }
|
||||
|
||||
pgExternalPortReceivedJabberPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of jabber packets received to the external port"
|
||||
::= { protectionGroupEntry 14 }
|
||||
|
||||
pgInternalPortReceivedJabberPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of jabber packets received to the internal port"
|
||||
::= { protectionGroupEntry 15 }
|
||||
|
||||
pgExternalPortTransmitErrorPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of errors transmitting packets from the external port"
|
||||
::= { protectionGroupEntry 16 }
|
||||
|
||||
pgInternalPortTransmitErrorPackets OBJECT-TYPE
|
||||
SYNTAX Counter64
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of errors transmitting packets from the internal port"
|
||||
::= { protectionGroupEntry 17 }
|
||||
|
||||
|
||||
|
||||
-- Conformance ----------------------------------------------------
|
||||
coreroCMSMIBCompliances OBJECT IDENTIFIER ::= { coreroCMSMIBConformance 1 }
|
||||
coreroCMSMIBGroups OBJECT IDENTIFIER ::= { coreroCMSMIBConformance 2 }
|
||||
|
||||
|
||||
-- compliance statements
|
||||
|
||||
coreroCMSMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for SNMPv2 entities which
|
||||
implement the SNMPv2 MIB."
|
||||
MODULE -- this module
|
||||
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
|
||||
-- snmpBasicNotificationsGroup }
|
||||
|
||||
GROUP defenseGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for SNMPv2 entities which
|
||||
support community-based authentication."
|
||||
|
||||
::= { coreroCMSMIBCompliances 2 }
|
||||
|
||||
|
||||
-- units of conformance
|
||||
|
||||
defenseGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
defenseStatus,
|
||||
defenseStatistics,
|
||||
protectionGroupStatistics
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects providing status and statistics for the site."
|
||||
::= { coreroCMSMIBGroups 1 }
|
||||
|
||||
|
||||
END
|
458
MIBS/corero/CORERO-CMS-SEGMENTS-MIB
Normal file
458
MIBS/corero/CORERO-CMS-SEGMENTS-MIB
Normal file
@ -0,0 +1,458 @@
|
||||
CORERO-CMS-SEGMENTS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
|
||||
TimeTicks, Counter32, Unsigned32, Counter64, enterprises, IpAddress
|
||||
FROM SNMPv2-SMI
|
||||
DisplayString, TestAndIncr, TimeStamp, RowStatus, TruthValue, TEXTUAL-CONVENTION
|
||||
FROM SNMPv2-TC
|
||||
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
|
||||
FROM SNMPv2-CONF
|
||||
coreroCMSMIBObjects, coreroCMSMIBCompliances, coreroCMSMIBGroups
|
||||
FROM CORERO-CMS-MIB;
|
||||
|
||||
|
||||
segments MODULE-IDENTITY
|
||||
LAST-UPDATED "202006190000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
"info@corero.com"
|
||||
DESCRIPTION
|
||||
"Corero Management Server MIB."
|
||||
REVISION "201710040000Z"
|
||||
DESCRIPTION
|
||||
"Initial revision"
|
||||
REVISION "201712190000Z"
|
||||
DESCRIPTION
|
||||
"Updated to support revised operating-modes configuration"
|
||||
REVISION "201712280000Z"
|
||||
DESCRIPTION
|
||||
"Updated to add a new link status mode - unknown"
|
||||
REVISION "201802190000Z"
|
||||
DESCRIPTION
|
||||
"Changed bypass mode and state terminology to use inline instead of disabled"
|
||||
REVISION "201811230000Z"
|
||||
DESCRIPTION
|
||||
"Added 'unused' to Interface Status enumeration"
|
||||
REVISION "202006190000Z"
|
||||
DESCRIPTION
|
||||
"Added additional values to interface state enumeration"
|
||||
|
||||
::= { coreroCMSMIBObjects 4 }
|
||||
|
||||
segmentTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF SegmentEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of Segments"
|
||||
::= { segments 1 }
|
||||
|
||||
segmentEntry OBJECT-TYPE
|
||||
SYNTAX SegmentEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry within the Segment table which represents a single Segment"
|
||||
INDEX { segmentIndex }
|
||||
::= { segmentTable 1 }
|
||||
|
||||
SegmentEntry ::= SEQUENCE {
|
||||
segmentIndex INTEGER (1..2147483647),
|
||||
segmentDevice OCTET STRING,
|
||||
segmentId OCTET STRING,
|
||||
segmentName OCTET STRING,
|
||||
segmentDescription OCTET STRING,
|
||||
segmentLinkStatePropagationAdminState INTEGER,
|
||||
segmentLinkStatePropagationWaitTime INTEGER,
|
||||
segmentLinkStatePropagationRecoveryTimeout INTEGER,
|
||||
segmentConfiguredDefenseMode INTEGER,
|
||||
segmentNtdExternalInterface OCTET STRING,
|
||||
segmentNtdExternalInterfaceStatus INTEGER,
|
||||
segmentNtdExternalInterfaceLinkSpeed Unsigned32,
|
||||
segmentNtdInternalInterface OCTET STRING,
|
||||
segmentNtdInternalInterfaceStatus INTEGER,
|
||||
segmentNtdInternalInterfaceLinkSpeed Unsigned32,
|
||||
segmentNbaExternalInterface OCTET STRING,
|
||||
segmentNbaExternalInterfaceStatus INTEGER,
|
||||
segmentNbaExternalInterfaceLinkSpeed Unsigned32,
|
||||
segmentNbaInternalInterface OCTET STRING,
|
||||
segmentNbaInternalInterfaceStatus INTEGER,
|
||||
segmentNbaInternalInterfaceLinkSpeed Unsigned32,
|
||||
segmentCurrentDefenseMode INTEGER,
|
||||
segmentBypassDevice OCTET STRING,
|
||||
segmentConfiguredBypassMode INTEGER,
|
||||
segmentCurrentBypassMode INTEGER,
|
||||
segmentCurrentBypassState INTEGER,
|
||||
segmentDefenseModeOverride INTEGER,
|
||||
segmentBypassModeOverride INTEGER
|
||||
}
|
||||
|
||||
segmentIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The SNMP index of the Segment"
|
||||
::= { segmentEntry 1 }
|
||||
|
||||
segmentDevice OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device containing the Segment"
|
||||
::= { segmentEntry 2 }
|
||||
|
||||
segmentId OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The id of the Segment"
|
||||
::= { segmentEntry 3 }
|
||||
|
||||
segmentName OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Segment"
|
||||
::= { segmentEntry 4 }
|
||||
|
||||
segmentDescription OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The desciption of this Segment. If no description is entered, this is blank."
|
||||
::= { segmentEntry 5 }
|
||||
|
||||
segmentLinkStatePropagationAdminState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
disabled(1),
|
||||
enabled(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Whether this Segment has Link State Propagation enabled or disabled"
|
||||
::= { segmentEntry 6 }
|
||||
|
||||
segmentLinkStatePropagationWaitTime OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..360)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of seconds the CMS currently waits before propagating a link state change to the partner, when Link State Progagation is enabled"
|
||||
::= { segmentEntry 7 }
|
||||
|
||||
segmentLinkStatePropagationRecoveryTimeout OBJECT-TYPE
|
||||
SYNTAX INTEGER (0..360)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"Number of seconds the CMS currently waits after a link is brought back up before using its state to change partner state, when Link State Progagation is enabled"
|
||||
::= { segmentEntry 8 }
|
||||
|
||||
segmentConfiguredDefenseMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
monitor(0),
|
||||
mitigate(1),
|
||||
pass-through(2),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The configured Defense Mode of the Segment"
|
||||
::= { segmentEntry 9 }
|
||||
|
||||
segmentNtdExternalInterface OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Segment's external NTD interface"
|
||||
::= { segmentEntry 10 }
|
||||
|
||||
segmentNtdExternalInterfaceStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(0),
|
||||
down(1),
|
||||
down-link-state-propagation(2),
|
||||
disabled(3),
|
||||
unknown(4),
|
||||
unused(5),
|
||||
partially-down(6),
|
||||
down-remote-fault(7),
|
||||
down-local-fault(8)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Segment's external NTD interface"
|
||||
::= { segmentEntry 11 }
|
||||
|
||||
segmentNtdExternalInterfaceLinkSpeed OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The link speed of the Segment's external NTD interface in Mbit/s"
|
||||
::= { segmentEntry 12 }
|
||||
|
||||
segmentNtdInternalInterface OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Segment's internal NTD interface"
|
||||
::= { segmentEntry 13 }
|
||||
|
||||
segmentNtdInternalInterfaceStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(0),
|
||||
down(1),
|
||||
down-link-state-propagation(2),
|
||||
disabled(3),
|
||||
unknown(4),
|
||||
unused(5),
|
||||
partially-down(6),
|
||||
down-remote-fault(7),
|
||||
down-local-fault(8)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Segment's internal NTD interface"
|
||||
::= { segmentEntry 14 }
|
||||
|
||||
segmentNtdInternalInterfaceLinkSpeed OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The link speed of the Segment's internal NTD interface in Mbit/s"
|
||||
::= { segmentEntry 15 }
|
||||
|
||||
segmentNbaExternalInterface OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Segment's external NBA interface"
|
||||
::= { segmentEntry 16 }
|
||||
|
||||
segmentNbaExternalInterfaceStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(0),
|
||||
down(1),
|
||||
down-link-state-propagation(2),
|
||||
disabled(3),
|
||||
unknown(4),
|
||||
unused(5),
|
||||
partially-down(6),
|
||||
down-remote-fault(7),
|
||||
down-local-fault(8)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Segment's external NBA interface"
|
||||
::= { segmentEntry 17 }
|
||||
|
||||
segmentNbaExternalInterfaceLinkSpeed OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The link speed of the Segment's external NBA interface in Mbit/s"
|
||||
::= { segmentEntry 18 }
|
||||
|
||||
segmentNbaInternalInterface OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the Segment's internal NBA interface"
|
||||
::= { segmentEntry 19 }
|
||||
|
||||
segmentNbaInternalInterfaceStatus OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
up(0),
|
||||
down(1),
|
||||
down-link-state-propagation(2),
|
||||
disabled(3),
|
||||
unknown(4),
|
||||
unused(5),
|
||||
partially-down(6),
|
||||
down-remote-fault(7),
|
||||
down-local-fault(8)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current status of the Segment's internal NBA interface"
|
||||
::= { segmentEntry 20 }
|
||||
|
||||
segmentNbaInternalInterfaceLinkSpeed OBJECT-TYPE
|
||||
SYNTAX Unsigned32
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The link speed of the Segment's internal NBA interface in Mbit/s"
|
||||
::= { segmentEntry 21 }
|
||||
|
||||
segmentCurrentDefenseMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
monitor(0),
|
||||
mitigate(1),
|
||||
pass-through(2),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The Defense Mode the Segment is currently operating in"
|
||||
::= { segmentEntry 22 }
|
||||
|
||||
segmentBypassDevice OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The name of the external bypass device connected to the Segment. If there is no connected bypass device, this is blank."
|
||||
::= { segmentEntry 23 }
|
||||
|
||||
segmentConfiguredBypassMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
inline(0),
|
||||
automatic(1),
|
||||
physical-bypass(2),
|
||||
switched-bypass(3),
|
||||
monitor-tap(4),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The configured Bypass Mode for the Segment. If the Segment has no bypass capabilty, this shows blank."
|
||||
::= { segmentEntry 24 }
|
||||
|
||||
segmentCurrentBypassMode OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
inline(0),
|
||||
automatic(1),
|
||||
physical-bypass(2),
|
||||
switched-bypass(3),
|
||||
monitor-tap(4),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current Bypass Mode the Segment is operating in. If the Segment has no bypass capabilty, this shows not-applicable."
|
||||
::= { segmentEntry 25 }
|
||||
|
||||
segmentCurrentBypassState OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
inline(0),
|
||||
physical-bypass(1),
|
||||
switched-bypass(2),
|
||||
monitor-tap(3),
|
||||
automatic-inline(4),
|
||||
automatic-bypass(5),
|
||||
not-applicable(10)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current Bypass State the Segment is operating in. If the Segment has no bypass capabilty, this shows not-applicable."
|
||||
::= { segmentEntry 26 }
|
||||
|
||||
segmentDefenseModeOverride OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
none(0),
|
||||
segment(1),
|
||||
device(2),
|
||||
cluster(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The override level applied for the segment defense mode."
|
||||
::= { segmentEntry 27 }
|
||||
|
||||
segmentBypassModeOverride OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
none(0),
|
||||
segment(1),
|
||||
device(2),
|
||||
cluster(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The override level applied for the segment bypass mode."
|
||||
::= { segmentEntry 28 }
|
||||
|
||||
-- compliance statements
|
||||
|
||||
coreroCMSMIBCompliance MODULE-COMPLIANCE
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The compliance statement for SNMPv2 entities which
|
||||
implement the SNMPv2 MIB."
|
||||
MODULE -- this module
|
||||
-- MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup,
|
||||
-- snmpBasicNotificationsGroup }
|
||||
|
||||
GROUP coreroSegmentGroup
|
||||
DESCRIPTION
|
||||
"This group is mandatory for SNMPv2 entities which
|
||||
support community-based authentication."
|
||||
|
||||
::= { coreroCMSMIBCompliances 4 }
|
||||
|
||||
|
||||
-- units of conformance
|
||||
|
||||
coreroSegmentGroup OBJECT-GROUP
|
||||
OBJECTS {
|
||||
segmentIndex,
|
||||
segmentDevice,
|
||||
segmentId,
|
||||
segmentName,
|
||||
segmentDescription,
|
||||
segmentLinkStatePropagationAdminState,
|
||||
segmentLinkStatePropagationWaitTime,
|
||||
segmentLinkStatePropagationRecoveryTimeout,
|
||||
segmentConfiguredDefenseMode,
|
||||
segmentNtdExternalInterface,
|
||||
segmentNtdExternalInterfaceStatus,
|
||||
segmentNtdExternalInterfaceLinkSpeed,
|
||||
segmentNtdInternalInterface,
|
||||
segmentNtdInternalInterfaceStatus,
|
||||
segmentNtdInternalInterfaceLinkSpeed,
|
||||
segmentNbaExternalInterface,
|
||||
segmentNbaExternalInterfaceStatus,
|
||||
segmentNbaExternalInterfaceLinkSpeed,
|
||||
segmentNbaInternalInterface,
|
||||
segmentNbaInternalInterfaceStatus,
|
||||
segmentNbaInternalInterfaceLinkSpeed,
|
||||
segmentCurrentDefenseMode,
|
||||
segmentBypassDevice,
|
||||
segmentConfiguredBypassMode,
|
||||
segmentCurrentBypassMode,
|
||||
segmentCurrentBypassState,
|
||||
segmentDefenseModeOverride,
|
||||
segmentBypassModeOverride
|
||||
}
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A collection of objects providing status and statistics for the site."
|
||||
::= { coreroCMSMIBGroups 4 }
|
||||
|
||||
|
||||
END
|
1942
MIBS/corero/CORERO-CMS-STATISTICS-MIB
Normal file
1942
MIBS/corero/CORERO-CMS-STATISTICS-MIB
Normal file
File diff suppressed because it is too large
Load Diff
152
MIBS/corero/CORERO-CMS-SYSTEM-STATUS-MIB
Normal file
152
MIBS/corero/CORERO-CMS-SYSTEM-STATUS-MIB
Normal file
@ -0,0 +1,152 @@
|
||||
CORERO-CMS-SYSTEM-STATUS-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-TYPE FROM SNMPv2-SMI
|
||||
coreroCMSMIBObjects FROM CORERO-CMS-MIB;
|
||||
|
||||
systemStatus MODULE-IDENTITY
|
||||
LAST-UPDATED "202001230000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
"info@corero.com"
|
||||
DESCRIPTION
|
||||
"Represents current CMS status"
|
||||
REVISION "202001230000Z"
|
||||
DESCRIPTION
|
||||
"Initial revision"
|
||||
::= { coreroCMSMIBObjects 6 }
|
||||
|
||||
protection OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
warning(1),
|
||||
error(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current protection status"
|
||||
::= { systemStatus 1 }
|
||||
|
||||
device OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
warning(1),
|
||||
error(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current device status"
|
||||
::= { systemStatus 2 }
|
||||
|
||||
network OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
warning(1),
|
||||
error(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current network status"
|
||||
::= { systemStatus 3 }
|
||||
|
||||
issueTable OBJECT-TYPE
|
||||
SYNTAX SEQUENCE OF IssueEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The table of issues"
|
||||
::= { systemStatus 4 }
|
||||
|
||||
analytics OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
warning(1),
|
||||
error(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The current analytics status"
|
||||
::= { systemStatus 5 }
|
||||
|
||||
issueEntry OBJECT-TYPE
|
||||
SYNTAX IssueEntry
|
||||
MAX-ACCESS not-accessible
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"An entry within the issue table which represents a single issue"
|
||||
INDEX { issueIndex }
|
||||
::= { issueTable 1 }
|
||||
|
||||
|
||||
IssueEntry ::= SEQUENCE {
|
||||
issueIndex INTEGER (1..2147483647),
|
||||
issueType INTEGER,
|
||||
issueDevice OCTET STRING,
|
||||
issueSegment OCTET STRING,
|
||||
issueDescription OCTET STRING,
|
||||
issueSeverity INTEGER
|
||||
}
|
||||
|
||||
issueIndex OBJECT-TYPE
|
||||
SYNTAX INTEGER (1..2147483647)
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The issue index"
|
||||
::= { issueEntry 1 }
|
||||
|
||||
|
||||
issueType OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
protection(0),
|
||||
devices(1),
|
||||
network(2),
|
||||
analytics(3)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The issue type"
|
||||
::= { issueEntry 2 }
|
||||
|
||||
issueDevice OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The device for which issue was created"
|
||||
::= { issueEntry 3 }
|
||||
|
||||
issueSegment OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The segment for which issue was created"
|
||||
::= { issueEntry 4 }
|
||||
|
||||
issueDescription OBJECT-TYPE
|
||||
SYNTAX OCTET STRING
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The issue description"
|
||||
::= { issueEntry 5 }
|
||||
|
||||
issueSeverity OBJECT-TYPE
|
||||
SYNTAX INTEGER {
|
||||
normal(0),
|
||||
warning(1),
|
||||
error(2)
|
||||
}
|
||||
MAX-ACCESS read-only
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"The issue severity"
|
||||
::= { issueEntry 6 }
|
||||
|
||||
END
|
38
MIBS/corero/CORERO-MIB
Normal file
38
MIBS/corero/CORERO-MIB
Normal file
@ -0,0 +1,38 @@
|
||||
CORERO-MIB DEFINITIONS ::= BEGIN
|
||||
|
||||
IMPORTS
|
||||
MODULE-IDENTITY, OBJECT-IDENTITY, enterprises
|
||||
FROM SNMPv2-SMI;
|
||||
|
||||
corero MODULE-IDENTITY
|
||||
LAST-UPDATED "201706160000Z"
|
||||
ORGANIZATION "Corero Network Security"
|
||||
CONTACT-INFO
|
||||
" Corero Support
|
||||
E-mail: support.portal@corero.com"
|
||||
DESCRIPTION
|
||||
"Corero Management Server MIB."
|
||||
REVISION "201706160000Z"
|
||||
DESCRIPTION
|
||||
"Updated contact info."
|
||||
|
||||
REVISION "201404240000Z"
|
||||
DESCRIPTION
|
||||
"Initial version of this MIB module."
|
||||
::= { enterprises 41036 }
|
||||
|
||||
coreroRegistrations OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"This module defines the enterprises OID for Corero Network Security."
|
||||
::= { corero 1 }
|
||||
|
||||
coreroProducts OBJECT-IDENTITY
|
||||
STATUS current
|
||||
DESCRIPTION
|
||||
"A registration point under which all Corero AGENT-CAPABILIITES
|
||||
definitions (and therefore values of sysObjectId) are defined."
|
||||
::= { corero 2 }
|
||||
|
||||
END
|
||||
|
Reference in New Issue
Block a user