content
stringlengths 7
1.05M
|
---|
# Space: O(n)
# Time: O(n!)
class Solution:
def permuteUnique(self, nums):
def backtracking(nums_list, temp_list, res, visited):
if len(nums_list) == len(temp_list):
res.append(temp_list[:])
for i, num in enumerate(nums_list):
if visited[i]: continue
if i > 0 and nums_list[i] == nums_list[i - 1] and not visited[i - 1]: continue
temp_list.append(num)
visited[i] = True
backtracking(nums_list, temp_list, res, visited)
temp_list.pop()
visited[i] = False
return res
nums.sort()
visited = [False for _ in range(len(nums))]
return backtracking(nums, [], [], visited)
|
#
# PySNMP MIB module HH3C-NVGRE-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-NVGRE-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:16:01 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion")
hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
ModuleIdentity, IpAddress, MibIdentifier, TimeTicks, Gauge32, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, NotificationType, Integer32, Unsigned32, iso, Bits, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "IpAddress", "MibIdentifier", "TimeTicks", "Gauge32", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "NotificationType", "Integer32", "Unsigned32", "iso", "Bits", "ObjectIdentity")
DisplayString, TextualConvention, MacAddress, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "MacAddress", "RowStatus")
hh3cNvgre = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 156))
hh3cNvgre.setRevisions(('2014-03-11 09:00',))
if mibBuilder.loadTexts: hh3cNvgre.setLastUpdated('201403110900Z')
if mibBuilder.loadTexts: hh3cNvgre.setOrganization('Hangzhou H3C Technologies Co., Ltd.')
hh3cNvgreObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1))
hh3cNvgreScalarGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1))
hh3cNvgreNextNvgreID = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreNextNvgreID.setStatus('current')
hh3cNvgreConfigured = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreConfigured.setStatus('current')
hh3cNvgreTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2), )
if mibBuilder.loadTexts: hh3cNvgreTable.setStatus('current')
hh3cNvgreEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreID"))
if mibBuilder.loadTexts: hh3cNvgreEntry.setStatus('current')
hh3cNvgreID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 1), Unsigned32())
if mibBuilder.loadTexts: hh3cNvgreID.setStatus('current')
hh3cNvgreVsiIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cNvgreVsiIndex.setStatus('current')
hh3cNvgreRemoteMacCount = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreRemoteMacCount.setStatus('current')
hh3cNvgreRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 4), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cNvgreRowStatus.setStatus('current')
hh3cNvgreTunnelTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3), )
if mibBuilder.loadTexts: hh3cNvgreTunnelTable.setStatus('current')
hh3cNvgreTunnelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreID"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreTunnelID"))
if mibBuilder.loadTexts: hh3cNvgreTunnelEntry.setStatus('current')
hh3cNvgreTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 1), Unsigned32())
if mibBuilder.loadTexts: hh3cNvgreTunnelID.setStatus('current')
hh3cNvgreTunnelRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 2), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cNvgreTunnelRowStatus.setStatus('current')
hh3cNvgreTunnelOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 3), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreTunnelOctets.setStatus('current')
hh3cNvgreTunnelPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 4), Counter64()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreTunnelPackets.setStatus('current')
hh3cNvgreTunnelBoundTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4), )
if mibBuilder.loadTexts: hh3cNvgreTunnelBoundTable.setStatus('current')
hh3cNvgreTunnelBoundEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreTunnelID"))
if mibBuilder.loadTexts: hh3cNvgreTunnelBoundEntry.setStatus('current')
hh3cNvgreTunnelBoundNvgreNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreTunnelBoundNvgreNum.setStatus('current')
hh3cNvgreMacTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5), )
if mibBuilder.loadTexts: hh3cNvgreMacTable.setStatus('current')
hh3cNvgreMacEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreVsiIndex"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreMacAddr"))
if mibBuilder.loadTexts: hh3cNvgreMacEntry.setStatus('current')
hh3cNvgreMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 1), MacAddress())
if mibBuilder.loadTexts: hh3cNvgreMacAddr.setStatus('current')
hh3cNvgreMacTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreMacTunnelID.setStatus('current')
hh3cNvgreMacType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("selfLearned", 1), ("staticConfigured", 2), ("protocolLearned", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cNvgreMacType.setStatus('current')
hh3cNvgreStaticMacTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6), )
if mibBuilder.loadTexts: hh3cNvgreStaticMacTable.setStatus('current')
hh3cNvgreStaticMacEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreVsiIndex"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreStaticMacAddr"))
if mibBuilder.loadTexts: hh3cNvgreStaticMacEntry.setStatus('current')
hh3cNvgreStaticMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 1), MacAddress())
if mibBuilder.loadTexts: hh3cNvgreStaticMacAddr.setStatus('current')
hh3cNvgreStaticMacTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 2), Unsigned32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cNvgreStaticMacTunnelID.setStatus('current')
hh3cNvgreStaticMacRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: hh3cNvgreStaticMacRowStatus.setStatus('current')
mibBuilder.exportSymbols("HH3C-NVGRE-MIB", hh3cNvgreScalarGroup=hh3cNvgreScalarGroup, hh3cNvgreTunnelBoundNvgreNum=hh3cNvgreTunnelBoundNvgreNum, hh3cNvgreConfigured=hh3cNvgreConfigured, hh3cNvgreTable=hh3cNvgreTable, hh3cNvgreMacTunnelID=hh3cNvgreMacTunnelID, hh3cNvgreRowStatus=hh3cNvgreRowStatus, hh3cNvgreTunnelBoundEntry=hh3cNvgreTunnelBoundEntry, hh3cNvgreObjects=hh3cNvgreObjects, hh3cNvgreTunnelEntry=hh3cNvgreTunnelEntry, hh3cNvgreStaticMacAddr=hh3cNvgreStaticMacAddr, hh3cNvgreStaticMacTunnelID=hh3cNvgreStaticMacTunnelID, hh3cNvgreTunnelTable=hh3cNvgreTunnelTable, hh3cNvgreNextNvgreID=hh3cNvgreNextNvgreID, PYSNMP_MODULE_ID=hh3cNvgre, hh3cNvgreTunnelID=hh3cNvgreTunnelID, hh3cNvgre=hh3cNvgre, hh3cNvgreRemoteMacCount=hh3cNvgreRemoteMacCount, hh3cNvgreTunnelOctets=hh3cNvgreTunnelOctets, hh3cNvgreMacEntry=hh3cNvgreMacEntry, hh3cNvgreID=hh3cNvgreID, hh3cNvgreTunnelPackets=hh3cNvgreTunnelPackets, hh3cNvgreVsiIndex=hh3cNvgreVsiIndex, hh3cNvgreMacType=hh3cNvgreMacType, hh3cNvgreTunnelBoundTable=hh3cNvgreTunnelBoundTable, hh3cNvgreMacTable=hh3cNvgreMacTable, hh3cNvgreStaticMacRowStatus=hh3cNvgreStaticMacRowStatus, hh3cNvgreTunnelRowStatus=hh3cNvgreTunnelRowStatus, hh3cNvgreStaticMacEntry=hh3cNvgreStaticMacEntry, hh3cNvgreMacAddr=hh3cNvgreMacAddr, hh3cNvgreEntry=hh3cNvgreEntry, hh3cNvgreStaticMacTable=hh3cNvgreStaticMacTable)
|
def isPrime(n):
if n<=3 :
return True
for i in range(2, n):
if n%i==0:
return False
return True
a,b = map(int, input().split())
flag = True
if not isPrime(a) or not isPrime(b):
flag = False
print("NO")
else :
for i in range(a+1,b):
if isPrime(i):
flag = False
print("NO")
break
if flag:
print("YES")
|
def binary_search_recursive(array, element, start, end):
if start > end:
return -1
mid = (start + end) // 2
if element < array[mid]:
return binary_search_recursive(array, element, start, mid - 1)
else:
return binary_search_recursive(array, element, mid + 1, end)
element = 18
array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29]
print("Searching for {}".format(element))
print("Index of {}: {}".format(element, binary_search_recursive(array, element, 0, len(array))))
def binary_search_iterative(array, element):
mid = 0
start = 0
end = len(array)
step = 0
while (start <= end):
print("Subarray in step {}: {}".format(step, str(array[start:end+1])))
step = step+1
mid = (start + end) // 2
if element == array[mid]:
return mid
if element < array[mid]:
end = mid - 1
else:
start = mid + 1
return -1
array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29]
element = 18
print("Searching for {} in {}".format(element, array))
print("Index of {}: {}".format(element, binary_search_iterative(array, element))) |
_base_ = './faster_rcnn_r50_fpn_1x_voc0712_cocofmt.py'
model = dict(
rpn_head=dict(loss_bbox=dict(type='MSELoss', loss_weight=1.0)),
roi_head=dict(
bbox_head=dict(
loss_bbox=dict(type='MSELoss', loss_weight=1.0))))
optimizer_config = dict(
_delete_=True, grad_clip=dict(max_norm=35, norm_type=2))
work_dir = './work_dirs/voc/reg_loss/faster_rcnn/faster_rcnn_r50_fpn_l2_1x_voc0712_cocofmt'
|
no_of_labels=4
no_of_iterations = 10
graph = {
'a': {('b', 1), ('e', 4),('c',2)},
'b': {('a',1),('c', 3), ('d',3),('e',4)},
'c': {('a',2),('d',1),('b',3)},
'd': {('b',3),('e',1), ('c',1)},
'e': {('d',1),('a',4),('b',4)}
} |
# Read one line of data
file = open('myfile.txt', 'r')
line_of_data = file.readline()
print(line_of_data, end='')
file.close()
|
#
# PySNMP MIB module Nortel-Magellan-Passport-VnetEtsiQsigMIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-Magellan-Passport-VnetEtsiQsigMIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:19:14 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion")
StorageType, Unsigned32, RowStatus, DisplayString = mibBuilder.importSymbols("Nortel-Magellan-Passport-StandardTextualConventionsMIB", "StorageType", "Unsigned32", "RowStatus", "DisplayString")
Link, NonReplicated = mibBuilder.importSymbols("Nortel-Magellan-Passport-TextualConventionsMIB", "Link", "NonReplicated")
passportMIBs, = mibBuilder.importSymbols("Nortel-Magellan-Passport-UsefulDefinitionsMIB", "passportMIBs")
sigChan, sigChanIndex = mibBuilder.importSymbols("Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChan", "sigChanIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ObjectIdentity, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, IpAddress, MibIdentifier, iso, TimeTicks, Counter64, Integer32, Counter32, Gauge32, Unsigned32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "IpAddress", "MibIdentifier", "iso", "TimeTicks", "Counter64", "Integer32", "Counter32", "Gauge32", "Unsigned32", "ModuleIdentity")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
vnetEtsiQsigMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110))
sigChanEQsig = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2))
sigChanEQsigRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1), )
if mibBuilder.loadTexts: sigChanEQsigRowStatusTable.setStatus('mandatory')
sigChanEQsigRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigRowStatusEntry.setStatus('mandatory')
sigChanEQsigRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigRowStatus.setStatus('mandatory')
sigChanEQsigComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigComponentName.setStatus('mandatory')
sigChanEQsigStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigStorageType.setStatus('mandatory')
sigChanEQsigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: sigChanEQsigIndex.setStatus('mandatory')
sigChanEQsigL2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11), )
if mibBuilder.loadTexts: sigChanEQsigL2Table.setStatus('mandatory')
sigChanEQsigL2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigL2Entry.setStatus('mandatory')
sigChanEQsigT23 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 15)).clone(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigT23.setStatus('mandatory')
sigChanEQsigT200 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 20)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigT200.setStatus('mandatory')
sigChanEQsigN200 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)).clone(3)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigN200.setStatus('mandatory')
sigChanEQsigT203 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(2, 40)).clone(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigT203.setStatus('mandatory')
sigChanEQsigCircuitSwitchedK = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(7)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigCircuitSwitchedK.setStatus('mandatory')
sigChanEQsigL3Table = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12), )
if mibBuilder.loadTexts: sigChanEQsigL3Table.setStatus('mandatory')
sigChanEQsigL3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigL3Entry.setStatus('mandatory')
sigChanEQsigT309 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(15, 120)).clone(90)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigT309.setStatus('mandatory')
sigChanEQsigT310 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(10, 120)).clone(30)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigT310.setStatus('mandatory')
sigChanEQsigProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13), )
if mibBuilder.loadTexts: sigChanEQsigProvTable.setStatus('mandatory')
sigChanEQsigProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigProvEntry.setStatus('mandatory')
sigChanEQsigSide = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("network", 1), ("user", 2))).clone('network')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigSide.setStatus('mandatory')
sigChanEQsigMaxNonCallConcurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(30)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigMaxNonCallConcurrent.setStatus('mandatory')
sigChanEQsigOverlapSendingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigOverlapSendingEnabled.setStatus('mandatory')
sigChanEQsigOverlapReceivingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigOverlapReceivingEnabled.setStatus('mandatory')
sigChanEQsigStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14), )
if mibBuilder.loadTexts: sigChanEQsigStateTable.setStatus('mandatory')
sigChanEQsigStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigStateEntry.setStatus('mandatory')
sigChanEQsigAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigAdminState.setStatus('mandatory')
sigChanEQsigOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigOperationalState.setStatus('mandatory')
sigChanEQsigUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigUsageState.setStatus('mandatory')
sigChanEQsigStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15), )
if mibBuilder.loadTexts: sigChanEQsigStatsTable.setStatus('mandatory')
sigChanEQsigStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigStatsEntry.setStatus('mandatory')
sigChanEQsigTotalCallsToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigTotalCallsToIf.setStatus('mandatory')
sigChanEQsigTotalCallsFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigTotalCallsFromIf.setStatus('mandatory')
sigChanEQsigNonCallAssocSessionsToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsToIf.setStatus('mandatory')
sigChanEQsigNonCallAssocSessionsFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsFromIf.setStatus('mandatory')
sigChanEQsigOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16), )
if mibBuilder.loadTexts: sigChanEQsigOperTable.setStatus('mandatory')
sigChanEQsigOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigOperEntry.setStatus('mandatory')
sigChanEQsigActiveChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigActiveChannels.setStatus('mandatory')
sigChanEQsigActiveVoiceChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigActiveVoiceChannels.setStatus('mandatory')
sigChanEQsigActiveDataChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigActiveDataChannels.setStatus('mandatory')
sigChanEQsigPeakActiveChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigPeakActiveChannels.setStatus('mandatory')
sigChanEQsigPeakActiveVoiceChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigPeakActiveVoiceChannels.setStatus('mandatory')
sigChanEQsigPeakActiveDataChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigPeakActiveDataChannels.setStatus('mandatory')
sigChanEQsigDChanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("outOfService", 0), ("establishing", 1), ("established", 2), ("enabling", 3), ("inService", 4), ("restarting", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigDChanStatus.setStatus('mandatory')
sigChanEQsigToolsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17), )
if mibBuilder.loadTexts: sigChanEQsigToolsTable.setStatus('mandatory')
sigChanEQsigToolsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigToolsEntry.setStatus('mandatory')
sigChanEQsigTracing = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigTracing.setStatus('mandatory')
sigChanEQsigEQsigSpecificProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18), )
if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvTable.setStatus('mandatory')
sigChanEQsigEQsigSpecificProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvEntry.setStatus('mandatory')
sigChanEQsigMsgSegmentation = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('disabled')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigMsgSegmentation.setStatus('mandatory')
sigChanEQsigE1ChannelNumbers = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("skip16", 1), ("contiguous", 2))).clone('skip16')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigE1ChannelNumbers.setStatus('mandatory')
sigChanEQsigEQsigSpecificOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19), )
if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpTable.setStatus('mandatory')
sigChanEQsigEQsigSpecificOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"))
if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpEntry.setStatus('mandatory')
sigChanEQsigSegmentationAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigSegmentationAccepted.setStatus('mandatory')
sigChanEQsigSegmentationFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigSegmentationFailed.setStatus('mandatory')
sigChanEQsigFramer = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2))
sigChanEQsigFramerRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1), )
if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusTable.setStatus('mandatory')
sigChanEQsigFramerRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex"))
if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusEntry.setStatus('mandatory')
sigChanEQsigFramerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerRowStatus.setStatus('mandatory')
sigChanEQsigFramerComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerComponentName.setStatus('mandatory')
sigChanEQsigFramerStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerStorageType.setStatus('mandatory')
sigChanEQsigFramerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 10), NonReplicated())
if mibBuilder.loadTexts: sigChanEQsigFramerIndex.setStatus('mandatory')
sigChanEQsigFramerProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10), )
if mibBuilder.loadTexts: sigChanEQsigFramerProvTable.setStatus('mandatory')
sigChanEQsigFramerProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex"))
if mibBuilder.loadTexts: sigChanEQsigFramerProvEntry.setStatus('mandatory')
sigChanEQsigFramerInterfaceName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1, 1), Link()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sigChanEQsigFramerInterfaceName.setStatus('mandatory')
sigChanEQsigFramerStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12), )
if mibBuilder.loadTexts: sigChanEQsigFramerStateTable.setStatus('mandatory')
sigChanEQsigFramerStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex"))
if mibBuilder.loadTexts: sigChanEQsigFramerStateEntry.setStatus('mandatory')
sigChanEQsigFramerAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerAdminState.setStatus('mandatory')
sigChanEQsigFramerOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerOperationalState.setStatus('mandatory')
sigChanEQsigFramerUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerUsageState.setStatus('mandatory')
sigChanEQsigFramerStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13), )
if mibBuilder.loadTexts: sigChanEQsigFramerStatsTable.setStatus('mandatory')
sigChanEQsigFramerStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex"))
if mibBuilder.loadTexts: sigChanEQsigFramerStatsEntry.setStatus('mandatory')
sigChanEQsigFramerFrmToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerFrmToIf.setStatus('mandatory')
sigChanEQsigFramerFrmFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerFrmFromIf.setStatus('mandatory')
sigChanEQsigFramerOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerOctetFromIf.setStatus('mandatory')
sigChanEQsigFramerAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerAborts.setStatus('mandatory')
sigChanEQsigFramerCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerCrcErrors.setStatus('mandatory')
sigChanEQsigFramerLrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerLrcErrors.setStatus('mandatory')
sigChanEQsigFramerNonOctetErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerNonOctetErrors.setStatus('mandatory')
sigChanEQsigFramerOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerOverruns.setStatus('mandatory')
sigChanEQsigFramerUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerUnderruns.setStatus('mandatory')
sigChanEQsigFramerLargeFrmErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sigChanEQsigFramerLargeFrmErrors.setStatus('mandatory')
vnetEtsiQsigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1))
vnetEtsiQsigGroupBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5))
vnetEtsiQsigGroupBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2))
vnetEtsiQsigGroupBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2, 2))
vnetEtsiQsigCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3))
vnetEtsiQsigCapabilitiesBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5))
vnetEtsiQsigCapabilitiesBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2))
vnetEtsiQsigCapabilitiesBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2, 2))
mibBuilder.exportSymbols("Nortel-Magellan-Passport-VnetEtsiQsigMIB", sigChanEQsigSegmentationAccepted=sigChanEQsigSegmentationAccepted, sigChanEQsigFramerFrmToIf=sigChanEQsigFramerFrmToIf, sigChanEQsigOperEntry=sigChanEQsigOperEntry, sigChanEQsigFramerStorageType=sigChanEQsigFramerStorageType, sigChanEQsigStorageType=sigChanEQsigStorageType, vnetEtsiQsigGroupBE01A=vnetEtsiQsigGroupBE01A, sigChanEQsigFramerProvTable=sigChanEQsigFramerProvTable, sigChanEQsigTotalCallsFromIf=sigChanEQsigTotalCallsFromIf, sigChanEQsig=sigChanEQsig, sigChanEQsigFramerInterfaceName=sigChanEQsigFramerInterfaceName, sigChanEQsigTotalCallsToIf=sigChanEQsigTotalCallsToIf, sigChanEQsigFramerLargeFrmErrors=sigChanEQsigFramerLargeFrmErrors, sigChanEQsigToolsTable=sigChanEQsigToolsTable, sigChanEQsigCircuitSwitchedK=sigChanEQsigCircuitSwitchedK, sigChanEQsigEQsigSpecificOpTable=sigChanEQsigEQsigSpecificOpTable, sigChanEQsigProvEntry=sigChanEQsigProvEntry, sigChanEQsigEQsigSpecificProvTable=sigChanEQsigEQsigSpecificProvTable, sigChanEQsigFramerStatsEntry=sigChanEQsigFramerStatsEntry, sigChanEQsigOverlapReceivingEnabled=sigChanEQsigOverlapReceivingEnabled, sigChanEQsigIndex=sigChanEQsigIndex, sigChanEQsigL2Entry=sigChanEQsigL2Entry, sigChanEQsigOverlapSendingEnabled=sigChanEQsigOverlapSendingEnabled, sigChanEQsigProvTable=sigChanEQsigProvTable, sigChanEQsigSide=sigChanEQsigSide, sigChanEQsigFramerUsageState=sigChanEQsigFramerUsageState, sigChanEQsigFramerAborts=sigChanEQsigFramerAborts, sigChanEQsigNonCallAssocSessionsFromIf=sigChanEQsigNonCallAssocSessionsFromIf, sigChanEQsigL3Entry=sigChanEQsigL3Entry, sigChanEQsigFramerCrcErrors=sigChanEQsigFramerCrcErrors, sigChanEQsigFramerRowStatusTable=sigChanEQsigFramerRowStatusTable, sigChanEQsigL2Table=sigChanEQsigL2Table, sigChanEQsigFramer=sigChanEQsigFramer, sigChanEQsigEQsigSpecificProvEntry=sigChanEQsigEQsigSpecificProvEntry, sigChanEQsigPeakActiveDataChannels=sigChanEQsigPeakActiveDataChannels, sigChanEQsigFramerComponentName=sigChanEQsigFramerComponentName, vnetEtsiQsigCapabilitiesBE01=vnetEtsiQsigCapabilitiesBE01, sigChanEQsigFramerOctetFromIf=sigChanEQsigFramerOctetFromIf, sigChanEQsigDChanStatus=sigChanEQsigDChanStatus, sigChanEQsigFramerFrmFromIf=sigChanEQsigFramerFrmFromIf, sigChanEQsigTracing=sigChanEQsigTracing, sigChanEQsigToolsEntry=sigChanEQsigToolsEntry, vnetEtsiQsigGroupBE01=vnetEtsiQsigGroupBE01, sigChanEQsigT200=sigChanEQsigT200, sigChanEQsigOperationalState=sigChanEQsigOperationalState, sigChanEQsigRowStatusTable=sigChanEQsigRowStatusTable, sigChanEQsigActiveChannels=sigChanEQsigActiveChannels, vnetEtsiQsigGroupBE=vnetEtsiQsigGroupBE, sigChanEQsigN200=sigChanEQsigN200, sigChanEQsigMaxNonCallConcurrent=sigChanEQsigMaxNonCallConcurrent, sigChanEQsigT23=sigChanEQsigT23, sigChanEQsigEQsigSpecificOpEntry=sigChanEQsigEQsigSpecificOpEntry, sigChanEQsigT203=sigChanEQsigT203, sigChanEQsigL3Table=sigChanEQsigL3Table, sigChanEQsigT310=sigChanEQsigT310, sigChanEQsigStatsTable=sigChanEQsigStatsTable, sigChanEQsigRowStatusEntry=sigChanEQsigRowStatusEntry, vnetEtsiQsigCapabilities=vnetEtsiQsigCapabilities, sigChanEQsigOperTable=sigChanEQsigOperTable, sigChanEQsigActiveVoiceChannels=sigChanEQsigActiveVoiceChannels, sigChanEQsigPeakActiveChannels=sigChanEQsigPeakActiveChannels, sigChanEQsigT309=sigChanEQsigT309, sigChanEQsigFramerAdminState=sigChanEQsigFramerAdminState, sigChanEQsigFramerRowStatusEntry=sigChanEQsigFramerRowStatusEntry, sigChanEQsigFramerNonOctetErrors=sigChanEQsigFramerNonOctetErrors, sigChanEQsigAdminState=sigChanEQsigAdminState, vnetEtsiQsigGroup=vnetEtsiQsigGroup, vnetEtsiQsigCapabilitiesBE=vnetEtsiQsigCapabilitiesBE, sigChanEQsigFramerProvEntry=sigChanEQsigFramerProvEntry, sigChanEQsigFramerStateEntry=sigChanEQsigFramerStateEntry, sigChanEQsigComponentName=sigChanEQsigComponentName, sigChanEQsigFramerStatsTable=sigChanEQsigFramerStatsTable, sigChanEQsigFramerStateTable=sigChanEQsigFramerStateTable, sigChanEQsigActiveDataChannels=sigChanEQsigActiveDataChannels, sigChanEQsigUsageState=sigChanEQsigUsageState, sigChanEQsigFramerLrcErrors=sigChanEQsigFramerLrcErrors, sigChanEQsigFramerOperationalState=sigChanEQsigFramerOperationalState, sigChanEQsigMsgSegmentation=sigChanEQsigMsgSegmentation, sigChanEQsigRowStatus=sigChanEQsigRowStatus, sigChanEQsigNonCallAssocSessionsToIf=sigChanEQsigNonCallAssocSessionsToIf, sigChanEQsigFramerIndex=sigChanEQsigFramerIndex, sigChanEQsigPeakActiveVoiceChannels=sigChanEQsigPeakActiveVoiceChannels, sigChanEQsigFramerRowStatus=sigChanEQsigFramerRowStatus, sigChanEQsigStatsEntry=sigChanEQsigStatsEntry, sigChanEQsigFramerUnderruns=sigChanEQsigFramerUnderruns, sigChanEQsigSegmentationFailed=sigChanEQsigSegmentationFailed, sigChanEQsigStateTable=sigChanEQsigStateTable, sigChanEQsigFramerOverruns=sigChanEQsigFramerOverruns, vnetEtsiQsigMIB=vnetEtsiQsigMIB, sigChanEQsigStateEntry=sigChanEQsigStateEntry, vnetEtsiQsigCapabilitiesBE01A=vnetEtsiQsigCapabilitiesBE01A, sigChanEQsigE1ChannelNumbers=sigChanEQsigE1ChannelNumbers)
|
# -*- coding: utf-8 -*-
# (N.B : the site root is also related to the nginx conf!)
SITE_ROOT = "__YNH_APP_WEBPATH__"
DEBUG = False
TEMPLATE_DEBUG = False
|
#VERSION: 1.0
INFO = {"initwin":("init_window","Window initializer(only for Windows)")}
RLTS = {"cls":("iccode","os","json"),"funcs":("echo","get_args","edit_userconf"),"vars":("BLOCK","ECHO","OS")}
def init_window(cmd):
global ECHO
opts = get_args(cmd)
for i in opts:
if i in ("-h,--help"):
echo(1,"""Window initializer(only for Windows)
the configs of window color, title, etc. are in the basic user config.
to edit please use the command of \"edconf\"
for window color code please use \"color /help\" for help
Usage: chpwd
-h --help - display this page
Examples:
>initwin
""")
else:
echo(1,"[ERROR] unhandled option \"" + i + "\", try \"-h\" tag for help")
return
try:
configs = BLOCK.read("user/user.json")
coder = iccode(PWD)
configs = coder.decode(configs)
configs = configs.decode()
configs = json.loads(configs)
if PWD != configs["iccode_key"]:
raise Exception("user config file value didn't match")
else:
pass
except Exception as err:
echo(1,"[ERROR] Failed to read block config file: " + str(err) + ", file may be broken")
return
stat = "window_color" in configs and "window_title" in configs
if not stat:
echo(1,"windowinit configs not found, creating by default")
ECHO = False
edit_userconf("-e window_color -v 07")
edit_userconf("-e window_title -v ICLab")
ECHO = True
try:
configs = BLOCK.read("user/user.json")
coder = iccode(PWD)
configs = coder.decode(configs)
configs = configs.decode()
configs = json.loads(configs)
if PWD != configs["iccode_key"]:
raise Exception("user config file value didn't match")
else:
pass
except Exception as err:
echo(1,"[ERROR] Failed to read block config file: " + str(err) + ", file may be broken")
return
if OS == "win":
os.system("title " + configs["window_title"])
os.system("color " + configs["window_color"])
else:
pass
# [AUTORUN]
init_window("")
|
class TestarosaPyError(Exception):
...
class AnotherError(TestarosaPyError):
...
|
def upper_case_first_param(func):
def wrapper(text):
return func(text.upper())
return wrapper
@upper_case_first_param
def recibed_a_msg(name: str) -> str:
return f"{name}, you has received a message."
@upper_case_first_param
def uppercase(msg: str) -> str:
return msg
if __name__ == "__main__":
print(recibed_a_msg("Cesar"))
print(uppercase("hello world!"))
|
"""
This file analyzes a game state and determines the next (group of) cells to mark grey or blue.
The output file for this will be "${GAMESTATE_FILENAME}_soln".
The data output will consist of:
1. An array of cells to mark as blue
2. An array of cells to mark as grey
3. An array of data structures to mark as completed
"""
|
class FlagRegion:
def __init__(self, name, format, icon, mode):
self.name = name
self.format = format
self.icon = icon
self.mode = mode
|
class Status(object):
'''Object to represent row in status table
Attributes:
conn: database connection, usually sqlite3 connection object
name: name of pipeline job running
display_name: pretty formatted display name for pipeline
last_ran: UNIX timestamp (number) for last complete run
start_time: UNIX timestamp (number) for last complete run start
status: string representing status/errors with the pipeline
num_lines: if successful, number of lines processed
input_checksum: a checksum of the input's contents
'''
def __init__(
self, conn, name, display_name, last_ran, start_time,
status, frequency, num_lines, input_checksum
):
self.conn = conn
self.name = name
self.display_name = display_name
self.last_ran = last_ran
self.start_time = start_time
self.status = status
self.num_lines = num_lines
self.input_checksum = input_checksum
def update(self, **kwargs):
'''Update the Status object with passed kwargs and write the result
'''
for k, v in kwargs.items():
setattr(self, k, v)
self.write()
def write(self):
'''Insert or replace a status row
'''
cur = self.conn.cursor()
cur.execute(
'''
INSERT OR REPLACE INTO status (
name, display_name, last_ran, start_time,
input_checksum, status, num_lines
) VALUES (?, ?, ?, ?, ?, ?, ?)
''', (
self.name, self.display_name, self.last_ran,
self.start_time, self.input_checksum,
self.status, self.num_lines
)
)
self.conn.commit()
|
"""
9. Palindrome Number
https://leetcode.com/problems/palindrome-number/description/
"""
class Solution:
def isPalindrome(self, x):
"""
:type x: int
:rtype: bool
"""
if x < 0:
return False
if x % 10 == x:
return True
before, after = x, 0
while before > 0:
after *= 10
after += (before % 10)
before //= 10
return after == x
# a = Solution()
# assert a.isPalindrome(1)
# assert a.isPalindrome(10) == False
# assert a.isPalindrome(11)
# assert a.isPalindrome(111)
# assert a.isPalindrome(121)
# assert a.isPalindrome(12321)
# assert a.isPalindrome(-12321) == False
|
# clean = open("../data/fics_2017_HvC.pgn", "w+")
# with open("../data/fics_2017_HvC_raw.pgn") as raw:
# for i, line in enumerate(raw):
# if (i % 1000): print(i)
# if "\r\n" in line:
# clean.write(line.replace("\r\n", "\n"))
# else:
# clean.write("\n\n")
# clean.write("\n\n")
def writeEOF(src):
with open(src, "a") as f:
f.write("EOF\n")
writeEOF("../data/fics_2017_HvC.pgn")
writeEOF("../data/games.pgn")
|
ABSATER = 'ABSATER'
ATTRIB = 'ATTRIB'
INVATR = 'INVATR'
OBJECT = 'OBJECT'
RDSET = 'RDSET'
RSET = 'RSET'
SET = 'SET'
ComponentRole = {
'000': ABSATER,
'001': ATTRIB,
'010': INVATR,
'011': OBJECT,
'100': 'reserved',
'101': RDSET,
'110': RSET,
'111': SET
}
"""
- An EFLR begins with a Set components. Type in Set is mandatory, name is optional.
- A Redundant Set is an identical copy of some Set written previously in the same Logical File, including the Set
Name and Type. If a Redundant Set is has a null Name, then the Set of which it is a copy must be the only Set in the
same Logical File of the same Type, excluding other Redundant Sets, preceding the given Redundant Set.
- A Replacement Set has the same Type and (non-null) Name, the same Template, and the same Objects (none added,
none deleted) in the same order as a Set written previously in the same Logical File. However, the Attributes of the
Replacement Set reflect all updates that may have been applied since the original Set was written. A Replacement
Set can be written anywhere in a Logical File following the original Set that it replaces. There may be any number
of Replacement Sets for a given original Set.
- Then Template follows Set. Template is just a collection of Attribute Components and/or Invariant Attribute
Components. This define the structures of the objects in this Set. All Components in the Template must have
distinct, non-null Labels.
- Object components follows the Template. Object name is manadatory,
- Attribute component.
- All Attributes in the same "column" of a Set must have the same Attribute Label, namely,
the one specified in the Template Attribute Component. Therefore, Attribute Components that follow Object Components
must not have Attribute Labels (because it is already defined in Template).
- The remaining Characteristics may be freely specified by an Object's Attribute Components. Any Characteristic
not present assumes the local default value as specified in the corresponding Attribute Component in the Template.
- Missing Attribute Components imply that local defaults should be used for the Characteristics of the
corresponding Attribute. Since Attribute order is important within a Set, only trailing Attribute Components can be
omitted.
- An Attribute is considered to be Absent for an Object when its Attribute Component is
replaced by an Absent Attribute Component. An Absent Attribute is one for which no
information is provided, not even default meaning.
"""
class Component(object):
"""
Represent Component in RP 66, super class for set, object, attribute
"""
def toJSON(self):
return self.__dict__
class Object(Component):
"""
Object. Each object only have two things: name and a list of attributes.
"""
def __init__(self):
self._name = None
self._attributes= []
@property
def name(self):
"""
:return:
:rtype: ObName
"""
return self._name
@property
def attributes(self):
return self._attributes
def __str__(self):
attrStr = "\n ".join(map(str, self.attributes))
return "Object[name:{} with attributes:\n{}]".format(self.name, attrStr)
class Attribute(Component):
"""
Represent Attribute in RP66.
"""
def __init__(self):
self._label = ''
self._count = 1
# default rep code is 19.
self._repCode = 19
self._units = ''
self._value = None
def clone(self, attr):
attr._label = self._label
attr._count = self._count
attr._repCode = self._repCode
attr._units = self._units
attr._value = self._value
return attr
def __str__(self):
return "Attribute[label:{} count:{} repCode:{} units:{} value:{}]".\
format(self._label, self._count, self._repCode, self._units, self._value)
@property
def value(self):
return self._value
@property
def label(self):
return self._label
@property
def count(self):
return self._count
@property
def repCode(self):
return self._repCode
@property
def units(self):
return self._units
class AbsentAttribute(Attribute):
"""
Represent Absent Attribute.
"""
def __init__(self, attr):
self._label = attr._label
self._count = attr._count
self._repCode = attr._repCode
self._units = attr._units
self._value = attr._value
class InvariantAttribute(Attribute):
"""
Represent Invariant attribute.
"""
pass
class Set(Component):
"""
Represent set. Set is central piece in EFLR, each set has a name, type and a template which defines attributes each
of objects should have, then a list of objects.
"""
def __init__(self):
self._type = None
self._name = None
self.template = None
self.objects = []
@property
def type(self):
return self._type
@property
def name(self):
return self._name
def __str__(self):
return 'Set[type:{} name:{} numOfObjects:{}]'.format(self._type, self._name, len(self.objects))
class RedundantSet(Set):
"""
Represent Redundant set.
"""
pass
class ReplacementSet(Set):
"""
Represent replacementset.
"""
pass
class Template(object):
"""
Template. Template only contains a list of attribute which should be included in each objects in the same set.
It is similar to database columns.
"""
def __init__(self):
self._attrList = []
@property
def attrList(self):
return self._attrList
def __str__(self):
attrListStr = '\n '.join(map(str, self._attrList))
return "Template with attributes [\n{}]".format(attrListStr)
def toJSON(self):
return dict(attributeList=self._attrList) |
# Multiple Choice
# Return the answer to the multiple choice question in the handout.
# If you think option c is the correct answer,
# return 'c'
def question_1():
# [Image] The first hidden layer has 4 filters of kernel-width 2 and stride 2;
# the second layer has 3 filters of kernel-width 8 and stride 2; the third layer has 2 filters of kernel-width 6 and stride 2
return 'b'
def question_2():
# out_width = [(in_width_padded - kernel_dilated) // stride] + 1,
# where in_width_padded = in_width + 2 * padding, kernel_dilated = (kernel - 1) * (dilation - 1) + kernel
return 'd'
def question_3():
# [Image] ip = 100, kernel = 5, stride = 2. Op = ??
# Example Input: Batch size = 2, In channel = 3, In width = 100
# Example W: Out channel = 4, In channel = 3, Kernel width = 5
# Example Out: Batch size = 2, Out channel = 4, Out width = 48
return 'b'
def question_4():
#working of numpy.tensordot
#A = np.arange(30.).reshape(2,3,5)
#B = np.arange(24.).reshape(3,4,2)
#C = np.tensordot(A,B, axes = ([0,1],[2,0]))
return 'a' #random to test
def question_5():
#lol question
return 'a'
|
"""
entrada
cantidad invertida-->float-->c
tasa de intereses-->float-->t
salida
intereses-->float-->i
ganancia total-->float-->total
"""
c=float(input("Escriba la cantidad invertida:"))
t=float(input("Escriba la tasa de interes:"))
i=(c*t)/100
if (i>100.000):
print("Los intereses son:"+str(i))
total=c + t
print("el salario total es:"+str(total)) |
class WorkflowNotFound(Exception):
pass
class WorkflowSyntaxError(Exception):
pass
|
# Copyright 2021 Tianmian Tech. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Copyright 2019 The FATE Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
class FederationWrapped(object):
"""
A wrapper, wraps _DSource as Table
"""
# noinspection PyProtectedMember
def __init__(self, session_id, dsource_cls, table_cls):
self.dsource_cls = dsource_cls
self.table_cls = table_cls
self.session_id = session_id
def unboxed(self, obj):
if hasattr(obj, "_fcs"):
return obj
elif isinstance(obj, self.table_cls):
return obj.dsource()
else:
return obj
def boxed(self, obj):
if isinstance(obj, self.dsource_cls):
return self.table_cls.from_dsource(dsource=obj, session_id=self.session_id)
else:
return obj
|
# -*- coding: utf-8 -*-
#
# Copyright (C) 2020 CERN.
#
# CDS-ILS is free software; you can redistribute it and/or modify it under
# the terms of the MIT License; see LICENSE file for more details.
"""CDS-ILS CDS Importer ignored fields."""
CDS_IGNORE_FIELDS = {
"003",
"005",
"020__q",
"020__c",
"020__b", # this field is used to match multipart items as volumes
"020__C",
"0248_a",
"0248_p",
"041__h", # 206 cds-dojson
"035__z",
"037__c", # arXiv subject category
"050__b",
"050_4b",
"082002",
"082042",
"0820_2",
"082__2", # INSPIRE keywords
"084__a", # INSPIRE keywords
"084__2",
"100__9",
"111__d",
"111__f",
"145__a",
"246__i",
"269__a", # preprint info
"269__b", # preprint info
"269__c", # preprint date
"270__m", # conference email
"300__b", # 206 cds-dojson
"340__a",
"440_3a", # 206 cds-dojson
"541__9",
"541__a",
"541__h",
"502__a", # thesis_info/defense_date
"502__b", # thesis_info/degree_type
"502__c", # thesis_info/institutions
"502__d", # thesis_info/date (publication)
"5208_a", # 206 cds-dojson
"520__9",
"536__a", # founding info, dropped
"536__c",
"536__f",
"536__r",
"540__b",
"540__f",
"595__z",
"595__9",
"596__a",
"597__a",
"650172",
"65017a",
"650272",
"65027a",
"690__c", # 206 cds-dojson
"694__9",
"694__a",
"695__2",
"695__a",
"700__9",
"710__5",
"773__r", # publication_info/parent_report_number
"773__w", # inspire cnum (duplicated field with 035__9)
"773__z", # publication_info/parent_isbn
"775__c", # related edition's year (it will be resolved)
"852__c",
"852__h",
"852__p",
"8564_8", # bibdoc id
"8564_s", # file identifier
"8564_x", # subformat identifier
"900__s", # 206 cds-dojson
"900__u", # 206 cds-dojson
"900__y", # 206 cds-dojson
"901__a", # record affiliation
"901__u",
"916__a",
"916__d",
"916__e",
"916__y",
"940__u",
"961__c",
"961__h",
"961__l",
"961__x",
"962__b",
"962__n", # books connected by conference
"963__a",
"964__a",
"970__a",
"970__d",
"980__c",
"981__a",
}
|
#
# PySNMP MIB module ALVARION-BANDWIDTH-CONTROL-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALVARION-BANDWIDTH-CONTROL-MIB
# Produced by pysmi-0.3.4 at Wed May 1 11:21:58 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
alvarionMgmtV2, = mibBuilder.importSymbols("ALVARION-SMI", "alvarionMgmtV2")
AlvarionPriorityQueue, = mibBuilder.importSymbols("ALVARION-TC", "AlvarionPriorityQueue")
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup")
TimeTicks, ModuleIdentity, Unsigned32, Counter32, Integer32, Gauge32, ObjectIdentity, Counter64, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Bits, MibIdentifier, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "ModuleIdentity", "Unsigned32", "Counter32", "Integer32", "Gauge32", "ObjectIdentity", "Counter64", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Bits", "MibIdentifier", "IpAddress")
TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "DisplayString")
alvarionBandwidthControlMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14))
if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setLastUpdated('200710310000Z')
if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setOrganization('Alvarion Ltd.')
if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setContactInfo('Alvarion Ltd. Postal: 21a HaBarzel St. P.O. Box 13139 Tel-Aviv 69710 Israel Phone: +972 3 645 6262')
if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setDescription('Alvarion Bandwidth Control MIB.')
alvarionBandwidthControlMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1))
coBandwidthControlConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1))
coBandwidthControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlEnable.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlEnable.setDescription('Indicates if bandwidth control is enabled or disabled on the Internet port.')
coBandwidthControlMaxTransmitRate = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setDescription('Indicates the maximum rate at which data can be transmitted on the Internet port. If traffic exceeds this rate for short bursts, it is buffered. Long overages will result in data being dropped.')
coBandwidthControlMaxReceiveRate = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setDescription('Indicates the maximum rate at which data can be received on the Internet port. If traffic exceeds this rate for short bursts it is buffered. Long overages will result in data being dropped.')
coBandwidthControlLevelTable = MibTable((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4), )
if mibBuilder.loadTexts: coBandwidthControlLevelTable.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelTable.setDescription('A table defining the current bandwidth level settings that are active on the device.')
coBandwidthControlLevelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1), ).setIndexNames((0, "ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelIndex"))
if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setDescription('An entry in the coBandwidthControlLevelTable. coBandwidthControlLevelIndex - Uniquely access a definition for this particular bandwidth control level.')
coBandwidthControlLevelIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 1), AlvarionPriorityQueue())
if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setDescription('Specifies the level index. Each index defines a bandwidth level that traffic can be assigned to. Four indexes are defined (1 to 4) with the following meanings: 1-Low, 2-Normal, 3- High, 4-Very High.')
coBandwidthControlLevelMinTransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setDescription('Specify the minimum transmit rate for the level as a percentage of coBandwidthControlMaxTransmitRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as outgoing traffic is present on the level.')
coBandwidthControlLevelMaxTransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setDescription('Specify the maximum transmit rate for the specified level as a percentage of coBandwidthControlMaxTransmitRate. This is the maximum amount of outgoing bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages')
coBandwidthControlLevelMinReceiveRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setDescription('Specify the minimum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as incoming traffic is present on the level.')
coBandwidthControlLevelMaxReceiveRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setStatus('current')
if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setDescription('Specify the maximum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the maximum amount of incoming bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages.')
alvarionBandwidthControlMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2))
alvarionBandwidthControlMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1))
alvarionBandwidthControlMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2))
alvarionBandwidthControlMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1, 1)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "alvarionBandwidthControlMIBGroup"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "alvarionBandwidthControlLevelMIBGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alvarionBandwidthControlMIBCompliance = alvarionBandwidthControlMIBCompliance.setStatus('current')
if mibBuilder.loadTexts: alvarionBandwidthControlMIBCompliance.setDescription('The compliance statement for the Bandwidth Control MIB.')
alvarionBandwidthControlMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 1)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlEnable"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlMaxTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlMaxReceiveRate"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alvarionBandwidthControlMIBGroup = alvarionBandwidthControlMIBGroup.setStatus('current')
if mibBuilder.loadTexts: alvarionBandwidthControlMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.')
alvarionBandwidthControlLevelMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 2)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMinTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMaxTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMinReceiveRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMaxReceiveRate"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alvarionBandwidthControlLevelMIBGroup = alvarionBandwidthControlLevelMIBGroup.setStatus('current')
if mibBuilder.loadTexts: alvarionBandwidthControlLevelMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.')
mibBuilder.exportSymbols("ALVARION-BANDWIDTH-CONTROL-MIB", coBandwidthControlLevelMaxTransmitRate=coBandwidthControlLevelMaxTransmitRate, alvarionBandwidthControlMIBGroups=alvarionBandwidthControlMIBGroups, coBandwidthControlMaxReceiveRate=coBandwidthControlMaxReceiveRate, alvarionBandwidthControlMIBGroup=alvarionBandwidthControlMIBGroup, alvarionBandwidthControlMIBCompliance=alvarionBandwidthControlMIBCompliance, coBandwidthControlLevelMaxReceiveRate=coBandwidthControlLevelMaxReceiveRate, coBandwidthControlLevelMinTransmitRate=coBandwidthControlLevelMinTransmitRate, coBandwidthControlMaxTransmitRate=coBandwidthControlMaxTransmitRate, alvarionBandwidthControlMIBConformance=alvarionBandwidthControlMIBConformance, coBandwidthControlConfig=coBandwidthControlConfig, alvarionBandwidthControlMIB=alvarionBandwidthControlMIB, alvarionBandwidthControlMIBObjects=alvarionBandwidthControlMIBObjects, coBandwidthControlLevelMinReceiveRate=coBandwidthControlLevelMinReceiveRate, PYSNMP_MODULE_ID=alvarionBandwidthControlMIB, coBandwidthControlEnable=coBandwidthControlEnable, coBandwidthControlLevelTable=coBandwidthControlLevelTable, coBandwidthControlLevelEntry=coBandwidthControlLevelEntry, coBandwidthControlLevelIndex=coBandwidthControlLevelIndex, alvarionBandwidthControlLevelMIBGroup=alvarionBandwidthControlLevelMIBGroup, alvarionBandwidthControlMIBCompliances=alvarionBandwidthControlMIBCompliances)
|
# Solution by PauloBA
def sum_of_minimums(numbers):
ans = 0
for i in numbers:
i.sort()
ans = ans + i[0]
return ans |
"""
[2017-08-11] Challenge #326 [Hard] Multifaceted alphabet blocks
https://www.reddit.com/r/dailyprogrammer/comments/6t0zua/20170811_challenge_326_hard_multifaceted_alphabet/
# Description
You are constructing a set of N alphabet blocks. The first block has 1 face. The second block has 2 faces, and so on up
to the Nth block, which has N faces. Each face contains a letter.
Given a word list, return a set of blocks that can spell every word on the word list, making N as small as possible. A
word can be spelled with the blocks if you can take some subset of the blocks, take one face from each block you chose,
put them in some order, and spell the word.
# Example input
zero
one
two
three
four
five
six
seven
# Example output
The smallest possible N in this case is N = 5:
e
eo
fhs
rvwx
intuz
This output represents five blocks. Block #1 has one face that contains `e`, block #2 has two faces, `e` and `o`, and
so on up to block #5, which has the faces `i`, `n`, `t`, `u`, and `z`.
For example, `four` can be formed by using blocks #3, #2, #5, and #4 in order. Note that `ten` could not be formed from
these blocks even though all the letters are there, because the only `t` and the only `n` both appear on block #5, and
you can only use at most one face from each block.
# Challenge input
[This list of 10,000 12-letter words](https://pastebin.com/trMz6nWQ).
I'll award +1 gold medal flair for the best (lowest number of blocks) solution to the challenge input after 7 days. I
will break ties by concatenating the blocks in order of number of faces (`eeofhsrvwxintuz` for the example), and take
the lexicographically first solution.
"""
def main():
pass
if __name__ == "__main__":
main()
|
s=str(input()) # Number n in binary format
s='0'+s # Trailing zero will make the code run for '11111' etc. without changes
first1=-1
seqend=-1
if s[-1]=='0':
'''
If s ends with '0', the next biggest number will be '1' followed by the
number of '0's + one extra '0' followed by the number of '1's. For ex:
if s = 111000
answer = 1000011
'''
for i in range(len(s)):
if s[len(s)-i-1]=='1':
if first1==-1:
first1=len(s)-i-1
else:
if first1!=-1:
seqend=len(s)-i-1+1
break
if seqend==0:
print('Next smallest:', s[1:seqend]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1')
next_smallest=int(s[1:seqend]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1',2)
else:
print('Next smallest:', s[1:seqend-1]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1')
next_smallest=int(s[1:seqend-1]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1',2)
else:
'''
If s ends with '1', find the first '0' from the right, swap it with
the bit just right of it.
if s = 111000111
answer = 111001011
'''
first1=len(s)-1
for i in range(len(s)):
if s[len(s)-i-1]=='0':
seqend=len(s)-i-1+1
break
print('Next smallest:', s[1:seqend-1]+'1'+'0'+(first1-seqend)*'1')
next_smallest=int(s[1:seqend-1]+'1'+'0'+(first1-seqend)*'1', 2)
'''
I am assuming we cannot add trailing zero to the end, otherwise
next largest doesn't make much sense since we can keep adding trailing
zeros and the number will get larger and larger.
If s in not all '1's, the next largest will be the one with all '1's to
the left (if s is already the number with all '1's to the left, just add
a trailing zero). If s is all '1's the next largest will be s+'0'
'''
s=s[1:] # Remove the trailing zero we added earlier
print('Next largest:',end=' ')
if '0' not in s:
print(s)
next_largest=int(s,2)
else:
ones=s.count('1')
if s.index('0')==ones: # s is already all '1's to the left
print(s)
next_largest=int(s,2)
else:
print('1'*ones+'0'*(len(s)-ones))
next_largest=int('1'*ones+'0'*(len(s)-ones),2)
# Testing next smallest code
i=int(s,2)+1
ones=s.count('1')
while True:
if bin(i).count('1')==ones:
if i==next_smallest:
print('Next smallest test passed')
break
else:
print('Next smallest test failed, found: ' + bin(next_smallest)[2:] + ' , needed: ' + bin(i)[2:])
break
i+=1
# Testing next largest code
i=int('1'*len(s),2)
while i>0:
if bin(i).count('1')==ones:
if i==next_largest:
print('Next largest test passed')
break
else:
print('Next largest test failed, found: ' + bin(next_largest)[2:] + ' , needed: ' + bin(i)[2:])
break
i-=1
|
# -*- coding: utf-8 -*-
tl = [42, 38, 'HongKong', 'Jimmy', [9, 4, 23, -3, 'Stock']]
print(tl[0])
print(len(tl))
tl.append(34)
tl.append('34')
tl.extend([12, 98, 'mnk'])
tl.insert(3, 55)
ml = tl.copy()
print(ml)
# list 很适合用作栈,后进先出,但不适合用作queue
stack = [3, 4, 5]
stack.append(6)
stack.append(7)
print(stack)
print(stack.pop())
print(stack.pop())
# # 格式化输出日期的demo
# months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
# dayendings = ['st', 'nd', 'rd'] + 17 * ['th'] + ['st', 'nd', 'rd'] + 7 * ['th'] + ['st']
# year = input('Year: ')
# monthnumber = int(input('Month(1-12): '))
# daynumber = int(input('Day (1-31: '))
# print(months[monthnumber-1], str(daynumber) + dayendings[daynumber-1], year)
numbers = [x for x in range(20)]
n1 = numbers[:: 2]
n2 = numbers[:: 3]
print(n1+n2)
|
# The rand7() API is already defined for you.
# def rand7():
# @return a random integer in the range 1 to 7
# Don't know why the following solution doesn't work on 100000 calls case.
class Solution:
def rand10(self):
"""
:rtype: int
"""
a, b = rand7() - 1, rand7() - 1
num = a*7 + b
if num >= 40:
self.rand10()
return num % 10 + 1
# This works
class Solution:
def rand10(self):
"""
:rtype: int
"""
a= rand7()
b= rand7()
num = (a-1)*7 + b
if num >40:
return self.rand10()
return num % 10 + 1
class Solution:
def rand10(self):
"""
:rtype: int
"""
num = 40
while num >= 40:
num = (rand7() - 1)*7 + rand7() - 1
return num % 10 + 1 |
n = int(input())
case = 0
l = []
for i in range(n):
item = int(input())
l.append(item)
for i in l:
for j in range(1, i+1):
x = j
y = i - j
lx = [int(a) for a in str(x)]
ly = [int(b) for b in str(y)]
if((4 in lx) or (4 in ly)):
continue
else:
case += 1
print ('Case #'+str(case)+':', x, y)
break
|
# If Expression
# if expr:
if True:
print("it is true")
else:
print("it is false")
if False:
print("it is false")
print("print intented next line")
else:
print("it is not false")
if bool("python"):
print("it is python")
else:
print("it is not python")
h = 50
if h > 50:
print("h is not greater than 50")
else:
print("h is less than or equal to 50")
if h < 20:
print("h is less than 20")
else:
print("h is between 20 and 50")
#elif
if h > 50:
print("h is not greater than 50")
elif h < 20:
print("h is less than 20")
else:
print("h is between 20 and 50")
|
'''
test cases and facts for unit tests
'''
# list for testing fibonacci output
fib_list = [
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597,
2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418,
317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465,
14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296,
433494437, 701408733, 1134903170, 1836311903, 2971215073, 4807526976,
7778742049, 12586269025, 20365011074, 32951280099, 53316291173,
86267571272, 139583862445, 225851433717, 365435296162, 591286729879,
956722026041, 1548008755920, 2504730781961, 4052739537881, 6557470319842,
10610209857723, 17167680177565, 27777890035288, 44945570212853,
72723460248141, 117669030460994, 190392490709135, 308061521170129,
498454011879264, 806515533049393, 1304969544928657, 2111485077978050,
3416454622906707, 5527939700884757, 8944394323791464, 14472334024676221,
23416728348467685, 37889062373143906, 61305790721611591, 99194853094755497,
160500643816367088, 259695496911122585, 420196140727489673,
679891637638612258, 1100087778366101931, 1779979416004714189,
2880067194370816120, 4660046610375530309, 7540113804746346429,
12200160415121876738, 19740274219868223167, 31940434634990099905,
51680708854858323072, 83621143489848422977, 135301852344706746049,
218922995834555169026
]
|
#Imagina un hotel. Es un hotel enorme que consta de tres edificios, de 15 pisos cada uno.
#Hay 20 habitaciones en cada piso.
#Para esto, necesitas un arreglo que pueda recopilar y procesar información
#sobre las habitaciones ocupadas/libres.
#Primer paso: El tipo de elementos del arreglo. En este caso, sería un valor booleano (True/False).
#Paso dos: Análisis de la situación. Resume la información disponible:
#tres edificios, 15 pisos, 20 habitaciones.
habitaciones = [[[False for r in range(20)] for f in range(15)] for t in range(3)]
#Ahora ya puedes reservar una habitación para dos recién casados:
#en el segundo edificio, en el décimo piso, habitación 14:
habitaciones[1][9][13] = True
#Desocupa el segundo cuarto en el quinto piso ubicado en el primer edificio:
habitaciones[0][4][1] = False
#Verifica si hay disponibilidad en el piso 15 del tercer edificio:
vacante = 0
for numeroHabitacion in range(20):
if not habitaciones[2][14][numeroHabitacion]:
vacante += 1
print("Habitaciones disponibles en piso 5, tercer edificio:",vacante) |
# https://docs.google.com/document/d/1LTf2-077v4KF1LKgR6tUA68Z6iIHGz-qcLTrs7pF8Js/edit
'''
Ve vozovém parku jsou i hybridní vozy. To znamená, že určitou vzdálenost jedou
levně, dokud se nevybijí baterky, a pak jedou dál na naftu, ale o něco dráž.
Zkus to nějak zohlednit při výběru optimálního autobusu pro školní výlet :)
'''
class Vuz:
def __init__(self, spz):
self.spz = spz
class VuzNaNaftu (Vuz):
def vzdalenost_je_ok(self, vzdalenost):
return True
def spocitej_naklady(self, vzdalenost):
return vzdalenost * self.naklady_za_km
class IrizaPB (VuzNaNaftu):
kapacita = 63
naklady_za_km = 60
class IrisbusArwayShort (VuzNaNaftu):
kapacita = 43
naklady_za_km = 40
class IrisbusArwayLong (VuzNaNaftu):
kapacita = 77
naklady_za_km = 55
class VuzNaElektrinu (Vuz):
def vzdalenost_je_ok(self, vzdalenost):
return vzdalenost <= self.dojezd
def spocitej_naklady(self, vzdalenost):
return vzdalenost * self.naklady_za_km
class TeslaBus (VuzNaElektrinu):
kapacita = 62
naklady_za_km = 30
dojezd = 150
class HybridniVuz (Vuz):
def vzdalenost_je_ok(self, vzdalenost):
return True
def spocitej_naklady(self, vzdalenost):
vzdalenost_elektrina = min(vzdalenost, self.dojezd_elektrina)
vzdalenost_nafta = vzdalenost - vzdalenost_elektrina
return vzdalenost_elektrina * self.naklady_za_km_elektrina + vzdalenost_nafta * self.naklady_za_km_nafta
class LeafBus (HybridniVuz):
kapacita = 65
naklady_za_km_elektrina = 35
naklady_za_km_nafta = 65
dojezd_elektrina = 80
vozovy_park = [
IrizaPB('1A11111'),
IrizaPB('1A12222'),
IrisbusArwayShort('1A13333'),
IrisbusArwayLong('1A14444'),
TeslaBus('1A15555'),
LeafBus('1A16666'),
]
def najit_vhodny_autobus(seznam_vozu, pozadovana_kapacita, vzdalenost):
vhodne_vozy = []
for vuz in seznam_vozu:
if vuz.kapacita < pozadovana_kapacita:
continue
if not vuz.vzdalenost_je_ok(vzdalenost):
continue
vhodne_vozy.append(vuz)
if not vhodne_vozy:
return None
return min(vhodne_vozy, key=lambda vuz: vuz.spocitej_naklady(vzdalenost))
assert najit_vhodny_autobus(vozovy_park, 60, 250).spz == '1A14444'
assert najit_vhodny_autobus(vozovy_park, 60, 200).spz == '1A16666'
assert najit_vhodny_autobus(vozovy_park, 60, 100).spz == '1A15555'
|
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'includes': [
'../../build/common_untrusted.gypi',
],
'conditions': [
['disable_nacl==0 and disable_nacl_untrusted==0', {
'targets': [
{
'target_name': 'sandbox_linux_nacl_nonsfi',
'type': 'none',
'variables': {
'nacl_untrusted_build': 1,
'nlib_target': 'libsandbox_linux_nacl_nonsfi.a',
'build_glibc': 0,
'build_newlib': 0,
'build_irt': 0,
'build_pnacl_newlib': 0,
'build_nonsfi_helper': 1,
'sources': [
# This is the subset of linux build target, needed for
# nacl_helper_nonsfi's sandbox implementation.
'bpf_dsl/bpf_dsl.cc',
'bpf_dsl/codegen.cc',
'bpf_dsl/policy.cc',
'bpf_dsl/policy_compiler.cc',
'bpf_dsl/syscall_set.cc',
'seccomp-bpf-helpers/sigsys_handlers.cc',
'seccomp-bpf-helpers/syscall_parameters_restrictions.cc',
'seccomp-bpf/die.cc',
'seccomp-bpf/sandbox_bpf.cc',
'seccomp-bpf/syscall.cc',
'seccomp-bpf/trap.cc',
'services/credentials.cc',
'services/namespace_sandbox.cc',
'services/namespace_utils.cc',
'services/proc_util.cc',
'services/resource_limits.cc',
'services/syscall_wrappers.cc',
'services/thread_helpers.cc',
'suid/client/setuid_sandbox_client.cc',
],
},
'dependencies': [
'../../base/base_nacl.gyp:base_nacl_nonsfi',
],
},
],
}],
['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_test==1', {
'targets': [
{
'target_name': 'sandbox_linux_test_utils_nacl_nonsfi',
'type': 'none',
'variables': {
'nacl_untrusted_build': 1,
'nlib_target': 'libsandbox_linux_test_utils_nacl_nonsfi.a',
'build_glibc': 0,
'build_newlib': 0,
'build_irt': 0,
'build_pnacl_newlib': 0,
'build_nonsfi_helper': 1,
'sources': [
'seccomp-bpf/sandbox_bpf_test_runner.cc',
'tests/sandbox_test_runner.cc',
'tests/unit_tests.cc',
],
},
'dependencies': [
'../../testing/gtest_nacl.gyp:gtest_nacl',
],
},
],
}],
],
}
|
# Given two integers representing the numerator and denominator of a fraction,
# return the fraction in string format.
# If the fractional part is repeating, enclose the repeating part in parentheses.
class Solution:
# @return a string
def fractionToDecimal(self, numerator, denominator):
(integer, remainder) = divmod(numerator, denominator)
if remainder == 0:
return str(integer)
else:
return str(integer) + '.' + self.tenths(remainder, denominator, '')
def tenths(self, numerator, denominator, history):
if denominator == 10:
return history + str(numerator)
else:
(integer, remainder) = divmod((10 * numerator), denominator)
if remainder == 0:
return history + str(integer)
elif (remainder, denominator) == (numerator, denominator):
return history + '(' + str(integer) + ')'
elif str(integer) in history:
repeating = history.index(str(integer))
return history[:repeating] + '(' + history[repeating:] + ')'
else:
return self.tenths(remainder, denominator, history + str(integer)) |
credentials = dict(
email = '',
password = '',
telegram_api_token = '__telegram_api_token__',
telegram_userid = '__telegram_userid__'
)
|
"""
A Python 3 library for the analysis of data produced by AMIGA's Halo Finder (AHF).
For more information visit https://github.com/BenDavisonPetch/ahfhalotools
Usage and Examples
------------------
The majority of analysis is done via the ahfhalotools.objects.Cluster class. For
examples on usage, there are example scripts available at:
https://github.com/BenDavisonPetch/ahfhalotools/tree/main/examples
These scripts are provided without data, as the data files are large and can't
go on GitHub. To run them on a local machine, data must be downloaded and
truncated, and the paths to the data in the scripts should be updated to reflect
the location of the files.
Alternatively the scripts could be deployed to popia/castor and run there, after
updating the directory paths in the code. Data should still be truncated before
running, otherwise the scripts will execute very slowly.
Documentation
-------------
Documentation is available in two places: the first is as docstrings within the
code, which can be viewed using the built-in ``help`` function:
>>> from ahfhalotools.objects import Cluster
>>> help(Cluster)
Help on class Cluster in module ahfhalotools.objects: ...
The other way to view documentation is in a web browser at:
https://htmlpreview.github.io/?https://raw.githubusercontent.com/BenDavisonPetch/ahfhalotools/main/docs/ahfhalotools/index.html
"""
#__all__ = ["analysis","filetools","objects"]
|
with open("0404.csv", 'r', encoding='utf-8') as f:
lines = f.readlines()
new_Json = {}
hospital_Json = {}
hospital_Json['date'] = '0404'
school_list = []
for line in lines:
#print(len(line))
if len(line)<=1:
continue
lineList = line.split(",")
doc = {}
doc['Suburb'] = lineList[0].strip()
doc['cases'] = float(lineList[1].strip())
school_list.append(doc)
hospital_Json['doc'] = school_list
# print(new_Json)
print(hospital_Json)
#db.save(hospital_Json) |
"""
constants used throughout the application/
"""
ESC_KEY = 27
CHAR_Q = ord('q')
EXIT_KEYS = [ESC_KEY, CHAR_Q]
# Data fetch interval time.
REFRESH_INTERVAL = 1.5
"""
Describes the way screen should be divides. There
may be a better way to do this, but this works fine
for the current application since all boxes are uniform.
{
NUM_APPLICATIONS: [WIDTH_FACTOR, HEIGHT_FACTOR],
..
}
NUM_APPLICATIONS: number of applications
WIDTH_FACTOR: Parts in which width will be divided
HEIGHT_FACTOR: Parts in which height will be divided.
This assumes that most of the users are using landscape mode in
their screens.
TODO: autogenerate this thing.
"""
layout_grid = {
1: [1, 1],
2: [2, 2],
3: [2, 2],
4: [2, 2],
5: [3, 2],
6: [3, 2],
7: [3, 3],
8: [3, 3],
9: [3, 3],
10: [4, 3],
11: [4, 3],
12: [4, 3],
13: [4, 4],
14: [4, 4],
15: [4, 4],
16: [4, 4],
}
# TODO: Remove this once it's stable. We could simply abort
# on osx.
RHEL6_CGROUP_PATH = '/cgroup/lid'
RHEL7_CGROUP_PATH = '/sys/fs/cgroup'
CGROUP_DIRS = '/cgroup/lid'
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2021, Cisco Systems
# GNU General Public License v3.0+ (see LICENSE or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: sda_host_onboarding_access_point
short_description: Manage SdaHostOnboardingAccessPoint objects of Sda
description:
- Delete Port assignment for access point in SDA Fabric.
- Get Port assignment for access point in SDA Fabric.
- Add Port assignment for access point in SDA Fabric.
version_added: '1.0.0'
author: Rafael Campos (@racampos)
options:
device_ip:
description:
- Device-ip query parameter.
type: str
required: True
interface_name:
description:
- InterfaceName query parameter.
type: str
required: True
payload:
description:
- An object to send in the Request body.
- Required for state create.
type: list
elements: dict
suboptions:
siteNameHierarchy:
description:
- It is the sda host onboarding access point's siteNameHierarchy.
type: str
deviceManagementIpAddress:
description:
- It is the sda host onboarding access point's deviceManagementIpAddress.
type: str
interfaceName:
description:
- It is the sda host onboarding access point's interfaceName.
type: str
dataIpAddressPoolName:
description:
- It is the sda host onboarding access point's dataIpAddressPoolName.
type: str
voiceIpAddressPoolName:
description:
- It is the sda host onboarding access point's voiceIpAddressPoolName.
type: str
authenticateTemplateName:
description:
- It is the sda host onboarding access point's authenticateTemplateName.
type: str
requirements:
- dnacentersdk
seealso:
# Reference by module name
- module: cisco.dnac.plugins.module_utils.definitions.sda_host_onboarding_access_point
# Reference by Internet resource
- name: SdaHostOnboardingAccessPoint reference
description: Complete reference of the SdaHostOnboardingAccessPoint object model.
link: https://developer.cisco.com/docs/dna-center/api/1-3-3-x
# Reference by Internet resource
- name: SdaHostOnboardingAccessPoint reference
description: SDK reference.
link: https://dnacentersdk.readthedocs.io/en/latest/api/api.html#v2-1-1-summary
"""
EXAMPLES = r"""
- name: delete_port_assignment_for_access_point
cisco.dnac.sda_host_onboarding_access_point:
state: delete # required
device_ip: SomeValue # string, required
interface_name: SomeValue # string, required
- name: get_port_assignment_for_access_point
cisco.dnac.sda_host_onboarding_access_point:
state: query # required
device_ip: SomeValue # string, required
interface_name: SomeValue # string, required
register: nm_get_port_assignment_for_access_point
- name: add_port_assignment_for_access_point
cisco.dnac.sda_host_onboarding_access_point:
state: create # required
payload: # required
- siteNameHierarchy: SomeValue # string
deviceManagementIpAddress: SomeValue # string
interfaceName: SomeValue # string
dataIpAddressPoolName: SomeValue # string
voiceIpAddressPoolName: SomeValue # string
authenticateTemplateName: SomeValue # string
"""
RETURN = r"""
dnac_response:
description: A dictionary with the response returned by the DNA Center Python SDK
returned: always
type: dict
sample: {"response": 29, "version": "1.0"}
sdk_function:
description: The DNA Center SDK function used to execute the task
returned: always
type: str
sample: sda.add_port_assignment_for_access_point
missing_params:
description: Provided arguments do not comply with the schema of the DNA Center Python SDK function
returned: when the function request schema is not satisfied
type: list
sample:
"""
|
num = int(input())
def f(n):
if n <= 0:
return 0
return f(n-1) + n
print(f(num))
|
all_heroes = {}
n = int(input())
max_hp = 100
max_mp = 200
for _ in range(n):
info = input().split(" ")
name = info[0]
hp = int(info[1])
mp = int(info[2])
# collect info in dict
if name not in all_heroes:
all_heroes[name] = {}
all_heroes[name]["hit points"] = hp
all_heroes[name]["mana points"] = mp
# changes
command = input()
while command != "End":
command = command.split(" - ")
to_do = command[0]
name = command[1]
if to_do == "CastSpell":
mp_needed = int(command[2])
spell_name = command[3]
if mp_needed <= all_heroes[name]["mana points"]:
all_heroes[name]["mana points"] -= mp_needed
print(f"{name} has successfully cast {spell_name} and now has {all_heroes[name]['mana points']} MP!")
else:
print(f"{name} does not have enough MP to cast {spell_name}!")
elif to_do == "TakeDamage":
damage = int(command[2])
attacker = command[3]
all_heroes[name]["hit points"] -= damage
if all_heroes[name]["hit points"] > 0:
print(f"{name} was hit for {damage} HP by {attacker} and now has {all_heroes[name]['hit points']} HP left!")
else:
del all_heroes[name]
print(f"{name} has been killed by {attacker}!")
elif to_do == "Recharge":
amount = int(command[2])
current_mp = all_heroes[name]["mana points"]
used_amount_to_recover = min(amount, (max_mp - current_mp))
all_heroes[name]["mana points"] += used_amount_to_recover
print(f"{name} recharged for {used_amount_to_recover} MP!")
elif to_do == "Heal":
amount = int(command[2])
current_hp = all_heroes[name]["hit points"]
used_amount_to_recover = min(amount, (max_hp - current_hp))
all_heroes[name]["hit points"] += used_amount_to_recover
print(f"{name} healed for {used_amount_to_recover} HP!")
command = input()
# sort
sorted_all_heroes = dict(sorted(all_heroes.items(),key=lambda kvp: (-kvp[1]['hit points'], kvp[0])))
for name in sorted_all_heroes:
print(f"""{name}
HP: {sorted_all_heroes[name]['hit points']}
MP: {sorted_all_heroes[name]['mana points']}""")
|
# -*- coding: utf-8 -*-
pytest_plugins = [
u'ckan.tests.pytest_ckan.ckan_setup',
u'ckan.tests.pytest_ckan.fixtures',
u'ckanext.harvest.tests.fixtures',
]
|
#!/usr/bin/env python3
# import numpy as np
# import time
class AIDASim:
def __init__(self):
self.ke = 5.4 # l/hr
self.k1 = 0.025 # /hr
self.k2 = 1.25 # /hr
self.Ibasal = 10 # mU/l
self.Km = 10 # mmol/l
self.GI = 0.54 # mmol/hr/kg
self.GX = 5.3 # mmol/l
self.c = 0.015 # mmol/hr/kg/mU*l
self.kgabs = 1 # /hr
self.Vmaxge = 120 # mmol/hr
self.VI = 0.142 # l/kg
self.Vg = 0.22 # l/kg
self.a = 0 # TODO: Get params
self.b = 0 # TODO: Get params
self.s = 0 # TODO: Get params
self.D = 0 # Dose
self.t = 0 # Time elapsed from insulin injection
self.time = 0 # Simulator ticks (time)
self.I = 0 # Plasma insulin concentration
self.Ia = 0 # Active insulin pool
def T50(self):
"""calculates time when 50% of dose will be absorbed"""
return (self.a * self.D) + self.b
def Iabs(self, t):
"""calculates current insulin absorbtion rate"""
top = self.s * self.t * self.T50(self.t) * self.D
bottom = self.t * (self.T50(self.t) + self.t)**2
return top/bottom
def di_dT(self, old, dt, t):
"""Change in plasma insulin concentration. Old is the current insulin
concentration, dt is the change in time, and """
term1 = self.Iabs(t)/self.VI
term2 = self.ke * self.I
return old + dt*(term1 - term2) # Shitty version of euler's method
def dia_dt(self, old, dt):
term1 = (self.k1 * self.I)
term2 = (self.k2 * self.Ia)
return old + dt*(term1 - term2)
def Iss(self):
return self.I
|
# -*- coding:utf-8 -*-
class Solution:
stack1 = []
stack2 = []
def push(self, node):
# write code here
self.stack1.append(node)
def pop(self):
# return xx
if len(self.stack2)==0:
while len(self.stack1)!=0:
self.stack2.append(self.stack1[-1])
self.stack1.pop()
xx = self.stack2[-1]
self.stack2.pop()
return xx |
def validate_columns(table_catalog, column_family_id, keys, values_batch):
columns = table_catalog["column_families"][column_family_id]["columns"].keys()
row_key_identifiers = table_catalog["row_key_identifiers"]
unregisterd_keys = set(keys) - (set(row_key_identifiers) | set(columns))
if unregisterd_keys:
raise Exception(f"insert: {unregisterd_keys} not registered")
missing_identifiers = set(row_key_identifiers) - set(keys)
if missing_identifiers:
raise Exception(f"insert: {missing_identifiers} required")
n = len(keys)
for values in values_batch:
if len(values) != n:
raise Exception(f"insert: {values} is invalid, should have {n} elements")
|
#Given an integer n, return 1 - n in lexicographical order.
#
#For example, given 13, return: [1,10,11,12,13,2,3,4,5,6,7,8,9].
#
#Please optimize your algorithm to use less time and space. The input size may be as large as 5,000,000.
class Solution(object):
def lexicalOrder(self, n):
"""
:type n: int
:rtype: List[int]
"""
result = []
stack = []
x = 1
while x <= n:
stack.append(x)
result.append(x)
x *= 10
while stack:
y = stack.pop()
if y % 10 == 9: continue
y += 1
while y <= n:
stack.append(y)
result.append(y)
y *= 10
return result |
""" Asked by: Twitter
Implement an autocomplete system. That is, given a query string s and a set of all possible query strings,
return all strings in the set that have s as a prefix.
For example, given the query string de and the set of strings [dog, deer, deal], return [deer, deal].
Hint: Try preprocessing the dictionary into a more efficient data structure to speed up queries.
""" |
#!/usr/bin/env python3
# -*- coidng=utf-8 -*-
'''
learn MOEA/D
'''
def main():
pass
if __name__ == '__main__':
main() |
def displayPermuation(s):
return displayPermuationHelper("", s)
def displayPermuationHelper(s1, s2):
if len(s2) == 0:
print (s1)
for i in range(len(s2)):
displayPermuationHelper(s1 + s2[i], s2[0: i] + s2[i + 1 : ])
def main():
str = input("Please enter a string: ").replace(' ', '')
displayPermuation(str)
if __name__ == '__main__':
main()
|
"""
Settings for app
"""
READONLY_MODEL = {
'NAME': 'readonly_model',
'META_ATTR': 'read_only_model',
'DATABASE_ROUTER': 'readonly_model.dbrouters.ReadOnlyModelRouter'
}
|
Version = "{{VERSION}}"
if __name__ == "__main__":
print(Version)
|
# Problem URL: https://leetcode.com/problems/4sum/
class Solution:
def fourSum(self, nums: List[int], target: int) -> List[List[int]]:
solution = set()
nums.sort()
if len(nums) < 4:
return []
for i in range(len(nums)-3):
for j in range(i+1,len(nums)-2):
p = j+1
q = len(nums)-1
while p < q:
if (nums[i]+nums[j] == target - (nums[p]+nums[q])):
solution.add((nums[i], nums[j], nums[p], nums[q]))
p += 1
q -= 1
elif (nums[i]+nums[j] > target - (nums[p]+nums[q])):
q -= 1
else:
p += 1
return (solution) |
class Cursor:
def __init__(self, wnd):
self.wnd = wnd
self.pos = 0
self.preferred_col = 0
self.preferred_linecol = 0
self.last_screenpos = (-1, -1)
def refresh(self, top=None, middle=None, bottom=None,
align_always=False):
self.pos, y, x = self.wnd.locate_cursor(
self.pos, top=top, middle=middle, bottom=bottom,
align_always=align_always)
assert self.pos is not None
self.last_screenpos = (x, y)
def setpos(self, pos, top=None, middle=None, bottom=None,
align_always=False):
assert pos is not None
self.pos = pos
self.refresh(top=top, middle=middle, bottom=bottom,
align_always=align_always)
def savecol(self):
"""Update current preferred column"""
y, x = self.wnd.screen.getrowcol(self.pos)
self.preferred_col = x
self.preferred_linecol = self.wnd.screen.get_cursorcol(self.pos)
def up(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
if row.posfrom == 0:
return
if idx == self.wnd.screen.portfrom:
# Scroll up a line
if not self.wnd.lineup():
# First line of text file
return False
idx, prevrow = self.wnd.screen.getrow(row.posfrom - 1)
else:
idx -= 1
pos = self.wnd.screen.get_pos_above(idx, self.preferred_col)
pos = self.adjust_nextpos(self.pos, pos)
self.setpos(pos)
return True
def down(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
if self.wnd.screen.is_lastrow(row):
return False
if idx + 1 >= self.wnd.screen.portto:
# Scroll down a line
if not self.wnd.linedown():
# last line of text file
return False
idx, nextrow = self.wnd.screen.getrow(row.posto)
else:
idx += 1
pos = self.wnd.screen.get_pos_under(idx, self.preferred_col)
pos = self.adjust_nextpos(self.pos, pos)
self.setpos(pos)
return True
def prev_line(self):
tol = self.wnd.document.gettol(self.pos)
if tol != 0:
self.wnd.screen.locate(tol - 1, top=True)
prev = self.wnd.document.gettol(tol - 1)
pos = self.wnd.screen.get_pos_at_cols(prev, self.preferred_linecol)
pos = self.adjust_nextpos(self.pos, pos)
self.wnd.screen.locate(pos, top=True)
self.setpos(pos)
return True
def next_line(self):
next = self.wnd.document.gettol(self.wnd.document.geteol(self.pos))
if self.pos < next:
self.wnd.screen.locate(next, bottom=True)
pos = self.wnd.screen.get_pos_at_cols(next, self.preferred_linecol)
pos = self.adjust_nextpos(self.pos, pos)
self.wnd.screen.locate(pos, bottom=True)
self.setpos(pos)
return True
def adjust_nextpos(self, curpos, nextpos):
return nextpos
def word_right_pos(self, pos):
# Get next word break
nextpos = self.wnd.document.endpos()
for word in self.wnd.document.mode.split_word(pos):
f, t, chars, cg = word
nextpos = t
if f == pos: # first word
# get next word
continue
if cg[0] == 'Z': # skip white space
continue
nextpos = f
break
return self.adjust_nextpos(pos, nextpos)
def word_left_pos(self, pos):
# Get previous word break
prevpos = tol = self.wnd.document.gettol(pos)
if pos == prevpos:
prevpos -= 1
else:
for f, t, chars, cg in self.wnd.document.mode.split_word(tol):
# This word is at after cursor pos
if pos <= f:
break
if cg[0] == 'Z': # skip white space
continue
prevpos = f
return self.adjust_nextpos(pos, prevpos)
def right(self, word=False):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
if self.pos == self.wnd.document.endpos():
return
if not word:
# Get right of current position
nextpos = self.wnd.document.get_nextpos(self.pos)
nextpos = self.adjust_nextpos(self.pos, nextpos)
else:
nextpos = self.word_right_pos(self.pos)
if nextpos != self.pos:
# Scroll down if next position is not visible
while not self.wnd.screen.is_visible(nextpos):
# scroll down
if not self.wnd.linedown():
break
self.setpos(nextpos)
self.savecol()
def left(self, word=False):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
if self.pos == 0:
return
if not word:
# Get left of current position
prevpos = self.wnd.document.get_prevpos(self.pos)
prevpos = self.adjust_nextpos(self.pos, prevpos)
else:
prevpos = self.word_left_pos(self.pos)
if prevpos != self.pos:
# Scroll up if next position is not visible
while not self.wnd.screen.is_visible(prevpos):
# scroll up
if not self.wnd.lineup():
break
self.setpos(prevpos)
self.savecol()
def pagedown(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
y = idx - self.wnd.screen.portfrom
lastrow = self.wnd.screen.rows[self.wnd.screen.portto - 1]
if lastrow.posto == self.wnd.document.endpos():
nextpos = self.adjust_nextpos(self.pos, lastrow.posto)
if self.pos != lastrow.posto:
self.setpos(nextpos)
return True
if self.wnd.pagedown():
idx = max(0, min(self.wnd.screen.portto - 1,
self.wnd.screen.portfrom + y))
pos = self.wnd.screen.get_pos_under(idx, self.preferred_col)
nextpos = self.adjust_nextpos(self.pos, pos)
self.setpos(nextpos)
return True
else:
pos = self.wnd.document.endpos()
nextpos = self.adjust_nextpos(self.pos, pos)
if nextpos != pos:
self.setpos(nextpos)
return True
def pageup(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
y = idx - self.wnd.screen.portfrom
if self.wnd.pageup():
idx = max(0, min(self.wnd.screen.portto - 1,
self.wnd.screen.portfrom + y))
pos = self.wnd.screen.get_pos_above(idx, self.preferred_col)
nextpos = self.adjust_nextpos(self.pos, pos)
self.setpos(nextpos)
return True
elif self.pos != 0:
nextpos = self.adjust_nextpos(self.pos, 0)
if nextpos != self.pos:
self.setpos(nextpos)
return True
def home(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
nextpos = self.adjust_nextpos(self.pos, row.posfrom)
self.setpos(nextpos)
self.savecol()
def end(self):
# Ensure current position is displayed
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
idx, row = self.wnd.screen.getrow(self.pos)
if self.wnd.screen.is_lastrow(row):
pos = self.wnd.document.endpos()
else:
pos = row.posto - 1
nextpos = self.adjust_nextpos(self.pos, pos)
self.setpos(nextpos)
self.savecol()
def tol(self, pos):
tol = self.wnd.document.gettol(pos)
nextpos = self.adjust_nextpos(self.pos, tol)
self.wnd.screen.locate(nextpos, middle=True)
self.setpos(nextpos)
self.savecol()
def first_letter(self, pos):
f, tol = self.wnd.document.mode.get_indent_range(pos)
nextpos = self.adjust_nextpos(self.pos, tol)
self.wnd.screen.locate(nextpos, middle=True)
self.setpos(nextpos)
self.savecol()
def eol(self, pos):
eol = self.wnd.document.get_line_to(pos)
nextpos = self.adjust_nextpos(self.pos, eol)
self.wnd.screen.locate(nextpos, middle=True)
self.setpos(nextpos)
self.savecol()
def tof(self):
self.wnd.screen.locate(0, top=True)
nextpos = self.adjust_nextpos(self.pos, 0)
self.setpos(nextpos)
self.savecol()
def eof(self):
nextpos = self.wnd.document.endpos()
self.wnd.screen.locate(nextpos, middle=True)
nextpos = self.adjust_nextpos(self.pos, nextpos)
self.setpos(nextpos)
self.savecol()
|
# -*- coding: utf-8 -*-
"""
Created on Fri Jan 5 17:15:00 2018
@author: User
"""
## find max list 07_04
#
#testList = [-2,1,-3,4,-1,2,1,-5,4]
#aList = [-1,2,-5,1]
##aList = [1, 2, 3]
#
#def maxSum(lst, left, right):
# leftSum = 0
# rightSum = 0
# maxLeft = 0
# maxRight = 0
#
# middle = (left + right)//2
#
# if left == right:
# if lst[left] > 0:
# return lst[left]
# else:
# return 0
#
# maxLeft = maxSum(lst, left, middle)
# maxRight = maxSum(lst, middle+1, right)
#
# return max(maxLeft, maxRight)
#
#print(maxSum(testList, 0, 8))
#testList = [-1,2,-5,1]
testList = [1, -2 ,3,6,-3,-1,6,-5]
def maxList(lst, start, end):
maxLeft, maxRight = 0, 0
leftSum, rightSum = 0, 0
middle = (start + end)//2
if start == end: # for middle value
return max(lst[start], 0)
maxLeftlist = maxList(lst, start, middle)
maxRightlist = maxList(lst, middle+1, end)
for i in range(middle, start-1, -1):
leftSum = leftSum + lst[i]
if leftSum > maxLeft:
maxLeft = leftSum
for i in range(middle+1, end+1):
rightSum = rightSum + lst[i]
if rightSum > maxRight:
maxRight = rightSum
return max(maxLeft + maxRight,maxLeftlist, maxRightlist)
print(maxList(testList, 0, len(testList)-1)) |
### Types to hold CTR's data
class catboost_model_ctr(object):
def __init__(self, base_hash, base_ctr_type, target_border_idx, prior_num, prior_denom, shift, scale):
self.base_hash = base_hash
self.base_ctr_type = base_ctr_type
self.target_border_idx = target_border_idx
self.prior_num = prior_num
self.prior_denom = prior_denom
self.shift = shift
self.scale = scale
def calc(self, count_in_class, total_count):
ctr = (count_in_class + self.prior_num) / float(total_count + self.prior_denom)
return (ctr + self.shift) * self.scale
class catboost_bin_feature_index_value(object):
def __init__(self, bin_index, check_value_equal, value):
self.bin_index = bin_index
self.check_value_equal = check_value_equal
self.value = value
class catboost_ctr_mean_history(object):
def __init__(self, sum, count):
self.sum = sum
self.count = count
class catboost_ctr_value_table(object):
def __init__(self, index_hash_viewer, target_classes_count, counter_denominator, ctr_mean_history, ctr_total):
self.index_hash_viewer = index_hash_viewer
self.target_classes_count = target_classes_count
self.counter_denominator = counter_denominator
self.ctr_mean_history = ctr_mean_history
self.ctr_total = ctr_total
def resolve_hash_index(self, hash):
try:
return self.index_hash_viewer[hash]
except KeyError:
return None
class catboost_ctr_data(object):
def __init__(self, learn_ctrs):
self.learn_ctrs = learn_ctrs
class catboost_projection(object):
def __init__(self, transposed_cat_feature_indexes, binarized_indexes):
self.transposed_cat_feature_indexes = transposed_cat_feature_indexes
self.binarized_indexes = binarized_indexes
class catboost_compressed_model_ctr(object):
def __init__(self, projection, model_ctrs):
self.projection = projection
self.model_ctrs = model_ctrs
class catboost_model_ctrs_container(object):
def __init__(self, used_model_ctrs_count, compressed_model_ctrs, ctr_data):
self.used_model_ctrs_count = used_model_ctrs_count
self.compressed_model_ctrs = compressed_model_ctrs
self.ctr_data = ctr_data
### Model data
class catboost_model(object):
float_features_index = [
0, 1, 2, 3, 5,
]
float_feature_count = 6
cat_feature_count = 11
binary_feature_count = 34
tree_count = 40
float_feature_borders = [
[33.5, 36.5, 41.5, 51.5, 52.5, 54.5],
[51773, 59723, 139369.5, 148030.5, 174542.5, 195286.5, 203488.5, 337225.5, 342219, 350449],
[4.5, 5.5, 8, 12.5, 13.5, 14.5, 15.5],
[1087, 3280],
[46.5, 49, 55],
]
tree_depth = [6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6]
tree_split_border = [4, 3, 4, 4, 4, 2, 1, 3, 2, 2, 1, 6, 5, 2, 1, 3, 2, 2, 2, 2, 4, 3, 1, 3, 5, 2, 1, 2, 1, 8, 2, 3, 4, 1, 1, 255, 2, 1, 2, 4, 2, 3, 2, 1, 2, 2, 4, 3, 1, 4, 255, 3, 7, 4, 1, 2, 4, 3, 4, 2, 1, 2, 3, 2, 5, 1, 2, 1, 3, 4, 3, 5, 2, 3, 2, 3, 2, 2, 1, 3, 3, 1, 2, 5, 2, 2, 4, 3, 2, 3, 4, 1, 1, 3, 1, 1, 1, 1, 2, 1, 6, 5, 1, 4, 5, 1, 10, 2, 1, 1, 1, 1, 4, 1, 1, 1, 1, 1, 2, 3, 1, 2, 1, 2, 5, 1, 4, 2, 1, 2, 7, 6, 5, 4, 2, 3, 2, 3, 4, 1, 1, 1, 2, 1, 4, 1, 1, 1, 7, 2, 5, 2, 4, 4, 5, 2, 1, 2, 2, 2, 3, 1, 1, 1, 3, 1, 4, 1, 1, 1, 1, 7, 4, 2, 3, 2, 1, 3, 3, 1, 1, 1, 5, 4, 1, 4, 5, 4, 1, 5, 4, 3, 2, 2, 3, 2, 2, 1, 2, 2, 1, 5, 2, 3, 1, 1, 5, 3, 5, 2, 1, 1, 3, 1, 2, 6, 4, 1, 1, 1, 7, 1, 2, 1, 5, 6, 2, 1, 5, 4, 1, 3, 3, 3, 9, 3, 6, 5, 2, 3]
tree_split_feature_index = [16, 18, 11, 13, 21, 20, 25, 9, 29, 12, 33, 10, 15, 0, 19, 24, 8, 31, 17, 14, 7, 6, 30, 32, 23, 3, 28, 27, 1, 1, 12, 22, 9, 26, 20, 5, 0, 4, 3, 0, 11, 7, 3, 16, 12, 17, 10, 7, 4, 28, 5, 32, 1, 1, 4, 3, 24, 7, 9, 29, 1, 3, 31, 14, 1, 32, 3, 4, 14, 14, 0, 13, 3, 0, 15, 15, 1, 9, 2, 0, 14, 11, 8, 1, 2, 7, 2, 24, 16, 13, 31, 10, 1, 4, 21, 13, 2, 12, 3, 9, 1, 32, 21, 31, 23, 1, 1, 17, 2, 12, 9, 21, 24, 1, 2, 12, 9, 21, 11, 31, 2, 3, 6, 13, 14, 11, 31, 14, 23, 24, 2, 2, 21, 15, 4, 20, 17, 11, 31, 14, 16, 23, 23, 7, 31, 17, 16, 23, 2, 24, 2, 10, 32, 6, 14, 18, 12, 3, 2, 22, 21, 22, 12, 9, 4, 1, 16, 2, 1, 16, 23, 2, 15, 13, 18, 17, 0, 32, 9, 18, 21, 13, 2, 16, 3, 23, 21, 15, 10, 0, 6, 1, 2, 16, 23, 10, 0, 1, 2, 26, 27, 10, 30, 16, 29, 8, 2, 28, 7, 28, 2, 9, 4, 12, 6, 2, 31, 1, 15, 24, 2, 21, 3, 8, 2, 15, 21, 4, 21, 15, 31, 10, 18, 23, 1, 2, 0, 7, 32, 24]
tree_split_xor_mask = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
cat_features_index = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
one_hot_cat_feature_index = [9]
one_hot_hash_values = [
[-1291328762]
]
ctr_feature_borders = [
[0.381648958, 0.599734068, 0.708776593, 0.817819178],
[0.151785716, 0.514285684, 0.721428573, 0.773214281, 0.876785696],
[0.25, 0.899999976],
[0.0294117667, 0.0539215691, 0.0637254938, 0.377451003],
[0.0572916679, 0.286458343, 0.34375, 0.515625, 0.744791687, 0.802083373],
[0.515625, 0.692708313, 0.78125, 0.825520813],
[0.4375, 0.700000048],
[0.0147058833, 0.0245098043, 0.0343137272, 0.191176474, 0.235294133],
[0.0608108118, 0.243243247, 0.304054052, 0.364864886, 0.547297299],
[0.342905402, 0.385810822, 0.428716242, 0.471621633, 0.600337863, 0.643243253],
[0.4375, 0.512499988, 0.587499976, 0.700000048],
[0.0343137272, 0.387254894],
[0.403846145, 0.75, 0.807692289],
[0.650240362],
[0.8125, 0.875, 0.9375],
[0.0147058833, 0.0392156877, 0.0539215691, 0.117647067, 0.142156869],
[0.357954532, 0.417613626, 0.596590877],
[0.284801126, 0.444602281, 0.497869313, 0.604403436, 0.764204562],
[0.34375, 0.4375, 0.578125, 0.765625],
[0.284313738],
[0.744791687, 0.802083373],
[0.815104127, 0.901041627],
[0.7421875, 0.8125, 0.8359375, 0.90625],
[0.0882352963, 0.460784316],
[0.69846493, 0.805921078],
[0.734375, 0.8125, 0.838541687, 0.890625],
[0.75, 0.833333373, 0.854166687, 0.875, 0.895833373],
[0.0147058833]
]
## Aggregated array of leaf values for trees. Each tree is represented by a separate line:
leaf_values = [
0, 0.02181610278785229, 0, 0, 0, 0.04363220557570457, 0, 0, 0.04363220557570457, 0.04986537620425224, 0, 0, -0.02313829399645329, 0.02181610278785229, 0, 0, -0.1682484298944473, 0.06108508631587029, 0, 0, -0.1253434270620346, 0.03490576520562172, 0, 0, 0.03490576520562172, 0.02181610278785229, 0, 0.02181610278785229, -0.1253434270620346, 0.04363220557570457, 0, 0, -0.06459833681583405, 0.06712646782398224, 0.02181610278785229, 0.03490576520562172, 0, 0, 0, 0.04986537620425224, -0.06459833681583405, 0.04363220557570457, 0, 0, -0.04521883279085159, 0.06346502900123596, -0.07833964377641678, 0.03490576520562172, -0.04521883279085159, -0.07833964377641678, 0, 0.02181610278785229, 0, 0.03490576520562172, -0.07833964377641678, 0.02181610278785229, 0, 0, 0.02181610278785229, 0.02181610278785229, 0.04363220557570457, 0.03490576520562172, -0.07833964377641678, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0.01509300339967012, 0, 0, -0.07186975330114365, 0, 0, 0, -0.06578578054904938, 0, 0, 0.03928129747509956, 0, -0.06148859858512878, -0.07186975330114365, 0.02511692605912685, -0.153721496462822, 0.03447598218917847, 0, 0.04915639013051987, 0.02861293777823448, 0.02444217354059219, -0.1165443807840347, 0.05340825393795967, 0.01630623079836369, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02413353510200977, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01832008734345436, 0, -0.009761475957930088, -0.1378484964370728, 0.05195422470569611, -0.06564180552959442,
-0.07808174192905426, 0, -0.09334445744752884, 0, 0.04802869260311127, 0, -0.0578857958316803, 0, 0, 0.03303684666752815, -0.04609250649809837, 0.03677573427557945, 0.02617762982845306, 0.04493499174714088, -0.07844055444002151, 0.02923139184713364, 0, 0, -0.03551242500543594, 0, 0.03291943296790123, 0, -0.02894133701920509, 0, 0, 0.0350770503282547, -0.1054575443267822, 0.0174995195120573, 0.04428545758128166, 0.03385355323553085, -0.05800836160778999, 0.02383844554424286, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, -0.02292168326675892, 0.006230691447854042, 0, 0, 0.02826864272356033, 0, 0, 0, 0, 0, 0, 0.01225839462131262, 0, 0.0171330813318491, 0.02221738919615746, 0.02184939011931419, 0, 0.03201064839959145, -0.1142344176769257, 0, 0, 0.01578458584845066, -0.0798674076795578, 0, 0, 0, 0, 0.008850813843309879, 0, 0.03012293018400669, -0.01845145225524902, 0.02030603773891926, -0.09770535677671432, 0.01059865485876799, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01986994035542011, -0.02757644467055798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
-0.06585730612277985, 0.004579459317028522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01090357173234224, 0.02233881130814552, -0.08663720637559891, 0, -0.0520227812230587, 0.01655960083007813, -0.100507877767086, 0, 0, 0, 0, 0, 0, 0.02449283562600613, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.06311285495758057, 0.01262360904365778, 0, 0, 0.0311534907668829, 0.01628954149782658, 0, 0, 0, 0, 0, 0, 0, 0.008827375248074532, 0, 0,
0, 0, 0.004055763129144907, 0.0177360437810421, 0, 0.03842192888259888, 0, 0.009404661133885384, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.08127573877573013, 0, 0.00760333938524127, 0, 0.007308953441679478, 0, 0.008438177406787872, 0, 0.01226174272596836, 0, 0.01802405342459679, 0.01180282421410084, 0, 0, 0.003294379217550159, -0.04822251945734024, -0.02597886137664318, 0, 0.005935715977102518, -0.05124761536717415, -0.05056582763791084, 0.004244830925017595, 0.004120797384530306, -0.02482446283102036, 0, 0, 0, 0, 0, 0, 0, -0.05135559663176537, -0.02401130832731724, 0.003366472199559212, -0.02637541480362415, 0, 0.04853152856230736, 0.005209816619753838, 0.0120060071349144, 0, -0.03923289850354195, 0, 0.005984276067465544, 0, -0.0208461731672287, 0, 0.01054937671869993,
-0.03945024684071541, -0.001608558814041317, 0, -0.04621203988790512, 0, -0.01981977745890617, 0, 0, 0, 0, 0, -0.04586139693856239, 0, 0, 0, 0, 0.01292334124445915, -0.05175785720348358, 0.0003991492849308997, 0, 0, 0, 0, 0, 0, -0.009572745300829411, 0, 0.03997541964054108, 0, 0, 0, -0.02697702124714851, 0.01106425188481808, 0, -0.02288072556257248, -0.0680602565407753, 0, 0, 0, 0, 0, 0.01428747083991766, 0, 0.003819689387455583, 0, 0, 0, 0, 0.02695899084210396, 0.02479904517531395, 0.003071989398449659, -0.06145253032445908, -0.03487300872802734, -0.0342726968228817, 0, 0, 0, 0.04252498969435692, 0, -0.04796541482210159, 0, -0.065749391913414, 0, 0,
0, 0, 0.003810663241893053, 0, 0, 0, 0.007251548115164042, 0, 0, 0, -0.04746280238032341, -0.01783471181988716, -0.005399092566221952, 0, -0.05790263041853905, 0, 0, 0, 0, 0, 0, 0, 0.01275650784373283, 0, 0, 0, 0, 0, -0.03295167163014412, 0, -0.01628853380680084, -0.02427511848509312, 0, 0, 0.01475580502301455, 0, 0, 0, 0.006266776937991381, 0, 0, 0, -0.04729151725769043, 0, 0.01805363409221172, 0, 0.01821357756853104, 0, 0, 0, 0, 0, 0, 0, 0.002498332178220153, 0, 0, 0, 0, 0, 0.0435510128736496, 0, 0.01129496935755014, -0.07499243319034576,
0.0007872873684391379, 0, -0.001875828485935926, 0, 0.001940113957971334, -0.06849589198827744, 0.01572944968938828, 0, -0.0016684012953192, 0, -0.03618369624018669, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004685263149440289, 0.003622457152232528, 0.0108933923766017, 0, 0.01199945900589228, -0.06331755965948105, 0.02152289822697639, 0, 0, 0, 0, 0, -0.0238693542778492, 0, 0.002197858178988099, 0, 0.0004729763022623956, 0, 0.0174593161791563, 0, 0.0002613407850731164, -0.01695874705910683, 0.01299017388373613, 0, 0.008463956415653229, 0, 0, 0, 0.01816926710307598, 0, -0.03495832532644272, 0,
-0.03145704790949821, 0, 0, 0, 0.005608143284916878, 0, 0, 0, 0, 0, 0, 0, 0.005108763463795185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03653318807482719, 0, 0, 0, 0.005110221449285746, 0, 0, 0, -0.03326742723584175, 0.003407576819881797, 0, -0.02014531008899212, -0.003347307443618774, -0.02500078640878201, -0.01624277792870998, 0, 0, -0.01290408708155155, -0.02240921184420586, 0, 0.004879275802522898, 0, 0, 0, 0, 0, 0, 0, 0.004705504514276981, 0, 0, 0, 0.0396529920399189, -0.08443862199783325, -0.05187699943780899, 0, -0.002927807392552495, 0.01522101555019617, 0, 0,
0, -0.01846219226717949, 0, 0, 0, 0, 0, 0, 0, 0.008663474582135677, 0, 0, 0, 0, 0, 0, 0, 0.03587561100721359, 0, 0, 0, 0, 0, 0, 0, 0.02147960104048252, 0, 0, 0, 0, 0, 0, 0, -0.01385855302214622, 0, 0, 0, 0, 0, 0, -0.03542026504874229, 0.006971433293074369, 0, -0.0391230471432209, 0, 0, 0, 0, 0, -0.01925777830183506, 0, 0, 0, 0, 0, 0, 0, -0.008442471735179424, 0, -0.03763466700911522, 0, 0, 0, 0,
-0.00913573894649744, 0, 0, 0, 0.02973243035376072, 0, 0, 0, 0, 0, 0, 0, 0.005449788179248571, -0.01236452534794807, -0.01681493408977985, 0, 0.01000027731060982, 0, -0.02561664208769798, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004561509005725384, -0.03397354856133461, -0.02307119965553284, -0.01435831189155579, 0.002777449088171124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01572217606008053, -0.01439023204147816, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.03109356947243214, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.02305098809301853, 0, 0, 0, -0.02426725439727306, 0, 0, 0, 0, 0, 0.005090105347335339, 0, -0.0383722111582756, -0.0161721371114254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002586557995527983, 0, -0.03927374631166458, 0, -0.0254626702517271, 0, 0.02852403372526169, 0, 0.02547801472246647, 0, 0.001788847963325679, 0, 0, 0, 0, 0, 0.00373588060028851, -0.01926009356975555, 0.00281954649835825, -0.0267659667879343,
0, 0, 0, 0, 0, -0.007718939334154129, 0, 0, 0, 0.004074764903634787, 0.009394717402756214, 0, 0, 0.007368015125393867, 0, -0.02614656090736389, 0, 0.002687284490093589, 0, -0.04229016229510307, 0, 0.004001504275947809, 0, 0.003058062866330147, 0, 0, 0, 0, 0, 0.005374516360461712, 0.001371877850033343, -0.001985758077353239, 0, -0.02291243709623814, 0, 0, 0, 0.004428758285939693, 0, -0.02528391778469086, 0, 0, 0, 0, 0, -0.007243246305733919, 0.02457966096699238, 0.01269108802080154, 0, 0.006703823804855347, 0, 0.02395307831466198, 0, 0, 0.008123394101858139, -0.02483955025672913, 0, 0, 0, 0, 0, 0.009034824557602406, 0, -0.03731964901089668,
0, 0, 0, 0, 0, 0.02274608798325062, 0, -0.006146733649075031, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006032394245266914, -0.01370700169354677, -0.005169839598238468, 0.0006216451874934137, 0, 0, 0, -0.01992705650627613, 0, -0.03186851739883423, 0.02211786806583405, 0.02986159548163414, 0, -0.01257159654051065, 0, -0.01228857506066561, 0, -0.02461433038115501, 0, 0.005663272924721241, 0, -0.01799053885042667, 0, 0, 0, -0.01094915065914392, 0, -0.03625892475247383, 0, 0, 0, -0.01758498325943947, 0, 0.005318508017808199, 0.01133203413337469, -0.001624785363674164, 0, -0.0160207636654377, 0, 0.0006420225254260004,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02046793699264526, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01742580905556679, 0, -0.005270129069685936, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.02615058422088623, 0, -0.01018640585243702, 0, -0.001790417823940516, 0, 0, 0, 0, 0, -0.005531102884560823, 0, 0.03457538783550262, 0,
0, 0, 0, -0.01584688574075699, 0, -0.004000301007181406, 0, 0, 0, 0.004670551978051662, 0.00998134259134531, 0.005025638733059168, 0, 0, 0, -0.01472627837210894, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01323047466576099, 0.02008195780217648, -0.002398384967818856, 0, 0, 0, -0.01939132250845432, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.02068477496504784, 0, 0, 0, -0.008524994365870953, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002170398132875562, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0.005139893386512995, 0, 0, 0, 0.01056296098977327, 0, 0, 0, 0.001125605893321335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005433664657175541, 0, 0, -0.004502085503190756, 0.006443063728511333, 0, 0, 0, -0.03359655290842056, 0, 0, 0, 0, 0, 0, -0.01589789241552353, -0.01140952110290527, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03811754658818245, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.03023166581988335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004625103902071714, 0, 0, 0, 0, 0, 0, 0, -0.01430562604218721, 0, 0, 0, -0.01311699859797955, 0, -0.02023688703775406, 0.0192133653908968, 0.003406276227906346, 0, 0, 0, 0, 0, 0, 0, -0.004051178228110075, 0, -0.002456918824464083, 0, 0, 0, 0.01200850214809179, 0.007126358803361654, -0.001668764860369265,
0, 0, 0, 0, 0, 0, 0, -0.01287283562123775, 0, -0.002210844308137894, 0, 0, 0, -0.003418919630348682, 0.004423678852617741, -0.00564582459628582, 0, 0, 0, 0, 0, 0, 0, -0.003645426593720913, 0, 0, 0, -0.01180325541645288, 0, 0, 0.01427577622234821, 0.0006297251675277948, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0.004286466166377068, 0, 0, 0, -0.01493893004953861, 0, 0, 0, -0.02081316150724888, 0, -0.001989415381103754, 0, 0.003001046599820256, 0, 0, 0, 0, 0, 0, 0, 0.00162522797472775, 0, 0, 0, 0.0001232036593137309, 0, 0, 0.003980621695518494, 0.003597465576604009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.02736678346991539, 0, -0.008452505804598331, 0.0114161716774106, 0.01244105119258165, 0, -0.0179080069065094, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006976370234042406, 0, 0, 0, -0.001269038766622543, 0, 0,
0.001733268494717777, 0, 0, 0, 0, 0, 0, 0, -0.009498989209532738, 0, 0.01980731822550297, 0, -0.004691865760833025, 0, -0.001195060438476503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01254497747868299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01463546324521303, 0, 0, 0,
0, 0, -0.003767166752368212, 0.005567104555666447, 0, 0, 0, 0.004769130144268274, 0, 0, -0.0008294889703392982, 0, 0, 0, 0.003547092899680138, 0, -0.001670471974648535, 0.01483552809804678, -0.01653953641653061, 0, -0.004379804246127605, -0.000617214769590646, -0.0006323676789179444, -0.01059944555163383, 0.005598830990493298, 0.001559674274176359, 0.0007751876837573946, -0.018758499994874, -0.009758154861629009, 0, 0, 0, 0, 0, 0.009806215763092041, -5.078627145849168e-05, 0, 0, 0, 0.01553952042013407, 0, 0, -0.003376028966158628, -2.309098454134073e-05, 0, 0, 0.003607847029343247, 0, 0.007823695428669453, 0.01272412948310375, -0.03273601457476616, 0.005543493665754795, -0.02839321084320545, -0.007486246526241302, 0, 0, -0.001551265246234834, 0.007021114230155945, -0.04359285905957222, 0.02442231401801109, 0.02600440569221973, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01718804240226746, 0, -0.006163921672850847, 0, 0.01654910854995251, 0, 0, 0, 0, 0, 0, 0, 0.01123766787350178, 0, 0, 0, 0.007223800756037235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.008463663980364799, 0, -0.002391571179032326, 0, -0.0005999922286719084, 0,
0, 0, 0.002020813291892409, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005120484624058008, 0, 0, 0, 0, 0, 0, 0, -0.005842636339366436, 0, 0.005525544751435518, 0, -0.00151088391430676, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01148336473852396, 0, 0, 0, 0, 0,
0.0005501126288436353, -2.503635187167674e-05, 0.01689113490283489, 0, 0.0003551958070602268, -0.01648887246847153, -0.004475901834666729, 0, 0, -0.01078520342707634, 0.0006215377943590283, -0.002523933304473758, 0, 0, -4.318933497415856e-05, 0, 0.00435300637036562, 0.001545782666653395, 0.002797331195324659, 0, 0, 0, 0.004139279946684837, 0, -0.0009509211522527039, 0.004502885043621063, -0.003655120730400085, 0, 0, 0, 0.003458107821643353, 0, 0, 0, -0.01413300074636936, 0, 0, 0, 0, 0, 0, 0, 0.003691486082971096, 0, 0, 0, 0, 0, 0, 0, -0.0009275913471356034, 0, 0, 0, 0, 0, 0.001876638038083911, 0, 0.001803940278477967, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0.001037049689330161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.009412280283868313, 0, 0, 0.01085207611322403, 0.00206859759055078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01432360429316759, 0, 0, 0, 0, 0, 0, 0, 0.0008392476011067629, 0, 0, 0, 0.004185069352388382, 0, 0, -0.006643124856054783, 0.002848801435902715, -0.001289240666665137, -0.01317370496690273,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01307966373860836, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9.535279241390526e-05, 0, 0, 0, 0, 0, 0, 0, -0.0259930994361639, 0, 0, 0, 0, -0.001160115702077746, -0.00590062839910388, -0.01259010564535856, -0.002248737029731274, 0, 0, 0, 0.01680596917867661, 0, 0, 0, 0.003655622713267803, 0, 0, 0, 0, 0, 0, 0.01102581713348627, 0.0008109323098324239, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, -0.00231001153588295, 0, 0, 0, 0, 0, 0.0104571059346199, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01262239459902048, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004798572976142168, 0, 0, 0, -0.003466296009719372, -0.02338974177837372, 0.01007673982530832, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003289492335170507, -0.001489599118940532, 0, 0, 0, 0, 0, 0, 0, 0,
0.005301790311932564, 0, 0, 0, 0, 0, -0.004799652379006147, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.005472061689943075, 0, 0, 0, 0.009550963528454304, 0, -0.002378931036219001, 0, -0.004244956187903881, 0, -0.009398682042956352, 0, 0.008745159953832626, 0, -0.01497662719339132, 0, 0.003935978747904301, 0, 0, 0, 0.002824816852807999, -0.003020059550181031, -0.008112883195281029, -0.01624989882111549, 0.003236265853047371, 0, 0, 0, 0, 0, 0, 0, -0.002389962552115321, 0.002383831655606627, 0.005564420484006405, 0.009293172508478165, 0.004116393160074949, 0.0008492706692777574, -0.001228451263159513, 0.003197707468643785, 0, 0, -0.0004634180804714561, 0, 0.004614322446286678, 0, 0, 0,
0, 0, -0.008457349613308907, 0.006233833264559507, 0, 0.009648031555116177, 0, -0.01027065142989159, 0, 0, 0, 0.006571092642843723, 0, 0, 0, -0.004498523660004139, 0, 0, 0, -0.009252867661416531, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01379481144249439, 0, 0, 0, -0.008755522780120373, 0, 0, -0.002473230706527829, 0.001634430722333491, 0, 0, 0, 0.002360122976824641, 0, 0, 0, 0, 0, 0, 0, -0.001572453998960555, 0, 0, 0, -0.002192688407376409, 0, 0, 0, 0,
-0.007537443656474352, 0, 0.00134933611843735, -0.01302607916295528, -0.001414963626302779, -0.003959310241043568, -0.006539252121001482, 0.00193690147716552, 0, 0, 0, 0, 0, 0, 0.001522190170362592, 0, 0, 0, 0.001803838065825403, 0, 0.01719522662460804, 0, -0.003027968341484666, -0.001973073231056333, 0, 0, 0, 0.008304032497107983, -0.02154844254255295, 0, 0, 0.0005620296578854322, 0.0008571429061703384, -0.000926949258428067, 0.01012593042105436, 0, -0.01050555892288685, 0, 0.002890965202823281, 0.003239197190850973, 0, 0.0009146727970801294, -0.001179737504571676, 0, 0.01844048500061035, -0.0003584979858715087, 0.002297908999025822, -0.005822720006108284, 0, 0, 0, -0.007878607138991356, -0.005282885860651731, 0.01855233684182167, -0.01727291941642761, 0.01771031133830547, 0, 0, 0, 0, 0, 0.002253084210678935, -0.005008375737816095, 0.008914461359381676,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003338969545438886, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.01939024217426777, 0, 0, 0, 0, 0, 0, 0, -0.007696145679801702, 0, 0, 0, 0, 0, 0.005356818437576294, 0, 0.002573968376964331, 0, 0, 0, 0.009680358693003654, -0.005504757165908813, 0.0007029736298136413, 0, 0.005723221693187952, 0, 0, 0, -0.01186873484402895, 0.007153233978897333, -0.004614725708961487, 0.008400975726544857, 0.00888105109333992, 0, 0, 0, 0.01044219452887774, -0.002727305516600609, -0.008845078758895397,
0.007559569086879492, 0.002223454881459475, 0, 0, 0, 0.008498490788042545, 0, 0, 0, -0.01147664338350296, 0, 0, 0, 0.01480917725712061, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.003240773221477866, -0.0001833109126891941, 0, 0, 0, 0.0008049369207583368, -0.002586409915238619, -0.00258547393605113, 0, 0.004162928089499474, 0, 0, 0, 0, -0.002760590519756079, 0.0008737124153412879, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, -0.009917843155562878, -0.000901169260032475, 0.001247130800038576, 0, 6.435985415009782e-05, 0, -0.003960501868277788, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.001871480140835047, -0.001896787551231682, 0, 0, 0, -0.006608968134969473, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005394341889768839, 0, 0, 0, 0, 0.000950864574406296, 0, 0, -0.003690864192321897, 0.004683107603341341, 0, 0, 0, -0.01124089118093252, 0, 0, 0, 0.0003707870200742036, 0, 0, 0, 0, 0, 0, 0, 0.01423163432627916, 0, 0, 0, 0.00795288011431694,
0, 8.945041918195784e-05, 0, 5.791252260678448e-05, 0, 0, 0, 0, 0, -0.003427706426009536, -0.0009335157810710371, -0.00513123394921422, 0, 0, 0, 0.01672862470149994, 0, 0, 0, -0.001013539964333177, 0, 0, 0, 0, 0, 0, 0.005092237610369921, 0.0006590898265130818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008196642622351646, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.005947042256593704, 0, 0, 0, -0.001233348273672163,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.006264440715312958, 0, 0, 0, -0.00286157475784421, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0001637621171539649, 0, 0, 0, 0, 0, 0, 0, -0.004905905574560165, 0, -0.01127437874674797, 0, 0.001054862979799509, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007375700864940882, 0, 0, 0, 0, 0,
0, 0, -0.001984681002795696, 0, 0, 0, 0.006636980455368757, 0, 0, 0, -0.000694087240844965, 0, 0, 0, 0, 0, -0.01093307416886091, 0, 0.008873075246810913, -0.006158945150673389, 0, 0, -0.01447643991559744, -2.51591409323737e-05, 0, 0, -0.001101096393540502, 0, -5.353669985197484e-05, 0, 0.007152211386710405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.001338972127996385, -0.0198125783354044, 0, 0, 0, -0.006008380558341742, 0, 0, 0, 0.01102386508136988, 0, 0, 0, 0.002549398690462112, 0,
0.0004272043879609555, -0.001036049681715667, 0, 0, -0.002501323586329818, -0.0006136979791335762, 0, 9.197608960676007e-06, 0.01462037768214941, 0.00314620672725141, 0, 0, -0.003829227993264794, 0.005173168610781431, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.004078742116689682, 0, 0, 0, 0.001845600898377597, 0, 0, -0.003812777111306787, 0, 0.004783340729773045, 0.0003153723373543471, -2.263930764456745e-05, 0, -0.001683353213593364, -0.003922771662473679, -0.0002186121710110456, 0, -0.004088100977241993, 0, 0.003146209986880422, 0.01147977728396654, -0.007551674265414476, 0.008242463693022728, 0, 0, 0, 0, 0, 0, 0.006105490028858185, 0, 0, 0, 0, 0, -0.009838064201176167, 0, 3.397263935767114e-05, -0.00271971826441586,
0.002978211734443903, 0, -0.006145736668258905, 0.01711759902536869, 0, 0, 0.005924250464886427, 0, 0, 0, 0.01861677877604961, 0, 0, 0, -0.007276254706084728, 0, 0, 0, -0.005236800294369459, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.001650616293773055, 0, -0.001895346562378109, -0.0002303486835444346, -0.001243796898052096, 0, 0.002447541104629636, 0.0005965330055914819, 0.000440859905211255, 0.005046395119279623, -0.009703181684017181, 0, 0, 0, 0.01316391956061125, 0, 0, 0.003863960970193148, -0.002024281769990921, 0.001974559854716063, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
]
scale = 1
bias = 0.7821782231
model_ctrs = catboost_model_ctrs_container(
used_model_ctrs_count = 28,
compressed_model_ctrs = [
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [3],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471478, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471478, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471478, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130472, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [4],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471473, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471473, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471473, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130479, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [5],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471472, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471472, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471472, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130478, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [6],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471475, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471475, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471475, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130477, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [7],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471474, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471474, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471474, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130476, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [8],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471469, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471469, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471469, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130483, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
),
catboost_compressed_model_ctr(
projection = catboost_projection(
transposed_cat_feature_indexes = [10],
binarized_indexes = []
),
model_ctrs = [
catboost_model_ctr(base_hash = 768791580653471471, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471471, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 0.5, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 768791580653471471, base_ctr_type = "Borders", target_border_idx = 0, prior_num = 1, prior_denom = 1, shift = 0, scale = 1),
catboost_model_ctr(base_hash = 11154939068695130481, base_ctr_type = "FeatureFreq", target_border_idx = 0, prior_num = 0, prior_denom = 1, shift = 0, scale = 1)
]
)
],
ctr_data = catboost_ctr_data(
learn_ctrs = {
768791580653471469 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 18446744073709551615 : 0, 8473802870189803490 : 0, 7071392469244395075 : 2, 18446744073709551615 : 0, 8806438445905145973 : 3, 619730330622847022 : 1, 18446744073709551615 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 2.94273e-44, count = 61), catboost_ctr_mean_history(sum = 0, count = 12), catboost_ctr_mean_history(sum = 1.4013e-45, count = 5), catboost_ctr_mean_history(sum = 0, count = 1)],
ctr_total = [21, 61, 0, 12, 1, 5, 0, 1]
),
768791580653471471 :
catboost_ctr_value_table(
index_hash_viewer = {2136296385601851904 : 0, 7428730412605434673 : 2, 9959754109938180626 : 6, 14256903225472974739 : 1, 8056048104805248435 : 3, 18446744073709551615 : 0, 12130603730978457510 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 10789443546307262781 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 2.8026e-44, count = 73), catboost_ctr_mean_history(sum = 0, count = 1), catboost_ctr_mean_history(sum = 0, count = 2), catboost_ctr_mean_history(sum = 0, count = 2), catboost_ctr_mean_history(sum = 0, count = 1), catboost_ctr_mean_history(sum = 1.4013e-45, count = 0), catboost_ctr_mean_history(sum = 1.4013e-45, count = 0)],
ctr_total = [20, 73, 0, 1, 0, 2, 0, 2, 0, 1, 1, 0, 1, 0]
),
768791580653471472 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 18446744073709551615 : 0, 13987540656699198946 : 3, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18089724839685297862 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 10353740403438739754 : 1, 3922001124998993866 : 2, 13686716744772876732 : 4, 18293943161539901837 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 0, count = 13), catboost_ctr_mean_history(sum = 3.08286e-44, count = 20), catboost_ctr_mean_history(sum = 0, count = 37), catboost_ctr_mean_history(sum = 0, count = 2), catboost_ctr_mean_history(sum = 0, count = 4), catboost_ctr_mean_history(sum = 0, count = 3)],
ctr_total = [0, 13, 22, 20, 0, 37, 0, 2, 0, 4, 0, 3]
),
768791580653471473 :
catboost_ctr_value_table(
index_hash_viewer = {7537614347373541888 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 5903587924673389870 : 2, 18278593470046426063 : 6, 10490918088663114479 : 3, 18446744073709551615 : 0, 407784798908322194 : 7, 5726141494028968211 : 1, 1663272627194921140 : 10, 8118089682304925684 : 8, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 15431483020081801594 : 9, 18446744073709551615 : 0, 18446744073709551615 : 0, 1403990565605003389 : 5, 3699047549849816830 : 11, 14914630290137473119 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 9.80909e-45, count = 3), catboost_ctr_mean_history(sum = 1.4013e-45, count = 3), catboost_ctr_mean_history(sum = 5.60519e-45, count = 24), catboost_ctr_mean_history(sum = 0, count = 3), catboost_ctr_mean_history(sum = 5.60519e-45, count = 16), catboost_ctr_mean_history(sum = 4.2039e-45, count = 16), catboost_ctr_mean_history(sum = 0, count = 4), catboost_ctr_mean_history(sum = 0, count = 5), catboost_ctr_mean_history(sum = 1.4013e-45, count = 1), catboost_ctr_mean_history(sum = 0, count = 1), catboost_ctr_mean_history(sum = 0, count = 3), catboost_ctr_mean_history(sum = 2.8026e-45, count = 0)],
ctr_total = [7, 3, 1, 3, 4, 24, 0, 3, 4, 16, 3, 16, 0, 4, 0, 5, 1, 1, 0, 1, 0, 3, 2, 0]
),
768791580653471474 :
catboost_ctr_value_table(
index_hash_viewer = {3607388709394294015 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18356215166324018775 : 2, 18365206492781874408 : 1, 18446744073709551615 : 0, 18446744073709551615 : 0, 14559146096844143499 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 11416626865500250542 : 3, 5549384008678792175 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 0, count = 22), catboost_ctr_mean_history(sum = 2.8026e-45, count = 3), catboost_ctr_mean_history(sum = 0, count = 14), catboost_ctr_mean_history(sum = 2.66247e-44, count = 17), catboost_ctr_mean_history(sum = 0, count = 22), catboost_ctr_mean_history(sum = 1.4013e-45, count = 1)],
ctr_total = [0, 22, 2, 3, 0, 14, 19, 17, 0, 22, 1, 1]
),
768791580653471475 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 14452488454682494753 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 1388452262538353895 : 9, 8940247467966214344 : 1, 4415016594903340137 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 41084306841859596 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 8678739366408346384 : 2, 18446744073709551615 : 0, 4544226147037566482 : 11, 14256903225472974739 : 8, 16748601451484174196 : 7, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 5913522704362245435 : 6, 1466902651052050075 : 10, 2942073219785550491 : 12, 15383677753867481021 : 3, 18446744073709551615 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 8.40779e-45, count = 10), catboost_ctr_mean_history(sum = 2.8026e-45, count = 8), catboost_ctr_mean_history(sum = 0, count = 6), catboost_ctr_mean_history(sum = 2.8026e-45, count = 14), catboost_ctr_mean_history(sum = 1.4013e-45, count = 4), catboost_ctr_mean_history(sum = 2.8026e-45, count = 9), catboost_ctr_mean_history(sum = 0, count = 11), catboost_ctr_mean_history(sum = 0, count = 3), catboost_ctr_mean_history(sum = 1.4013e-45, count = 5), catboost_ctr_mean_history(sum = 9.80909e-45, count = 6), catboost_ctr_mean_history(sum = 0, count = 2), catboost_ctr_mean_history(sum = 1.4013e-45, count = 0), catboost_ctr_mean_history(sum = 0, count = 1)],
ctr_total = [6, 10, 2, 8, 0, 6, 2, 14, 1, 4, 2, 9, 0, 11, 0, 3, 1, 5, 7, 6, 0, 2, 1, 0, 0, 1]
),
768791580653471478 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 15379737126276794113 : 5, 18446744073709551615 : 0, 14256903225472974739 : 3, 18048946643763804916 : 1, 2051959227349154549 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 7024059537692152076 : 6, 18446744073709551615 : 0, 15472181234288693070 : 2, 8864790892067322495 : 0},
target_classes_count = 2,
counter_denominator = 0,
ctr_mean_history = [catboost_ctr_mean_history(sum = 1.4013e-44, count = 58), catboost_ctr_mean_history(sum = 0, count = 4), catboost_ctr_mean_history(sum = 1.4013e-45, count = 6), catboost_ctr_mean_history(sum = 1.4013e-45, count = 5), catboost_ctr_mean_history(sum = 4.2039e-45, count = 6), catboost_ctr_mean_history(sum = 2.8026e-45, count = 0), catboost_ctr_mean_history(sum = 7.00649e-45, count = 0)],
ctr_total = [10, 58, 0, 4, 1, 6, 1, 5, 3, 6, 2, 0, 5, 0]
),
11154939068695130472 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 15379737126276794113 : 5, 18446744073709551615 : 0, 14256903225472974739 : 3, 18048946643763804916 : 1, 2051959227349154549 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 7024059537692152076 : 6, 18446744073709551615 : 0, 15472181234288693070 : 2, 8864790892067322495 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 9.52883e-44, count = 4), catboost_ctr_mean_history(sum = 9.80909e-45, count = 6), catboost_ctr_mean_history(sum = 1.26117e-44, count = 2)],
ctr_total = [68, 4, 7, 6, 9, 2, 5]
),
11154939068695130476 :
catboost_ctr_value_table(
index_hash_viewer = {3607388709394294015 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18356215166324018775 : 2, 18365206492781874408 : 1, 18446744073709551615 : 0, 18446744073709551615 : 0, 14559146096844143499 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 11416626865500250542 : 3, 5549384008678792175 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 3.08286e-44, count = 5), catboost_ctr_mean_history(sum = 1.96182e-44, count = 36), catboost_ctr_mean_history(sum = 3.08286e-44, count = 2)],
ctr_total = [22, 5, 14, 36, 22, 2]
),
11154939068695130477 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 14452488454682494753 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 1388452262538353895 : 9, 8940247467966214344 : 1, 4415016594903340137 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 41084306841859596 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 8678739366408346384 : 2, 18446744073709551615 : 0, 4544226147037566482 : 11, 14256903225472974739 : 8, 16748601451484174196 : 7, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 5913522704362245435 : 6, 1466902651052050075 : 10, 2942073219785550491 : 12, 15383677753867481021 : 3, 18446744073709551615 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 2.24208e-44, count = 10), catboost_ctr_mean_history(sum = 8.40779e-45, count = 16), catboost_ctr_mean_history(sum = 7.00649e-45, count = 11), catboost_ctr_mean_history(sum = 1.54143e-44, count = 3), catboost_ctr_mean_history(sum = 8.40779e-45, count = 13), catboost_ctr_mean_history(sum = 2.8026e-45, count = 1)],
ctr_total = [16, 10, 6, 16, 5, 11, 11, 3, 6, 13, 2, 1, 1]
),
11154939068695130478 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 18446744073709551615 : 0, 13987540656699198946 : 3, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18089724839685297862 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 10353740403438739754 : 1, 3922001124998993866 : 2, 13686716744772876732 : 4, 18293943161539901837 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 1.82169e-44, count = 42), catboost_ctr_mean_history(sum = 5.1848e-44, count = 2), catboost_ctr_mean_history(sum = 5.60519e-45, count = 3)],
ctr_total = [13, 42, 37, 2, 4, 3]
),
11154939068695130479 :
catboost_ctr_value_table(
index_hash_viewer = {7537614347373541888 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 5903587924673389870 : 2, 18278593470046426063 : 6, 10490918088663114479 : 3, 18446744073709551615 : 0, 407784798908322194 : 7, 5726141494028968211 : 1, 1663272627194921140 : 10, 8118089682304925684 : 8, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 15431483020081801594 : 9, 18446744073709551615 : 0, 18446744073709551615 : 0, 1403990565605003389 : 5, 3699047549849816830 : 11, 14914630290137473119 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 1.4013e-44, count = 4), catboost_ctr_mean_history(sum = 3.92364e-44, count = 3), catboost_ctr_mean_history(sum = 2.8026e-44, count = 19), catboost_ctr_mean_history(sum = 5.60519e-45, count = 5), catboost_ctr_mean_history(sum = 2.8026e-45, count = 1), catboost_ctr_mean_history(sum = 4.2039e-45, count = 2)],
ctr_total = [10, 4, 28, 3, 20, 19, 4, 5, 2, 1, 3, 2]
),
11154939068695130481 :
catboost_ctr_value_table(
index_hash_viewer = {2136296385601851904 : 0, 7428730412605434673 : 2, 9959754109938180626 : 6, 14256903225472974739 : 1, 8056048104805248435 : 3, 18446744073709551615 : 0, 12130603730978457510 : 5, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 18446744073709551615 : 0, 10789443546307262781 : 4, 18446744073709551615 : 0, 18446744073709551615 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 1.30321e-43, count = 1), catboost_ctr_mean_history(sum = 2.8026e-45, count = 2), catboost_ctr_mean_history(sum = 1.4013e-45, count = 1)],
ctr_total = [93, 1, 2, 2, 1, 1, 1]
),
11154939068695130483 :
catboost_ctr_value_table(
index_hash_viewer = {18446744073709551615 : 0, 18446744073709551615 : 0, 8473802870189803490 : 0, 7071392469244395075 : 2, 18446744073709551615 : 0, 8806438445905145973 : 3, 619730330622847022 : 1, 18446744073709551615 : 0},
target_classes_count = 0,
counter_denominator = 101,
ctr_mean_history = [catboost_ctr_mean_history(sum = 1.14906e-43, count = 12), catboost_ctr_mean_history(sum = 8.40779e-45, count = 1)],
ctr_total = [82, 12, 6, 1]
)
}
)
)
### Routines to compute CTRs
def calc_hash(a, b):
max_int = 0xffFFffFFffFFffFF
MAGIC_MULT = 0x4906ba494954cb65
return (MAGIC_MULT * ((a + MAGIC_MULT * b) & max_int)) & max_int
def calc_hashes(binarized_features, hashed_cat_features, transposed_cat_feature_indexes, binarized_feature_indexes):
result = 0
for cat_feature_index in transposed_cat_feature_indexes:
result = calc_hash(result, hashed_cat_features[cat_feature_index])
for bin_feature_index in binarized_feature_indexes:
binary_feature = binarized_features[bin_feature_index.bin_index]
if not(bin_feature_index.check_value_equal):
result = calc_hash(result, 1 if (binary_feature >= bin_feature_index.value) else 0)
else:
result = calc_hash(result, 1 if (binary_feature == bin_feature_index.value) else 0)
return result
def calc_ctrs(model_ctrs, binarized_features, hashed_cat_features, result):
ctr_hash = 0
result_index = 0
for i in range(len(model_ctrs.compressed_model_ctrs)):
proj = model_ctrs.compressed_model_ctrs[i].projection
ctr_hash = calc_hashes(binarized_features, hashed_cat_features, proj.transposed_cat_feature_indexes, proj.binarized_indexes)
for j in range(len(model_ctrs.compressed_model_ctrs[i].model_ctrs)):
ctr = model_ctrs.compressed_model_ctrs[i].model_ctrs[j]
learn_ctr = model_ctrs.ctr_data.learn_ctrs[ctr.base_hash]
ctr_type = ctr.base_ctr_type
bucket = learn_ctr.resolve_hash_index(ctr_hash)
if bucket is None:
result[result_index] = ctr.calc(0, 0)
else:
if ctr_type == "BinarizedTargetMeanValue" or ctr_type == "FloatTargetMeanValue":
ctr_mean_history = learn_ctr.ctr_mean_history[bucket]
result[result_index] = ctr.calc(ctr_mean_history.sum, ctr_mean_history.count)
elif ctr_type == "Counter" or ctr_type == "FeatureFreq":
ctr_total = learn_ctr.ctr_total
denominator = learn_ctr.counter_denominator
result[result_index] = ctr.calc(ctr_total[bucket], denominator)
elif ctr_type == "Buckets":
ctr_history = learn_ctr.ctr_total
target_classes_count = learn_ctr.target_classes_count
total_count = 0
good_count = ctr_history[bucket * target_classes_count + ctr.target_border_idx];
for class_id in range(target_classes_count):
total_count += ctr_history[bucket * target_classes_count + class_id]
result[result_index] = ctr.calc(good_count, total_count)
else:
ctr_history = learn_ctr.ctr_total;
target_classes_count = learn_ctr.target_classes_count;
if target_classes_count > 2:
good_count = 0
total_count = 0
for class_id in range(ctr.target_border_idx + 1):
total_count += ctr_history[bucket * target_classes_count + class_id]
for class_id in range(ctr.target_border_idx + 1, target_classes_count):
good_count += ctr_history[bucket * target_classes_count + class_id]
total_count += good_count;
result[result_index] = ctr.calc(good_count, total_count);
else:
result[result_index] = ctr.calc(ctr_history[bucket * 2 + 1], ctr_history[bucket * 2] + ctr_history[bucket * 2 + 1])
result_index += 1
cat_features_hashes = {
"Female": -2114564283,
"Protective-serv": -2075156126,
"Assoc-voc": -2029370604,
"Married-civ-spouse": -2019910086,
"Federal-gov": -1993066135,
"Transport-moving": -1903253868,
"Farming-fishing": -1888947309,
"Prof-school": -1742589394,
"Self-emp-inc": -1732053524,
"?": -1576664757,
"Handlers-cleaners": -1555793520,
"0": -1438285038,
"Philippines": -1437257447,
"Male": -1291328762,
"11th": -1209300766,
"Unmarried": -1158645841,
"Local-gov": -1105932163,
"Divorced": -993514283,
"Some-college": -870577664,
"Asian-Pac-Islander": -787966085,
"Sales": -760428919,
"Self-emp-not-inc": -661998850,
"Widowed": -651660490,
"Masters": -453513993,
"State-gov": -447941100,
"Doctorate": -434936054,
"White": -218697806,
"Own-child": -189887997,
"Amer-Indian-Eskimo": -86031875,
"Exec-managerial": -26537793,
"Husband": 60472414,
"Italy": 117615621,
"Not-in-family": 143014663,
"n": 239748506,
"Married-spouse-absent": 261588508,
"Prof-specialty": 369959660,
"Assoc-acdm": 475479755,
"Adm-clerical": 495735304,
"Bachelors": 556725573,
"HS-grad": 580496350,
"Craft-repair": 709691013,
"Other-relative": 739168919,
"Other-service": 786213683,
"9th": 840896980,
"Separated": 887350706,
"10th": 888723975,
"Mexico": 972041323,
"Hong": 995245846,
"1": 1121341681,
"Tech-support": 1150039955,
"Black": 1161225950,
"Canada": 1510821218,
"Wife": 1708186408,
"United-States": 1736516096,
"Never-married": 1959200218,
"Machine-op-inspct": 2039859473,
"7th-8th": 2066982375,
"Private": 2084267031,
}
def hash_uint64(string):
return cat_features_hashes.get(str(string), 0x7fFFffFF)
### Applicator for the CatBoost model
def apply_catboost_model(float_features, cat_features=[], ntree_start=0, ntree_end=catboost_model.tree_count):
"""
Applies the model built by CatBoost.
Parameters
----------
float_features : list of float features
cat_features : list of categorical features
You need to pass float and categorical features separately in the same order they appeared in train dataset.
For example if you had features f1,f2,f3,f4, where f2 and f4 were considered categorical, you need to pass here float_features=f1,f3, cat_features=f2,f4
Returns
-------
prediction : formula value for the model and the features
"""
if ntree_end == 0:
ntree_end = catboost_model.tree_count
else:
ntree_end = min(ntree_end, catboost_model.tree_count)
model = catboost_model
assert len(float_features) >= model.float_feature_count
assert len(cat_features) >= model.cat_feature_count
# Binarise features
binary_features = [0] * model.binary_feature_count
binary_feature_index = 0
for i in range(len(model.float_feature_borders)):
for border in model.float_feature_borders[i]:
binary_features[binary_feature_index] += 1 if (float_features[model.float_features_index[i]] > border) else 0
binary_feature_index += 1
transposed_hash = [0] * model.cat_feature_count
for i in range(model.cat_feature_count):
transposed_hash[i] = hash_uint64(cat_features[i])
if len(model.one_hot_cat_feature_index) > 0:
cat_feature_packed_indexes = {}
for i in range(model.cat_feature_count):
cat_feature_packed_indexes[model.cat_features_index[i]] = i
for i in range(len(model.one_hot_cat_feature_index)):
cat_idx = cat_feature_packed_indexes[model.one_hot_cat_feature_index[i]]
hash = transposed_hash[cat_idx]
for border_idx in range(len(model.one_hot_hash_values[i])):
binary_features[binary_feature_index] |= (1 if hash == model.one_hot_hash_values[i][border_idx] else 0) * (border_idx + 1)
binary_feature_index += 1
if hasattr(model, 'model_ctrs') and model.model_ctrs.used_model_ctrs_count > 0:
ctrs = [0.] * model.model_ctrs.used_model_ctrs_count;
calc_ctrs(model.model_ctrs, binary_features, transposed_hash, ctrs)
for i in range(len(model.ctr_feature_borders)):
for border in model.ctr_feature_borders[i]:
binary_features[binary_feature_index] += 1 if ctrs[i] > border else 0
binary_feature_index += 1
# Extract and sum values from trees
result = 0.
tree_splits_index = 0
current_tree_leaf_values_index = 0
for tree_id in range(ntree_start, ntree_end):
current_tree_depth = model.tree_depth[tree_id]
index = 0
for depth in range(current_tree_depth):
border_val = model.tree_split_border[tree_splits_index + depth]
feature_index = model.tree_split_feature_index[tree_splits_index + depth]
xor_mask = model.tree_split_xor_mask[tree_splits_index + depth]
index |= ((binary_features[feature_index] ^ xor_mask) >= border_val) << depth
result += model.leaf_values[current_tree_leaf_values_index + index]
tree_splits_index += current_tree_depth
current_tree_leaf_values_index += (1 << current_tree_depth)
return model.scale * result + model.bias
|
"""
装饰器语法
闭包最佳实践
1. 有外有内:外函数接收旧功能,内函数包装新旧功能
2. 内使用外:需要在旧功能(外部嵌套变量)基础上增加新功能
3. 外返回内:为了客户端代码可以反复执行内部函数
本质作用:拦截调用
"""
def new_func(func):
def wrapper():
print("新功能") # 执行新功能
func() # 执行旧功能
return wrapper
# func01 = new_func(func01)
# 调用new_func函数
# 将下面func01函数作为参数
# 将new_func函数的返回值给func01
@new_func
def func01():
print("func01")
@new_func
def func02():
print("func02")
# 旧功能 = 新功能 + 旧功能
# func01 = new_func + func01
# 执行外部函数,返回值是内部函数
# func01 = new_func(func01)
# 执行内部函数
func01()
func02()
|
def solve(a, b):
larger = max(a, b)
return larger
def main():
a, b = map(int, input().strip().split())
a, b = int(str(a)[::-1]), int(str(b)[::-1])
return solve(a, b)
if __name__ == "__main__":
print(main()) |
"""
"""
encrypted_message=""
def convert_text(x):
"""
convert letters in text into the coresspoding alphabetic order
"""
l = list()
x = x.lower()
for i in x:
num = ord(i) - ord("a") + 1
l.append(num)
return l
def cal_occurence(correspoding_text_number_list):
"""
calcualte each occurence of a number in a list
"""
di = dict()
for i in correspoding_text_number_list:
i = str(i)
s = di.get(i, 0)
if s == 0:
di[i] = 1
else:
di[i] = di[i] + 1
return di
def get_heighest_val_in_dic(di):
num = 0
val = 0
for i in di.keys():
if di[i] > num:
num = di[i]
val = i
hi = (val, num)
return hi
def get_heighest_val_char(t, correspoding_text_number_list):
"""
get the heighest value corresponding letter
1-get the position of the number in the list (we get the number from the tuple)
2-then find the corresponding letter index in the text
"""
positon_in_the_list = correspoding_text_number_list.index(int(t[0]))
char = x[positon_in_the_list]
return char
def get_the_key(t):
"""
get the key by calculte how many number it shift from letter e possiton
"""
number = int(t[0])
key = number - 5
return key
def crack_cipher(x):
correspoding_text_number_list = convert_text(x)
d = cal_occurence(correspoding_text_number_list)
hi = get_heighest_val_in_dic(d)
val = get_heighest_val_char(hi, correspoding_text_number_list)
key = get_the_key(hi)
return key
print(crack_cipher(encrypted_message))
|
if __name__ == '__main__':
samples = [
[0, 0, 2, 'EA'],
[1, 'QRI', 0, 4, 'RRQR'],
[1, 'QFT', 1, 'QF', 7, 'FAQFDFQ'],
[1, 'EEZ', 1, 'QE', 7, 'QEEEERA'],
[0, 1, 'QW', 2, 'QW']
]
for sample in samples:
haha
|
# Copyright 2021 Robert Grimm
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Liberate your posts from Facebook"""
__version__ = "0.9.0"
__all__ = [
'cli',
'error',
'ingest',
'logger',
'model',
'serde',
'validator'
]
|
LOG_FILE_NAME = "logs/log.txt"
SUCESS_FILE_NAME = "logs/success.txt"
FAIL_FILE_NAME = "logs/fail.txt"
EXCEPTION_FILE_NAME = "logs/exception.txt"
ALL_PATHS = [LOG_FILE_NAME, SUCESS_FILE_NAME, FAIL_FILE_NAME, EXCEPTION_FILE_NAME] |
day = ["saturday", "sunday", "monday", "tuesday", "wednesday", "thursday", "friday"]
for _ in range(int(input())):
a = [x for x in input().split()]
# gap = abs(d[a[0]] - d[a[1]]) + 1
l,r = int(a[2]),int(a[3])
c,d = 0,0
for i in range(len(day)):
if(a[0] == day[i]): c = i
if(a[1] == day[i]): d = i
if(c == d):gap = 1
elif(c < d): gap = d - c + 1
# if(c < 7 and d < 7)
else : gap = 7 - (c - d - 1)
# print(gap)
# if(l > gap and (r < (gap + 7) or r < gap)):print('impossible')
# else:
ans = 0
c = 0
if(gap >= l and gap <= r):
c += 1
ans = gap
t = gap
while c < 3 and t <= r:
t += 7
if(t >= l and t <= r):
c += 1
ans = t
if(c > 1):print('many')
elif c == 1:print(ans)
else : print('impossible') |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Author: Jeremy Parks
# Note: Requires Python 3.3.x or higher
desc = "Animate Weapon target"
# types intended for this is "animate melee" and "animate range"
# Base type : settings pair
items = {
"0 animate melee white 4x1": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Normal", "Height 4", "Width 1"], "type": "animate melee b"},
"0 animate range white 4x1": {"other": ["Class Wand Bow", "Rarity Normal", "Height 4", "Width 1"], "type": "ignore"},
"0 animate melee magic 4x1": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Magic", "Height 4", "Width 1", "Identified True"], "type": "animate melee b"},
"0 animate range magic 4x1": {"other": ["Class Wand Bow", "Rarity Magic", "Height 4", "Width 1", "Identified True"], "type": "ignore"},
"0 animate melee white 3x1": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Normal", "Height 3", "Width 1"], "type": "animate melee b"},
"0 animate range white 3x1": {"other": ["Class Wand Bow", "Rarity Normal", "Height 3", "Width 1"], "type": "ignore"},
"0 animate melee magic 3x1": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Magic", "Height 3", "Width 1", "Identified True"], "type": "animate melee b"},
"0 animate range magic 3x1": {"other": ["Class Wand Bow", "Rarity Magic", "Height 3", "Width 1", "Identified True"], "type": "ignore"},
"0 animate melee white 2x2": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Normal", "Height 2", "Width 2"], "type": "animate melee b"},
"0 animate range white 2x2": {"other": ["Class Wand Bow", "Rarity Normal", "Height 2", "Width 2"], "type": "ignore"},
"0 animate melee magic 2x2": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Magic", "Height 2", "Width 2", "Identified True"], "type": "animate melee b"},
"0 animate range magic 2x2": {"other": ["Class Wand Bow", "Rarity Magic", "Height 2", "Width 2", "Identified True"], "type": "ignore"},
"1 animate melee white": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Normal"], "type": "animate melee"},
"1 animate range white": {"other": ["Class Wand Bow", "Rarity Normal"], "type": "ignore"},
"1 animate melee magic": {"other": ["Class Dagger \"One Hand\" Stave \"Two Hand\" Sceptre Claws", "Rarity Magic", "Identified True"], "type": "animate melee"},
"1 animate range magic": {"other": ["Class Wand Bow", "Rarity Magic", "Identified True"], "type": "ignore"},
} |
class Solution:
def buildtree(self, preorder, inorder):
if inorder:
root_index = inorder.index(preorder.pop(0))
root = TreeNode(inorder[root_index])
root.left = self.buildtree(preorder, inorder[:root_index])
rootright = self.buildtree(preorder, inorder[root_index+1:])
return root
|
# b_flow
# Flow constraint vector
__all__ = ["b_flow"]
def b_flow(a_vertices):
# b_flow
#
# Construct flow constraint vector
# (vector of size |V| x 1 representing the sum of flow for each vertex.
# Having removed source and drain nodes. Now require:
# L nodes = -1
# R nodes = +1
# A node = -|L|
# D node = +|L|
#
# Inputs: a_vertices - order of nodes in coupled matrix
# Outputs: b_flow - flow constraint vector.
#
b = []
# Total Cells
l_cells = sum(1 for x in a_vertices if 'L' in x)
r_cells = sum(1 for x in a_vertices if 'R' in x)
# run through nodes and adjust flow for source/drain
for node in a_vertices:
if 'L' in node:
b.append(-1)
elif 'R' in node:
b.append(1)
elif 'A' in node:
b.append(r_cells * (-1))
elif 'D' in node:
b.append(l_cells)
else:
print("Coupling matrix problems, there "
"remain split/merge vertices")
return b
|
# Leemos el posible dividendo
dividendo = input("Ingrese el dividendo: ")
#Intentamos convertirlo a número
try:
dividendo = int(dividendo)
# print("Su dividendo es", dividendo)
# Leemos el posible divisor
divisor = input("Ingrese el divisor: ")
#Intentamos convertirlo a número
try:
divisor = int(divisor)
#Validamos si dividendo es divisible entre divisor
if(dividendo%divisor==0):
print(dividendo,"es divisible entre",divisor)
else:
print(dividendo,"no es divisible entre",divisor)
# Si no es un número notificamos
except:
print(divisor, "no es un número")
except ValueError:
print(dividendo, "no es un número")
|
"""
There is a road consisting of N segments, numbered from 0 to N-1, represented by a string S.
Segment S[K] of the road may contain a pothole, denoted by a single uppercase "x" character, or may be a good segment without any potholes, denoted by a single dot,".".
For example, string".X. .X" means that there are two potholes in total in the road: one is located in segment S[1] and one in segment S[4].
All other segments are good. The road fixing machine can patch over three consecutive segments at once with asphalt and repair all the potholes located within each of these segments. Good or already repaired segments remain good after patching them. Your task is to compute the minimum number of patches required to repair all the potholes in the road.
Write a function: def solution(s) that, given a string S of length N, returns the minimum number of patches required to repair all the potholes.
Examples: 1. Given S=".X..x", your function should return 2. The road fixing machine could patch, for example, segments 0-2 and 2-4. 2.
Given S = "x.xxxxx.x", your function should return 3. The road fixing machine could patch, for example, segments 0-2, 3-5 and 6-8. 3.
Given S = "xx.xxx", your function should return 2. The road fixing machine could patch, for example, segments 0-2 and 3-5. 4. Given S = "xXxx", your function should return 2.
"""
def get_minimum_patches(road):
road_patch_map = {}
for i, block in enumerate(road):
if block.lower() != 'x':
continue
if (i-1 in road_patch_map) or (i-2) in road_patch_map:
continue
road_patch_map[i] = 1
return sum(road_patch_map.values())
if __name__ == '__main__':
roads = ['.X..x', 'x.xxxxx.x', 'xx.xxx']
for road in roads:
print(get_minimum_patches(road))
|
class Employee:
raise_amt = 1.04
def __init__(self, first, last, pay):
self.first = first
self.last = last
self.pay = pay
self.email = first + last + "@compani.com"
def fullname(self):
return f"{self.first} {self.last}"
def add_raise(self):
self.pay = int(self.pay * self.raise_amt)
class Developer(Employee):
raise_amt = 1.10
def __init__(self, first, last, pay, prog_lang):
super().__init__(first, last, pay)
self.prog_lang = prog_lang
class Mensager(Employee):
def __init__(self, first, last, pay, employees=None):
super().__init__(first, last, pay)
if employees is None:
self.employees = []
else:
self.employees = employees
def add_emps(self, emp):
if emp not in self.employees:
self.employees.append(emp)
def remove_emps(self, emp):
if emp in self.employees:
self.employees.remove(emp)
def str_emps(self):
for emp in self.employees:
print("--> ", emp.fullname())
dev1 = Developer("Corey", "schafer", 5000, "Pytho")
dev2 = Developer("Victor", "Marks", 6000, "C and C++")
msg1 = Mensager("Carla", "Bastos", 9000, [dev1])
msg2 = Mensager("Carla", "Bastos", 9000, [dev2])
msg1.remove_emps(dev1)
msg1.str_emps()
msg2.str_emps()
print(issubclass(Developer, Employee)) |
n = int(input())
while(n != 0):
jogadas = list(map(int, input().split()))
contMary = contJonh = 0
for i in range(len(jogadas)):
if(jogadas[i] == 0):
contMary = contMary + 1
else:
contJonh = contJonh + 1
print("Mary won {} times and John won {} times".format(contMary, contJonh))
n = int(input()) |
def lowestCommonAncestor(self, root, p, q):
if root in (None, p, q): return root
left = self.lowestCommonAncestor(root.left, p, q)
right = self.lowestCommonAncestor(root.right, p, q)
return root if left and right else left or right |
class Ordenation:
def selection_sort(self, lista):
fim = len(lista)
for i in range(fim-1):
# Inicialmente, o menor elemento ja visto e o i-esimo
posicao_do_menor = i
for j in range(i+1, fim):
if lista[j] < lista[posicao_do_menor]:
posicao_do_menor = j
# Coloca o menor elemento encontrado no inicio da sub-lista
# Para isso, troca de lugar os elementos da posicao i e da posicao_do_menor
lista[i], lista[posicao_do_menor] = lista[posicao_do_menor], lista[i]
ini = Ordenation()
lista = [1, 5, 9, 5, 8, 6, 3, 5, 4, 2, 3, 6]
ini.selection_sort(lista)
print(lista)
|
class heap(list):
"""docstring for heap"""
def __init__(self, heap_size):
super(heap, self).__init__()
self.heap_size = heap_size
def parent(i):
return ((i+1) / 2) - 1
def left(i):
return 2*i+1
def right(i):
return 2*i+2
def max_heapify(A, i):
while i < A.heap_size:
l = left(i)
r = left(i)
largest = i
if l < A.heap_size and A[l] > A[i]:
largest = l
if r < A.heap_size and A[r] > A[largest]:
largest = r
if largest != i:
A[i], A[largest] = A[largest], A[i]
i = largest
else:
break
# a = [27,17,3,16,13,10,1]
# A = heap(len(a))
# A.extend(a)
# max_heapify(A, 2)
# print A
|
def minimumMovement(obstacleLanes):
# Write your code here
pass
minimumMovement([2, 3, 2, 1, 3, 1]) # 2
minimumMovement([2, 1, 3, 3, 3, 1]) # 2
minimumMovement([3, 2, 2, 1, 2, 1]) # 1 |
class MyList(list):
def append(self, *args):
self.extend(args)
m = MyList()
m.append(0)
m.append(1,2,3,4,5,6)
print(m)
class MyList1(list):
def sort(self):
return 'eae vey? ta afim de ordenar?'
l = [4,1,78,34,4,9]
'''l.sort()
print(l)'''
lista = MyList1()
print(lista.sort())
|
"""
Fibonacci number sequence problem, find the nearest Fibonacci number
"""
def fibs():
a, b = 0, 1
yield a
yield b
while True:
a, b = b, a + b
yield b
def nearestFib(n):
"""If n is fibo num return True and n
Otherwiise return False and nearest Fibo"""
for fib in fibs():
if fib == n:
return True, n
elif fib < n:
prev = fib
else:
# is n closest to prev or to fib?
if n - prev < fib - n:
return False, prev
else:
return False, fib
print(nearestFib(1))
|
n1 = input('Digite algo:')
print('isnumeric:', n1.isnumeric())
print('isalpha:', n1.isalpha())
print('islower:', n1.islower())
print('isalnum:', n1.isalnum())
|
#===============================================================
# DMXIS Macro (c) 2010 db audioware limited
#===============================================================
RgbColour(75,0,130)
|
def calc_result(home, away):
if home < away:
return 'lose'
elif home > away:
return 'win'
else:
return 'draw'
def calc_bet_result(
home_score, away_score,
home_bet, away_bet,
shootout_winner=None,
shootout_bet=None,
):
if home_score == home_bet and away_score == away_bet:
score = 12
elif home_score - away_score == home_bet - away_bet:
score = 6
else:
score = 0
match_result = calc_result(home_score, away_score)
bet_result = calc_result(home_bet, away_bet)
if match_result == bet_result:
score += 3
if home_score + away_score == home_bet + away_bet and home_score + away_score >= 4:
score += 2
if home_score == home_bet or away_score == away_bet:
score += 2
if shootout_winner is not None:
if shootout_bet == shootout_winner:
if score in (6, 12):
# only in this cases you can guess penalty shootout
score += 4
return score if score > 0 else 1
# nothing total1 total4 result diff all shootout | score
# + | 1
# + | 2
# + | 2
# + | 3
# + + | 5
# + + | 5
# + | 6
# + | 12
# + + | 6 + 4 = 10
# + + | 12 + 4 = 16
|
#: Okay
GLOBAL_UPPER_CASE = 0
#: N816
mixedCase = 0
#: N816:1:1
mixed_Case = 0
#: Okay
_C = 0
#: Okay
__D = 0
#: N816
__mC = 0
#: N816
__mC__ = 0
#: Okay
__C6__ = 0
#: Okay
C6 = 0
#: Okay
C_6 = 0.
#: Okay(--ignore-names=mixedCase)
mixedCase = 0
|
cid = input('Digite o nome de sua cidade aqui: ')
cid2 = cid.lstrip()
cid3 = cid2[:5].upper()
cid6 = 'SANTO' in cid3
print('Sua cidade começa com a palavra Santo: {}'.format(cid6)) |
def sumOfNumbers(n):
if n <= 1:
return n
else:
return n + sumOfNumbers(n-1)
print(sumOfNumbers(10)) |
WIDTH = 32
HEIGHT = 32
FIRST = 0x20
LAST = 0x7f
_font =\
b'\x00\x4a\x5a\x0e\x4d\x57\x52\x46\x51\x48\x52\x54\x53\x48\x52'\
b'\x46\x20\x52\x52\x48\x52\x4e\x20\x52\x52\x59\x51\x5a\x52\x5b'\
b'\x53\x5a\x52\x59\x15\x49\x5b\x4e\x46\x4d\x47\x4d\x4d\x20\x52'\
b'\x4e\x47\x4d\x4d\x20\x52\x4e\x46\x4f\x47\x4d\x4d\x20\x52\x57'\
b'\x46\x56\x47\x56\x4d\x20\x52\x57\x47\x56\x4d\x20\x52\x57\x46'\
b'\x58\x47\x56\x4d\x0b\x48\x5d\x53\x42\x4c\x62\x20\x52\x59\x42'\
b'\x52\x62\x20\x52\x4c\x4f\x5a\x4f\x20\x52\x4b\x55\x59\x55\x29'\
b'\x48\x5c\x50\x42\x50\x5f\x20\x52\x54\x42\x54\x5f\x20\x52\x58'\
b'\x49\x57\x4a\x58\x4b\x59\x4a\x59\x49\x57\x47\x54\x46\x50\x46'\
b'\x4d\x47\x4b\x49\x4b\x4b\x4c\x4d\x4d\x4e\x4f\x4f\x55\x51\x57'\
b'\x52\x59\x54\x20\x52\x4b\x4b\x4d\x4d\x4f\x4e\x55\x50\x57\x51'\
b'\x58\x52\x59\x54\x59\x58\x57\x5a\x54\x5b\x50\x5b\x4d\x5a\x4b'\
b'\x58\x4b\x57\x4c\x56\x4d\x57\x4c\x58\x1f\x46\x5e\x5b\x46\x49'\
b'\x5b\x20\x52\x4e\x46\x50\x48\x50\x4a\x4f\x4c\x4d\x4d\x4b\x4d'\
b'\x49\x4b\x49\x49\x4a\x47\x4c\x46\x4e\x46\x50\x47\x53\x48\x56'\
b'\x48\x59\x47\x5b\x46\x20\x52\x57\x54\x55\x55\x54\x57\x54\x59'\
b'\x56\x5b\x58\x5b\x5a\x5a\x5b\x58\x5b\x56\x59\x54\x57\x54\x30'\
b'\x46\x5f\x5b\x4e\x5a\x4f\x5b\x50\x5c\x4f\x5c\x4e\x5b\x4d\x5a'\
b'\x4d\x59\x4e\x58\x50\x56\x55\x54\x58\x52\x5a\x50\x5b\x4d\x5b'\
b'\x4a\x5a\x49\x58\x49\x55\x4a\x53\x50\x4f\x52\x4d\x53\x4b\x53'\
b'\x49\x52\x47\x50\x46\x4e\x47\x4d\x49\x4d\x4b\x4e\x4e\x50\x51'\
b'\x55\x58\x57\x5a\x5a\x5b\x5b\x5b\x5c\x5a\x5c\x59\x20\x52\x4d'\
b'\x5b\x4b\x5a\x4a\x58\x4a\x55\x4b\x53\x4d\x51\x20\x52\x4d\x4b'\
b'\x4e\x4d\x56\x58\x58\x5a\x5a\x5b\x05\x4e\x56\x52\x46\x51\x4d'\
b'\x20\x52\x53\x46\x51\x4d\x13\x4b\x59\x56\x42\x54\x44\x52\x47'\
b'\x50\x4b\x4f\x50\x4f\x54\x50\x59\x52\x5d\x54\x60\x56\x62\x20'\
b'\x52\x54\x44\x52\x48\x51\x4b\x50\x50\x50\x54\x51\x59\x52\x5c'\
b'\x54\x60\x13\x4b\x59\x4e\x42\x50\x44\x52\x47\x54\x4b\x55\x50'\
b'\x55\x54\x54\x59\x52\x5d\x50\x60\x4e\x62\x20\x52\x50\x44\x52'\
b'\x48\x53\x4b\x54\x50\x54\x54\x53\x59\x52\x5c\x50\x60\x08\x4a'\
b'\x5a\x52\x4c\x52\x58\x20\x52\x4d\x4f\x57\x55\x20\x52\x57\x4f'\
b'\x4d\x55\x05\x45\x5f\x52\x49\x52\x5b\x20\x52\x49\x52\x5b\x52'\
b'\x07\x4e\x56\x53\x57\x52\x58\x51\x57\x52\x56\x53\x57\x53\x59'\
b'\x51\x5b\x02\x45\x5f\x49\x52\x5b\x52\x05\x4e\x56\x52\x56\x51'\
b'\x57\x52\x58\x53\x57\x52\x56\x02\x47\x5d\x5b\x42\x49\x62\x27'\
b'\x48\x5c\x51\x46\x4e\x47\x4c\x4a\x4b\x4f\x4b\x52\x4c\x57\x4e'\
b'\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x57\x59\x52\x59\x4f\x58\x4a'\
b'\x56\x47\x53\x46\x51\x46\x20\x52\x51\x46\x4f\x47\x4e\x48\x4d'\
b'\x4a\x4c\x4f\x4c\x52\x4d\x57\x4e\x59\x4f\x5a\x51\x5b\x20\x52'\
b'\x53\x5b\x55\x5a\x56\x59\x57\x57\x58\x52\x58\x4f\x57\x4a\x56'\
b'\x48\x55\x47\x53\x46\x0a\x48\x5c\x4e\x4a\x50\x49\x53\x46\x53'\
b'\x5b\x20\x52\x52\x47\x52\x5b\x20\x52\x4e\x5b\x57\x5b\x2c\x48'\
b'\x5c\x4c\x4a\x4d\x4b\x4c\x4c\x4b\x4b\x4b\x4a\x4c\x48\x4d\x47'\
b'\x50\x46\x54\x46\x57\x47\x58\x48\x59\x4a\x59\x4c\x58\x4e\x55'\
b'\x50\x50\x52\x4e\x53\x4c\x55\x4b\x58\x4b\x5b\x20\x52\x54\x46'\
b'\x56\x47\x57\x48\x58\x4a\x58\x4c\x57\x4e\x54\x50\x50\x52\x20'\
b'\x52\x4b\x59\x4c\x58\x4e\x58\x53\x5a\x56\x5a\x58\x59\x59\x58'\
b'\x20\x52\x4e\x58\x53\x5b\x57\x5b\x58\x5a\x59\x58\x59\x56\x2e'\
b'\x48\x5c\x4c\x4a\x4d\x4b\x4c\x4c\x4b\x4b\x4b\x4a\x4c\x48\x4d'\
b'\x47\x50\x46\x54\x46\x57\x47\x58\x49\x58\x4c\x57\x4e\x54\x4f'\
b'\x51\x4f\x20\x52\x54\x46\x56\x47\x57\x49\x57\x4c\x56\x4e\x54'\
b'\x4f\x20\x52\x54\x4f\x56\x50\x58\x52\x59\x54\x59\x57\x58\x59'\
b'\x57\x5a\x54\x5b\x50\x5b\x4d\x5a\x4c\x59\x4b\x57\x4b\x56\x4c'\
b'\x55\x4d\x56\x4c\x57\x20\x52\x57\x51\x58\x54\x58\x57\x57\x59'\
b'\x56\x5a\x54\x5b\x0c\x48\x5c\x54\x48\x54\x5b\x20\x52\x55\x46'\
b'\x55\x5b\x20\x52\x55\x46\x4a\x55\x5a\x55\x20\x52\x51\x5b\x58'\
b'\x5b\x26\x48\x5c\x4d\x46\x4b\x50\x20\x52\x4b\x50\x4d\x4e\x50'\
b'\x4d\x53\x4d\x56\x4e\x58\x50\x59\x53\x59\x55\x58\x58\x56\x5a'\
b'\x53\x5b\x50\x5b\x4d\x5a\x4c\x59\x4b\x57\x4b\x56\x4c\x55\x4d'\
b'\x56\x4c\x57\x20\x52\x53\x4d\x55\x4e\x57\x50\x58\x53\x58\x55'\
b'\x57\x58\x55\x5a\x53\x5b\x20\x52\x4d\x46\x57\x46\x20\x52\x4d'\
b'\x47\x52\x47\x57\x46\x2f\x48\x5c\x57\x49\x56\x4a\x57\x4b\x58'\
b'\x4a\x58\x49\x57\x47\x55\x46\x52\x46\x4f\x47\x4d\x49\x4c\x4b'\
b'\x4b\x4f\x4b\x55\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58'\
b'\x58\x59\x55\x59\x54\x58\x51\x56\x4f\x53\x4e\x52\x4e\x4f\x4f'\
b'\x4d\x51\x4c\x54\x20\x52\x52\x46\x50\x47\x4e\x49\x4d\x4b\x4c'\
b'\x4f\x4c\x55\x4d\x58\x4f\x5a\x51\x5b\x20\x52\x53\x5b\x55\x5a'\
b'\x57\x58\x58\x55\x58\x54\x57\x51\x55\x4f\x53\x4e\x1e\x48\x5c'\
b'\x4b\x46\x4b\x4c\x20\x52\x4b\x4a\x4c\x48\x4e\x46\x50\x46\x55'\
b'\x49\x57\x49\x58\x48\x59\x46\x20\x52\x4c\x48\x4e\x47\x50\x47'\
b'\x55\x49\x20\x52\x59\x46\x59\x49\x58\x4c\x54\x51\x53\x53\x52'\
b'\x56\x52\x5b\x20\x52\x58\x4c\x53\x51\x52\x53\x51\x56\x51\x5b'\
b'\x3e\x48\x5c\x50\x46\x4d\x47\x4c\x49\x4c\x4c\x4d\x4e\x50\x4f'\
b'\x54\x4f\x57\x4e\x58\x4c\x58\x49\x57\x47\x54\x46\x50\x46\x20'\
b'\x52\x50\x46\x4e\x47\x4d\x49\x4d\x4c\x4e\x4e\x50\x4f\x20\x52'\
b'\x54\x4f\x56\x4e\x57\x4c\x57\x49\x56\x47\x54\x46\x20\x52\x50'\
b'\x4f\x4d\x50\x4c\x51\x4b\x53\x4b\x57\x4c\x59\x4d\x5a\x50\x5b'\
b'\x54\x5b\x57\x5a\x58\x59\x59\x57\x59\x53\x58\x51\x57\x50\x54'\
b'\x4f\x20\x52\x50\x4f\x4e\x50\x4d\x51\x4c\x53\x4c\x57\x4d\x59'\
b'\x4e\x5a\x50\x5b\x20\x52\x54\x5b\x56\x5a\x57\x59\x58\x57\x58'\
b'\x53\x57\x51\x56\x50\x54\x4f\x2f\x48\x5c\x58\x4d\x57\x50\x55'\
b'\x52\x52\x53\x51\x53\x4e\x52\x4c\x50\x4b\x4d\x4b\x4c\x4c\x49'\
b'\x4e\x47\x51\x46\x53\x46\x56\x47\x58\x49\x59\x4c\x59\x52\x58'\
b'\x56\x57\x58\x55\x5a\x52\x5b\x4f\x5b\x4d\x5a\x4c\x58\x4c\x57'\
b'\x4d\x56\x4e\x57\x4d\x58\x20\x52\x51\x53\x4f\x52\x4d\x50\x4c'\
b'\x4d\x4c\x4c\x4d\x49\x4f\x47\x51\x46\x20\x52\x53\x46\x55\x47'\
b'\x57\x49\x58\x4c\x58\x52\x57\x56\x56\x58\x54\x5a\x52\x5b\x0b'\
b'\x4e\x56\x52\x4f\x51\x50\x52\x51\x53\x50\x52\x4f\x20\x52\x52'\
b'\x56\x51\x57\x52\x58\x53\x57\x52\x56\x0d\x4e\x56\x52\x4f\x51'\
b'\x50\x52\x51\x53\x50\x52\x4f\x20\x52\x53\x57\x52\x58\x51\x57'\
b'\x52\x56\x53\x57\x53\x59\x51\x5b\x03\x46\x5e\x5a\x49\x4a\x52'\
b'\x5a\x5b\x05\x45\x5f\x49\x4f\x5b\x4f\x20\x52\x49\x55\x5b\x55'\
b'\x03\x46\x5e\x4a\x49\x5a\x52\x4a\x5b\x1f\x49\x5b\x4d\x4a\x4e'\
b'\x4b\x4d\x4c\x4c\x4b\x4c\x4a\x4d\x48\x4e\x47\x50\x46\x53\x46'\
b'\x56\x47\x57\x48\x58\x4a\x58\x4c\x57\x4e\x56\x4f\x52\x51\x52'\
b'\x54\x20\x52\x53\x46\x55\x47\x56\x48\x57\x4a\x57\x4c\x56\x4e'\
b'\x54\x50\x20\x52\x52\x59\x51\x5a\x52\x5b\x53\x5a\x52\x59\x37'\
b'\x45\x60\x57\x4e\x56\x4c\x54\x4b\x51\x4b\x4f\x4c\x4e\x4d\x4d'\
b'\x50\x4d\x53\x4e\x55\x50\x56\x53\x56\x55\x55\x56\x53\x20\x52'\
b'\x51\x4b\x4f\x4d\x4e\x50\x4e\x53\x4f\x55\x50\x56\x20\x52\x57'\
b'\x4b\x56\x53\x56\x55\x58\x56\x5a\x56\x5c\x54\x5d\x51\x5d\x4f'\
b'\x5c\x4c\x5b\x4a\x59\x48\x57\x47\x54\x46\x51\x46\x4e\x47\x4c'\
b'\x48\x4a\x4a\x49\x4c\x48\x4f\x48\x52\x49\x55\x4a\x57\x4c\x59'\
b'\x4e\x5a\x51\x5b\x54\x5b\x57\x5a\x59\x59\x5a\x58\x20\x52\x58'\
b'\x4b\x57\x53\x57\x55\x58\x56\x11\x48\x5c\x52\x46\x4b\x5b\x20'\
b'\x52\x52\x46\x59\x5b\x20\x52\x52\x49\x58\x5b\x20\x52\x4d\x55'\
b'\x56\x55\x20\x52\x49\x5b\x4f\x5b\x20\x52\x55\x5b\x5b\x5b\x2c'\
b'\x47\x5d\x4c\x46\x4c\x5b\x20\x52\x4d\x46\x4d\x5b\x20\x52\x49'\
b'\x46\x55\x46\x58\x47\x59\x48\x5a\x4a\x5a\x4c\x59\x4e\x58\x4f'\
b'\x55\x50\x20\x52\x55\x46\x57\x47\x58\x48\x59\x4a\x59\x4c\x58'\
b'\x4e\x57\x4f\x55\x50\x20\x52\x4d\x50\x55\x50\x58\x51\x59\x52'\
b'\x5a\x54\x5a\x57\x59\x59\x58\x5a\x55\x5b\x49\x5b\x20\x52\x55'\
b'\x50\x57\x51\x58\x52\x59\x54\x59\x57\x58\x59\x57\x5a\x55\x5b'\
b'\x1f\x47\x5c\x58\x49\x59\x4c\x59\x46\x58\x49\x56\x47\x53\x46'\
b'\x51\x46\x4e\x47\x4c\x49\x4b\x4b\x4a\x4e\x4a\x53\x4b\x56\x4c'\
b'\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x58\x59\x56\x20\x52'\
b'\x51\x46\x4f\x47\x4d\x49\x4c\x4b\x4b\x4e\x4b\x53\x4c\x56\x4d'\
b'\x58\x4f\x5a\x51\x5b\x1d\x47\x5d\x4c\x46\x4c\x5b\x20\x52\x4d'\
b'\x46\x4d\x5b\x20\x52\x49\x46\x53\x46\x56\x47\x58\x49\x59\x4b'\
b'\x5a\x4e\x5a\x53\x59\x56\x58\x58\x56\x5a\x53\x5b\x49\x5b\x20'\
b'\x52\x53\x46\x55\x47\x57\x49\x58\x4b\x59\x4e\x59\x53\x58\x56'\
b'\x57\x58\x55\x5a\x53\x5b\x15\x47\x5c\x4c\x46\x4c\x5b\x20\x52'\
b'\x4d\x46\x4d\x5b\x20\x52\x53\x4c\x53\x54\x20\x52\x49\x46\x59'\
b'\x46\x59\x4c\x58\x46\x20\x52\x4d\x50\x53\x50\x20\x52\x49\x5b'\
b'\x59\x5b\x59\x55\x58\x5b\x13\x47\x5b\x4c\x46\x4c\x5b\x20\x52'\
b'\x4d\x46\x4d\x5b\x20\x52\x53\x4c\x53\x54\x20\x52\x49\x46\x59'\
b'\x46\x59\x4c\x58\x46\x20\x52\x4d\x50\x53\x50\x20\x52\x49\x5b'\
b'\x50\x5b\x27\x47\x5e\x58\x49\x59\x4c\x59\x46\x58\x49\x56\x47'\
b'\x53\x46\x51\x46\x4e\x47\x4c\x49\x4b\x4b\x4a\x4e\x4a\x53\x4b'\
b'\x56\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x58\x20\x52'\
b'\x51\x46\x4f\x47\x4d\x49\x4c\x4b\x4b\x4e\x4b\x53\x4c\x56\x4d'\
b'\x58\x4f\x5a\x51\x5b\x20\x52\x58\x53\x58\x5b\x20\x52\x59\x53'\
b'\x59\x5b\x20\x52\x55\x53\x5c\x53\x1a\x46\x5e\x4b\x46\x4b\x5b'\
b'\x20\x52\x4c\x46\x4c\x5b\x20\x52\x58\x46\x58\x5b\x20\x52\x59'\
b'\x46\x59\x5b\x20\x52\x48\x46\x4f\x46\x20\x52\x55\x46\x5c\x46'\
b'\x20\x52\x4c\x50\x58\x50\x20\x52\x48\x5b\x4f\x5b\x20\x52\x55'\
b'\x5b\x5c\x5b\x0b\x4d\x58\x52\x46\x52\x5b\x20\x52\x53\x46\x53'\
b'\x5b\x20\x52\x4f\x46\x56\x46\x20\x52\x4f\x5b\x56\x5b\x13\x4b'\
b'\x5a\x55\x46\x55\x57\x54\x5a\x52\x5b\x50\x5b\x4e\x5a\x4d\x58'\
b'\x4d\x56\x4e\x55\x4f\x56\x4e\x57\x20\x52\x54\x46\x54\x57\x53'\
b'\x5a\x52\x5b\x20\x52\x51\x46\x58\x46\x1a\x46\x5c\x4b\x46\x4b'\
b'\x5b\x20\x52\x4c\x46\x4c\x5b\x20\x52\x59\x46\x4c\x53\x20\x52'\
b'\x51\x4f\x59\x5b\x20\x52\x50\x4f\x58\x5b\x20\x52\x48\x46\x4f'\
b'\x46\x20\x52\x55\x46\x5b\x46\x20\x52\x48\x5b\x4f\x5b\x20\x52'\
b'\x55\x5b\x5b\x5b\x0d\x49\x5b\x4e\x46\x4e\x5b\x20\x52\x4f\x46'\
b'\x4f\x5b\x20\x52\x4b\x46\x52\x46\x20\x52\x4b\x5b\x5a\x5b\x5a'\
b'\x55\x59\x5b\x1d\x46\x5f\x4b\x46\x4b\x5b\x20\x52\x4c\x46\x52'\
b'\x58\x20\x52\x4b\x46\x52\x5b\x20\x52\x59\x46\x52\x5b\x20\x52'\
b'\x59\x46\x59\x5b\x20\x52\x5a\x46\x5a\x5b\x20\x52\x48\x46\x4c'\
b'\x46\x20\x52\x59\x46\x5d\x46\x20\x52\x48\x5b\x4e\x5b\x20\x52'\
b'\x56\x5b\x5d\x5b\x14\x47\x5e\x4c\x46\x4c\x5b\x20\x52\x4d\x46'\
b'\x59\x59\x20\x52\x4d\x48\x59\x5b\x20\x52\x59\x46\x59\x5b\x20'\
b'\x52\x49\x46\x4d\x46\x20\x52\x56\x46\x5c\x46\x20\x52\x49\x5b'\
b'\x4f\x5b\x2b\x47\x5d\x51\x46\x4e\x47\x4c\x49\x4b\x4b\x4a\x4f'\
b'\x4a\x52\x4b\x56\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58'\
b'\x58\x59\x56\x5a\x52\x5a\x4f\x59\x4b\x58\x49\x56\x47\x53\x46'\
b'\x51\x46\x20\x52\x51\x46\x4f\x47\x4d\x49\x4c\x4b\x4b\x4f\x4b'\
b'\x52\x4c\x56\x4d\x58\x4f\x5a\x51\x5b\x20\x52\x53\x5b\x55\x5a'\
b'\x57\x58\x58\x56\x59\x52\x59\x4f\x58\x4b\x57\x49\x55\x47\x53'\
b'\x46\x1c\x47\x5d\x4c\x46\x4c\x5b\x20\x52\x4d\x46\x4d\x5b\x20'\
b'\x52\x49\x46\x55\x46\x58\x47\x59\x48\x5a\x4a\x5a\x4d\x59\x4f'\
b'\x58\x50\x55\x51\x4d\x51\x20\x52\x55\x46\x57\x47\x58\x48\x59'\
b'\x4a\x59\x4d\x58\x4f\x57\x50\x55\x51\x20\x52\x49\x5b\x50\x5b'\
b'\x3f\x47\x5d\x51\x46\x4e\x47\x4c\x49\x4b\x4b\x4a\x4f\x4a\x52'\
b'\x4b\x56\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x58\x59'\
b'\x56\x5a\x52\x5a\x4f\x59\x4b\x58\x49\x56\x47\x53\x46\x51\x46'\
b'\x20\x52\x51\x46\x4f\x47\x4d\x49\x4c\x4b\x4b\x4f\x4b\x52\x4c'\
b'\x56\x4d\x58\x4f\x5a\x51\x5b\x20\x52\x53\x5b\x55\x5a\x57\x58'\
b'\x58\x56\x59\x52\x59\x4f\x58\x4b\x57\x49\x55\x47\x53\x46\x20'\
b'\x52\x4e\x59\x4e\x58\x4f\x56\x51\x55\x52\x55\x54\x56\x55\x58'\
b'\x56\x5f\x57\x60\x59\x60\x5a\x5e\x5a\x5d\x20\x52\x55\x58\x56'\
b'\x5c\x57\x5e\x58\x5f\x59\x5f\x5a\x5e\x2c\x47\x5d\x4c\x46\x4c'\
b'\x5b\x20\x52\x4d\x46\x4d\x5b\x20\x52\x49\x46\x55\x46\x58\x47'\
b'\x59\x48\x5a\x4a\x5a\x4c\x59\x4e\x58\x4f\x55\x50\x4d\x50\x20'\
b'\x52\x55\x46\x57\x47\x58\x48\x59\x4a\x59\x4c\x58\x4e\x57\x4f'\
b'\x55\x50\x20\x52\x49\x5b\x50\x5b\x20\x52\x52\x50\x54\x51\x55'\
b'\x52\x58\x59\x59\x5a\x5a\x5a\x5b\x59\x20\x52\x54\x51\x55\x53'\
b'\x57\x5a\x58\x5b\x5a\x5b\x5b\x59\x5b\x58\x21\x48\x5c\x58\x49'\
b'\x59\x46\x59\x4c\x58\x49\x56\x47\x53\x46\x50\x46\x4d\x47\x4b'\
b'\x49\x4b\x4b\x4c\x4d\x4d\x4e\x4f\x4f\x55\x51\x57\x52\x59\x54'\
b'\x20\x52\x4b\x4b\x4d\x4d\x4f\x4e\x55\x50\x57\x51\x58\x52\x59'\
b'\x54\x59\x58\x57\x5a\x54\x5b\x51\x5b\x4e\x5a\x4c\x58\x4b\x55'\
b'\x4b\x5b\x4c\x58\x0f\x49\x5c\x52\x46\x52\x5b\x20\x52\x53\x46'\
b'\x53\x5b\x20\x52\x4c\x46\x4b\x4c\x4b\x46\x5a\x46\x5a\x4c\x59'\
b'\x46\x20\x52\x4f\x5b\x56\x5b\x16\x46\x5e\x4b\x46\x4b\x55\x4c'\
b'\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x58\x59\x55\x59\x46'\
b'\x20\x52\x4c\x46\x4c\x55\x4d\x58\x4f\x5a\x51\x5b\x20\x52\x48'\
b'\x46\x4f\x46\x20\x52\x56\x46\x5c\x46\x0e\x48\x5c\x4b\x46\x52'\
b'\x5b\x20\x52\x4c\x46\x52\x58\x20\x52\x59\x46\x52\x5b\x20\x52'\
b'\x49\x46\x4f\x46\x20\x52\x55\x46\x5b\x46\x17\x46\x5e\x4a\x46'\
b'\x4e\x5b\x20\x52\x4b\x46\x4e\x56\x20\x52\x52\x46\x4e\x5b\x20'\
b'\x52\x52\x46\x56\x5b\x20\x52\x53\x46\x56\x56\x20\x52\x5a\x46'\
b'\x56\x5b\x20\x52\x47\x46\x4e\x46\x20\x52\x57\x46\x5d\x46\x14'\
b'\x48\x5c\x4b\x46\x58\x5b\x20\x52\x4c\x46\x59\x5b\x20\x52\x59'\
b'\x46\x4b\x5b\x20\x52\x49\x46\x4f\x46\x20\x52\x55\x46\x5b\x46'\
b'\x20\x52\x49\x5b\x4f\x5b\x20\x52\x55\x5b\x5b\x5b\x13\x48\x5d'\
b'\x4b\x46\x52\x51\x52\x5b\x20\x52\x4c\x46\x53\x51\x53\x5b\x20'\
b'\x52\x5a\x46\x53\x51\x20\x52\x49\x46\x4f\x46\x20\x52\x56\x46'\
b'\x5c\x46\x20\x52\x4f\x5b\x56\x5b\x0f\x48\x5c\x58\x46\x4b\x5b'\
b'\x20\x52\x59\x46\x4c\x5b\x20\x52\x4c\x46\x4b\x4c\x4b\x46\x59'\
b'\x46\x20\x52\x4b\x5b\x59\x5b\x59\x55\x58\x5b\x0b\x4b\x59\x4f'\
b'\x42\x4f\x62\x20\x52\x50\x42\x50\x62\x20\x52\x4f\x42\x56\x42'\
b'\x20\x52\x4f\x62\x56\x62\x02\x4b\x59\x4b\x46\x59\x5e\x0b\x4b'\
b'\x59\x54\x42\x54\x62\x20\x52\x55\x42\x55\x62\x20\x52\x4e\x42'\
b'\x55\x42\x20\x52\x4e\x62\x55\x62\x07\x47\x5d\x4a\x54\x52\x4f'\
b'\x5a\x54\x20\x52\x4a\x54\x52\x50\x5a\x54\x02\x48\x5c\x48\x62'\
b'\x5c\x62\x06\x4c\x58\x50\x46\x55\x4c\x20\x52\x50\x46\x4f\x47'\
b'\x55\x4c\x26\x49\x5d\x4e\x4f\x4e\x50\x4d\x50\x4d\x4f\x4e\x4e'\
b'\x50\x4d\x54\x4d\x56\x4e\x57\x4f\x58\x51\x58\x58\x59\x5a\x5a'\
b'\x5b\x20\x52\x57\x4f\x57\x58\x58\x5a\x5a\x5b\x5b\x5b\x20\x52'\
b'\x57\x51\x56\x52\x50\x53\x4d\x54\x4c\x56\x4c\x58\x4d\x5a\x50'\
b'\x5b\x53\x5b\x55\x5a\x57\x58\x20\x52\x50\x53\x4e\x54\x4d\x56'\
b'\x4d\x58\x4e\x5a\x50\x5b\x20\x47\x5c\x4c\x46\x4c\x5b\x20\x52'\
b'\x4d\x46\x4d\x5b\x20\x52\x4d\x50\x4f\x4e\x51\x4d\x53\x4d\x56'\
b'\x4e\x58\x50\x59\x53\x59\x55\x58\x58\x56\x5a\x53\x5b\x51\x5b'\
b'\x4f\x5a\x4d\x58\x20\x52\x53\x4d\x55\x4e\x57\x50\x58\x53\x58'\
b'\x55\x57\x58\x55\x5a\x53\x5b\x20\x52\x49\x46\x4d\x46\x1b\x48'\
b'\x5b\x57\x50\x56\x51\x57\x52\x58\x51\x58\x50\x56\x4e\x54\x4d'\
b'\x51\x4d\x4e\x4e\x4c\x50\x4b\x53\x4b\x55\x4c\x58\x4e\x5a\x51'\
b'\x5b\x53\x5b\x56\x5a\x58\x58\x20\x52\x51\x4d\x4f\x4e\x4d\x50'\
b'\x4c\x53\x4c\x55\x4d\x58\x4f\x5a\x51\x5b\x23\x48\x5d\x57\x46'\
b'\x57\x5b\x20\x52\x58\x46\x58\x5b\x20\x52\x57\x50\x55\x4e\x53'\
b'\x4d\x51\x4d\x4e\x4e\x4c\x50\x4b\x53\x4b\x55\x4c\x58\x4e\x5a'\
b'\x51\x5b\x53\x5b\x55\x5a\x57\x58\x20\x52\x51\x4d\x4f\x4e\x4d'\
b'\x50\x4c\x53\x4c\x55\x4d\x58\x4f\x5a\x51\x5b\x20\x52\x54\x46'\
b'\x58\x46\x20\x52\x57\x5b\x5b\x5b\x1e\x48\x5b\x4c\x53\x58\x53'\
b'\x58\x51\x57\x4f\x56\x4e\x54\x4d\x51\x4d\x4e\x4e\x4c\x50\x4b'\
b'\x53\x4b\x55\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56\x5a\x58\x58'\
b'\x20\x52\x57\x53\x57\x50\x56\x4e\x20\x52\x51\x4d\x4f\x4e\x4d'\
b'\x50\x4c\x53\x4c\x55\x4d\x58\x4f\x5a\x51\x5b\x15\x4b\x58\x55'\
b'\x47\x54\x48\x55\x49\x56\x48\x56\x47\x55\x46\x53\x46\x51\x47'\
b'\x50\x49\x50\x5b\x20\x52\x53\x46\x52\x47\x51\x49\x51\x5b\x20'\
b'\x52\x4d\x4d\x55\x4d\x20\x52\x4d\x5b\x54\x5b\x3b\x49\x5c\x51'\
b'\x4d\x4f\x4e\x4e\x4f\x4d\x51\x4d\x53\x4e\x55\x4f\x56\x51\x57'\
b'\x53\x57\x55\x56\x56\x55\x57\x53\x57\x51\x56\x4f\x55\x4e\x53'\
b'\x4d\x51\x4d\x20\x52\x4f\x4e\x4e\x50\x4e\x54\x4f\x56\x20\x52'\
b'\x55\x56\x56\x54\x56\x50\x55\x4e\x20\x52\x56\x4f\x57\x4e\x59'\
b'\x4d\x59\x4e\x57\x4e\x20\x52\x4e\x55\x4d\x56\x4c\x58\x4c\x59'\
b'\x4d\x5b\x50\x5c\x55\x5c\x58\x5d\x59\x5e\x20\x52\x4c\x59\x4d'\
b'\x5a\x50\x5b\x55\x5b\x58\x5c\x59\x5e\x59\x5f\x58\x61\x55\x62'\
b'\x4f\x62\x4c\x61\x4b\x5f\x4b\x5e\x4c\x5c\x4f\x5b\x1b\x47\x5d'\
b'\x4c\x46\x4c\x5b\x20\x52\x4d\x46\x4d\x5b\x20\x52\x4d\x50\x4f'\
b'\x4e\x52\x4d\x54\x4d\x57\x4e\x58\x50\x58\x5b\x20\x52\x54\x4d'\
b'\x56\x4e\x57\x50\x57\x5b\x20\x52\x49\x46\x4d\x46\x20\x52\x49'\
b'\x5b\x50\x5b\x20\x52\x54\x5b\x5b\x5b\x11\x4d\x58\x52\x46\x51'\
b'\x47\x52\x48\x53\x47\x52\x46\x20\x52\x52\x4d\x52\x5b\x20\x52'\
b'\x53\x4d\x53\x5b\x20\x52\x4f\x4d\x53\x4d\x20\x52\x4f\x5b\x56'\
b'\x5b\x18\x4d\x58\x53\x46\x52\x47\x53\x48\x54\x47\x53\x46\x20'\
b'\x52\x54\x4d\x54\x5f\x53\x61\x51\x62\x4f\x62\x4e\x61\x4e\x60'\
b'\x4f\x5f\x50\x60\x4f\x61\x20\x52\x53\x4d\x53\x5f\x52\x61\x51'\
b'\x62\x20\x52\x50\x4d\x54\x4d\x1a\x47\x5c\x4c\x46\x4c\x5b\x20'\
b'\x52\x4d\x46\x4d\x5b\x20\x52\x57\x4d\x4d\x57\x20\x52\x52\x53'\
b'\x58\x5b\x20\x52\x51\x53\x57\x5b\x20\x52\x49\x46\x4d\x46\x20'\
b'\x52\x54\x4d\x5a\x4d\x20\x52\x49\x5b\x50\x5b\x20\x52\x54\x5b'\
b'\x5a\x5b\x0b\x4d\x58\x52\x46\x52\x5b\x20\x52\x53\x46\x53\x5b'\
b'\x20\x52\x4f\x46\x53\x46\x20\x52\x4f\x5b\x56\x5b\x2b\x42\x63'\
b'\x47\x4d\x47\x5b\x20\x52\x48\x4d\x48\x5b\x20\x52\x48\x50\x4a'\
b'\x4e\x4d\x4d\x4f\x4d\x52\x4e\x53\x50\x53\x5b\x20\x52\x4f\x4d'\
b'\x51\x4e\x52\x50\x52\x5b\x20\x52\x53\x50\x55\x4e\x58\x4d\x5a'\
b'\x4d\x5d\x4e\x5e\x50\x5e\x5b\x20\x52\x5a\x4d\x5c\x4e\x5d\x50'\
b'\x5d\x5b\x20\x52\x44\x4d\x48\x4d\x20\x52\x44\x5b\x4b\x5b\x20'\
b'\x52\x4f\x5b\x56\x5b\x20\x52\x5a\x5b\x61\x5b\x1b\x47\x5d\x4c'\
b'\x4d\x4c\x5b\x20\x52\x4d\x4d\x4d\x5b\x20\x52\x4d\x50\x4f\x4e'\
b'\x52\x4d\x54\x4d\x57\x4e\x58\x50\x58\x5b\x20\x52\x54\x4d\x56'\
b'\x4e\x57\x50\x57\x5b\x20\x52\x49\x4d\x4d\x4d\x20\x52\x49\x5b'\
b'\x50\x5b\x20\x52\x54\x5b\x5b\x5b\x23\x48\x5c\x51\x4d\x4e\x4e'\
b'\x4c\x50\x4b\x53\x4b\x55\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x56'\
b'\x5a\x58\x58\x59\x55\x59\x53\x58\x50\x56\x4e\x53\x4d\x51\x4d'\
b'\x20\x52\x51\x4d\x4f\x4e\x4d\x50\x4c\x53\x4c\x55\x4d\x58\x4f'\
b'\x5a\x51\x5b\x20\x52\x53\x5b\x55\x5a\x57\x58\x58\x55\x58\x53'\
b'\x57\x50\x55\x4e\x53\x4d\x23\x47\x5c\x4c\x4d\x4c\x62\x20\x52'\
b'\x4d\x4d\x4d\x62\x20\x52\x4d\x50\x4f\x4e\x51\x4d\x53\x4d\x56'\
b'\x4e\x58\x50\x59\x53\x59\x55\x58\x58\x56\x5a\x53\x5b\x51\x5b'\
b'\x4f\x5a\x4d\x58\x20\x52\x53\x4d\x55\x4e\x57\x50\x58\x53\x58'\
b'\x55\x57\x58\x55\x5a\x53\x5b\x20\x52\x49\x4d\x4d\x4d\x20\x52'\
b'\x49\x62\x50\x62\x20\x48\x5c\x57\x4d\x57\x62\x20\x52\x58\x4d'\
b'\x58\x62\x20\x52\x57\x50\x55\x4e\x53\x4d\x51\x4d\x4e\x4e\x4c'\
b'\x50\x4b\x53\x4b\x55\x4c\x58\x4e\x5a\x51\x5b\x53\x5b\x55\x5a'\
b'\x57\x58\x20\x52\x51\x4d\x4f\x4e\x4d\x50\x4c\x53\x4c\x55\x4d'\
b'\x58\x4f\x5a\x51\x5b\x20\x52\x54\x62\x5b\x62\x16\x49\x5a\x4e'\
b'\x4d\x4e\x5b\x20\x52\x4f\x4d\x4f\x5b\x20\x52\x4f\x53\x50\x50'\
b'\x52\x4e\x54\x4d\x57\x4d\x58\x4e\x58\x4f\x57\x50\x56\x4f\x57'\
b'\x4e\x20\x52\x4b\x4d\x4f\x4d\x20\x52\x4b\x5b\x52\x5b\x1f\x4a'\
b'\x5b\x57\x4f\x58\x4d\x58\x51\x57\x4f\x56\x4e\x54\x4d\x50\x4d'\
b'\x4e\x4e\x4d\x4f\x4d\x51\x4e\x52\x50\x53\x55\x55\x57\x56\x58'\
b'\x57\x20\x52\x4d\x50\x4e\x51\x50\x52\x55\x54\x57\x55\x58\x56'\
b'\x58\x59\x57\x5a\x55\x5b\x51\x5b\x4f\x5a\x4e\x59\x4d\x57\x4d'\
b'\x5b\x4e\x59\x0f\x4b\x5a\x50\x46\x50\x57\x51\x5a\x53\x5b\x55'\
b'\x5b\x57\x5a\x58\x58\x20\x52\x51\x46\x51\x57\x52\x5a\x53\x5b'\
b'\x20\x52\x4d\x4d\x55\x4d\x1b\x47\x5d\x4c\x4d\x4c\x58\x4d\x5a'\
b'\x50\x5b\x52\x5b\x55\x5a\x57\x58\x20\x52\x4d\x4d\x4d\x58\x4e'\
b'\x5a\x50\x5b\x20\x52\x57\x4d\x57\x5b\x20\x52\x58\x4d\x58\x5b'\
b'\x20\x52\x49\x4d\x4d\x4d\x20\x52\x54\x4d\x58\x4d\x20\x52\x57'\
b'\x5b\x5b\x5b\x0e\x49\x5b\x4c\x4d\x52\x5b\x20\x52\x4d\x4d\x52'\
b'\x59\x20\x52\x58\x4d\x52\x5b\x20\x52\x4a\x4d\x50\x4d\x20\x52'\
b'\x54\x4d\x5a\x4d\x17\x46\x5e\x4a\x4d\x4e\x5b\x20\x52\x4b\x4d'\
b'\x4e\x58\x20\x52\x52\x4d\x4e\x5b\x20\x52\x52\x4d\x56\x5b\x20'\
b'\x52\x53\x4d\x56\x58\x20\x52\x5a\x4d\x56\x5b\x20\x52\x47\x4d'\
b'\x4e\x4d\x20\x52\x57\x4d\x5d\x4d\x14\x48\x5c\x4c\x4d\x57\x5b'\
b'\x20\x52\x4d\x4d\x58\x5b\x20\x52\x58\x4d\x4c\x5b\x20\x52\x4a'\
b'\x4d\x50\x4d\x20\x52\x54\x4d\x5a\x4d\x20\x52\x4a\x5b\x50\x5b'\
b'\x20\x52\x54\x5b\x5a\x5b\x15\x48\x5b\x4c\x4d\x52\x5b\x20\x52'\
b'\x4d\x4d\x52\x59\x20\x52\x58\x4d\x52\x5b\x50\x5f\x4e\x61\x4c'\
b'\x62\x4b\x62\x4a\x61\x4b\x60\x4c\x61\x20\x52\x4a\x4d\x50\x4d'\
b'\x20\x52\x54\x4d\x5a\x4d\x0f\x49\x5b\x57\x4d\x4c\x5b\x20\x52'\
b'\x58\x4d\x4d\x5b\x20\x52\x4d\x4d\x4c\x51\x4c\x4d\x58\x4d\x20'\
b'\x52\x4c\x5b\x58\x5b\x58\x57\x57\x5b\x27\x4b\x59\x54\x42\x52'\
b'\x43\x51\x44\x50\x46\x50\x48\x51\x4a\x52\x4b\x53\x4d\x53\x4f'\
b'\x51\x51\x20\x52\x52\x43\x51\x45\x51\x47\x52\x49\x53\x4a\x54'\
b'\x4c\x54\x4e\x53\x50\x4f\x52\x53\x54\x54\x56\x54\x58\x53\x5a'\
b'\x52\x5b\x51\x5d\x51\x5f\x52\x61\x20\x52\x51\x53\x53\x55\x53'\
b'\x57\x52\x59\x51\x5a\x50\x5c\x50\x5e\x51\x60\x52\x61\x54\x62'\
b'\x02\x4e\x56\x52\x42\x52\x62\x27\x4b\x59\x50\x42\x52\x43\x53'\
b'\x44\x54\x46\x54\x48\x53\x4a\x52\x4b\x51\x4d\x51\x4f\x53\x51'\
b'\x20\x52\x52\x43\x53\x45\x53\x47\x52\x49\x51\x4a\x50\x4c\x50'\
b'\x4e\x51\x50\x55\x52\x51\x54\x50\x56\x50\x58\x51\x5a\x52\x5b'\
b'\x53\x5d\x53\x5f\x52\x61\x20\x52\x53\x53\x51\x55\x51\x57\x52'\
b'\x59\x53\x5a\x54\x5c\x54\x5e\x53\x60\x52\x61\x50\x62\x17\x46'\
b'\x5e\x49\x55\x49\x53\x4a\x50\x4c\x4f\x4e\x4f\x50\x50\x54\x53'\
b'\x56\x54\x58\x54\x5a\x53\x5b\x51\x20\x52\x49\x53\x4a\x51\x4c'\
b'\x50\x4e\x50\x50\x51\x54\x54\x56\x55\x58\x55\x5a\x54\x5b\x51'\
b'\x5b\x4f\x22\x4a\x5a\x4a\x46\x4a\x5b\x4b\x5b\x4b\x46\x4c\x46'\
b'\x4c\x5b\x4d\x5b\x4d\x46\x4e\x46\x4e\x5b\x4f\x5b\x4f\x46\x50'\
b'\x46\x50\x5b\x51\x5b\x51\x46\x52\x46\x52\x5b\x53\x5b\x53\x46'\
b'\x54\x46\x54\x5b\x55\x5b\x55\x46\x56\x46\x56\x5b\x57\x5b\x57'\
b'\x46\x58\x46\x58\x5b\x59\x5b\x59\x46\x5a\x46\x5a\x5b'
_index =\
b'\x00\x00\x03\x00\x22\x00\x4f\x00\x68\x00\xbd\x00\xfe\x00\x61'\
b'\x01\x6e\x01\x97\x01\xc0\x01\xd3\x01\xe0\x01\xf1\x01\xf8\x01'\
b'\x05\x02\x0c\x02\x5d\x02\x74\x02\xcf\x02\x2e\x03\x49\x03\x98'\
b'\x03\xf9\x03\x38\x04\xb7\x04\x18\x05\x31\x05\x4e\x05\x57\x05'\
b'\x64\x05\x6d\x05\xae\x05\x1f\x06\x44\x06\x9f\x06\xe0\x06\x1d'\
b'\x07\x4a\x07\x73\x07\xc4\x07\xfb\x07\x14\x08\x3d\x08\x74\x08'\
b'\x91\x08\xce\x08\xf9\x08\x52\x09\x8d\x09\x0e\x0a\x69\x0a\xae'\
b'\x0a\xcf\x0a\xfe\x0a\x1d\x0b\x4e\x0b\x79\x0b\xa2\x0b\xc3\x0b'\
b'\xdc\x0b\xe3\x0b\xfc\x0b\x0d\x0c\x14\x0c\x23\x0c\x72\x0c\xb5'\
b'\x0c\xee\x0c\x37\x0d\x76\x0d\xa3\x0d\x1c\x0e\x55\x0e\x7a\x0e'\
b'\xad\x0e\xe4\x0e\xfd\x0e\x56\x0f\x8f\x0f\xd8\x0f\x21\x10\x64'\
b'\x10\x93\x10\xd4\x10\xf5\x10\x2e\x11\x4d\x11\x7e\x11\xa9\x11'\
b'\xd6\x11\xf7\x11\x48\x12\x4f\x12\xa0\x12\xd1\x12'
INDEX = memoryview(_index)
FONT = memoryview(_font)
|
"""
UCL Academic Modelling Project
Fast Code Processing
"""
STUDENT_TYPES = {
'A': "Campus-based, numeric mark scheme",
'B': "Campus-based, non-numeric mark scheme",
'C': "Distance learner, numeric mark scheme",
'D': "Distance learner, non-numeric mark scheme",
'E': "MBBS Resit"
}
class InvalidAMPCodeException(Exception):
pass
class ModuleDelivery:
def __init__(self, delivery_code):
# Sanity check the code we have
if len(delivery_code) != 3:
raise InvalidAMPCodeException("Delivery code is too long")
if delivery_code[0] in STUDENT_TYPES:
self.student_type = STUDENT_TYPES[delivery_code[0]]
else:
raise InvalidAMPCodeException("Student type is not valid")
self.fheq_level = int(delivery_code[1])
self.undergraduate = delivery_code[2] == 'U'
def get_delivery(self):
return {
"fheq_level": self.fheq_level,
"is_undergraduate": self.undergraduate,
"student_type": self.student_type
}
class ModulePeriods:
# Default Attributes
term_1 = False
term_2 = False
term_3 = False
term_4 = False # Term 1 of the next academic year
summer = False # Summer Teaching Period
summer_school = False # UCL Summer School
summer_school_1 = False # UCL Summer School Session 1
summer_school_2 = False # UCL Summer School Session 2
lsr = False # Late Summer Resit period
year = False # Whole year module
def __init__(self, periods_code):
if periods_code == 'YEAR':
self.term_1 = True
self.term_2 = True
self.term_3 = True
self.year = True
elif periods_code == 'SUMMER':
self.summer = True
elif periods_code == 'LSR':
self.lsr = True
elif periods_code[0] == 'S':
# Summer School periods start with an S.
# S1, S2, S1+2
self.summer_school = True
if periods_code == 'S1':
self.summer_school_1 = True
elif periods_code == 'S2':
self.summer_school_2 = True
elif periods_code == 'S1+2':
self.summer_school_1 = True
self.summer_school_2 = True
else:
raise InvalidAMPCodeException(
"An invalid AMP code was found: " + periods_code
)
elif periods_code[0] == 'T':
# Normal classes start with a T for Term
if periods_code == 'T1':
self.term_1 = True
elif periods_code == 'T1/2':
self.term_1 = True
self.term_2 = True
elif periods_code == 'T1/2/3':
self.term_1 = True
self.term_2 = True
self.term_3 = True
elif periods_code == 'T1/3':
self.term_1 = True
self.term_3 = True
elif periods_code == 'T2':
self.term_2 = True
elif periods_code == 'T2/3':
self.term_2 = True
self.term_3 = True
elif periods_code == 'T2/3/S' or periods_code == 'T2/3/4':
self.term_2 = True
self.term_3 = True
self.summer = True
elif periods_code == 'T3':
self.term_3 = True
elif periods_code == 'T3/1':
self.term_3 = True
self.term_4 = True
elif periods_code == 'T3/S' or periods_code == 'T3/4':
self.term_3 = True
self.summer = True
elif periods_code == 'T4':
self.term_4 = True
else:
raise InvalidAMPCodeException(
"AMP Periods Code contained an invalid term element"
)
else:
raise InvalidAMPCodeException(
"An invalid AMP code was found: " + periods_code
)
def get_periods(self):
return {
"teaching_periods": {
"term_1": self.term_1,
"term_2": self.term_2,
"term_3": self.term_3,
"term_1_next_year": self.term_4,
"summer": self.summer
},
"year_long": self.year,
"lsr": self.lsr,
"summer_school": {
"is_summer_school": self.summer_school,
"sessions": {
"session_1": self.summer_school_1,
"session_2": self.summer_school_2
}
}
}
class ModuleInstance:
def __init__(self, amp_code):
"""
An AMP Code is stored as the INSTID in CMIS.
It looks something like this: A6U-T1/2
"""
parts = amp_code.split('-')
module_delivery_code = parts[0] # A6U
periods_code = parts[1] # T1/2
self.delivery = ModuleDelivery(module_delivery_code)
self.periods = ModulePeriods(periods_code)
|
"""
题目:最小的第k个数
输入n个整数,找出其中最小的K个数。例如输入4,5,1,6,2,7,3,8这8个数字,则最小的4个数字是1,2,3,4
思路:借助Partition函数 我们每次运行Partition函数将会排好一个元素的位置 如果该位置是倒数第k个元素 完成任务 另倒数第k个元素是第n-k+1个元素(n
是数组长度)
"""
class Solution:
def GetLeastNumbers_Solution(self, tinput, k):
if tinput is None:
return -1
lens = len(tinput)
if k <= 0 or k > lens:
return -1
start, end = 0, lens - 1
pos = self.Partition(tinput, start, end)
while pos != lens - k:
if pos < lens - k:
pos = self.Partition(tinput, pos + 1, end)
else:
pos = self.Partition(tinput, start, pos - 1)
return tinput[pos]
def Partition(self, arr, start, end):
key = arr[start]
while start < end:
while start < end and key <= arr[end]:
end -= 1
if key > arr[end]:
arr[start], arr[end] = arr[end], arr[start]
while start < end and key >= arr[start]:
start += 1
if key < arr[start]:
arr[start], arr[end] = arr[end], arr[end]
return start
s = Solution()
print(s.GetLeastNumbers_Solution([7, 5, 3, 2, 4, 1], 7))
print(s.GetLeastNumbers_Solution([7, 5, 3, 2, 4, 1], 1))
|
for c in range(0, 6, -1):
print('Oi')
print(c)
print('FIM')
n = int(input('Digite um número: '))
for c in range(0, n+1):
print(c)
i = int(input('Início: '))
f = int(input('Fim: '))
p = int(input('Passo: '))
for c in range(i, f, p):
print(c)
s = 0
for c in range(0, 3):
n = int(input('Digite um valor'))
s = 0 + n
print('A soma dos valores foi {}'.format(s))
|
# encoding: UTF-8
RISK_MANAGER = u'Risk Manager'
RISK_MANAGER_STOP = u'RM Stop'
RISK_MANAGER_RUNNING = u'RM Running'
CLEAR_ORDER_FLOW_COUNT = u'Clear Flow Count'
CLEAR_TOTAL_FILL_COUNT = u'Clear Fill Count'
SAVE_SETTING = u'Save Setting'
WORKING_STATUS = u'Working Status'
ORDER_FLOW_LIMIT = u'Flow Limit'
ORDER_FLOW_CLEAR = u'Flow Clear(s)'
ORDER_SIZE_LIMIT = u'Order Size Limit'
TOTAL_TRADE_LIMIT = u'Total Fill Limit'
WORKING_ORDER_LIMIT = u'Working Order Limit'
CONTRACT_CANCEL_LIMIT = u'Contract Cancel Limit' |
# lst = [1, 2, 3, 4, 6, 9]
# integ = 15
# result = []
# if len(lst) < 2:
# raise ValueError
# for i in lst:
# for j in lst:
# if i + j == integ:
# result.append([i, j])
# if len(result) != 0:
# print(result)
# lst = [1, 2, 3, 4, 6, 9]
# integ = 15
# result = []
# if len(lst) < 2:
# raise ValueError
# for i in range(len(lst)):
# for j in range(len(lst)):
# if i == j:
# continue
# elif lst[i] + lst[j] == integ:
# result.append([lst[i], lst[j]])
# if len(result) != 0:
# print(result)
def cariPasangan(lst, integ):
result = []
if len(lst) < 2:
raise ValueError
for i in lst:
for j in lst:
if (i + j == integ) and ([j,i] not in result):
result.append([i, j])
if len(result) != 0:
return result
print(cariPasangan([1, 2, 3, 4, 5], 7)) |
n1 = int(input('Digite um valor: '))
d = n1 * 2
t = n1 * 3
r = n1 **(1/2)
print('O dobro de {} é: {} \nO triplo de {} é: {}\nA raiz quadrada de {} é: {:.2f}'.format(n1, d, n1, t, n1, r))
|
# -*- coding: utf-8 -*-
# Copyright (c) 2019, Silvio Peroni <[email protected]>
#
# Permission to use, copy, modify, and/or distribute this software for any purpose
# with or without fee is hereby granted, provided that the above copyright notice
# and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
# FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT,
# OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
# DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
def w_count(name, text):
result = dict()
c_values = dict()
for c in name.lower().replace(" ", ""):
if c not in c_values:
result[c] = 0
c_values[c] = 0
c_values[c] = (c_values[c] + 1) * 2
for k in c_values:
result[k] = calculate(k, c_values[k], text.split())
return result
def calculate(key, value, token_list):
l_len = len(token_list)
if l_len == 0:
return 0
else:
cur_token = token_list[0]
if key in cur_token:
result = value
else:
result = -1
return result + calculate(key, value, token_list[1:l_len])
my_name = input("Please provide a name (given name plus family name, separated by a space): ").strip()
print("Result:", w_count(my_name, "Begin at the beginning and go on till you come to the end: then stop."))
|
class SqlQueries:
staging_songs_table_create = ("""
CREATE TABLE IF NOT EXISTS staging_songs (
num_songs int4,
artist_id varchar(256),
artist_name varchar(256),
artist_latitude numeric(18,0),
artist_longitude numeric(18,0),
artist_location varchar(256),
song_id varchar(256),
title varchar(256),
duration numeric(18,0),
"year" int4 );
""")
staging_events_table_create = ("""
CREATE TABLE IF NOT EXISTS staging_events (
artist varchar(256),
auth varchar(256),
firstname varchar(256),
gender varchar(256),
iteminsession int4,
lastname varchar(256),
length numeric(18,0),
"level" varchar(256),
location varchar(256),
"method" varchar(256),
page varchar(256),
registration numeric(18,0),
sessionid int4,
song varchar(256),
status int4,
ts int8,
useragent varchar(256),
userid int4 );
""")
users_table_create = ("""
CREATE TABLE IF NOT EXISTS public.users (
userid int4 NOT NULL,
first_name varchar(256),
last_name varchar(256),
gender varchar(256),
"level" varchar(256),
CONSTRAINT users_pkey PRIMARY KEY (userid) );
""")
artists_table_create = ("""
CREATE TABLE IF NOT EXISTS public.artists (
artistid varchar(256) NOT NULL,
name varchar(256),
location varchar(256),
latitude numeric(18,0),
longitude numeric(18,0) );
""")
songs_table_create = ("""
CREATE TABLE IF NOT EXISTS public.songs (
songid varchar(256) NOT NULL,
title varchar(256),
artistid varchar(256),
"year" int4,
duration numeric(18,0),
CONSTRAINT songs_pkey PRIMARY KEY (songid) );
""")
time_table_create = ("""
CREATE TABLE IF NOT EXISTS public.time (
start_time timestamp NOT NULL,
"hour" int2,
"day" int2,
"week" int2,
"month" int2,
"year" int4,
dayofweek int2 );
""")
songplay_table_create = ("""
CREATE TABLE IF NOT EXISTS public.songplays (
playid varchar(32) NOT NULL,
start_time timestamp NOT NULL,
userid int4 NOT NULL,
"level" varchar(256),
songid varchar(256),
artistid varchar(256),
sessionid int4,
location varchar(256),
user_agent varchar(256),
CONSTRAINT songplays_pkey PRIMARY KEY (playid) );
""")
COPY_SQL_AUTO = ("""
COPY {}
FROM '{}'
ACCESS_KEY_ID '{}'
SECRET_ACCESS_KEY '{}'
JSON 'auto';
""")
COPY_SQL_FORMAT = ("""
COPY {}
FROM '{}'
ACCESS_KEY_ID '{}'
SECRET_ACCESS_KEY '{}'
FORMAT AS JSON '{}';
""")
TRUNCATE_SQL = ("""
TRUNCATE TABLE {};
""")
SQL_COUNT = ("""
SELECT COUNT( * ) FROM {};
""")
songplay_table_insert = ("""
INSERT INTO public.songplays
(playid, start_time, userid, level, songid, artistid, sessionid, location, user_agent)
SELECT
md5(events.sessionid || events.start_time) AS playid,
events.start_time,
events.userid,
events.level,
songs.song_id,
songs.artist_id,
events.sessionid,
events.location,
events.useragent
FROM (SELECT TIMESTAMP 'epoch' + ts/1000 * interval '1 second' AS start_time, *
FROM staging_events
WHERE page='NextSong') events
LEFT JOIN staging_songs songs
ON events.song = songs.title
AND events.artist = songs.artist_name
AND events.length = songs.duration;
""")
users_table_insert = ("""
INSERT INTO public.users
(userid, first_name, last_name, gender, level)
SELECT distinct userid, firstname, lastname, gender, level
FROM staging_events
WHERE page='NextSong';
""")
songs_table_insert = ("""
INSERT INTO public.songs
(songid, title, artistid, year, duration)
SELECT distinct song_id, title, artist_id, year, duration
FROM staging_songs;
""")
artists_table_insert = ("""
INSERT INTO public.artists
(artistid, name, location, latitude, longitude)
SELECT distinct artist_id, artist_name, artist_location, artist_latitude, artist_longitude
FROM staging_songs;
""")
time_table_insert = ("""
INSERT INTO public.time
(start_time, hour, day, week, month, year, dayofweek)
SELECT start_time, extract(hour from start_time), extract(day from start_time), extract(week from start_time),
extract(month from start_time), extract(year from start_time), extract(dayofweek from start_time)
FROM songplays;
""")
|
#
# PySNMP MIB module CODIMA-EXPRESS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CODIMA-EXPRESS-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:25:36 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsIntersection")
codimaProducts, = mibBuilder.importSymbols("CODIMA-GLOBAL-REG", "codimaProducts")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
Unsigned32, IpAddress, Counter32, Counter64, TimeTicks, iso, Integer32, MibIdentifier, NotificationType, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, ObjectIdentity, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "IpAddress", "Counter32", "Counter64", "TimeTicks", "iso", "Integer32", "MibIdentifier", "NotificationType", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "ObjectIdentity", "Bits")
MacAddress, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "DisplayString", "TextualConvention")
codimaExpressMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2))
codimaExpressMIB.setRevisions(('2003-05-30 09:59',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: codimaExpressMIB.setRevisionsDescriptions(('The initial version. This MIB defines: 1. The Express History Databases 2. Traps for sending monitored events.',))
if mibBuilder.loadTexts: codimaExpressMIB.setLastUpdated('200305300959Z')
if mibBuilder.loadTexts: codimaExpressMIB.setOrganization('CODIMA Technologies Ltd')
if mibBuilder.loadTexts: codimaExpressMIB.setContactInfo('mailto:[email protected] http://www.codimaTech.com')
if mibBuilder.loadTexts: codimaExpressMIB.setDescription('This module defines objects for the CODIMA Express product suite.')
codimaExpressObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1))
if mibBuilder.loadTexts: codimaExpressObjects.setStatus('current')
if mibBuilder.loadTexts: codimaExpressObjects.setDescription('Sub-tree for the CODIMA Express MIB objects.')
expHistoryDatabases = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1))
if mibBuilder.loadTexts: expHistoryDatabases.setStatus('current')
if mibBuilder.loadTexts: expHistoryDatabases.setDescription('Sub-tree for the CODIMA Express History Database objects.')
dbControl = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1))
if mibBuilder.loadTexts: dbControl.setStatus('current')
if mibBuilder.loadTexts: dbControl.setDescription('Sub-tree for the CODIMA Express History Database Control objects.')
ctrlTimeTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1), )
if mibBuilder.loadTexts: ctrlTimeTable.setStatus('current')
if mibBuilder.loadTexts: ctrlTimeTable.setDescription('The Express History Database Control Time Table. The table allows two types of control over time depending on the value of the ctLockMethod object. When ctLockMethod is lockUserTime, all ctTypeIndex databases will show ctTimeSlots worth of entries with a first timeslot value of the user specified ctUserTime. When ctLockMethod is lockRealTime, all ctTypeIndex databases will show ctTimeSlots worth of entries with a first timeslot value of the real-time specified ctRealTime. The number of rows in this table is two.')
ctrlTimeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ctSampleType"))
if mibBuilder.loadTexts: ctrlTimeEntry.setStatus('current')
if mibBuilder.loadTexts: ctrlTimeEntry.setDescription('A row in the Express History Database Control Time Table. The table allows two types of control over time depending on the value of the ctLockMethod object. When ctLockMethod is lockUserTime, all ctTypeIndex databases will show ctTimeSlots worth of entries with a first timeslot value of the user specified ctUserTime. When ctLockMethod is lockRealTime, all ctTypeIndex databases will show ctTimeSlots worth of entries with a first timeslot value of the real-time specified ctRealTime. The number of rows in this table is two. Entries cannot be created or deleted via SNMP operations.')
ctSampleType = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("longTerm", 1), ("shortTerm", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ctSampleType.setStatus('current')
if mibBuilder.loadTexts: ctSampleType.setDescription('The Database Control Sample Type identifies which database sample type this row controls. The two values are: longTerm = 1. All Long Term databases use sample intervals of 15 minutes. shortTerm = 2. All Short Term databases use sample intervals of 15 seconds.')
ctTimeSlots = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ctTimeSlots.setStatus('current')
if mibBuilder.loadTexts: ctTimeSlots.setDescription('This object controls number of discrete sample intervals over which data shall be accessible in the CODIMA Express History Database Tables. When the ctSampleType = longTerm the value controls how many hours worth of statistics are accessible. When the ctSampleType = shortTerm the value controls how many minutes worth of statistics are accessible. Long Term databases use sample intervals of 15 minutes. Short Term databases use sample intervals of 15 seconds. For Long Term databases, setting this object to a value of 2 will allow 2 hours, i.e. 8 * 15 minutes, of data gathered by all the Long Term History Databases, to be collected via SNMP polling. Setting this object to the maximum value if 32 will give 32 hours worth of discrete 15 minute samples. For Short Term databases, setting this object to a value of 2 will allow 2 minutes, i.e. 8 * 15 seconds, of data gathered by all the Short Term History Databases, to be collected via SNMP polling. Setting this object to the maximum value if 32 will give 32 minutes worth of discrete 15 second samples.')
ctLockMethod = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("lockUserTime", 1), ("lockRealTime", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ctLockMethod.setStatus('current')
if mibBuilder.loadTexts: ctLockMethod.setDescription('The database lock method to use when polling the History databases. There are two possible values: lockUserTime = 1. In this case the user defined value for the dcUserTime object will be used. lockRealTime = 2. In this case the automatically generated value for the dcRealTime object will be used.')
ctLockUserTime = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ctLockUserTime.setStatus('current')
if mibBuilder.loadTexts: ctLockUserTime.setDescription("The user defined lock time for the History Databases. The 'lock time' allows the user to specify a time period to be the first entry timeslot for each history object to be retrieved via SNMP polling. The recommended format is 'hh:mm:ss dd/mmm/yyyy', although other formats are accepted. The time 'hh:mm:ss', is expressed as a 24-hour clock. A valid example for the long term databases is, 14:00:00 29/Jun/2003, i.e. times which are whole hours are required. In contrast a valid example for the short term databases is, 14:57:00 02/Mar/2003, i.e. times which have a minute component are accepted. The value of this object is used only if the ctLockMethod object has a value of lockUserTime. Setting this object to a time after the associated ctLockRealTime object's value is not recommended.")
ctLockRealTime = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ctLockRealTime.setStatus('current')
if mibBuilder.loadTexts: ctLockRealTime.setDescription("The lock real time represents the current last time slot available for the History Databases. The real time is the last entry timeslot that it is possible to retrieve via SNMP polling. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time 'hh:mm:ss', is expressed as a 24-hour clock. An example is 14:00:00 29/May/2003. The value of this object is used only if the ctLockMethod object has a value of lockRealTime.")
dbSegment = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2))
if mibBuilder.loadTexts: dbSegment.setStatus('current')
if mibBuilder.loadTexts: dbSegment.setDescription('Sub-tree for the CODIMA Express History Segment Database objects.')
segLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1))
if mibBuilder.loadTexts: segLongTerm.setStatus('current')
if mibBuilder.loadTexts: segLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term Segment Database objects.')
slBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1), )
if mibBuilder.loadTexts: slBaseTable.setStatus('current')
if mibBuilder.loadTexts: slBaseTable.setDescription('A table of CODIMA Express History Long Term Segment Database Base Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "slbTimeStampIndex"))
if mibBuilder.loadTexts: slBaseEntry.setStatus('current')
if mibBuilder.loadTexts: slBaseEntry.setDescription('A row in the CODIMA Express History Long Term Segment Database Base Objects table. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: slbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
slbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: slbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
slbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbFrames.setStatus('current')
if mibBuilder.loadTexts: slbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
slbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbBytes.setStatus('current')
if mibBuilder.loadTexts: slbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
slbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 5), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: slbFrameSize.setStatus('current')
if mibBuilder.loadTexts: slbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
slbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: slbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
slbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: slbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
slbActiveNodes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbActiveNodes.setStatus('current')
if mibBuilder.loadTexts: slbActiveNodes.setDescription('Number of Active Nodes. A value of 4294967294 indicates unknown.')
slBroadcastTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2), )
if mibBuilder.loadTexts: slBroadcastTable.setStatus('current')
if mibBuilder.loadTexts: slBroadcastTable.setDescription('A table of CODIMA Express History Long Term Segment Database Broadcast Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Broadcast object implements statistics that are associated with Broadcasts, e.g., Broadcast Bytes, Broadcast Frames, Broadcast % Bytes (% of Broadcast bytes in relation to the total number of bytes), Broadcast % Frames (% of Broadcast frames in relation to the total number of frames). The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slBroadcastEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "slbcTimeStampIndex"))
if mibBuilder.loadTexts: slBroadcastEntry.setStatus('current')
if mibBuilder.loadTexts: slBroadcastEntry.setDescription('A row in the CODIMA Express History Long Term Segment Database Broadcast Objects table. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Broadcast object implements statistics that are associated with Broadcasts, e.g., Broadcast Bytes, Broadcast Frames, Broadcast % Bytes (% of Broadcast bytes in relation to the total number of bytes), Broadcast % Frames (% of Broadcast frames in relation to the total number of frames). The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slbcTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: slbcTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
slbcTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcTimeStamp.setStatus('current')
if mibBuilder.loadTexts: slbcTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
slbcBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcBytes.setStatus('current')
if mibBuilder.loadTexts: slbcBytes.setDescription('Number of Broadcast Bytes (Port 1 and 2 - Bytes in Broadcast frames). A value of 4294967294 indicates unknown.')
slbcPercentBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcPercentBytes.setStatus('current')
if mibBuilder.loadTexts: slbcPercentBytes.setDescription('Percentage of Broadcast Bytes (Port 1 and 2 - % is in relation to the total number Bytes) i.e., Percentage of the total byte count that are bytes associated with broadcast frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
slbcFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcFrames.setStatus('current')
if mibBuilder.loadTexts: slbcFrames.setDescription('Number of Broadcast Frames (Port 1 and 2). A value of 4294967294 indicates unknown.')
slbcPercentFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slbcPercentFrames.setStatus('current')
if mibBuilder.loadTexts: slbcPercentFrames.setDescription('Broadcast % Frames - % of Broadcast Frames (Port 1 and 2 - % is in relation to the total number of Frames) i.e., Percentage of the total frame count that are broadcast frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
slDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3), )
if mibBuilder.loadTexts: slDerivedTable.setStatus('current')
if mibBuilder.loadTexts: slDerivedTable.setDescription('A table of CODIMA Express History Long Term Segment Database Derived Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "sldTimeStampIndex"))
if mibBuilder.loadTexts: slDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: slDerivedEntry.setDescription('A row in the CODIMA Express History Long Term Segment Database Derived Objects table. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
sldTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sldTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: sldTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
sldTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: sldTimeStamp.setStatus('current')
if mibBuilder.loadTexts: sldTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
sldUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sldUtilization.setStatus('current')
if mibBuilder.loadTexts: sldUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
sldErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sldErrorFrames.setStatus('current')
if mibBuilder.loadTexts: sldErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
slEthernetTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4), )
if mibBuilder.loadTexts: slEthernetTable.setStatus('current')
if mibBuilder.loadTexts: slEthernetTable.setDescription('A table of CODIMA Express History Long Term Segment Database Ethernet Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slEthernetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "sleTimeStampIndex"))
if mibBuilder.loadTexts: slEthernetEntry.setStatus('current')
if mibBuilder.loadTexts: slEthernetEntry.setDescription('A row in the CODIMA Express History Long Term Segment Database Ethernet Objects table. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
sleTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: sleTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
sleTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleTimeStamp.setStatus('current')
if mibBuilder.loadTexts: sleTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
sleRunts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleRunts.setStatus('current')
if mibBuilder.loadTexts: sleRunts.setDescription('Number of Runts. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
sleJabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleJabbers.setStatus('current')
if mibBuilder.loadTexts: sleJabbers.setDescription('Number of Jabber Frames. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
sleCrc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleCrc.setStatus('current')
if mibBuilder.loadTexts: sleCrc.setDescription('Number of CRC/Alignment Errors. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
sleCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleCollisions.setStatus('current')
if mibBuilder.loadTexts: sleCollisions.setDescription('Number of Collisions. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
sleLateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sleLateCollisions.setStatus('current')
if mibBuilder.loadTexts: sleLateCollisions.setDescription('Number of Late Collisions. The term late collisions applies to collisions which occur late enough for the first 12 bytes of the frame to be monitored. A value of 4294967294 indicates unknown.')
slIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5), )
if mibBuilder.loadTexts: slIcmpTable.setStatus('current')
if mibBuilder.loadTexts: slIcmpTable.setDescription('A table of CODIMA Express History Long Term Segment Database ICMP Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "sliTimeStampIndex"))
if mibBuilder.loadTexts: slIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: slIcmpEntry.setDescription('A table of CODIMA Express History Long Term Segment Database ICMP Objects. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
sliTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: sliTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
sliTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliTimeStamp.setStatus('current')
if mibBuilder.loadTexts: sliTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
sliPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliPing.setStatus('current')
if mibBuilder.loadTexts: sliPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
sliSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliSrcQuench.setStatus('current')
if mibBuilder.loadTexts: sliSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
sliRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliRedirect.setStatus('current')
if mibBuilder.loadTexts: sliRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
sliTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: sliTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
sliParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliParamProblem.setStatus('current')
if mibBuilder.loadTexts: sliParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
sliTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliTimestamp.setStatus('current')
if mibBuilder.loadTexts: sliTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
sliFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliFragTimeout.setStatus('current')
if mibBuilder.loadTexts: sliFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
sliNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliFragRequired.setStatus('current')
if mibBuilder.loadTexts: sliFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
sliSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: sliSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
sliDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: sliDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
sliDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: sliDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
sliSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: sliSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
sliNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliNetProhibited.setStatus('current')
if mibBuilder.loadTexts: sliNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
sliHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliHostProhibited.setStatus('current')
if mibBuilder.loadTexts: sliHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
sliNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: sliHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
sliPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliPerformance.setStatus('current')
if mibBuilder.loadTexts: sliPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
sliNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: sliNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
sliHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: sliHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
sliAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: sliAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
sliRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliRouteChange.setStatus('current')
if mibBuilder.loadTexts: sliRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
sliGrpErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliGrpErrors.setStatus('current')
if mibBuilder.loadTexts: sliGrpErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
sliMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sliMaintenance.setStatus('current')
if mibBuilder.loadTexts: sliMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
slPortTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6), )
if mibBuilder.loadTexts: slPortTable.setStatus('current')
if mibBuilder.loadTexts: slPortTable.setDescription('A table of CODIMA Express History Long Term Segment Database Port Object. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The Port object implements statistics that are specific to the segment that are monitored on port 1 and port 2 of the Express hardware, e.g., Port 1 Frames, Port 1 Bytes, Port 2 Frames, Port 2 Bytes. This object is most relevant when you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "slp1TimeStampIndex"))
if mibBuilder.loadTexts: slPortEntry.setStatus('current')
if mibBuilder.loadTexts: slPortEntry.setDescription('A table of CODIMA Express History Long Term Segment Database Port Object. Based on 15 minute intervals Segment statistics are gathered on the network segment to which the Express is attached. The Port object implements statistics that are specific to the segment that are monitored on port 1 and port 2 of the Express hardware, e.g., Port 1 Frames, Port 1 Bytes, Port 2 Frames, Port 2 Bytes. This object is most relevant when you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object.')
slp1TimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1TimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: slp1TimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
slp1TimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1TimeStamp.setStatus('current')
if mibBuilder.loadTexts: slp1TimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
slp1Frames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Frames.setStatus('current')
if mibBuilder.loadTexts: slp1Frames.setDescription('Number of Frames monitored on Port 1. A value of 4294967294 indicates unknown.')
slp1Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Bytes.setStatus('current')
if mibBuilder.loadTexts: slp1Bytes.setDescription('Number of Bytes monitored on Port 1. A value of 4294967294 indicates unknown.')
slp1FrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 5), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1FrameSize.setStatus('current')
if mibBuilder.loadTexts: slp1FrameSize.setDescription('Average Frame Size in bytes for frames monitored on Port 1. A value of 4294967294 indicates unknown.')
slp1Utilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Utilization.setStatus('current')
if mibBuilder.loadTexts: slp1Utilization.setDescription('Percent Wire Speed for Port 1. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
slp1LineSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 7), Gauge32()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1LineSpeed.setStatus('current')
if mibBuilder.loadTexts: slp1LineSpeed.setDescription('Line speed in bits per second for Port 1. A value of 4294967294 indicates unknown.')
slp1SoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1SoftErrors.setStatus('current')
if mibBuilder.loadTexts: slp1SoftErrors.setDescription('Number of software errors for Port 1. Protocol/Soft errors are valid frames designed to report anomalies. For example the Internet protocol suite uses the Internet Control Management Protocol (ICMP) frames to report anomalies. A value of 4294967294 indicates unknown.')
slp1Runts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Runts.setStatus('current')
if mibBuilder.loadTexts: slp1Runts.setDescription('Number of Runts on Port 1. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
slp1Jabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Jabbers.setStatus('current')
if mibBuilder.loadTexts: slp1Jabbers.setDescription('Number of Jabber Frames on Port 1. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
slp1Crc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Crc.setStatus('current')
if mibBuilder.loadTexts: slp1Crc.setDescription('Number of CRC/Alignment Errors on Port 1. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
slp1Collisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1Collisions.setStatus('current')
if mibBuilder.loadTexts: slp1Collisions.setDescription('Number of Collisions monitored on Port 1. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
slp1LateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1LateCollisions.setStatus('current')
if mibBuilder.loadTexts: slp1LateCollisions.setDescription('Number of Late Collisions monitored on Port 1. A value of 4294967294 indicates unknown.')
slp1LineNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp1LineNoise.setStatus('current')
if mibBuilder.loadTexts: slp1LineNoise.setDescription('Line noise level (number of bursts) on Port 1. A value of 4294967294 indicates unknown.')
slp2Frames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Frames.setStatus('current')
if mibBuilder.loadTexts: slp2Frames.setDescription('Number of Frames monitored on Port 2. A value of 4294967294 indicates unknown.')
slp2Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Bytes.setStatus('current')
if mibBuilder.loadTexts: slp2Bytes.setDescription('Number of Bytes monitored on Port 2. A value of 4294967294 indicates unknown.')
slp2FrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 17), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2FrameSize.setStatus('current')
if mibBuilder.loadTexts: slp2FrameSize.setDescription('Average Frame Size, in bytes, for frames monitored on Port 2. A value of 4294967294 indicates unknown.')
slp2Utilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 18), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Utilization.setStatus('current')
if mibBuilder.loadTexts: slp2Utilization.setDescription('Percent Wire Speed for Port 2. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
slp2LineSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 19), Gauge32()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2LineSpeed.setStatus('current')
if mibBuilder.loadTexts: slp2LineSpeed.setDescription('Line speed in bits per second for Port 2. A value of 4294967294 indicates unknown.')
slp2SoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2SoftErrors.setStatus('current')
if mibBuilder.loadTexts: slp2SoftErrors.setDescription('Number of software errors for Port 2. Protocol/Soft errors are valid frames designed to report anomalies. For example the Internet protocol suite uses the Internet Control Management Protocol (ICMP) frames to report anomalies. A value of 4294967294 indicates unknown.')
slp2Runts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Runts.setStatus('current')
if mibBuilder.loadTexts: slp2Runts.setDescription('Number of Runts on Port 2. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
slp2Jabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Jabbers.setStatus('current')
if mibBuilder.loadTexts: slp2Jabbers.setDescription('Number of Jabber Frames on Port 2. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
slp2Crc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Crc.setStatus('current')
if mibBuilder.loadTexts: slp2Crc.setDescription('Number of CRC/Alignment Errors on Port 2. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
slp2Collisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2Collisions.setStatus('current')
if mibBuilder.loadTexts: slp2Collisions.setDescription('Number of Collisions monitored on Port 2. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
slp2LateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2LateCollisions.setStatus('current')
if mibBuilder.loadTexts: slp2LateCollisions.setDescription('Number of Late Collisions monitored on Port 2. A value of 4294967294 indicates unknown.')
slp2LineNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: slp2LineNoise.setStatus('current')
if mibBuilder.loadTexts: slp2LineNoise.setDescription('Line noise level (number of bursts) on Port 2. A value of 4294967294 indicates unknown.')
segShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2))
if mibBuilder.loadTexts: segShortTerm.setStatus('current')
if mibBuilder.loadTexts: segShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term Segment Database objects.')
ssBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1), )
if mibBuilder.loadTexts: ssBaseTable.setStatus('current')
if mibBuilder.loadTexts: ssBaseTable.setDescription('A table of CODIMA Express History Short Term Segment Database Base Objects. Based on 15 second intervals, Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ssbTimeStampIndex"))
if mibBuilder.loadTexts: ssBaseEntry.setStatus('current')
if mibBuilder.loadTexts: ssBaseEntry.setDescription('A row in the CODIMA Express History Short Term Segment Database Base Objects table. Based on 15 second intervals, Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object. Entries cannot be created or deleted via SNMP operatio')
ssbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ssbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ssbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ssbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ssbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbFrames.setStatus('current')
if mibBuilder.loadTexts: ssbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
ssbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbBytes.setStatus('current')
if mibBuilder.loadTexts: ssbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ssbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 5), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbFrameSize.setStatus('current')
if mibBuilder.loadTexts: ssbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ssbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: ssbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
ssbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: ssbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
ssbActiveNodes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbActiveNodes.setStatus('current')
if mibBuilder.loadTexts: ssbActiveNodes.setDescription('Number of Active Nodes. A value of 4294967294 indicates unknown.')
ssBroadcastTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2), )
if mibBuilder.loadTexts: ssBroadcastTable.setStatus('current')
if mibBuilder.loadTexts: ssBroadcastTable.setDescription('A table of CODIMA Express History Short Term Segment Database Broadcast Objects. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Broadcast object implements statistics that are associated with Broadcasts, e.g., Broadcast Bytes, Broadcast Frames, Broadcast % Bytes (% of Broadcast bytes in relation to the total number of bytes), Broadcast % Frames (% of Broadcast frames in relation to the total number of frames). The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssBroadcastEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ssbcTimeStampIndex"))
if mibBuilder.loadTexts: ssBroadcastEntry.setStatus('current')
if mibBuilder.loadTexts: ssBroadcastEntry.setDescription('A row in the CODIMA Express History Short Term Segment Database Broadcast Objects table. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Broadcast object implements statistics that are associated with Broadcasts, e.g., Broadcast Bytes, Broadcast Frames, Broadcast % Bytes (% of Broadcast bytes in relation to the total number of bytes), Broadcast % Frames (% of Broadcast frames in relation to the total number of frames). The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssbcTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ssbcTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ssbcTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ssbcTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ssbcBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcBytes.setStatus('current')
if mibBuilder.loadTexts: ssbcBytes.setDescription('Number of Broadcast Bytes (Port 1 and 2 - Bytes in Broadcast frames). A value of 4294967294 indicates unknown.')
ssbcBytesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcBytesPercent.setStatus('current')
if mibBuilder.loadTexts: ssbcBytesPercent.setDescription('Percentage of Broadcast Bytes (Port 1 and 2 - % is in relation to the total number Bytes) i.e., Percentage of the total byte count that are bytes associated with broadcast frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssbcFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcFrames.setStatus('current')
if mibBuilder.loadTexts: ssbcFrames.setDescription('Number of Broadcast Frames (Port 1 and 2). A value of 4294967294 indicates unknown.')
ssbcFramesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssbcFramesPercent.setStatus('current')
if mibBuilder.loadTexts: ssbcFramesPercent.setDescription('Broadcast % Frames - % of Broadcast Frames (Port 1 and 2 - % is in relation to the total number of Frames) i.e., Percentage of the total frame count that are broadcast frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3), )
if mibBuilder.loadTexts: ssDerivedTable.setStatus('current')
if mibBuilder.loadTexts: ssDerivedTable.setDescription('A table of CODIMA Express History Short Term Segment Database Derived Objects. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ssdTimeStampIndex"))
if mibBuilder.loadTexts: ssDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: ssDerivedEntry.setDescription('A row in the CODIMA Express History Short Term Segment Database Derived Objects table. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ssdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ssdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ssdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ssdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssdUtilization.setStatus('current')
if mibBuilder.loadTexts: ssdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: ssdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssEthernetTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4), )
if mibBuilder.loadTexts: ssEthernetTable.setStatus('current')
if mibBuilder.loadTexts: ssEthernetTable.setDescription('A table of CODIMA Express History Short Term Segment Database Ethernet Objects. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssEthernetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "sseTimeStampIndex"))
if mibBuilder.loadTexts: ssEthernetEntry.setStatus('current')
if mibBuilder.loadTexts: ssEthernetEntry.setDescription('A row in the CODIMA Express History Short Term Segment Database Ethernet Objects table. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
sseTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: sseTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
sseTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseTimeStamp.setStatus('current')
if mibBuilder.loadTexts: sseTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
sseRunts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseRunts.setStatus('current')
if mibBuilder.loadTexts: sseRunts.setDescription('Number of Runts. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
sseJabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseJabbers.setStatus('current')
if mibBuilder.loadTexts: sseJabbers.setDescription('Number of Jabber Frames. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
sseCrc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseCrc.setStatus('current')
if mibBuilder.loadTexts: sseCrc.setDescription('Number of CRC/Alignment Errors. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
sseCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseCollisions.setStatus('current')
if mibBuilder.loadTexts: sseCollisions.setDescription('Number of Collisions. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
sseLateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sseLateCollisions.setStatus('current')
if mibBuilder.loadTexts: sseLateCollisions.setDescription('Number of Late Collisions. The term late collisions applies to collisions which occur late enough for the first 12 bytes of the frame to be monitored. A value of 4294967294 indicates unknown.')
ssIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5), )
if mibBuilder.loadTexts: ssIcmpTable.setStatus('current')
if mibBuilder.loadTexts: ssIcmpTable.setDescription('A table of CODIMA Express History Short Term Segment Database ICMP Objects. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ssiTimeStampIndex"))
if mibBuilder.loadTexts: ssIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: ssIcmpEntry.setDescription('A table of CODIMA Express History Short Term Segment Database ICMP Objects. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The statistics in this databases are calculated by adding Port 1 statistics and Port 2 statistics together. Port 2 however will only be active if you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssiTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ssiTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ssiTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ssiTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ssiPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiPing.setStatus('current')
if mibBuilder.loadTexts: ssiPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
ssiSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiSrcQuench.setStatus('current')
if mibBuilder.loadTexts: ssiSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
ssiRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiRedirect.setStatus('current')
if mibBuilder.loadTexts: ssiRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
ssiTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: ssiTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
ssiParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiParamProblem.setStatus('current')
if mibBuilder.loadTexts: ssiParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
ssiTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiTimestamp.setStatus('current')
if mibBuilder.loadTexts: ssiTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
ssiFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiFragTimeout.setStatus('current')
if mibBuilder.loadTexts: ssiFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
ssiNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiFragRequired.setStatus('current')
if mibBuilder.loadTexts: ssiFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
ssiSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: ssiSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
ssiDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: ssiDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
ssiDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: ssiDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
ssiSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: ssiSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
ssiNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiNetProhibited.setStatus('current')
if mibBuilder.loadTexts: ssiNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ssiHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiHostProhibited.setStatus('current')
if mibBuilder.loadTexts: ssiHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ssiNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ssiHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ssiPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiPerformance.setStatus('current')
if mibBuilder.loadTexts: ssiPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
ssiNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ssiNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
ssiHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ssiHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
ssiAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ssiAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
ssiRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiRouteChange.setStatus('current')
if mibBuilder.loadTexts: ssiRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
ssiErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiErrors.setStatus('current')
if mibBuilder.loadTexts: ssiErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
ssiMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssiMaintenance.setStatus('current')
if mibBuilder.loadTexts: ssiMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
ssPortTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6), )
if mibBuilder.loadTexts: ssPortTable.setStatus('current')
if mibBuilder.loadTexts: ssPortTable.setDescription('A table of CODIMA Express History Short Term Segment Database Port Object. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The Port object implements statistics that are specific to the segment that are monitored on port 1 and port 2 of the Express hardware, e.g., Port 1 Frames, Port 1 Bytes, Port 2 Frames, Port 2 Bytes. This object is most relevant when you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
ssPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "sspTimeStampIndex"))
if mibBuilder.loadTexts: ssPortEntry.setStatus('current')
if mibBuilder.loadTexts: ssPortEntry.setDescription('A table of CODIMA Express History Short Term Segment Database Port Object. Based on 15 second intervals Segment statistics are gathered on the network segment to which the Express is attached. The Port object implements statistics that are specific to the segment that are monitored on port 1 and port 2 of the Express hardware, e.g., Port 1 Frames, Port 1 Bytes, Port 2 Frames, Port 2 Bytes. This object is most relevant when you are using the Express as a dual port analyzer, i.e., monitoring full duplex. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object.')
sspTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 1), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sspTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: sspTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
sspTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: sspTimeStamp.setStatus('current')
if mibBuilder.loadTexts: sspTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ssp1Frames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Frames.setStatus('current')
if mibBuilder.loadTexts: ssp1Frames.setDescription('Number of Frames monitored on Port 1. A value of 4294967294 indicates unknown.')
ssp1Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Bytes.setStatus('current')
if mibBuilder.loadTexts: ssp1Bytes.setDescription('Number of Bytes monitored on Port 1. A value of 4294967294 indicates unknown.')
ssp1FrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 5), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1FrameSize.setStatus('current')
if mibBuilder.loadTexts: ssp1FrameSize.setDescription('Average Frame Size, in bytes, for frames monitored on Port 1. A value of 4294967294 indicates unknown.')
ssp1Utilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Utilization.setStatus('current')
if mibBuilder.loadTexts: ssp1Utilization.setDescription('Percent Wire Speed for Port 1. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssp1LineSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 7), Gauge32()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1LineSpeed.setStatus('current')
if mibBuilder.loadTexts: ssp1LineSpeed.setDescription('Line speed in bits per second for Port 1. A value of 4294967294 indicates unknown.')
ssp1SoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1SoftErrors.setStatus('current')
if mibBuilder.loadTexts: ssp1SoftErrors.setDescription('Number of software errors for Port 1. Protocol/Soft errors are valid frames designed to report anomalies. For example the Internet protocol suite uses the Internet Control Management Protocol (ICMP) frames to report anomalies. A value of 4294967294 indicates unknown.')
ssp1Runts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Runts.setStatus('current')
if mibBuilder.loadTexts: ssp1Runts.setDescription('Number of Runts on Port 1. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
ssp1Jabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Jabbers.setStatus('current')
if mibBuilder.loadTexts: ssp1Jabbers.setDescription('Number of Jabber Frames on Port 1. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
ssp1Crc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Crc.setStatus('current')
if mibBuilder.loadTexts: ssp1Crc.setDescription('Number of CRC/Alignment Errors on Port 1. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
ssp1Collisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1Collisions.setStatus('current')
if mibBuilder.loadTexts: ssp1Collisions.setDescription('Number of Collisions monitored on Port 1. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
ssp1LateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1LateCollisions.setStatus('current')
if mibBuilder.loadTexts: ssp1LateCollisions.setDescription('Number of Late Collisions monitored on Port 1. A value of 4294967294 indicates unknown.')
ssp1LineNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp1LineNoise.setStatus('current')
if mibBuilder.loadTexts: ssp1LineNoise.setDescription('Line noise level (number of bursts) on Port 1. A value of 4294967294 indicates unknown.')
ssp2Frames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Frames.setStatus('current')
if mibBuilder.loadTexts: ssp2Frames.setDescription('Number of Frames monitored on Port 2. A value of 4294967294 indicates unknown.')
ssp2Bytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Bytes.setStatus('current')
if mibBuilder.loadTexts: ssp2Bytes.setDescription('Number of Bytes monitored on Port 2. A value of 4294967294 indicates unknown.')
ssp2FrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 17), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2FrameSize.setStatus('current')
if mibBuilder.loadTexts: ssp2FrameSize.setDescription('Average Frame Size, in bytes, for frames monitored on Port 2. A value of 4294967294 indicates unknown.')
ssp2Utilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 18), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Utilization.setStatus('current')
if mibBuilder.loadTexts: ssp2Utilization.setDescription('Percent Wire Speed for Port 2. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ssp2LineSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 19), Gauge32()).setUnits('bits per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2LineSpeed.setStatus('current')
if mibBuilder.loadTexts: ssp2LineSpeed.setDescription('Line speed in bits per second for Port 2. A value of 4294967294 indicates unknown.')
ssp2SoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2SoftErrors.setStatus('current')
if mibBuilder.loadTexts: ssp2SoftErrors.setDescription('Number of software errors for Port 2. Protocol/Soft errors are valid frames designed to report anomalies. For example the Internet protocol suite uses the Internet Control Management Protocol (ICMP) frames to report anomalies. A value of 4294967294 indicates unknown.')
ssp2Runts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Runts.setStatus('current')
if mibBuilder.loadTexts: ssp2Runts.setDescription('Number of Runts on Port 2. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
ssp2Jabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Jabbers.setStatus('current')
if mibBuilder.loadTexts: ssp2Jabbers.setDescription('Number of Jabber Frames on Port 2. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
ssp2Crc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Crc.setStatus('current')
if mibBuilder.loadTexts: ssp2Crc.setDescription('Number of CRC/Alignment Errors on Port 2. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
ssp2Collisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2Collisions.setStatus('current')
if mibBuilder.loadTexts: ssp2Collisions.setDescription('Number of Collisions monitored on Port 2. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
ssp2LateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2LateCollisions.setStatus('current')
if mibBuilder.loadTexts: ssp2LateCollisions.setDescription('Number of Late Collisions monitored on Port 2. A value of 4294967294 indicates unknown.')
ssp2LineNoise = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ssp2LineNoise.setStatus('current')
if mibBuilder.loadTexts: ssp2LineNoise.setDescription('Line noise level (number of bursts) on Port 2. A value of 4294967294 indicates unknown.')
dbMac = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3))
if mibBuilder.loadTexts: dbMac.setStatus('current')
if mibBuilder.loadTexts: dbMac.setDescription('Sub-tree for the CODIMA Express History MAC Database bjects.')
macLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1))
if mibBuilder.loadTexts: macLongTerm.setStatus('current')
if mibBuilder.loadTexts: macLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term MAC Database objects.')
mlBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1), )
if mibBuilder.loadTexts: mlBaseTable.setStatus('current')
if mibBuilder.loadTexts: mlBaseTable.setDescription('A table of CODIMA Express History Long Term MAC Database Base Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mlbMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mlbTimeStampIndex"))
if mibBuilder.loadTexts: mlBaseEntry.setStatus('current')
if mibBuilder.loadTexts: mlBaseEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Base Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mlbMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbMacIndex.setStatus('current')
if mibBuilder.loadTexts: mlbMacIndex.setDescription('Identifies the MAC address of this row.')
mlbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mlbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mlbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mlbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mlbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbFrames.setStatus('current')
if mibBuilder.loadTexts: mlbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
mlbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbBytes.setStatus('current')
if mibBuilder.loadTexts: mlbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mlbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbFrameSize.setStatus('current')
if mibBuilder.loadTexts: mlbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mlbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: mlbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
mlbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: mlbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
mlDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2), )
if mibBuilder.loadTexts: mlDerivedTable.setStatus('current')
if mibBuilder.loadTexts: mlDerivedTable.setDescription('A table of CODIMA Express History Long Term MAC Database Derived Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mldMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mldTimeStampIndex"))
if mibBuilder.loadTexts: mlDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: mlDerivedEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Derived Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mldMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mldMacIndex.setStatus('current')
if mibBuilder.loadTexts: mldMacIndex.setDescription('Identifies the MAC address of this row.')
mldTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mldTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mldTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mldTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(24, 24)).setFixedLength(24)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mldTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mldTimeStamp.setDescription('A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row, in the form Fri May 09 14:58:15 2003.')
mldUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mldUtilization.setStatus('current')
if mibBuilder.loadTexts: mldUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mldErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mldErrorFrames.setStatus('current')
if mibBuilder.loadTexts: mldErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mlDuplexTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3), )
if mibBuilder.loadTexts: mlDuplexTable.setStatus('current')
if mibBuilder.loadTexts: mlDuplexTable.setDescription('A table of CODIMA Express History Long Term MAC Database Duplex Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlDuplexEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mlduMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mlduTimeStampIndex"))
if mibBuilder.loadTexts: mlDuplexEntry.setStatus('current')
if mibBuilder.loadTexts: mlDuplexEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Duplex Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mlduMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduMacIndex.setStatus('current')
if mibBuilder.loadTexts: mlduMacIndex.setDescription('Identifies the MAC address of this row.')
mlduTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mlduTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mlduTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mlduTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mlduTxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTxFrames.setStatus('current')
if mibBuilder.loadTexts: mlduTxFrames.setDescription('Number of Frames Transmitted. A value of 4294967294 indicates unknown.')
mlduTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTxBytes.setStatus('current')
if mibBuilder.loadTexts: mlduTxBytes.setDescription('Number of Bytes Transmitted. A value of 4294967294 indicates unknown.')
mlduTxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mlduTxFrameSize.setDescription('Average Frame Size in bytes Transmitted. A value of 4294967294 indicates unknown.')
mlduTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduTxUtilization.setStatus('current')
if mibBuilder.loadTexts: mlduTxUtilization.setDescription('Percent Utilization Transmitted (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mlduRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduRxFrames.setStatus('current')
if mibBuilder.loadTexts: mlduRxFrames.setDescription('Number of Frames Received. A value of 4294967294 indicates unknown.')
mlduRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduRxBytes.setStatus('current')
if mibBuilder.loadTexts: mlduRxBytes.setDescription('Number of Bytes Received. A value of 4294967294 indicates unknown.')
mlduRxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 10), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduRxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mlduRxFrameSize.setDescription('Average Frame Size, in bytes, Received. A value of 4294967294 indicates unknown.')
mlduRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlduRxUtilization.setStatus('current')
if mibBuilder.loadTexts: mlduRxUtilization.setDescription('Percent Utilization Received (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mlEthernetTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4), )
if mibBuilder.loadTexts: mlEthernetTable.setStatus('current')
if mibBuilder.loadTexts: mlEthernetTable.setDescription('A table of CODIMA Express History Long Term MAC Database Ethernet Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlEthernetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mleMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mleTimeStampIndex"))
if mibBuilder.loadTexts: mlEthernetEntry.setStatus('current')
if mibBuilder.loadTexts: mlEthernetEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Ethernet Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mleMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleMacIndex.setStatus('current')
if mibBuilder.loadTexts: mleMacIndex.setDescription('Identifies the MAC address of this row.')
mleTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mleTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mleTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mleTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mleRunts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleRunts.setStatus('current')
if mibBuilder.loadTexts: mleRunts.setDescription('Number of Runts. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
mleJabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleJabbers.setStatus('current')
if mibBuilder.loadTexts: mleJabbers.setDescription('Number of Jabber Frames. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
mleCrc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleCrc.setStatus('current')
if mibBuilder.loadTexts: mleCrc.setDescription('Number of CRC/Alignment Errors. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
mleCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleCollisions.setStatus('current')
if mibBuilder.loadTexts: mleCollisions.setDescription('Number of Collisions. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
mleLateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mleLateCollisions.setStatus('current')
if mibBuilder.loadTexts: mleLateCollisions.setDescription('Number of Late Collisions. The term late collisions applies to collisions which occur late enough for the first 12 bytes of the frame to be monitored. A value of 4294967294 indicates unknown.')
mlIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5), )
if mibBuilder.loadTexts: mlIcmpTable.setStatus('current')
if mibBuilder.loadTexts: mlIcmpTable.setDescription('A table of CODIMA Express History Long Term MAC Database ICMP Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mliMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mliTimeStampIndex"))
if mibBuilder.loadTexts: mlIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: mlIcmpEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database ICMP Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mliMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliMacIndex.setStatus('current')
if mibBuilder.loadTexts: mliMacIndex.setDescription('Identifies the MAC address of this row.')
mliTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mliTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mliTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mliTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mliPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliPing.setStatus('current')
if mibBuilder.loadTexts: mliPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
mliSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliSrcQuench.setStatus('current')
if mibBuilder.loadTexts: mliSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
mliRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliRedirect.setStatus('current')
if mibBuilder.loadTexts: mliRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
mliTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: mliTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
mliParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliParamProblem.setStatus('current')
if mibBuilder.loadTexts: mliParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
mliTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliTimestamp.setStatus('current')
if mibBuilder.loadTexts: mliTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
mliFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliFragTimeout.setStatus('current')
if mibBuilder.loadTexts: mliFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
mliNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliFragRequired.setStatus('current')
if mibBuilder.loadTexts: mliFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
mliSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: mliSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
mliDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: mliDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
mliDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: mliDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
mliSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: mliSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
mliNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliNetProhibited.setStatus('current')
if mibBuilder.loadTexts: mliNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
mliHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliHostProhibited.setStatus('current')
if mibBuilder.loadTexts: mliHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
mliNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: mliHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
mliPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliPerformance.setStatus('current')
if mibBuilder.loadTexts: mliPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
mliNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: mliNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
mliHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: mliHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
mliAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: mliAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
mliRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliRouteChange.setStatus('current')
if mibBuilder.loadTexts: mliRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
mliErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliErrors.setStatus('current')
if mibBuilder.loadTexts: mliErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
mliMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mliMaintenance.setStatus('current')
if mibBuilder.loadTexts: mliMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
mlProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6), )
if mibBuilder.loadTexts: mlProtocolTable.setStatus('current')
if mibBuilder.loadTexts: mlProtocolTable.setDescription('A table of CODIMA Express History Long Term MAC Database Protocol Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mlProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mlpMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mlpTimeStampIndex"))
if mibBuilder.loadTexts: mlProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: mlProtocolEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Base Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mlpMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpMacIndex.setStatus('current')
if mibBuilder.loadTexts: mlpMacIndex.setDescription('Identifies the MAC address of this row.')
mlpTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mlpTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mlpTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mlpTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mlpNovell = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpNovell.setStatus('current')
if mibBuilder.loadTexts: mlpNovell.setDescription('The number of Novell Frames. A value of 4294967294 indicates unknown.')
mlpSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpSnmp.setStatus('current')
if mibBuilder.loadTexts: mlpSnmp.setDescription('The number of Simple Network Management Protocol (SNMP) Frames. A value of 4294967294 indicates unknown.')
mlpRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpRouting.setStatus('current')
if mibBuilder.loadTexts: mlpRouting.setDescription('The number of Routing Frames. e.g. RIP, OSPF etc. A value of 4294967294 indicates unknown.')
mlpWww = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpWww.setStatus('current')
if mibBuilder.loadTexts: mlpWww.setDescription('The number of World Wide Web Frames. e.g. HyperText Transfer Protocol (HTTP). A value of 4294967294 indicates unknown.')
mlpIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpIcmp.setStatus('current')
if mibBuilder.loadTexts: mlpIcmp.setDescription('The number of Internet Control Message Protocol (ICMP) Frames. A value of 4294967294 indicates unknown.')
mlpIso = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpIso.setStatus('current')
if mibBuilder.loadTexts: mlpIso.setDescription('The number of International Standards Organization (ISO) Frames. A value of 4294967294 indicates unknown.')
mlpMail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpMail.setStatus('current')
if mibBuilder.loadTexts: mlpMail.setDescription('The number of Mail Frames. e.g. Simple Mail Transfer Protocol (SMTP). A value of 4294967294 indicates unknown.')
mlpNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpNetbios.setStatus('current')
if mibBuilder.loadTexts: mlpNetbios.setDescription('The number of NetBIOS Frames. e.g. WINS or SMB protocol. A value of 4294967294 indicates unknown.')
mlpDns = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpDns.setStatus('current')
if mibBuilder.loadTexts: mlpDns.setDescription('The number of Domain Name System (DNS) Frames. A value of 4294967294 indicates unknown.')
mlpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpIp.setStatus('current')
if mibBuilder.loadTexts: mlpIp.setDescription('The number of Internet Protocol (IP) Frames. A value of 4294967294 indicates unknown.')
mlpVoip = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpVoip.setStatus('current')
if mibBuilder.loadTexts: mlpVoip.setDescription('The number of Voice Over Internet Protocol (VoIP) Frames. A value of 4294967294 indicates unknown.')
mlpLayer3Traffic = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpLayer3Traffic.setStatus('current')
if mibBuilder.loadTexts: mlpLayer3Traffic.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mlpIpData = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpIpData.setStatus('current')
if mibBuilder.loadTexts: mlpIpData.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mlpApplications = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpApplications.setStatus('current')
if mibBuilder.loadTexts: mlpApplications.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mlpIpControl = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpIpControl.setStatus('current')
if mibBuilder.loadTexts: mlpIpControl.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mlpManagement = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mlpManagement.setStatus('current')
if mibBuilder.loadTexts: mlpManagement.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
macShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2))
if mibBuilder.loadTexts: macShortTerm.setStatus('current')
if mibBuilder.loadTexts: macShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term MAC Database objects.')
msBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1), )
if mibBuilder.loadTexts: msBaseTable.setStatus('current')
if mibBuilder.loadTexts: msBaseTable.setDescription('A table of CODIMA Express History Short Term MAC Database Base Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "msbMacIndex"), (0, "CODIMA-EXPRESS-MIB", "msbTimeStampIndex"))
if mibBuilder.loadTexts: msBaseEntry.setStatus('current')
if mibBuilder.loadTexts: msBaseEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Base Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
msbMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbMacIndex.setStatus('current')
if mibBuilder.loadTexts: msbMacIndex.setDescription('Identifies the MAC address of this row.')
msbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: msbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
msbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: msbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
msbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbFrames.setStatus('current')
if mibBuilder.loadTexts: msbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
msbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbBytes.setStatus('current')
if mibBuilder.loadTexts: msbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
msbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: msbFrameSize.setStatus('current')
if mibBuilder.loadTexts: msbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
msbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: msbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
msbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: msbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
msDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2), )
if mibBuilder.loadTexts: msDerivedTable.setStatus('current')
if mibBuilder.loadTexts: msDerivedTable.setDescription('A table of CODIMA Express History Short Term MAC Database Derived Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "msdMacIndex"), (0, "CODIMA-EXPRESS-MIB", "msdTimeStampIndex"))
if mibBuilder.loadTexts: msDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: msDerivedEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Derived Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
msdMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdMacIndex.setStatus('current')
if mibBuilder.loadTexts: msdMacIndex.setDescription('Identifies the MAC address of this row.')
msdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: msdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
msdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: msdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
msdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdUtilization.setStatus('current')
if mibBuilder.loadTexts: msdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
msdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: msdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
msDuplexTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3), )
if mibBuilder.loadTexts: msDuplexTable.setStatus('current')
if mibBuilder.loadTexts: msDuplexTable.setDescription('A table of CODIMA Express History Short Term MAC Database Duplex Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msDuplexEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "msdpMacIndex"), (0, "CODIMA-EXPRESS-MIB", "msdpTimeStampIndex"))
if mibBuilder.loadTexts: msDuplexEntry.setStatus('current')
if mibBuilder.loadTexts: msDuplexEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Duplex Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
msdpMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpMacIndex.setStatus('current')
if mibBuilder.loadTexts: msdpMacIndex.setDescription('Identifies the MAC address of this row.')
msdpTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: msdpTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
msdpTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTimeStamp.setStatus('current')
if mibBuilder.loadTexts: msdpTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
msdpTxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTxFrames.setStatus('current')
if mibBuilder.loadTexts: msdpTxFrames.setDescription('Number of Frames Transmitted. A value of 4294967294 indicates unknown.')
msdpTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTxBytes.setStatus('current')
if mibBuilder.loadTexts: msdpTxBytes.setDescription('Number of Bytes Transmitted. A value of 4294967294 indicates unknown.')
msdpTxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTxFrameSize.setStatus('current')
if mibBuilder.loadTexts: msdpTxFrameSize.setDescription('Average Frame Size, in bytes, Transmitted. A value of 4294967294 indicates unknown.')
msdpTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpTxUtilization.setStatus('current')
if mibBuilder.loadTexts: msdpTxUtilization.setDescription('Percent Utilization Transmitted (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
msdpRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpRxFrames.setStatus('current')
if mibBuilder.loadTexts: msdpRxFrames.setDescription('Number of Frames Received. A value of 4294967294 indicates unknown.')
msdpRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpRxBytes.setStatus('current')
if mibBuilder.loadTexts: msdpRxBytes.setDescription('Number of Bytes Received. A value of 4294967294 indicates unknown.')
msdpRxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 10), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpRxFrameSize.setStatus('current')
if mibBuilder.loadTexts: msdpRxFrameSize.setDescription('Average Frame Size, in bytes, Received. A value of 4294967294 indicates unknown.')
msdpRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msdpRxUtilization.setStatus('current')
if mibBuilder.loadTexts: msdpRxUtilization.setDescription('Percent Utilization Received (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
msEthernetTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4), )
if mibBuilder.loadTexts: msEthernetTable.setStatus('current')
if mibBuilder.loadTexts: msEthernetTable.setDescription('A table of CODIMA Express History Short Term MAC Database Ethernet Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msEthernetEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mseMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mseTimeStampIndex"))
if mibBuilder.loadTexts: msEthernetEntry.setStatus('current')
if mibBuilder.loadTexts: msEthernetEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Ethernet Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Ethernet object implements statistics that are specific to Ethernet Networks, e.g., Collisions, Jabbers, Runts, CRC errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mseMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseMacIndex.setStatus('current')
if mibBuilder.loadTexts: mseMacIndex.setDescription('Identifies the MAC address of this row.')
mseTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mseTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mseTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mseTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mseRunts = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseRunts.setStatus('current')
if mibBuilder.loadTexts: mseRunts.setDescription('Number of Runts. Runts are frames which are smaller than the Ethernet minimum frames size of 64 bytes. A value of 4294967294 indicates unknown.')
mseJabbers = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseJabbers.setStatus('current')
if mibBuilder.loadTexts: mseJabbers.setDescription('Number of Jabber Frames. Jabbers are frames which exceed the Ethernet maximum packets size of 1518, they are most often caused by faulty transceivers which send spurious noise onto the network. A value of 4294967294 indicates unknown.')
mseCrc = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseCrc.setStatus('current')
if mibBuilder.loadTexts: mseCrc.setDescription('Number of CRC/Alignment Errors. CRC errors are frames which have been damaged. The Cyclic Redundancy Checksum used to confirm the validity of the frames contents shows that the frame is not valid. Alignment Errors are frames which are misaligned, a frame which does not end on an 8-bit boundary is considered an Alignment Error. A value of 4294967294 indicates unknown.')
mseCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseCollisions.setStatus('current')
if mibBuilder.loadTexts: mseCollisions.setDescription('Number of Collisions. Collisions are the result of two workstations trying to use shared a transmission medium (cable) simultaneously, e.g., using Ethernet CSMA/CD. The electrical signals, which carry the information the workstations are sending, bump into each other, ruining both signals. This means both workstations will have to re-transmit their information. In most systems, a built-in delay will make sure the collision does not occur again. A value of 4294967294 indicates unknown.')
mseLateCollisions = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mseLateCollisions.setStatus('current')
if mibBuilder.loadTexts: mseLateCollisions.setDescription('Number of Late Collisions. The term late collisions applies to collisions which occur late enough for the first 12 bytes of the frame to be monitored. A value of 4294967294 indicates unknown.')
msIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5), )
if mibBuilder.loadTexts: msIcmpTable.setStatus('current')
if mibBuilder.loadTexts: msIcmpTable.setDescription('A table of CODIMA Express History Short Term MAC Database ICMP Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "msiMacIndex"), (0, "CODIMA-EXPRESS-MIB", "msiTimeStampIndex"))
if mibBuilder.loadTexts: msIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: msIcmpEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database ICMP Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msiMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiMacIndex.setStatus('current')
if mibBuilder.loadTexts: msiMacIndex.setDescription('Identifies the MAC address of this row.')
msiTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: msiTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
msiTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiTimeStamp.setStatus('current')
if mibBuilder.loadTexts: msiTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
msiPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiPing.setStatus('current')
if mibBuilder.loadTexts: msiPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
msiSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiSrcQuench.setStatus('current')
if mibBuilder.loadTexts: msiSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
msiRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiRedirect.setStatus('current')
if mibBuilder.loadTexts: msiRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
msiTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: msiTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
msiParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiParamProblem.setStatus('current')
if mibBuilder.loadTexts: msiParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
msiTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiTimestamp.setStatus('current')
if mibBuilder.loadTexts: msiTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
msiFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiFragTimeout.setStatus('current')
if mibBuilder.loadTexts: msiFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
msiNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiFragRequired.setStatus('current')
if mibBuilder.loadTexts: msiFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
msiSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: msiSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
msiDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: msiDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
msiDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: msiDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
msiSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: msiSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
msiNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiNetProhibited.setStatus('current')
if mibBuilder.loadTexts: msiNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
msiHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiHostProhibited.setStatus('current')
if mibBuilder.loadTexts: msiHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
msiNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: msiHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
msiPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiPerformance.setStatus('current')
if mibBuilder.loadTexts: msiPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
msiNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: msiNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
msiHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: msiHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
msiAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: msiAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
msiRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiRouteChange.setStatus('current')
if mibBuilder.loadTexts: msiRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
msiErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiErrors.setStatus('current')
if mibBuilder.loadTexts: msiErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
msiMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: msiMaintenance.setStatus('current')
if mibBuilder.loadTexts: msiMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
msProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6), )
if mibBuilder.loadTexts: msProtocolTable.setStatus('current')
if mibBuilder.loadTexts: msProtocolTable.setDescription('A table of CODIMA Express History Short Term MAC Database Protocol Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
msProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mspMacIndex"), (0, "CODIMA-EXPRESS-MIB", "mspTimeStampIndex"))
if mibBuilder.loadTexts: msProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: msProtocolEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Protocol Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mspMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspMacIndex.setStatus('current')
if mibBuilder.loadTexts: mspMacIndex.setDescription('Identifies the MAC address of this row.')
mspTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mspTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mspTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mspTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mspNovell = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspNovell.setStatus('current')
if mibBuilder.loadTexts: mspNovell.setDescription('The number of Novell Frames. A value of 4294967294 indicates unknown.')
mspSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspSnmp.setStatus('current')
if mibBuilder.loadTexts: mspSnmp.setDescription('The number of Simple Network Management Protocol (SNMP) Frames. A value of 4294967294 indicates unknown.')
mspRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspRouting.setStatus('current')
if mibBuilder.loadTexts: mspRouting.setDescription('The number of Routing Frames. e.g. RIP, OSPF etc. A value of 4294967294 indicates unknown.')
mspWww = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspWww.setStatus('current')
if mibBuilder.loadTexts: mspWww.setDescription('The number of World Wide Web Frames. e.g. HyperText Transfer Protocol (HTTP). A value of 4294967294 indicates unknown.')
mspIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspIcmp.setStatus('current')
if mibBuilder.loadTexts: mspIcmp.setDescription('The number of Internet Control Message Protocol (ICMP) Frames. A value of 4294967294 indicates unknown.')
mspIso = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspIso.setStatus('current')
if mibBuilder.loadTexts: mspIso.setDescription('The number of International Standards Organization (ISO) Frames. A value of 4294967294 indicates unknown.')
mspMail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspMail.setStatus('current')
if mibBuilder.loadTexts: mspMail.setDescription('The number of Mail Frames. e.g. Simple Mail Transfer Protocol (SMTP). A value of 4294967294 indicates unknown.')
mspNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspNetbios.setStatus('current')
if mibBuilder.loadTexts: mspNetbios.setDescription('The number of NetBIOS Frames. e.g. WINS or SMB protocol. A value of 4294967294 indicates unknown.')
mspDns = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspDns.setStatus('current')
if mibBuilder.loadTexts: mspDns.setDescription('The number of Domain Name System (DNS) Frames. A value of 4294967294 indicates unknown.')
mspIp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspIp.setStatus('current')
if mibBuilder.loadTexts: mspIp.setDescription('The number of Internet Protocol (IP) Frames. A value of 4294967294 indicates unknown.')
mspVoip = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspVoip.setStatus('current')
if mibBuilder.loadTexts: mspVoip.setDescription('The number of Voice Over Internet Protocol (VoIP) Frames. A value of 4294967294 indicates unknown.')
mspLayer3Traffic = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspLayer3Traffic.setStatus('current')
if mibBuilder.loadTexts: mspLayer3Traffic.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mspIpData = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspIpData.setStatus('current')
if mibBuilder.loadTexts: mspIpData.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mspApplications = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspApplications.setStatus('current')
if mibBuilder.loadTexts: mspApplications.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mspIpControl = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspIpControl.setStatus('current')
if mibBuilder.loadTexts: mspIpControl.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mspManagement = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mspManagement.setStatus('current')
if mibBuilder.loadTexts: mspManagement.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
dbMacPeer = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4))
if mibBuilder.loadTexts: dbMacPeer.setStatus('current')
if mibBuilder.loadTexts: dbMacPeer.setDescription('Sub-tree for the CODIMA Express History MAC Peer Database objects.')
macPeerLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1))
if mibBuilder.loadTexts: macPeerLongTerm.setStatus('current')
if mibBuilder.loadTexts: macPeerLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term MAC Peer Database objects.')
mplBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1), )
if mibBuilder.loadTexts: mplBaseTable.setStatus('current')
if mibBuilder.loadTexts: mplBaseTable.setDescription('A table of CODIMA Express History Long Term MAC Database Peer Base Objects. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mplBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mplbMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mplbMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mplbTimeStampIndex"))
if mibBuilder.loadTexts: mplBaseEntry.setStatus('current')
if mibBuilder.loadTexts: mplBaseEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Base Objects table. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
mplbMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbMac1Index.setStatus('current')
if mibBuilder.loadTexts: mplbMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mplbMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbMac2Index.setStatus('current')
if mibBuilder.loadTexts: mplbMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mplbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mplbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in minutes from Midnight January 1st 1970.')
mplbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(24, 24)).setFixedLength(24)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mplbTimeStamp.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in minutes from Midnight January 1st 1970 in human readable form.')
mplbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbFrames.setStatus('current')
if mibBuilder.loadTexts: mplbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
mplbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbBytes.setStatus('current')
if mibBuilder.loadTexts: mplbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mplbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbFrameSize.setStatus('current')
if mibBuilder.loadTexts: mplbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mplbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: mplbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
mplbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: mplbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
mplDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2), )
if mibBuilder.loadTexts: mplDerivedTable.setStatus('current')
if mibBuilder.loadTexts: mplDerivedTable.setDescription('A table of CODIMA Express History Long Term MAC Database Peer Derived Objects. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mplDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mpldMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mpldMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mpldTimeStampIndex"))
if mibBuilder.loadTexts: mplDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: mplDerivedEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Peer Derived Objects table. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mpldMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldMac1Index.setStatus('current')
if mibBuilder.loadTexts: mpldMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpldMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldMac2Index.setStatus('current')
if mibBuilder.loadTexts: mpldMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpldTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mpldTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mpldTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mpldTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mpldUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldUtilization.setStatus('current')
if mibBuilder.loadTexts: mpldUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mpldErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpldErrorFrames.setStatus('current')
if mibBuilder.loadTexts: mpldErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mplDuplexTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3), )
if mibBuilder.loadTexts: mplDuplexTable.setStatus('current')
if mibBuilder.loadTexts: mplDuplexTable.setDescription('A table of CODIMA Express History Long Term MAC Database Duplex Objects. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mplDuplexEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mplduMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mplduMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mplduTimeStampIndex"))
if mibBuilder.loadTexts: mplDuplexEntry.setStatus('current')
if mibBuilder.loadTexts: mplDuplexEntry.setDescription('A table of CODIMA Express History Long Term MAC Database Duplex Objects. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
mplduMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduMac1Index.setStatus('current')
if mibBuilder.loadTexts: mplduMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mplduMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduMac2Index.setStatus('current')
if mibBuilder.loadTexts: mplduMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mplduTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mplduTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mplduTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mplduTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mplduTxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTxFrames.setStatus('current')
if mibBuilder.loadTexts: mplduTxFrames.setDescription('Number of Frames Transmitted. A value of 4294967294 indicates unknown.')
mplduTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTxBytes.setStatus('current')
if mibBuilder.loadTexts: mplduTxBytes.setDescription('Number of Bytes Transmitted. A value of 4294967294 indicates unknown.')
mplduTxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mplduTxFrameSize.setDescription('Average Frame Size, in bytes, Transmitted. A value of 4294967294 indicates unknown.')
mplduTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduTxUtilization.setStatus('current')
if mibBuilder.loadTexts: mplduTxUtilization.setDescription('Percent Utilization Transmitted (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mplduRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduRxFrames.setStatus('current')
if mibBuilder.loadTexts: mplduRxFrames.setDescription('Number of Frames Received. A value of 4294967294 indicates unknown.')
mplduRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduRxBytes.setStatus('current')
if mibBuilder.loadTexts: mplduRxBytes.setDescription('Number of Bytes Received. A value of 4294967294 indicates unknown.')
mplduRxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 11), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduRxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mplduRxFrameSize.setDescription('Average Frame Size, in bytes, Received. A value of 4294967294 indicates unknown.')
mplduRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplduRxUtilization.setStatus('current')
if mibBuilder.loadTexts: mplduRxUtilization.setDescription('Percent Utilization Received (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mplProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4), )
if mibBuilder.loadTexts: mplProtocolTable.setStatus('current')
if mibBuilder.loadTexts: mplProtocolTable.setDescription('A table of CODIMA Express History Long Term MAC Peer Database Protocol Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mplProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mplpMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mplpMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mplpTimeStampIndex"))
if mibBuilder.loadTexts: mplProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: mplProtocolEntry.setDescription('A row in the CODIMA Express History Long Term MAC Peer Database Base Objects table. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mplpMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpMac1Index.setStatus('current')
if mibBuilder.loadTexts: mplpMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mplpMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpMac2Index.setStatus('current')
if mibBuilder.loadTexts: mplpMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mplpTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mplpTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mplpTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mplpTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mplpNovell = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpNovell.setStatus('current')
if mibBuilder.loadTexts: mplpNovell.setDescription('The number of Novell Frames. A value of 4294967294 indicates unknown.')
mplpSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpSnmp.setStatus('current')
if mibBuilder.loadTexts: mplpSnmp.setDescription('The number of Simple Network Management Protocol (SNMP) Frames. A value of 4294967294 indicates unknown.')
mplpRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpRouting.setStatus('current')
if mibBuilder.loadTexts: mplpRouting.setDescription('The number of Routing Frames. e.g. RIP, OSPF etc. A value of 4294967294 indicates unknown.')
mplpWww = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpWww.setStatus('current')
if mibBuilder.loadTexts: mplpWww.setDescription('The number of World Wide Web Frames. e.g. HyperText Transfer Protocol (HTTP). A value of 4294967294 indicates unknown.')
mplpIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpIcmp.setStatus('current')
if mibBuilder.loadTexts: mplpIcmp.setDescription('The number of Internet Control Message Protocol (ICMP) Frames. A value of 4294967294 indicates unknown.')
mplpIso = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpIso.setStatus('current')
if mibBuilder.loadTexts: mplpIso.setDescription('The number of International Standards Organization (ISO) Frames. A value of 4294967294 indicates unknown.')
mplpMail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpMail.setStatus('current')
if mibBuilder.loadTexts: mplpMail.setDescription('The number of Mail Frames. e.g. Simple Mail Transfer Protocol (SMTP). A value of 4294967294 indicates unknown.')
mplpNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpNetbios.setStatus('current')
if mibBuilder.loadTexts: mplpNetbios.setDescription('The number of NetBIOS Frames. e.g. WINS or SMB protocol. A value of 4294967294 indicates unknown.')
mplpDns = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpDns.setStatus('current')
if mibBuilder.loadTexts: mplpDns.setDescription('The number of Domain Name System (DNS) Frames. A value of 4294967294 indicates unknown.')
mplpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpIp.setStatus('current')
if mibBuilder.loadTexts: mplpIp.setDescription('The number of Internet Protocol (IP) Frames. A value of 4294967294 indicates unknown.')
mplpVoip = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpVoip.setStatus('current')
if mibBuilder.loadTexts: mplpVoip.setDescription('The number of Voice Over Internet Protocol (VoIP) Frames. A value of 4294967294 indicates unknown.')
mplpLayer3Traffic = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpLayer3Traffic.setStatus('current')
if mibBuilder.loadTexts: mplpLayer3Traffic.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mplpIpData = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpIpData.setStatus('current')
if mibBuilder.loadTexts: mplpIpData.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mplpApplications = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpApplications.setStatus('current')
if mibBuilder.loadTexts: mplpApplications.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mplpIpControl = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpIpControl.setStatus('current')
if mibBuilder.loadTexts: mplpIpControl.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mplpManagement = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mplpManagement.setStatus('current')
if mibBuilder.loadTexts: mplpManagement.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
macPeerShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2))
if mibBuilder.loadTexts: macPeerShortTerm.setStatus('current')
if mibBuilder.loadTexts: macPeerShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term MAC Peer Database objects.')
mpsBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1), )
if mibBuilder.loadTexts: mpsBaseTable.setStatus('current')
if mibBuilder.loadTexts: mpsBaseTable.setDescription('A table of CODIMA Express History Short Term MAC Database Peer Base Objects. Based on 15 second intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mpsBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mpsbMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mpsbMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mpsbTimeStampIndex"))
if mibBuilder.loadTexts: mpsBaseEntry.setStatus('current')
if mibBuilder.loadTexts: mpsBaseEntry.setDescription('A row in the CODIMA Express History Short Term MAC Database Base Objects table. Based on 15 second intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
mpsbMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbMac1Index.setStatus('current')
if mibBuilder.loadTexts: mpsbMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsbMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbMac2Index.setStatus('current')
if mibBuilder.loadTexts: mpsbMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mpsbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mpsbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mpsbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mpsbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbFrames.setStatus('current')
if mibBuilder.loadTexts: mpsbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
mpsbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbBytes.setStatus('current')
if mibBuilder.loadTexts: mpsbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mpsbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbFrameSize.setStatus('current')
if mibBuilder.loadTexts: mpsbFrameSize.setDescription('Average Frame Size, in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
mpsbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: mpsbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
mpsbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: mpsbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
mpsDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2), )
if mibBuilder.loadTexts: mpsDerivedTable.setStatus('current')
if mibBuilder.loadTexts: mpsDerivedTable.setDescription('A table of CODIMA Express History Long Term MAC Database Peer Derived Objects. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mpsDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mpsdMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mpsdMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mpsdTimeStampIndex"))
if mibBuilder.loadTexts: mpsDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: mpsDerivedEntry.setDescription('A row in the CODIMA Express History Long Term MAC Database Peer Derived Objects table. Based on 15 minute intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mpsdMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdMac1Index.setStatus('current')
if mibBuilder.loadTexts: mpsdMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsdMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdMac2Index.setStatus('current')
if mibBuilder.loadTexts: mpsdMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mpsdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mpsdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mpsdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mpsdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdUtilization.setStatus('current')
if mibBuilder.loadTexts: mpsdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mpsdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: mpsdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mpsDuplexTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3), )
if mibBuilder.loadTexts: mpsDuplexTable.setStatus('current')
if mibBuilder.loadTexts: mpsDuplexTable.setDescription('A table of CODIMA Express History Short Term MAC Database Duplex Objects. Based on 15 second intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data.')
mpsDuplexEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mpsduMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mpsduMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mpsduTimeStampIndex"))
if mibBuilder.loadTexts: mpsDuplexEntry.setStatus('current')
if mibBuilder.loadTexts: mpsDuplexEntry.setDescription('A table of CODIMA Express History Short Term MAC Database Duplex Objects. Based on 15 second intervals, statistics are collected for each MAC Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Duplex object implements statistics that are specific to a two way commnunication, e.g., Transmit Frames, Receive Frames, Transmit % Utilization, Receive % Utililization. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
mpsduMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduMac1Index.setStatus('current')
if mibBuilder.loadTexts: mpsduMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsduMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduMac2Index.setStatus('current')
if mibBuilder.loadTexts: mpsduMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsduTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mpsduTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mpsduTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mpsduTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mpsduTxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTxFrames.setStatus('current')
if mibBuilder.loadTexts: mpsduTxFrames.setDescription('Number of Frames Transmitted. A value of 4294967294 indicates unknown.')
mpsduTxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTxBytes.setStatus('current')
if mibBuilder.loadTexts: mpsduTxBytes.setDescription('Number of Bytes Transmitted. A value of 4294967294 indicates unknown.')
mpsduTxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mpsduTxFrameSize.setDescription('Average Frame Size, in bytes, Transmitted. A value of 4294967294 indicates unknown.')
mpsduTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 8), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduTxUtilization.setStatus('current')
if mibBuilder.loadTexts: mpsduTxUtilization.setDescription('Percent Utilization Transmitted (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mpsduRxFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduRxFrames.setStatus('current')
if mibBuilder.loadTexts: mpsduRxFrames.setDescription('Number of Frames Received. A value of 4294967294 indicates unknown.')
mpsduRxBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduRxBytes.setStatus('current')
if mibBuilder.loadTexts: mpsduRxBytes.setDescription('Number of Bytes Received. A value of 4294967294 indicates unknown.')
mpsduRxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 11), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduRxFrameSize.setStatus('current')
if mibBuilder.loadTexts: mpsduRxFrameSize.setDescription('Average Frame Size, in bytes, Received. A value of 4294967294 indicates unknown.')
mpsduRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpsduRxUtilization.setStatus('current')
if mibBuilder.loadTexts: mpsduRxUtilization.setDescription('Percent Utilization Received (% Wire Speed). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
mpsProtocolTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4), )
if mibBuilder.loadTexts: mpsProtocolTable.setStatus('current')
if mibBuilder.loadTexts: mpsProtocolTable.setDescription('A table of CODIMA Express History Short Term MAC Peer Database Protocol Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network.')
mpsProtocolEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "mpspMac1Index"), (0, "CODIMA-EXPRESS-MIB", "mpspMac2Index"), (0, "CODIMA-EXPRESS-MIB", "mpspTimeStampIndex"))
if mibBuilder.loadTexts: mpsProtocolEntry.setStatus('current')
if mibBuilder.loadTexts: mpsProtocolEntry.setDescription('A row in the CODIMA Express History Short Term MAC Peer Database Protocol Objects table. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Protocol object implements values covering the number of Frames associated with different protocols. For example, SNMP, IP, DNS Frame counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of MAC addresses active on the network. Entries cannot be created or deleted via SNMP operations')
mpspMac1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 1), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspMac1Index.setStatus('current')
if mibBuilder.loadTexts: mpspMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpspMac2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 2), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspMac2Index.setStatus('current')
if mibBuilder.loadTexts: mpspMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpspTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: mpspTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
mpspTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspTimeStamp.setStatus('current')
if mibBuilder.loadTexts: mpspTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
mpspNovell = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspNovell.setStatus('current')
if mibBuilder.loadTexts: mpspNovell.setDescription('The number of Novell Frames. A value of 4294967294 indicates unknown.')
mpspSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspSnmp.setStatus('current')
if mibBuilder.loadTexts: mpspSnmp.setDescription('The number of Simple Network Management Protocol (SNMP) Frames. A value of 4294967294 indicates unknown.')
mpspRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspRouting.setStatus('current')
if mibBuilder.loadTexts: mpspRouting.setDescription('The number of Routing Frames. e.g. RIP, OSPF etc. A value of 4294967294 indicates unknown.')
mpspWww = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspWww.setStatus('current')
if mibBuilder.loadTexts: mpspWww.setDescription('The number of World Wide Web Frames. e.g. HyperText Transfer Protocol (HTTP). A value of 4294967294 indicates unknown.')
mpspIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspIcmp.setStatus('current')
if mibBuilder.loadTexts: mpspIcmp.setDescription('The number of Internet Control Message Protocol (ICMP) Frames. A value of 4294967294 indicates unknown.')
mpspIso = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspIso.setStatus('current')
if mibBuilder.loadTexts: mpspIso.setDescription('The number of International Standards Organization (ISO) Frames. A value of 4294967294 indicates unknown.')
mpspMail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspMail.setStatus('current')
if mibBuilder.loadTexts: mpspMail.setDescription('The number of Mail Frames. e.g. Simple Mail Transfer Protocol (SMTP). A value of 4294967294 indicates unknown.')
mpspNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspNetbios.setStatus('current')
if mibBuilder.loadTexts: mpspNetbios.setDescription('The number of NetBIOS Frames. e.g. WINS or SMB protocol. A value of 4294967294 indicates unknown.')
mpspDns = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspDns.setStatus('current')
if mibBuilder.loadTexts: mpspDns.setDescription('The number of Domain Name System (DNS) Frames. A value of 4294967294 indicates unknown.')
mpspIp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspIp.setStatus('current')
if mibBuilder.loadTexts: mpspIp.setDescription('The number of Internet Protocol (IP) Frames. A value of 4294967294 indicates unknown.')
mpspVoip = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspVoip.setStatus('current')
if mibBuilder.loadTexts: mpspVoip.setDescription('The number of Voice Over Internet Protocol (VoIP) Frames. A value of 4294967294 indicates unknown.')
mpspLayer3Traffic = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspLayer3Traffic.setStatus('current')
if mibBuilder.loadTexts: mpspLayer3Traffic.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mpspIpData = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspIpData.setStatus('current')
if mibBuilder.loadTexts: mpspIpData.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mpspApplications = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspApplications.setStatus('current')
if mibBuilder.loadTexts: mpspApplications.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mpspIpControl = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspIpControl.setStatus('current')
if mibBuilder.loadTexts: mpspIpControl.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
mpspManagement = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mpspManagement.setStatus('current')
if mibBuilder.loadTexts: mpspManagement.setDescription('The number of frames in the (name of group) Protocol Group. Important protocols are grouped together to enable you to view patterns/profiles at Node Level. The protocols which are included in each group are user definable. A value of 4294967294 indicates unknown')
dbIPv4 = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5))
if mibBuilder.loadTexts: dbIPv4.setStatus('current')
if mibBuilder.loadTexts: dbIPv4.setDescription('Sub-tree for the CODIMA Express History IPv4 Database objects.')
ipLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1))
if mibBuilder.loadTexts: ipLongTerm.setStatus('current')
if mibBuilder.loadTexts: ipLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term IPv4 Database objects.')
ilBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1), )
if mibBuilder.loadTexts: ilBaseTable.setStatus('current')
if mibBuilder.loadTexts: ilBaseTable.setDescription('A table of CODIMA Express History Long Term IPv4 Database Base Objects. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
ilBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ilbIpIndex"), (0, "CODIMA-EXPRESS-MIB", "ilbTimeStampIndex"))
if mibBuilder.loadTexts: ilBaseEntry.setStatus('current')
if mibBuilder.loadTexts: ilBaseEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Database Base Objects table. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network. Entries cannot be created or deleted via SNMP operations')
ilbIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbIpIndex.setStatus('current')
if mibBuilder.loadTexts: ilbIpIndex.setDescription('Identifies the IPv4 address of this row.')
ilbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ilbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ilbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ilbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ilbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbFrames.setStatus('current')
if mibBuilder.loadTexts: ilbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
ilbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbBytes.setStatus('current')
if mibBuilder.loadTexts: ilbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ilbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbFrameSize.setStatus('current')
if mibBuilder.loadTexts: ilbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ilbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: ilbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
ilbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ilbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: ilbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
ilDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2), )
if mibBuilder.loadTexts: ilDerivedTable.setStatus('current')
if mibBuilder.loadTexts: ilDerivedTable.setDescription('A table of CODIMA Express History Long Term IPv4 Database Derived Objects. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
ilDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ildIpIndex"), (0, "CODIMA-EXPRESS-MIB", "ildTimeStampIndex"))
if mibBuilder.loadTexts: ilDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: ilDerivedEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Database Derived Objects table. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network. Entries cannot be created or deleted via SNMP operations')
ildIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ildIpIndex.setStatus('current')
if mibBuilder.loadTexts: ildIpIndex.setDescription('Identifies the IPv4 address of this row.')
ildTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ildTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ildTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ildTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ildTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ildTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ildUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ildUtilization.setStatus('current')
if mibBuilder.loadTexts: ildUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ildErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ildErrorFrames.setStatus('current')
if mibBuilder.loadTexts: ildErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ilIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3), )
if mibBuilder.loadTexts: ilIcmpTable.setStatus('current')
if mibBuilder.loadTexts: ilIcmpTable.setDescription('A table of CODIMA Express History Long Term IPv4 Database ICMP Objects. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
ilIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "iliTimeStampIndex"))
if mibBuilder.loadTexts: ilIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: ilIcmpEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Database ICMP Objects table. Statistics are collected every 15 minutes for each IPv4 address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
iliIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliIpIndex.setStatus('current')
if mibBuilder.loadTexts: iliIpIndex.setDescription('Identifies the IPv4 address of this row.')
iliTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: iliTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
iliTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliTimeStamp.setStatus('current')
if mibBuilder.loadTexts: iliTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
iliPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliPing.setStatus('current')
if mibBuilder.loadTexts: iliPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
iliSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliSrcQuench.setStatus('current')
if mibBuilder.loadTexts: iliSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
iliRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliRedirect.setStatus('current')
if mibBuilder.loadTexts: iliRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
iliTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: iliTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
iliParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliParamProblem.setStatus('current')
if mibBuilder.loadTexts: iliParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
iliTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliTimestamp.setStatus('current')
if mibBuilder.loadTexts: iliTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
iliFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliFragTimeout.setStatus('current')
if mibBuilder.loadTexts: iliFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
iliNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliFragRequired.setStatus('current')
if mibBuilder.loadTexts: iliFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
iliSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: iliSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
iliDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: iliDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
iliDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: iliDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
iliSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: iliSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
iliNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliNetProhibited.setStatus('current')
if mibBuilder.loadTexts: iliNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
iliHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliHostProhibited.setStatus('current')
if mibBuilder.loadTexts: iliHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
iliNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: iliHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
iliPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliPerformance.setStatus('current')
if mibBuilder.loadTexts: iliPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
iliNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: iliNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
iliHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: iliHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
iliAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: iliAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
iliRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliRouteChange.setStatus('current')
if mibBuilder.loadTexts: iliRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
iliErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliErrors.setStatus('current')
if mibBuilder.loadTexts: iliErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
iliMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iliMaintenance.setStatus('current')
if mibBuilder.loadTexts: iliMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
ipShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2))
if mibBuilder.loadTexts: ipShortTerm.setStatus('current')
if mibBuilder.loadTexts: ipShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term IPv4 Database objects.')
isBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1), )
if mibBuilder.loadTexts: isBaseTable.setStatus('current')
if mibBuilder.loadTexts: isBaseTable.setDescription('A table of CODIMA Express History Short Term IPv4 Database Base Objects. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
isBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "isbIpIndex"), (0, "CODIMA-EXPRESS-MIB", "isbTimeStampIndex"))
if mibBuilder.loadTexts: isBaseEntry.setStatus('current')
if mibBuilder.loadTexts: isBaseEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Database Base Objects table. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network. Entries cannot be created or deleted via SNMP operations')
isbIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbIpIndex.setStatus('current')
if mibBuilder.loadTexts: isbIpIndex.setDescription('Identifies the IPv4 address of this row.')
isbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: isbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
isbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: isbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
isbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbFrames.setStatus('current')
if mibBuilder.loadTexts: isbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
isbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbBytes.setStatus('current')
if mibBuilder.loadTexts: isbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
isbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 6), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: isbFrameSize.setStatus('current')
if mibBuilder.loadTexts: isbFrameSize.setDescription('Average Frame Size, in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
isbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: isbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
isbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: isbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
isDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2), )
if mibBuilder.loadTexts: isDerivedTable.setStatus('current')
if mibBuilder.loadTexts: isDerivedTable.setDescription('A table of CODIMA Express History Short Term IPv4 Database Derived Objects. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
isDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "isdIpIndex"), (0, "CODIMA-EXPRESS-MIB", "isdTimeStampIndex"))
if mibBuilder.loadTexts: isDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: isDerivedEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Database Derived Objects table. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network. Entries cannot be created or deleted via SNMP operations')
isdIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isdIpIndex.setStatus('current')
if mibBuilder.loadTexts: isdIpIndex.setDescription('Identifies the IPv4 address of this row.')
isdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: isdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
isdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: isdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: isdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
isdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 4), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isdUtilization.setStatus('current')
if mibBuilder.loadTexts: isdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
isdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: isdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
isIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3), )
if mibBuilder.loadTexts: isIcmpTable.setStatus('current')
if mibBuilder.loadTexts: isIcmpTable.setDescription('A table of CODIMA Express History Short Term IPv4 Database ICMP Objects. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
isIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "isiTimeStampIndex"))
if mibBuilder.loadTexts: isIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: isIcmpEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Database ICMP Objects table. Statistics are collected every 15 seconds for each IPv4 address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 addresses active on the network.')
isiIpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiIpIndex.setStatus('current')
if mibBuilder.loadTexts: isiIpIndex.setDescription('Identifies the IPv4 address of this row.')
isiTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: isiTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
isiTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiTimeStamp.setStatus('current')
if mibBuilder.loadTexts: isiTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
isiPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiPing.setStatus('current')
if mibBuilder.loadTexts: isiPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
isiSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiSrcQuench.setStatus('current')
if mibBuilder.loadTexts: isiSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
isiRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiRedirect.setStatus('current')
if mibBuilder.loadTexts: isiRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
isiTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: isiTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
isiParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiParamProblem.setStatus('current')
if mibBuilder.loadTexts: isiParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
isiTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiTimestamp.setStatus('current')
if mibBuilder.loadTexts: isiTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
isiFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiFragTimeout.setStatus('current')
if mibBuilder.loadTexts: isiFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
isiNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiFragRequired.setStatus('current')
if mibBuilder.loadTexts: isiFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
isiSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: isiSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
isiDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: isiDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
isiDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: isiDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
isiSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: isiSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
isiNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiNetProhibited.setStatus('current')
if mibBuilder.loadTexts: isiNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
isiHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiHostProhibited.setStatus('current')
if mibBuilder.loadTexts: isiHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
isiNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: isiHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
isiPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiPerformance.setStatus('current')
if mibBuilder.loadTexts: isiPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
isiNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: isiNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
isiHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: isiHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
isiAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: isiAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
isiRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiRouteChange.setStatus('current')
if mibBuilder.loadTexts: isiRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
isiErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiErrors.setStatus('current')
if mibBuilder.loadTexts: isiErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
isiMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: isiMaintenance.setStatus('current')
if mibBuilder.loadTexts: isiMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
dbIPv4Peer = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6))
if mibBuilder.loadTexts: dbIPv4Peer.setStatus('current')
if mibBuilder.loadTexts: dbIPv4Peer.setDescription('Sub-tree for the CODIMA Express History IPv4 Peer Database objects.')
ipPeerLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1))
if mibBuilder.loadTexts: ipPeerLongTerm.setStatus('current')
if mibBuilder.loadTexts: ipPeerLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term IPv4 Peer Database objects.')
iplBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1), )
if mibBuilder.loadTexts: iplBaseTable.setStatus('current')
if mibBuilder.loadTexts: iplBaseTable.setDescription('A table of CODIMA Express History Long Term IPv4 Peer Database Base Objects. Based on 15 minute intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
iplBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "iplbIp1Index"), (0, "CODIMA-EXPRESS-MIB", "iplbIp2Index"), (0, "CODIMA-EXPRESS-MIB", "iplbTimeStampIndex"))
if mibBuilder.loadTexts: iplBaseEntry.setStatus('current')
if mibBuilder.loadTexts: iplBaseEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Database Base Objects table. Based on 15 minute intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
iplbIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbIp1Index.setStatus('current')
if mibBuilder.loadTexts: iplbIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
iplbIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbIp2Index.setStatus('current')
if mibBuilder.loadTexts: iplbIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
iplbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: iplbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in minutes from Midnight January 1st 1970.')
iplbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(24, 24)).setFixedLength(24)).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: iplbTimeStamp.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in minutes from Midnight January 1st 1970 in human readable form.')
iplbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbFrames.setStatus('current')
if mibBuilder.loadTexts: iplbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
iplbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbBytes.setStatus('current')
if mibBuilder.loadTexts: iplbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
iplbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbFrameSize.setStatus('current')
if mibBuilder.loadTexts: iplbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
iplbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: iplbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
iplbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: iplbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: iplbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
iplDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2), )
if mibBuilder.loadTexts: iplDerivedTable.setStatus('current')
if mibBuilder.loadTexts: iplDerivedTable.setDescription('A table of CODIMA Express History Long Term IPv4 Peer Database Derived Objects. Based on 15 minute intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
iplDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ipldIp1Index"), (0, "CODIMA-EXPRESS-MIB", "ipldIp2Index"), (0, "CODIMA-EXPRESS-MIB", "ipldTimeStampIndex"))
if mibBuilder.loadTexts: iplDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: iplDerivedEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Peer Database Derived Objects table. Based on 15 minute intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
ipldIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldIp1Index.setStatus('current')
if mibBuilder.loadTexts: ipldIp1Index.setDescription('Identifies the first Peer MAC address of this row.')
ipldIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldIp2Index.setStatus('current')
if mibBuilder.loadTexts: ipldIp2Index.setDescription('Identifies the second Peer MAC address of this row.')
ipldTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ipldTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ipldTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ipldTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ipldUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldUtilization.setStatus('current')
if mibBuilder.loadTexts: ipldUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ipldErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipldErrorFrames.setStatus('current')
if mibBuilder.loadTexts: ipldErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
iplIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3), )
if mibBuilder.loadTexts: iplIcmpTable.setStatus('current')
if mibBuilder.loadTexts: iplIcmpTable.setDescription('A table of CODIMA Express History Long Term IPv4 Peer Database ICMP Objects. Statistics are collected every 15 minutes for each IPv4 Peer address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 Peer addresses active on the network.')
iplIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ipliIp1Index"), (0, "CODIMA-EXPRESS-MIB", "ipliIp2Index"), (0, "CODIMA-EXPRESS-MIB", "ipliTimeStampIndex"))
if mibBuilder.loadTexts: iplIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: iplIcmpEntry.setDescription('A row in the CODIMA Express History Long Term IPv4 Peer Database ICMP Objects table. Statistics are collected every 15 minutes for each IPv4 Peer address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of IPv4 Peer addresses active on the network.')
ipliIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliIp1Index.setStatus('current')
if mibBuilder.loadTexts: ipliIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipliIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliIp2Index.setStatus('current')
if mibBuilder.loadTexts: ipliIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipliTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ipliTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ipliTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ipliTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ipliPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliPing.setStatus('current')
if mibBuilder.loadTexts: ipliPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
ipliSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliSrcQuench.setStatus('current')
if mibBuilder.loadTexts: ipliSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
ipliRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliRedirect.setStatus('current')
if mibBuilder.loadTexts: ipliRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
ipliTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: ipliTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
ipliParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliParamProblem.setStatus('current')
if mibBuilder.loadTexts: ipliParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
ipliTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliTimestamp.setStatus('current')
if mibBuilder.loadTexts: ipliTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
ipliFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliFragTimeout.setStatus('current')
if mibBuilder.loadTexts: ipliFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
ipliNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliFragRequired.setStatus('current')
if mibBuilder.loadTexts: ipliFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
ipliSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: ipliSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
ipliDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: ipliDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
ipliDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: ipliDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
ipliSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: ipliSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
ipliNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliNetProhibited.setStatus('current')
if mibBuilder.loadTexts: ipliNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ipliHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliHostProhibited.setStatus('current')
if mibBuilder.loadTexts: ipliHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ipliNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipliHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipliPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliPerformance.setStatus('current')
if mibBuilder.loadTexts: ipliPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
ipliNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipliNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
ipliHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipliHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
ipliAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipliAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
ipliRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliRouteChange.setStatus('current')
if mibBuilder.loadTexts: ipliRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
ipliErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliErrors.setStatus('current')
if mibBuilder.loadTexts: ipliErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
ipliMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipliMaintenance.setStatus('current')
if mibBuilder.loadTexts: ipliMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
ipPeerShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2))
if mibBuilder.loadTexts: ipPeerShortTerm.setStatus('current')
if mibBuilder.loadTexts: ipPeerShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term IPv4 Peer Database objects.')
ipsBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1), )
if mibBuilder.loadTexts: ipsBaseTable.setStatus('current')
if mibBuilder.loadTexts: ipsBaseTable.setDescription('A table of CODIMA Express History Short Term IPv4 Peer Database Base Objects. Based on 15 second intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
ipsBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ipsbIp1Index"), (0, "CODIMA-EXPRESS-MIB", "ipsbIp2Index"), (0, "CODIMA-EXPRESS-MIB", "ipsbTimeStampIndex"))
if mibBuilder.loadTexts: ipsBaseEntry.setStatus('current')
if mibBuilder.loadTexts: ipsBaseEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Database Base Objects table. Based on 15 second intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data. Entries cannot be created or deleted via SNMP operations')
ipsbIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbIp1Index.setStatus('current')
if mibBuilder.loadTexts: ipsbIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipsbIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbIp2Index.setStatus('current')
if mibBuilder.loadTexts: ipsbIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipsbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ipsbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ipsbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ipsbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ipsbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbFrames.setStatus('current')
if mibBuilder.loadTexts: ipsbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
ipsbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbBytes.setStatus('current')
if mibBuilder.loadTexts: ipsbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ipsbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbFrameSize.setStatus('current')
if mibBuilder.loadTexts: ipsbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
ipsbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: ipsbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
ipsbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: ipsbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
ipsDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2), )
if mibBuilder.loadTexts: ipsDerivedTable.setStatus('current')
if mibBuilder.loadTexts: ipsDerivedTable.setDescription('A table of CODIMA Express History Short Term IPv4 Peer Database Derived Objects. Based on 15 second intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
ipsDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ipsdIp1Index"), (0, "CODIMA-EXPRESS-MIB", "ipsdIp2Index"), (0, "CODIMA-EXPRESS-MIB", "ipsdTimeStampIndex"))
if mibBuilder.loadTexts: ipsDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: ipsDerivedEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Peer Database Derived Objects table. Based on 15 second intervals, statistics are collected for each IPv4 Peer pair monitored by the Express. Some Unit Types such as File Servers and Routers are automatically set to provide Node Peers Statistics, others such as Unknown Unit Type or Work Station will need to have the Node peer statistics activated. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 nodes set to collect peer data.')
ipsdIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdIp1Index.setStatus('current')
if mibBuilder.loadTexts: ipsdIp1Index.setDescription('Identifies the first Peer MAC address of this row.')
ipsdIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdIp2Index.setStatus('current')
if mibBuilder.loadTexts: ipsdIp2Index.setDescription('Identifies the second Peer MAC address of this row.')
ipsdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ipsdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ipsdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ipsdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ipsdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdUtilization.setStatus('current')
if mibBuilder.loadTexts: ipsdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ipsdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: ipsdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
ipsIcmpTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3), )
if mibBuilder.loadTexts: ipsIcmpTable.setStatus('current')
if mibBuilder.loadTexts: ipsIcmpTable.setDescription('A table of CODIMA Express History Short Term IPv4 Peer Database ICMP Objects. Statistics are collected every 15 seconds for each IPv4 Peer address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 Peer addresses active on the network.')
ipsIcmpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "ipsiIp1Index"), (0, "CODIMA-EXPRESS-MIB", "ipsiIp2Index"), (0, "CODIMA-EXPRESS-MIB", "ipsiTimeStampIndex"))
if mibBuilder.loadTexts: ipsIcmpEntry.setStatus('current')
if mibBuilder.loadTexts: ipsIcmpEntry.setDescription('A row in the CODIMA Express History Short Term IPv4 Peer Database ICMP Objects table. Statistics are collected every 15 seconds for each IPv4 Peer address monitored by the Express. The ICMP object implements statistics that are associated with ICMP reports. The ICMP object also adds together report counts from the ICMP table object into catagories. For example, the Group Applications Routing Problems include Port Unreachable and Protocol Unreachable report counts. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of IPv4 Peer addresses active on the network.')
ipsiIp1Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiIp1Index.setStatus('current')
if mibBuilder.loadTexts: ipsiIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipsiIp2Index = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiIp2Index.setStatus('current')
if mibBuilder.loadTexts: ipsiIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipsiTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: ipsiTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
ipsiTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiTimeStamp.setStatus('current')
if mibBuilder.loadTexts: ipsiTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
ipsiPing = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiPing.setStatus('current')
if mibBuilder.loadTexts: ipsiPing.setDescription('Number of IP Pings (Echo Request or Echo Reply Frames). A value of 4294967294 indicates unknown.')
ipsiSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiSrcQuench.setStatus('current')
if mibBuilder.loadTexts: ipsiSrcQuench.setDescription('Number of Source Quench Report Frames. A value of 4294967294 indicates unknown.')
ipsiRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiRedirect.setStatus('current')
if mibBuilder.loadTexts: ipsiRedirect.setDescription('Number of Re-Direct Report Frames. A value of 4294967294 indicates unknown.')
ipsiTtlExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiTtlExceeded.setStatus('current')
if mibBuilder.loadTexts: ipsiTtlExceeded.setDescription('Number of Time to Live Count Exceeded Report Frames. A value of 4294967294 indicates unknown.')
ipsiParamProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiParamProblem.setStatus('current')
if mibBuilder.loadTexts: ipsiParamProblem.setDescription('Number of Parameter Problem Report Frames. A value of 4294967294 indicates unknown.')
ipsiTimestamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiTimestamp.setStatus('current')
if mibBuilder.loadTexts: ipsiTimestamp.setDescription('Number of TimeStamp/Address Mask Report Frames. A value of 4294967294 indicates unknown.')
ipsiFragTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiFragTimeout.setStatus('current')
if mibBuilder.loadTexts: ipsiFragTimeout.setDescription('Number of Fragment Reassembly Timeout Report Frames. A value of 4294967294 indicates unknown.')
ipsiNetUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiNetUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiNetUnreachable.setDescription('Number of Network Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiHostUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiHostUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiHostUnreachable.setDescription('Number of Host Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiProtocolUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiProtocolUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiProtocolUnreachable.setDescription('Number of Protocol Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiPortUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiPortUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiPortUnreachable.setDescription('Number of Port Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiFragRequired = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiFragRequired.setStatus('current')
if mibBuilder.loadTexts: ipsiFragRequired.setDescription("Number of Fragmentation Needed Report Frames with Don't fragment bit set. A value of 4294967294 indicates unknown.")
ipsiSrcRouteFail = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiSrcRouteFail.setStatus('current')
if mibBuilder.loadTexts: ipsiSrcRouteFail.setDescription('Number of Source Route Failure Report Frames. A value of 4294967294 indicates unknown.')
ipsiDestNetUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiDestNetUnknown.setStatus('current')
if mibBuilder.loadTexts: ipsiDestNetUnknown.setDescription('Number of Destination Network Unknown Report Frames. A value of 4294967294 indicates unknown.')
ipsiDestHostUnknown = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiDestHostUnknown.setStatus('current')
if mibBuilder.loadTexts: ipsiDestHostUnknown.setDescription('Number of Destination Host Unknown Report Frames. A value of 4294967294 indicates unknown.')
ipsiSrcHostIsolated = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiSrcHostIsolated.setStatus('current')
if mibBuilder.loadTexts: ipsiSrcHostIsolated.setDescription('Number of Source Host Isolated Report Frames. A value of 4294967294 indicates unknown.')
ipsiNetProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiNetProhibited.setStatus('current')
if mibBuilder.loadTexts: ipsiNetProhibited.setDescription('Number of Network Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ipsiHostProhibited = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiHostProhibited.setStatus('current')
if mibBuilder.loadTexts: ipsiHostProhibited.setDescription('Number of Host Prohibited Report Frames. A value of 4294967294 indicates unknown.')
ipsiNetTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiNetTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiNetTosUnreachable.setDescription('Number of Network Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiHostTosUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiHostTosUnreachable.setStatus('current')
if mibBuilder.loadTexts: ipsiHostTosUnreachable.setDescription('Number of Host Type of Service Unreachable Report Frames. A value of 4294967294 indicates unknown.')
ipsiPerformance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiPerformance.setStatus('current')
if mibBuilder.loadTexts: ipsiPerformance.setDescription("Number of reports in the Performance Indicator Group. The reports that are Performance Indicators are Fragment Reassembly Timeout (Number of Fragment Reassembly Timeout Report Frames), Source Quench (Number of Source Quench Report Frames) and TTL Count Exceeded (Number of Time to Live Count Exceeded Report Frames). A value of 4294967294 indicates unknown.'")
ipsiNetRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiNetRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipsiNetRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Network Group. The reports apply to Network Routing problems and include Destination Net Unknown (Number of Destination Network Unknown Report Frames), Network Prohibited (Number of Network Prohibited Report Frames), Network TOS Unreachable (Number of Network Type of Service Unreachable Report Frames), Network Unreachable (Number of Network Unreachable Report Frames) and Source Route Fail (Number of Source Route Failure Report Frames). A value of 4294967294 indicates unknown.')
ipsiHostRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 27), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiHostRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipsiHostRouteProblem.setDescription('Number of reports in the ICMP Routing Problems - Host Group. The reports apply to Host Routing problems and include Destination Host Unknown (Number of Destination Host Unknown Report Frames), Host TOS Unreachable (Number of Host Type of Service Unreachable Report Frames), Host Prohibited (Number of Host Prohibited Report Frames), Host Unreachable (Number of Host Unreachable Report Frames) and Source Host Isolated (Number of Source Host Isolated Report Frames). A value of 4294967294 indicates unknown.')
ipsiAppRouteProblem = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 28), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiAppRouteProblem.setStatus('current')
if mibBuilder.loadTexts: ipsiAppRouteProblem.setDescription('Number of reports in the ICMP Routing Problems -Applications Group. The reports apply to Application Routing problems and include Port Unreachable (Number of Port Unreachable Report Frames) and Protocol Unreachable (Number of Protocol Unreachable Report Frames) A value of 4294967294 indicates unknown.')
ipsiRouteChange = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 29), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiRouteChange.setStatus('current')
if mibBuilder.loadTexts: ipsiRouteChange.setDescription('Number of reports in the ICMP Route Group that relate to Route Changes. The reports include Redirect Datagrames for Host, Redirect Datagrams for Net, Redirect Datagrams for TOS and HOST and Redirect datagrams for TOS and NET. A value of 4294967294 indicates unknown.')
ipsiErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 30), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiErrors.setStatus('current')
if mibBuilder.loadTexts: ipsiErrors.setDescription('Number of reports in the ICMP Errors Group that relate to ICMP operation errors. The reports include Unknown Error, Checksum Error, Fragmentation Required and Parameter Problems. A value of 4294967294 indicates unknown.')
ipsiMaintenance = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 31), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipsiMaintenance.setStatus('current')
if mibBuilder.loadTexts: ipsiMaintenance.setDescription('Number of reports in the ICMP Maintenance Group that relate to maintenance problems. The reports include Echo Request, Echo Reply, Time Stamp Request, Time Stamp reply, Info Request, Info Reply, Address Mask Request, Address Mask Reply and Checksum Disable. A value of 4294967294 indicates unknown.')
dbProtocol = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7))
if mibBuilder.loadTexts: dbProtocol.setStatus('current')
if mibBuilder.loadTexts: dbProtocol.setDescription('Sub-tree for the CODIMA Express History Protocol Database objects.')
protocolLongTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1))
if mibBuilder.loadTexts: protocolLongTerm.setStatus('current')
if mibBuilder.loadTexts: protocolLongTerm.setDescription('Sub-tree for the CODIMA Express History Long Term Protocol Database objects.')
plBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1), )
if mibBuilder.loadTexts: plBaseTable.setStatus('current')
if mibBuilder.loadTexts: plBaseTable.setDescription('A table of CODIMA Express History Long Term Protocol Database Base Objects. Statistics are collected every 15 minutes for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of Protocols active on the network.')
plBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "plbLayerIndex"), (0, "CODIMA-EXPRESS-MIB", "plbIdIndex"), (0, "CODIMA-EXPRESS-MIB", "plbTimeStampIndex"))
if mibBuilder.loadTexts: plBaseEntry.setStatus('current')
if mibBuilder.loadTexts: plBaseEntry.setDescription('A row in the CODIMA Express History Long Term Protocol Database Base Objects table. Statistics are collected every 15 minutes for each Protocol monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of Protocols active on the network. Entries cannot be created or deleted via SNMP operations')
plbLayerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("physical", 1), ("dataLink", 2), ("network", 3), ("transport", 4), ("session", 5), ("presentation", 6), ("application", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbLayerIndex.setStatus('current')
if mibBuilder.loadTexts: plbLayerIndex.setDescription('Identifes the OSI data communications layer of the protocol for this row. In the OSI model, a collection of network processing functions that together compose one layer of a hierarchy of computing functions. Each layer performs a number of functions essential for data communication.')
plbIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbIdIndex.setStatus('current')
if mibBuilder.loadTexts: plbIdIndex.setDescription('Identifies the Protocol ID of this row.')
plbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: plbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
plbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: plbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
plbProtocolName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbProtocolName.setStatus('current')
if mibBuilder.loadTexts: plbProtocolName.setDescription("Identifies the Protocol Name for this row. This object's value is generated from this rows Protocol Id Index value.")
plbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbFrames.setStatus('current')
if mibBuilder.loadTexts: plbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
plbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbBytes.setStatus('current')
if mibBuilder.loadTexts: plbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
plbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 8), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: plbFrameSize.setStatus('current')
if mibBuilder.loadTexts: plbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
plbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: plbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
plbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: plbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: plbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
plDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2), )
if mibBuilder.loadTexts: plDerivedTable.setStatus('current')
if mibBuilder.loadTexts: plDerivedTable.setDescription('A table of CODIMA Express History Long Term Protocol Database Derived Objects. Statistics are collected every 15 minutes for each Protocol monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of Protocols active on the network.')
plDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "pldLayerIndex"), (0, "CODIMA-EXPRESS-MIB", "pldIdIndex"), (0, "CODIMA-EXPRESS-MIB", "pldTimeStampIndex"))
if mibBuilder.loadTexts: plDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: plDerivedEntry.setDescription('A row in the CODIMA Express History Long Term Protocol Database Derived Objects table. Statistics are collected every 15 minutes for each Protocol monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of Protocols active on the network. Entries cannot be created or deleted via SNMP operations')
pldLayerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("physical", 1), ("dataLink", 2), ("network", 3), ("transport", 4), ("session", 5), ("presentation", 6), ("application", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldLayerIndex.setStatus('current')
if mibBuilder.loadTexts: pldLayerIndex.setDescription('Identifes the OSI data communications layer of the protocol for this row. In the OSI model, a collection of network processing functions that together compose one layer of a hierarchy of computing functions. Each layer performs a number of functions essential for data communication.')
pldIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldIdIndex.setStatus('current')
if mibBuilder.loadTexts: pldIdIndex.setDescription('Identifies the Protocol ID of this row in hexadecimal.')
pldTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: pldTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
pldTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldTimeStamp.setStatus('current')
if mibBuilder.loadTexts: pldTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
pldProtocolName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldProtocolName.setStatus('current')
if mibBuilder.loadTexts: pldProtocolName.setDescription("Identifies the Protocol Name for this row. This object's value is generated from this rows Protocol Id Index value.")
pldUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldUtilization.setStatus('current')
if mibBuilder.loadTexts: pldUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
pldErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pldErrorFrames.setStatus('current')
if mibBuilder.loadTexts: pldErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
protocolShortTerm = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2))
if mibBuilder.loadTexts: protocolShortTerm.setStatus('current')
if mibBuilder.loadTexts: protocolShortTerm.setDescription('Sub-tree for the CODIMA Express History Short Term Protocol Database objects.')
psBaseTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1), )
if mibBuilder.loadTexts: psBaseTable.setStatus('current')
if mibBuilder.loadTexts: psBaseTable.setDescription('A table of CODIMA Express History Short Term Protocol Database Base Objects. Statistics are collected every 15 seconds for each MAC address monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of Protocols active on the network.')
psBaseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "psbLayerIndex"), (0, "CODIMA-EXPRESS-MIB", "psbIdIndex"), (0, "CODIMA-EXPRESS-MIB", "psbTimeStampIndex"))
if mibBuilder.loadTexts: psBaseEntry.setStatus('current')
if mibBuilder.loadTexts: psBaseEntry.setDescription('A row in the CODIMA Express History Short Term Protocol Database Base Objects table. Statistics are collected every 15 seconds for each Protocol monitored by the Express. The Base object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of Protocols active on the network. Entries cannot be created or deleted via SNMP operations')
psbLayerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("physical", 1), ("dataLink", 2), ("network", 3), ("transport", 4), ("session", 5), ("presentation", 6), ("application", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbLayerIndex.setStatus('current')
if mibBuilder.loadTexts: psbLayerIndex.setDescription('Identifes the OSI data communications layer of the protocol for this row. In the OSI model, a collection of network processing functions that together compose one layer of a hierarchy of computing functions. Each layer performs a number of functions essential for data communication.')
psbIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbIdIndex.setStatus('current')
if mibBuilder.loadTexts: psbIdIndex.setDescription('Identifies the Protocol ID of this row in hexadecimal.')
psbTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: psbTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
psbTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbTimeStamp.setStatus('current')
if mibBuilder.loadTexts: psbTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
psbProtocolName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbProtocolName.setStatus('current')
if mibBuilder.loadTexts: psbProtocolName.setDescription("Identifies the Protocol Name for this row. This object's value is generated from this rows Protocol Id Index value.")
psbFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbFrames.setStatus('current')
if mibBuilder.loadTexts: psbFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
psbBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbBytes.setStatus('current')
if mibBuilder.loadTexts: psbBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
psbFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 8), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: psbFrameSize.setStatus('current')
if mibBuilder.loadTexts: psbFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
psbHardwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbHardwareErrors.setStatus('current')
if mibBuilder.loadTexts: psbHardwareErrors.setDescription('Number of hardware errors. A value of 4294967294 indicates unknown.')
psbSoftwareErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psbSoftwareErrors.setStatus('current')
if mibBuilder.loadTexts: psbSoftwareErrors.setDescription('Number of software errors (Protocol Errors). A value of 4294967294 indicates unknown.')
psDerivedTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2), )
if mibBuilder.loadTexts: psDerivedTable.setStatus('current')
if mibBuilder.loadTexts: psDerivedTable.setDescription('A table of CODIMA Express History Short Term Protocol Database Derived Objects. Statistics are collected every 15 seconds for each Protocol monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of Protocols active on the network.')
psDerivedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "psdLayerIndex"), (0, "CODIMA-EXPRESS-MIB", "psdIdIndex"), (0, "CODIMA-EXPRESS-MIB", "psdTimeStampIndex"))
if mibBuilder.loadTexts: psDerivedEntry.setStatus('current')
if mibBuilder.loadTexts: psDerivedEntry.setDescription('A row in the CODIMA Express History Short Term Protocol Database Derived Objects table. Statistics are collected every 15 seconds for each Protocol monitored by the Express. The Derived object implements statistics that are derived from other values, e.g., % Utilization, % Error frames. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of Protocols active on the network. Entries cannot be created or deleted via SNMP operations')
psdLayerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("physical", 1), ("dataLink", 2), ("network", 3), ("transport", 4), ("session", 5), ("presentation", 6), ("application", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdLayerIndex.setStatus('current')
if mibBuilder.loadTexts: psdLayerIndex.setDescription('Identifes the OSI data communications layer of the protocol for this row. In the OSI model, a collection of network processing functions that together compose one layer of a hierarchy of computing functions. Each layer performs a number of functions essential for data communication.')
psdIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2)).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdIdIndex.setStatus('current')
if mibBuilder.loadTexts: psdIdIndex.setDescription('Identifies the Protocol ID of this row in hexadecimal.')
psdTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: psdTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
psdTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdTimeStamp.setStatus('current')
if mibBuilder.loadTexts: psdTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
psdProtocolName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdProtocolName.setStatus('current')
if mibBuilder.loadTexts: psdProtocolName.setDescription("Identifies the Protocol Name for this row. This object's value is generated from this rows Protocol Id Index value.")
psdUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdUtilization.setStatus('current')
if mibBuilder.loadTexts: psdUtilization.setDescription('The percentage utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
psdErrorFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 7), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: psdErrorFrames.setStatus('current')
if mibBuilder.loadTexts: psdErrorFrames.setDescription('Percentage in relation to total number of Frames i.e., Percentage of the total frame count that have hardware or software errors. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
dbNetChannel = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8))
if mibBuilder.loadTexts: dbNetChannel.setStatus('current')
if mibBuilder.loadTexts: dbNetChannel.setDescription('Sub-tree for the CODIMA Express History NetChannel Database objects.')
netChanLongTermTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1), )
if mibBuilder.loadTexts: netChanLongTermTable.setStatus('current')
if mibBuilder.loadTexts: netChanLongTermTable.setDescription('A table of CODIMA Express History Long Term NetChannel Database NetChannel Objects. Statistics are collected every 15 minutes for each NetChannel and pre-capture Filter setup on the Express. A NetChannel is a facility which enables the Express to segregate and concurrently analyse a series of user defined sectors of the Network Traffic using pre-capture filters. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of NetChannels active on the Express.')
netChanLongTermEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "nlNameIndex"), (0, "CODIMA-EXPRESS-MIB", "nlTimeStampIndex"), (0, "CODIMA-EXPRESS-MIB", "nlTypeIndex"))
if mibBuilder.loadTexts: netChanLongTermEntry.setStatus('current')
if mibBuilder.loadTexts: netChanLongTermEntry.setDescription('A row in the CODIMA Express History Long Term NetChannel Database NetChannel Objects table. Statistics are collected every 15 minutes for each NetChannel and pre-capture Filter setup on the Express. A NetChannel is a facility which enables the Express to segregate and concurrently analyse a series of user defined sectors of the Network Traffic using pre-capture filters. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of NetChannels active on the Express.')
nlTypeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("netChannel", 1), ("filter", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlTypeIndex.setStatus('current')
if mibBuilder.loadTexts: nlTypeIndex.setDescription('Identifes if this row is a NetChannel or a pre-capture Filter.')
nlNameIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlNameIndex.setStatus('current')
if mibBuilder.loadTexts: nlNameIndex.setDescription('Identifies the NetChannel or pre-capture Filter name for this row.')
nlTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: nlTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
nlTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlTimeStamp.setStatus('current')
if mibBuilder.loadTexts: nlTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
nlFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlFrames.setStatus('current')
if mibBuilder.loadTexts: nlFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
nlBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlBytes.setStatus('current')
if mibBuilder.loadTexts: nlBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
nlFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: nlFrameSize.setStatus('current')
if mibBuilder.loadTexts: nlFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
nlHardErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlHardErrors.setStatus('current')
if mibBuilder.loadTexts: nlHardErrors.setDescription('Number of Hardware Errors. A value of 4294967294 indicates unknown.')
nlSoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlSoftErrors.setStatus('current')
if mibBuilder.loadTexts: nlSoftErrors.setDescription('Number of Software Errors (Protocol Errors). A value of 4294967294 indicates unknown.')
nlUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlUtilization.setStatus('current')
if mibBuilder.loadTexts: nlUtilization.setDescription('The Percentage Utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nlHardErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlHardErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: nlHardErrorsPercent.setDescription('The Percentage Hardware Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nlSoftErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlSoftErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: nlSoftErrorsPercent.setDescription('The Percentage Software Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nlFramesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 13), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlFramesPercent.setStatus('current')
if mibBuilder.loadTexts: nlFramesPercent.setDescription('The Percentage number of Frames (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nlBytesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 14), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nlBytesPercent.setStatus('current')
if mibBuilder.loadTexts: nlBytesPercent.setDescription('The Percentage number of Bytes (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
netChanShortTermTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2), )
if mibBuilder.loadTexts: netChanShortTermTable.setStatus('current')
if mibBuilder.loadTexts: netChanShortTermTable.setDescription('A table of CODIMA Express History Short Term NetChannel Database NetChannel Objects. Statistics are collected every 15 seconds for each NetChannel and pre-capture Filter setup on the Express. A NetChannel is a facility which enables the Express to segregate and concurrently analyse a series of user defined sectors of the Network Traffic using pre-capture filters. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of NetChannels active on the Express.')
netChanShortTermEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "nsTypeIndex"), (0, "CODIMA-EXPRESS-MIB", "nsNameIndex"), (0, "CODIMA-EXPRESS-MIB", "nsTimeStampIndex"))
if mibBuilder.loadTexts: netChanShortTermEntry.setStatus('current')
if mibBuilder.loadTexts: netChanShortTermEntry.setDescription('A row in the CODIMA Express History Short Term NetChannel Database NetChannel Objects table. Statistics are collected every 15 seconds for each NetChannel and pre-capture Filter setup on the Express. A NetChannel is a facility which enables the Express to segregate and concurrently analyse a series of user defined sectors of the Network Traffic using pre-capture filters. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Short Term dcTimeSlots object multiplied by the number of NetChannels active on the Express.')
nsTypeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("netChannel", 1), ("filter", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsTypeIndex.setStatus('current')
if mibBuilder.loadTexts: nsTypeIndex.setDescription('Identifes if this row is a NetChannel or a pre-capture Filter.')
nsNameIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsNameIndex.setStatus('current')
if mibBuilder.loadTexts: nsNameIndex.setDescription('Identifies the NetChannel or pre-capture Filter name for this row.')
nsTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 3), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: nsTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
nsTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsTimeStamp.setStatus('current')
if mibBuilder.loadTexts: nsTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
nsFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsFrames.setStatus('current')
if mibBuilder.loadTexts: nsFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
nsBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsBytes.setStatus('current')
if mibBuilder.loadTexts: nsBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
nsFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: nsFrameSize.setStatus('current')
if mibBuilder.loadTexts: nsFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
nsHardErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsHardErrors.setStatus('current')
if mibBuilder.loadTexts: nsHardErrors.setDescription('Number of Hardware Errors. A value of 4294967294 indicates unknown.')
nsSoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsSoftErrors.setStatus('current')
if mibBuilder.loadTexts: nsSoftErrors.setDescription('Number of Software Errors (Protocol Errors). A value of 4294967294 indicates unknown.')
nsUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsUtilization.setStatus('current')
if mibBuilder.loadTexts: nsUtilization.setDescription('The Percentage Utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nsHardErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsHardErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: nsHardErrorsPercent.setDescription('The Percentage Hardware Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nsSoftErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsSoftErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: nsSoftErrorsPercent.setDescription('The Percentage Software Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nsFramesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 13), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsFramesPercent.setStatus('current')
if mibBuilder.loadTexts: nsFramesPercent.setDescription('The Percentage number of Frames (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
nsBytesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 14), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nsBytesPercent.setStatus('current')
if mibBuilder.loadTexts: nsBytesPercent.setDescription('The Percentage number of Bytes (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
dbVlan = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9))
if mibBuilder.loadTexts: dbVlan.setStatus('current')
if mibBuilder.loadTexts: dbVlan.setDescription('Sub-tree for the CODIMA Express History VLAN Database objects.')
vlanLongTermTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1), )
if mibBuilder.loadTexts: vlanLongTermTable.setStatus('current')
if mibBuilder.loadTexts: vlanLongTermTable.setDescription('A table of CODIMA Express History Long Term VLAN Database NetChannel Objects. Statistics are collected every 15 minutes for each VLAN setup on the Express. The VLAN Database stores statistics for specific VLANs. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of VLANs active on the Express.')
vlanLongTermEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "vlIdIndex"), (0, "CODIMA-EXPRESS-MIB", "vlTimeStampIndex"))
if mibBuilder.loadTexts: vlanLongTermEntry.setStatus('current')
if mibBuilder.loadTexts: vlanLongTermEntry.setDescription('A row in the CODIMA Express History Long Term VLAN Database NetChannel Objects table. Statistics are collected every 15 minutes for each VLAN setup on the Express. The VLAN Database stores statistics for specific VLANs. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of VLANS active on the Express.')
vlIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4094))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlIdIndex.setStatus('current')
if mibBuilder.loadTexts: vlIdIndex.setDescription('Identifies the VLAN Id for this row.')
vlTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: vlTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
vlTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlTimeStamp.setStatus('current')
if mibBuilder.loadTexts: vlTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
vlName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlName.setStatus('current')
if mibBuilder.loadTexts: vlName.setDescription('The name associated with this rows VLAN Id')
vlFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlFrames.setStatus('current')
if mibBuilder.loadTexts: vlFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
vlBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlBytes.setStatus('current')
if mibBuilder.loadTexts: vlBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
vlFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: vlFrameSize.setStatus('current')
if mibBuilder.loadTexts: vlFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
vlHardErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlHardErrors.setStatus('current')
if mibBuilder.loadTexts: vlHardErrors.setDescription('Number of Hardware Errors. A value of 4294967294 indicates unknown.')
vlSoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlSoftErrors.setStatus('current')
if mibBuilder.loadTexts: vlSoftErrors.setDescription('Number of Software Errors (Protocol Errors). A value of 4294967294 indicates unknown.')
vlUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlUtilization.setStatus('current')
if mibBuilder.loadTexts: vlUtilization.setDescription('The Percentage Utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vlHardErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlHardErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: vlHardErrorsPercent.setDescription('The Percentage Hardware Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vlSoftErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlSoftErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: vlSoftErrorsPercent.setDescription('The Percentage Software Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vlFramesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 13), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlFramesPercent.setStatus('current')
if mibBuilder.loadTexts: vlFramesPercent.setDescription('The Percentage number of Frames (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vlBytesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 14), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vlBytesPercent.setStatus('current')
if mibBuilder.loadTexts: vlBytesPercent.setDescription('The Percentage number of Bytes (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vlanShortTermTable = MibTable((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2), )
if mibBuilder.loadTexts: vlanShortTermTable.setStatus('current')
if mibBuilder.loadTexts: vlanShortTermTable.setDescription('A table of CODIMA Express History Short Term VLAN Database NetChannel Objects. Statistics are collected every 15 minutes for each VLAN setup on the Express. The VLAN Database stores statistics for specific VLANs. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of VLANs active on the Express.')
vlanShortTermEntry = MibTableRow((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1), ).setIndexNames((0, "CODIMA-EXPRESS-MIB", "vsIdIndex"), (0, "CODIMA-EXPRESS-MIB", "vsTimeStampIndex"))
if mibBuilder.loadTexts: vlanShortTermEntry.setStatus('current')
if mibBuilder.loadTexts: vlanShortTermEntry.setDescription('A row in the CODIMA Express History Short Term VLAN Database NetChannel Objects table. Statistics are collected every 15 minutes for each VLAN setup on the Express. The VLAN Database stores statistics for specific VLANs. The NetChannel object implements general statistics e.g. number of frames, bytes, hardware errors, software errors etc. The number of rows in this table is dependant on the value chosen for the Long Term dcTimeSlots object multiplied by the number of VLANS active on the Express.')
vsIdIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4094))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsIdIndex.setStatus('current')
if mibBuilder.loadTexts: vsIdIndex.setDescription('Identifies the VLAN Id for this row.')
vsTimeStampIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 2), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsTimeStampIndex.setStatus('current')
if mibBuilder.loadTexts: vsTimeStampIndex.setDescription('Identifies the History Time-stamp for this row. This is UTC time, measured in seconds from Midnight January 1st 1970.')
vsTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(20, 20)).setFixedLength(20)).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsTimeStamp.setStatus('current')
if mibBuilder.loadTexts: vsTimeStamp.setDescription("A textual representation of the associated TimeStampIndex object which shows the History time-stamp for this row. The value is in the format 'hh:mm:ss dd/mmm/yyyy'. The time (hh:mm:ss) is expressed as a 24-hour clock. An example is 14:58:15 05/Jun/2003.")
vsName = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsName.setStatus('current')
if mibBuilder.loadTexts: vsName.setDescription('The name associated with this rows VLAN Id')
vsFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsFrames.setStatus('current')
if mibBuilder.loadTexts: vsFrames.setDescription('Number of Frames (Transmitted and Received). A value of 4294967294 indicates unknown.')
vsBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsBytes.setStatus('current')
if mibBuilder.loadTexts: vsBytes.setDescription('Number of Bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
vsFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 7), Gauge32()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: vsFrameSize.setStatus('current')
if mibBuilder.loadTexts: vsFrameSize.setDescription('Average Frame Size in bytes (Transmitted and Received). A value of 4294967294 indicates unknown.')
vsHardErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsHardErrors.setStatus('current')
if mibBuilder.loadTexts: vsHardErrors.setDescription('Number of Hardware Errors. A value of 4294967294 indicates unknown.')
vsSoftErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsSoftErrors.setStatus('current')
if mibBuilder.loadTexts: vsSoftErrors.setDescription('Number of Software Errors (Protocol Errors). A value of 4294967294 indicates unknown.')
vsUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 10), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsUtilization.setStatus('current')
if mibBuilder.loadTexts: vsUtilization.setDescription('The Percentage Utilization or percentage wire speed. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vsHardErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsHardErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: vsHardErrorsPercent.setDescription('The Percentage Hardware Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vsSoftErrorsPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 12), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsSoftErrorsPercent.setStatus('current')
if mibBuilder.loadTexts: vsSoftErrorsPercent.setDescription('The Percentage Software Error Frames. Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vsFramesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 13), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsFramesPercent.setStatus('current')
if mibBuilder.loadTexts: vsFramesPercent.setDescription('The Percentage number of Frames (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
vsBytesPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 14), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vsBytesPercent.setStatus('current')
if mibBuilder.loadTexts: vsBytesPercent.setDescription('The Percentage number of Bytes (Transmitted and Received). Divide this objects value by 1000 to get the real floating point percentage value, e.g. 132 = 0.132 % wire speed. A value of 4294967294 indicates unknown.')
expAlarms = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2))
if mibBuilder.loadTexts: expAlarms.setStatus('current')
if mibBuilder.loadTexts: expAlarms.setDescription('Sub-tree for the CODIMA Express Alarm objects.')
alarmMessage = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 1), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmMessage.setStatus('current')
if mibBuilder.loadTexts: alarmMessage.setDescription('A textural description of an event detected by the CODIMA Express. The Express can cover a wide range of events including:- Activity Failures, i.e. Reports when a Node Stops Transmitting, event Threshold Breaches, and Expert System Reports, e.g. Discovery of new Servers and Routers, changes to Routes, Routing Failures etc. The range of events reported is configurable by the User.')
alarmLayer = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 2), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmLayer.setStatus('current')
if mibBuilder.loadTexts: alarmLayer.setDescription('The OSI Network Layer associated with this event.')
alarmTopProtocol = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 3), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmTopProtocol.setStatus('current')
if mibBuilder.loadTexts: alarmTopProtocol.setDescription('The upper OSI Network layer protocol associated with this event For example: SNMP, FTP.')
alarmBaseProtocol = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 4), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmBaseProtocol.setStatus('current')
if mibBuilder.loadTexts: alarmBaseProtocol.setDescription('The lower OSI Network layer protocol associated with this event. For example: IP, IPX.')
alarmCode = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 5), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmCode.setStatus('current')
if mibBuilder.loadTexts: alarmCode.setDescription('The Code number associated with this event')
alarmFunction = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 6), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmFunction.setStatus('current')
if mibBuilder.loadTexts: alarmFunction.setDescription('A range of Functions that apply to a particular Alarm Group. For example: The Discovered Group covers the application of discovering the MAC addresses, IP addresses and Unit Type information logged.')
alarmGroup = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 7), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmGroup.setStatus('current')
if mibBuilder.loadTexts: alarmGroup.setDescription('Alarm Groups are used to group a specific range of event reports, each group has a range of functions. The grouping is generally based on either a protocol component, a network type or the application associated with the event report. For example:- The Discovered Group covers the application of discovering the MAC addresses, IP addresses and Unit Type information logged.')
alarmUnitType = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 8), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmUnitType.setStatus('current')
if mibBuilder.loadTexts: alarmUnitType.setDescription('The unit type is the type of the device that generated this event, e.g. Bridge, Workstation, File Server.')
alarmClass = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 9), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmClass.setStatus('current')
if mibBuilder.loadTexts: alarmClass.setDescription('The severity of this alarm. One of the four following levels are included: Critical: The highest priority level alarm log report classification (usually applied to SNMP reports which are to be converted into Traps). Alarm: The second highest priority level alarm log report classification (usually applied to potentially dangerous situations such a breaches in statistical thresholds or Echo and Activity Test Failures). Warning: The second lowest priority level alarm log report classification (usually applied to most of the reports associated with the Expert System). Event: The lowest priority level alarm log report classification (usually applied to the logging of useful information, such as the discovery of an IP address or a new Node on the Network).')
alarmTime = MibScalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 10), DisplayString()).setMaxAccess("accessiblefornotify")
if mibBuilder.loadTexts: alarmTime.setStatus('current')
if mibBuilder.loadTexts: alarmTime.setDescription("The UTC time of when this event was issued. The value is in the format 'dd/mmm/yyyy hh:mm:ss'. The time (hh:mm:ss) is expressed as a 24-hour clock. The date (dd/mmm/yyyy) format uses 3 letter abbreviations for the month. An example is 05/Jun/2003 14:58:15.")
codimaExpressNotifications = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 2))
if mibBuilder.loadTexts: codimaExpressNotifications.setStatus('current')
if mibBuilder.loadTexts: codimaExpressNotifications.setDescription('Sub-tree for the CODIMA Express Notification objects.')
expressTraps = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 2, 1))
if mibBuilder.loadTexts: expressTraps.setStatus('current')
if mibBuilder.loadTexts: expressTraps.setDescription('Sub-tree for the CODIMA Express Trap objects.')
expressAlarm = NotificationType((1, 3, 6, 1, 4, 1, 226, 3, 2, 2, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "alarmMessage"), ("CODIMA-EXPRESS-MIB", "alarmLayer"), ("CODIMA-EXPRESS-MIB", "alarmTopProtocol"), ("CODIMA-EXPRESS-MIB", "alarmBaseProtocol"), ("CODIMA-EXPRESS-MIB", "alarmCode"), ("CODIMA-EXPRESS-MIB", "alarmFunction"), ("CODIMA-EXPRESS-MIB", "alarmGroup"), ("CODIMA-EXPRESS-MIB", "alarmUnitType"), ("CODIMA-EXPRESS-MIB", "alarmClass"), ("CODIMA-EXPRESS-MIB", "alarmTime"))
if mibBuilder.loadTexts: expressAlarm.setStatus('current')
if mibBuilder.loadTexts: expressAlarm.setDescription("This Trap notification defines an network event detected by the CODIMA Express monitor alarm system. The payload is as follows. alarmMessage: A textural description of an event. alarmLayer: The OSI Network Layer associated with this event. alarmTopProtocol: The upper OSI Network layer protocol associated with this event For example: SNMP, FTP. alarmBaseProtocol: The lower OSI Network layer protocol associated with this event. For example: IP, IPX. alarmCode: The Code number associated with this event. alarmFunction: A range of Functions that apply to a particular Alarm Group. For example: The Discovered Group covers the application of discovering the MAC addresses, IP addresses and Unit Type information logged. alarmGroup: Alarm Groups are used to group a specific range of event reports, each group has a range of functions. The grouping is generally based on either a protocol component, a network type or the application associated with the event report. For example:- The Discovered Group covers the application of discovering the MAC addresses, IP addresses and Unit Type information logged. alarmUnitType: The unit type is the type of the device that generated this event, e.g. Bridge, Workstation, File Server. alarmClass: The severity of this alarm. One of the four following levels are included: Critical: The highest priority level alarm log report classification (usually applied to SNMP reports which are to be converted into Traps). Alarm: The second highest priority level alarm log report classification (usually applied to potentially dangerous situations such a breaches in statistical thresholds or Echo and Activity Test Failures). Warning: The second lowest priority level alarm log report classification (usually applied to most of the reports associated with the Expert System). Event: The lowest priority level alarm log report classification (usually applied to the logging of useful information, such as the discovery of an IP address or a new Node on the Network). alarmTime: The UTC time of when this event was issued. The value is in the format 'dd/mmm/yyyy hh:mm:ss'. The time (hh:mm:ss) is expressed as a 24-hour clock. The date (dd/mmm/yyyy) format uses 3 letter abbreviations for the month. An example is 05/Jun/2003 14:58:15.")
codimaExpressConformance = ObjectIdentity((1, 3, 6, 1, 4, 1, 226, 3, 2, 3))
if mibBuilder.loadTexts: codimaExpressConformance.setStatus('current')
if mibBuilder.loadTexts: codimaExpressConformance.setDescription('Sub-tree for the CODIMA Express Conformance objects.')
expressObjectGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1))
historyDatabaseGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1))
dbControlGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 1))
ctrlTimeGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "ctSampleType"), ("CODIMA-EXPRESS-MIB", "ctTimeSlots"), ("CODIMA-EXPRESS-MIB", "ctLockMethod"), ("CODIMA-EXPRESS-MIB", "ctLockUserTime"), ("CODIMA-EXPRESS-MIB", "ctLockRealTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ctrlTimeGroup = ctrlTimeGroup.setStatus('current')
if mibBuilder.loadTexts: ctrlTimeGroup.setDescription('CODIMA Express History Database Control Object Group.')
dbSegmentGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2))
segLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1))
slBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "slbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "slbTimeStamp"), ("CODIMA-EXPRESS-MIB", "slbFrames"), ("CODIMA-EXPRESS-MIB", "slbBytes"), ("CODIMA-EXPRESS-MIB", "slbFrameSize"), ("CODIMA-EXPRESS-MIB", "slbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "slbSoftwareErrors"), ("CODIMA-EXPRESS-MIB", "slbActiveNodes"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slBaseGroup = slBaseGroup.setStatus('current')
if mibBuilder.loadTexts: slBaseGroup.setDescription('CODIMA Express History Long Term Segment Database Base Object Group.')
slBroadcastGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "slbcTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "slbcTimeStamp"), ("CODIMA-EXPRESS-MIB", "slbcBytes"), ("CODIMA-EXPRESS-MIB", "slbcPercentBytes"), ("CODIMA-EXPRESS-MIB", "slbcFrames"), ("CODIMA-EXPRESS-MIB", "slbcPercentFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slBroadcastGroup = slBroadcastGroup.setStatus('current')
if mibBuilder.loadTexts: slBroadcastGroup.setDescription('CODIMA Express History Long Term Segment Database Broadcast Object Group.')
slDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 3)).setObjects(("CODIMA-EXPRESS-MIB", "sldTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "sldTimeStamp"), ("CODIMA-EXPRESS-MIB", "sldUtilization"), ("CODIMA-EXPRESS-MIB", "sldErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slDerivedGroup = slDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: slDerivedGroup.setDescription('CODIMA Express History Long Term Segment Database Derived Object Group.')
slEthernetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 4)).setObjects(("CODIMA-EXPRESS-MIB", "sleTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "sleTimeStamp"), ("CODIMA-EXPRESS-MIB", "sleRunts"), ("CODIMA-EXPRESS-MIB", "sleJabbers"), ("CODIMA-EXPRESS-MIB", "sleCrc"), ("CODIMA-EXPRESS-MIB", "sleCollisions"), ("CODIMA-EXPRESS-MIB", "sleLateCollisions"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slEthernetGroup = slEthernetGroup.setStatus('current')
if mibBuilder.loadTexts: slEthernetGroup.setDescription('CODIMA Express History Long Term Segment Database Ethernet Object Group.')
slIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 5)).setObjects(("CODIMA-EXPRESS-MIB", "sliTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "sliTimeStamp"), ("CODIMA-EXPRESS-MIB", "sliPing"), ("CODIMA-EXPRESS-MIB", "sliSrcQuench"), ("CODIMA-EXPRESS-MIB", "sliRedirect"), ("CODIMA-EXPRESS-MIB", "sliTtlExceeded"), ("CODIMA-EXPRESS-MIB", "sliParamProblem"), ("CODIMA-EXPRESS-MIB", "sliTimestamp"), ("CODIMA-EXPRESS-MIB", "sliFragTimeout"), ("CODIMA-EXPRESS-MIB", "sliNetUnreachable"), ("CODIMA-EXPRESS-MIB", "sliHostUnreachable"), ("CODIMA-EXPRESS-MIB", "sliProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "sliPortUnreachable"), ("CODIMA-EXPRESS-MIB", "sliFragRequired"), ("CODIMA-EXPRESS-MIB", "sliSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "sliDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "sliDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "sliSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "sliNetProhibited"), ("CODIMA-EXPRESS-MIB", "sliHostProhibited"), ("CODIMA-EXPRESS-MIB", "sliNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "sliHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "sliPerformance"), ("CODIMA-EXPRESS-MIB", "sliNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "sliHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "sliAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "sliRouteChange"), ("CODIMA-EXPRESS-MIB", "sliGrpErrors"), ("CODIMA-EXPRESS-MIB", "sliMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slIcmpGroup = slIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: slIcmpGroup.setDescription('CODIMA Express History Long Term Segment Database ICMP Object Group.')
slPortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1, 6)).setObjects(("CODIMA-EXPRESS-MIB", "slp1TimeStampIndex"), ("CODIMA-EXPRESS-MIB", "slp1TimeStamp"), ("CODIMA-EXPRESS-MIB", "slp1Frames"), ("CODIMA-EXPRESS-MIB", "slp1Bytes"), ("CODIMA-EXPRESS-MIB", "slp1FrameSize"), ("CODIMA-EXPRESS-MIB", "slp1Utilization"), ("CODIMA-EXPRESS-MIB", "slp1LineSpeed"), ("CODIMA-EXPRESS-MIB", "slp1SoftErrors"), ("CODIMA-EXPRESS-MIB", "slp1Runts"), ("CODIMA-EXPRESS-MIB", "slp1Jabbers"), ("CODIMA-EXPRESS-MIB", "slp1Crc"), ("CODIMA-EXPRESS-MIB", "slp1Collisions"), ("CODIMA-EXPRESS-MIB", "slp1LateCollisions"), ("CODIMA-EXPRESS-MIB", "slp1LineNoise"), ("CODIMA-EXPRESS-MIB", "slp2Frames"), ("CODIMA-EXPRESS-MIB", "slp2Bytes"), ("CODIMA-EXPRESS-MIB", "slp2FrameSize"), ("CODIMA-EXPRESS-MIB", "slp2Utilization"), ("CODIMA-EXPRESS-MIB", "slp2LineSpeed"), ("CODIMA-EXPRESS-MIB", "slp2SoftErrors"), ("CODIMA-EXPRESS-MIB", "slp2Runts"), ("CODIMA-EXPRESS-MIB", "slp2Jabbers"), ("CODIMA-EXPRESS-MIB", "slp2Crc"), ("CODIMA-EXPRESS-MIB", "slp2Collisions"), ("CODIMA-EXPRESS-MIB", "slp2LateCollisions"), ("CODIMA-EXPRESS-MIB", "slp2LineNoise"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
slPortGroup = slPortGroup.setStatus('current')
if mibBuilder.loadTexts: slPortGroup.setDescription('CODIMA Express History Long Term Segment Database Port Object Group.')
segShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2))
ssBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "ssbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ssbTimeStamp"), ("CODIMA-EXPRESS-MIB", "ssbFrames"), ("CODIMA-EXPRESS-MIB", "ssbBytes"), ("CODIMA-EXPRESS-MIB", "ssbFrameSize"), ("CODIMA-EXPRESS-MIB", "ssbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "ssbSoftwareErrors"), ("CODIMA-EXPRESS-MIB", "ssbActiveNodes"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssBaseGroup = ssBaseGroup.setStatus('current')
if mibBuilder.loadTexts: ssBaseGroup.setDescription('CODIMA Express History Short Term Segment Database Base Object Group.')
ssBroadcastGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "ssbcTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ssbcTimeStamp"), ("CODIMA-EXPRESS-MIB", "ssbcBytes"), ("CODIMA-EXPRESS-MIB", "ssbcBytesPercent"), ("CODIMA-EXPRESS-MIB", "ssbcFrames"), ("CODIMA-EXPRESS-MIB", "ssbcFramesPercent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssBroadcastGroup = ssBroadcastGroup.setStatus('current')
if mibBuilder.loadTexts: ssBroadcastGroup.setDescription('CODIMA Express History Short Term Segment Database Broadcast Object Group.')
ssDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 3)).setObjects(("CODIMA-EXPRESS-MIB", "ssdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ssdTimeStamp"), ("CODIMA-EXPRESS-MIB", "ssdUtilization"), ("CODIMA-EXPRESS-MIB", "ssdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssDerivedGroup = ssDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: ssDerivedGroup.setDescription('CODIMA Express History Short Term Segment Database Derived Object Group.')
ssEthernetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 4)).setObjects(("CODIMA-EXPRESS-MIB", "sseTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "sseTimeStamp"), ("CODIMA-EXPRESS-MIB", "sseRunts"), ("CODIMA-EXPRESS-MIB", "sseJabbers"), ("CODIMA-EXPRESS-MIB", "sseCrc"), ("CODIMA-EXPRESS-MIB", "sseCollisions"), ("CODIMA-EXPRESS-MIB", "sseLateCollisions"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssEthernetGroup = ssEthernetGroup.setStatus('current')
if mibBuilder.loadTexts: ssEthernetGroup.setDescription('CODIMA Express History Short Term Segment Database Ethernet Object Group.')
ssIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 5)).setObjects(("CODIMA-EXPRESS-MIB", "ssiTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ssiTimeStamp"), ("CODIMA-EXPRESS-MIB", "ssiPing"), ("CODIMA-EXPRESS-MIB", "ssiSrcQuench"), ("CODIMA-EXPRESS-MIB", "ssiRedirect"), ("CODIMA-EXPRESS-MIB", "ssiTtlExceeded"), ("CODIMA-EXPRESS-MIB", "ssiParamProblem"), ("CODIMA-EXPRESS-MIB", "ssiTimestamp"), ("CODIMA-EXPRESS-MIB", "ssiFragTimeout"), ("CODIMA-EXPRESS-MIB", "ssiNetUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiHostUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiPortUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiFragRequired"), ("CODIMA-EXPRESS-MIB", "ssiSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "ssiDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "ssiDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "ssiSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "ssiNetProhibited"), ("CODIMA-EXPRESS-MIB", "ssiHostProhibited"), ("CODIMA-EXPRESS-MIB", "ssiNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ssiPerformance"), ("CODIMA-EXPRESS-MIB", "ssiNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "ssiHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "ssiAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "ssiRouteChange"), ("CODIMA-EXPRESS-MIB", "ssiErrors"), ("CODIMA-EXPRESS-MIB", "ssiMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssIcmpGroup = ssIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: ssIcmpGroup.setDescription('CODIMA Express History Short Term Segment Database Ethernet Object Group.')
ssPortGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2, 6)).setObjects(("CODIMA-EXPRESS-MIB", "sspTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "sspTimeStamp"), ("CODIMA-EXPRESS-MIB", "ssp1Frames"), ("CODIMA-EXPRESS-MIB", "ssp1Bytes"), ("CODIMA-EXPRESS-MIB", "ssp1FrameSize"), ("CODIMA-EXPRESS-MIB", "ssp1Utilization"), ("CODIMA-EXPRESS-MIB", "ssp1LineSpeed"), ("CODIMA-EXPRESS-MIB", "ssp1SoftErrors"), ("CODIMA-EXPRESS-MIB", "ssp1Runts"), ("CODIMA-EXPRESS-MIB", "ssp1Jabbers"), ("CODIMA-EXPRESS-MIB", "ssp1Crc"), ("CODIMA-EXPRESS-MIB", "ssp1Collisions"), ("CODIMA-EXPRESS-MIB", "ssp1LateCollisions"), ("CODIMA-EXPRESS-MIB", "ssp1LineNoise"), ("CODIMA-EXPRESS-MIB", "ssp2Frames"), ("CODIMA-EXPRESS-MIB", "ssp2Bytes"), ("CODIMA-EXPRESS-MIB", "ssp2FrameSize"), ("CODIMA-EXPRESS-MIB", "ssp2Utilization"), ("CODIMA-EXPRESS-MIB", "ssp2LineSpeed"), ("CODIMA-EXPRESS-MIB", "ssp2SoftErrors"), ("CODIMA-EXPRESS-MIB", "ssp2Runts"), ("CODIMA-EXPRESS-MIB", "ssp2Jabbers"), ("CODIMA-EXPRESS-MIB", "ssp2Crc"), ("CODIMA-EXPRESS-MIB", "ssp2Collisions"), ("CODIMA-EXPRESS-MIB", "ssp2LateCollisions"), ("CODIMA-EXPRESS-MIB", "ssp2LineNoise"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ssPortGroup = ssPortGroup.setStatus('current')
if mibBuilder.loadTexts: ssPortGroup.setDescription('CODIMA Express History Short Term Segment Database Port Object Group.')
dbMacGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3))
macLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1))
mlBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "mlbMacIndex"), ("CODIMA-EXPRESS-MIB", "mlbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mlbTimeStamp"), ("CODIMA-EXPRESS-MIB", "mlbFrames"), ("CODIMA-EXPRESS-MIB", "mlbBytes"), ("CODIMA-EXPRESS-MIB", "mlbFrameSize"), ("CODIMA-EXPRESS-MIB", "mlbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "mlbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlBaseGroup = mlBaseGroup.setStatus('current')
if mibBuilder.loadTexts: mlBaseGroup.setDescription('CODIMA Express History Long Term MAC Database Base Object Group.')
mlDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "mldMacIndex"), ("CODIMA-EXPRESS-MIB", "mldTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mldTimeStamp"), ("CODIMA-EXPRESS-MIB", "mldUtilization"), ("CODIMA-EXPRESS-MIB", "mldErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlDerivedGroup = mlDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: mlDerivedGroup.setDescription('CODIMA Express History Long Term MAC Database Derived Object Group.')
mlDuplexGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 3)).setObjects(("CODIMA-EXPRESS-MIB", "mlduMacIndex"), ("CODIMA-EXPRESS-MIB", "mlduTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mlduTimeStamp"), ("CODIMA-EXPRESS-MIB", "mlduTxFrames"), ("CODIMA-EXPRESS-MIB", "mlduTxBytes"), ("CODIMA-EXPRESS-MIB", "mlduTxFrameSize"), ("CODIMA-EXPRESS-MIB", "mlduTxUtilization"), ("CODIMA-EXPRESS-MIB", "mlduRxFrames"), ("CODIMA-EXPRESS-MIB", "mlduRxBytes"), ("CODIMA-EXPRESS-MIB", "mlduRxFrameSize"), ("CODIMA-EXPRESS-MIB", "mlduRxUtilization"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlDuplexGroup = mlDuplexGroup.setStatus('current')
if mibBuilder.loadTexts: mlDuplexGroup.setDescription('CODIMA Express History Long Term MAC Database Duplex Object Group.')
mlEthernetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 4)).setObjects(("CODIMA-EXPRESS-MIB", "mleMacIndex"), ("CODIMA-EXPRESS-MIB", "mleTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mleTimeStamp"), ("CODIMA-EXPRESS-MIB", "mleRunts"), ("CODIMA-EXPRESS-MIB", "mleJabbers"), ("CODIMA-EXPRESS-MIB", "mleCrc"), ("CODIMA-EXPRESS-MIB", "mleCollisions"), ("CODIMA-EXPRESS-MIB", "mleLateCollisions"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlEthernetGroup = mlEthernetGroup.setStatus('current')
if mibBuilder.loadTexts: mlEthernetGroup.setDescription('CODIMA Express History Long Term MAC Database Ethernet Object Group.')
mlIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 5)).setObjects(("CODIMA-EXPRESS-MIB", "mliMacIndex"), ("CODIMA-EXPRESS-MIB", "mliTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mliTimeStamp"), ("CODIMA-EXPRESS-MIB", "mliPing"), ("CODIMA-EXPRESS-MIB", "mliSrcQuench"), ("CODIMA-EXPRESS-MIB", "mliRedirect"), ("CODIMA-EXPRESS-MIB", "mliTtlExceeded"), ("CODIMA-EXPRESS-MIB", "mliParamProblem"), ("CODIMA-EXPRESS-MIB", "mliTimestamp"), ("CODIMA-EXPRESS-MIB", "mliFragTimeout"), ("CODIMA-EXPRESS-MIB", "mliNetUnreachable"), ("CODIMA-EXPRESS-MIB", "mliHostUnreachable"), ("CODIMA-EXPRESS-MIB", "mliProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "mliPortUnreachable"), ("CODIMA-EXPRESS-MIB", "mliFragRequired"), ("CODIMA-EXPRESS-MIB", "mliSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "mliDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "mliDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "mliSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "mliNetProhibited"), ("CODIMA-EXPRESS-MIB", "mliHostProhibited"), ("CODIMA-EXPRESS-MIB", "mliNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "mliHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "mliPerformance"), ("CODIMA-EXPRESS-MIB", "mliNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "mliHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "mliAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "mliRouteChange"), ("CODIMA-EXPRESS-MIB", "mliErrors"), ("CODIMA-EXPRESS-MIB", "mliMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlIcmpGroup = mlIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: mlIcmpGroup.setDescription('CODIMA Express History Long Term MAC Database ICMP Object Group.')
mlProtocolGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1, 6)).setObjects(("CODIMA-EXPRESS-MIB", "mlpMacIndex"), ("CODIMA-EXPRESS-MIB", "mlpTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mlpTimeStamp"), ("CODIMA-EXPRESS-MIB", "mlpNovell"), ("CODIMA-EXPRESS-MIB", "mlpSnmp"), ("CODIMA-EXPRESS-MIB", "mlpRouting"), ("CODIMA-EXPRESS-MIB", "mlpWww"), ("CODIMA-EXPRESS-MIB", "mlpIcmp"), ("CODIMA-EXPRESS-MIB", "mlpIso"), ("CODIMA-EXPRESS-MIB", "mlpMail"), ("CODIMA-EXPRESS-MIB", "mlpNetbios"), ("CODIMA-EXPRESS-MIB", "mlpDns"), ("CODIMA-EXPRESS-MIB", "mlpIp"), ("CODIMA-EXPRESS-MIB", "mlpVoip"), ("CODIMA-EXPRESS-MIB", "mlpLayer3Traffic"), ("CODIMA-EXPRESS-MIB", "mlpIpData"), ("CODIMA-EXPRESS-MIB", "mlpApplications"), ("CODIMA-EXPRESS-MIB", "mlpIpControl"), ("CODIMA-EXPRESS-MIB", "mlpManagement"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mlProtocolGroup = mlProtocolGroup.setStatus('current')
if mibBuilder.loadTexts: mlProtocolGroup.setDescription('CODIMA Express History Long Term MAC Database Protocol Object Group.')
macShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2))
msBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "msbMacIndex"), ("CODIMA-EXPRESS-MIB", "msbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "msbTimeStamp"), ("CODIMA-EXPRESS-MIB", "msbFrames"), ("CODIMA-EXPRESS-MIB", "msbBytes"), ("CODIMA-EXPRESS-MIB", "msbFrameSize"), ("CODIMA-EXPRESS-MIB", "msbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "msbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msBaseGroup = msBaseGroup.setStatus('current')
if mibBuilder.loadTexts: msBaseGroup.setDescription('CODIMA Express History Short Term MAC Database Base Object Group.')
msDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "msdMacIndex"), ("CODIMA-EXPRESS-MIB", "msdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "msdTimeStamp"), ("CODIMA-EXPRESS-MIB", "msdUtilization"), ("CODIMA-EXPRESS-MIB", "msdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msDerivedGroup = msDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: msDerivedGroup.setDescription('CODIMA Express History Short Term MAC Database Derived Object Group.')
msDuplexGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 3)).setObjects(("CODIMA-EXPRESS-MIB", "msdpMacIndex"), ("CODIMA-EXPRESS-MIB", "msdpTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "msdpTimeStamp"), ("CODIMA-EXPRESS-MIB", "msdpTxFrames"), ("CODIMA-EXPRESS-MIB", "msdpTxBytes"), ("CODIMA-EXPRESS-MIB", "msdpTxFrameSize"), ("CODIMA-EXPRESS-MIB", "msdpTxUtilization"), ("CODIMA-EXPRESS-MIB", "msdpRxFrames"), ("CODIMA-EXPRESS-MIB", "msdpRxBytes"), ("CODIMA-EXPRESS-MIB", "msdpRxFrameSize"), ("CODIMA-EXPRESS-MIB", "msdpRxUtilization"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msDuplexGroup = msDuplexGroup.setStatus('current')
if mibBuilder.loadTexts: msDuplexGroup.setDescription('CODIMA Express History Short Term MAC Database Duplex Object Group.')
msEthernetGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 4)).setObjects(("CODIMA-EXPRESS-MIB", "mseMacIndex"), ("CODIMA-EXPRESS-MIB", "mseTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mseTimeStamp"), ("CODIMA-EXPRESS-MIB", "mseRunts"), ("CODIMA-EXPRESS-MIB", "mseJabbers"), ("CODIMA-EXPRESS-MIB", "mseCrc"), ("CODIMA-EXPRESS-MIB", "mseCollisions"), ("CODIMA-EXPRESS-MIB", "mseLateCollisions"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msEthernetGroup = msEthernetGroup.setStatus('current')
if mibBuilder.loadTexts: msEthernetGroup.setDescription('CODIMA Express History Short Term MAC Database Ethernet Object Group.')
msIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 5)).setObjects(("CODIMA-EXPRESS-MIB", "msiMacIndex"), ("CODIMA-EXPRESS-MIB", "msiTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "msiTimeStamp"), ("CODIMA-EXPRESS-MIB", "msiPing"), ("CODIMA-EXPRESS-MIB", "msiSrcQuench"), ("CODIMA-EXPRESS-MIB", "msiRedirect"), ("CODIMA-EXPRESS-MIB", "msiTtlExceeded"), ("CODIMA-EXPRESS-MIB", "msiParamProblem"), ("CODIMA-EXPRESS-MIB", "msiTimestamp"), ("CODIMA-EXPRESS-MIB", "msiFragTimeout"), ("CODIMA-EXPRESS-MIB", "msiNetUnreachable"), ("CODIMA-EXPRESS-MIB", "msiHostUnreachable"), ("CODIMA-EXPRESS-MIB", "msiProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "msiPortUnreachable"), ("CODIMA-EXPRESS-MIB", "msiFragRequired"), ("CODIMA-EXPRESS-MIB", "msiSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "msiDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "msiDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "msiSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "msiNetProhibited"), ("CODIMA-EXPRESS-MIB", "msiHostProhibited"), ("CODIMA-EXPRESS-MIB", "msiNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "msiHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "msiPerformance"), ("CODIMA-EXPRESS-MIB", "msiNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "msiHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "msiAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "msiRouteChange"), ("CODIMA-EXPRESS-MIB", "msiErrors"), ("CODIMA-EXPRESS-MIB", "msiMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msIcmpGroup = msIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: msIcmpGroup.setDescription('CODIMA Express History Short Term MAC Database ICMP Object Group.')
msProtocolGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2, 6)).setObjects(("CODIMA-EXPRESS-MIB", "mspMacIndex"), ("CODIMA-EXPRESS-MIB", "mspTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mspTimeStamp"), ("CODIMA-EXPRESS-MIB", "mspNovell"), ("CODIMA-EXPRESS-MIB", "mspSnmp"), ("CODIMA-EXPRESS-MIB", "mspRouting"), ("CODIMA-EXPRESS-MIB", "mspWww"), ("CODIMA-EXPRESS-MIB", "mspIcmp"), ("CODIMA-EXPRESS-MIB", "mspIso"), ("CODIMA-EXPRESS-MIB", "mspMail"), ("CODIMA-EXPRESS-MIB", "mspNetbios"), ("CODIMA-EXPRESS-MIB", "mspDns"), ("CODIMA-EXPRESS-MIB", "mspIp"), ("CODIMA-EXPRESS-MIB", "mspVoip"), ("CODIMA-EXPRESS-MIB", "mspLayer3Traffic"), ("CODIMA-EXPRESS-MIB", "mspIpData"), ("CODIMA-EXPRESS-MIB", "mspApplications"), ("CODIMA-EXPRESS-MIB", "mspIpControl"), ("CODIMA-EXPRESS-MIB", "mspManagement"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
msProtocolGroup = msProtocolGroup.setStatus('current')
if mibBuilder.loadTexts: msProtocolGroup.setDescription('CODIMA Express History Short Term MAC Database Protocol Object Group.')
dbMacPeerGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4))
macPeerLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1))
mplBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "mplbMac1Index"), ("CODIMA-EXPRESS-MIB", "mplbMac2Index"), ("CODIMA-EXPRESS-MIB", "mplbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mplbTimeStamp"), ("CODIMA-EXPRESS-MIB", "mplbFrames"), ("CODIMA-EXPRESS-MIB", "mplbBytes"), ("CODIMA-EXPRESS-MIB", "mplbFrameSize"), ("CODIMA-EXPRESS-MIB", "mplbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "mplbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mplBaseGroup = mplBaseGroup.setStatus('current')
if mibBuilder.loadTexts: mplBaseGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Base Object Group.')
mplDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "mpldMac1Index"), ("CODIMA-EXPRESS-MIB", "mpldMac2Index"), ("CODIMA-EXPRESS-MIB", "mpldTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mpldTimeStamp"), ("CODIMA-EXPRESS-MIB", "mpldUtilization"), ("CODIMA-EXPRESS-MIB", "mpldErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mplDerivedGroup = mplDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: mplDerivedGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Derived Object Group.')
mplDuplexGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1, 3)).setObjects(("CODIMA-EXPRESS-MIB", "mplduMac1Index"), ("CODIMA-EXPRESS-MIB", "mplduMac2Index"), ("CODIMA-EXPRESS-MIB", "mplduTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mplduTimeStamp"), ("CODIMA-EXPRESS-MIB", "mplduTxFrames"), ("CODIMA-EXPRESS-MIB", "mplduTxBytes"), ("CODIMA-EXPRESS-MIB", "mplduTxFrameSize"), ("CODIMA-EXPRESS-MIB", "mplduTxUtilization"), ("CODIMA-EXPRESS-MIB", "mplduRxFrames"), ("CODIMA-EXPRESS-MIB", "mplduRxBytes"), ("CODIMA-EXPRESS-MIB", "mplduRxFrameSize"), ("CODIMA-EXPRESS-MIB", "mplduRxUtilization"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mplDuplexGroup = mplDuplexGroup.setStatus('current')
if mibBuilder.loadTexts: mplDuplexGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Duplex Object Group.')
mplProtocolGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1, 4)).setObjects(("CODIMA-EXPRESS-MIB", "mplpMac1Index"), ("CODIMA-EXPRESS-MIB", "mplpMac2Index"), ("CODIMA-EXPRESS-MIB", "mplpTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mplpTimeStamp"), ("CODIMA-EXPRESS-MIB", "mplpNovell"), ("CODIMA-EXPRESS-MIB", "mplpSnmp"), ("CODIMA-EXPRESS-MIB", "mplpRouting"), ("CODIMA-EXPRESS-MIB", "mplpWww"), ("CODIMA-EXPRESS-MIB", "mplpIcmp"), ("CODIMA-EXPRESS-MIB", "mplpIso"), ("CODIMA-EXPRESS-MIB", "mplpMail"), ("CODIMA-EXPRESS-MIB", "mplpNetbios"), ("CODIMA-EXPRESS-MIB", "mplpDns"), ("CODIMA-EXPRESS-MIB", "mplpIp"), ("CODIMA-EXPRESS-MIB", "mplpVoip"), ("CODIMA-EXPRESS-MIB", "mplpLayer3Traffic"), ("CODIMA-EXPRESS-MIB", "mplpIpData"), ("CODIMA-EXPRESS-MIB", "mplpApplications"), ("CODIMA-EXPRESS-MIB", "mplpIpControl"), ("CODIMA-EXPRESS-MIB", "mplpManagement"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mplProtocolGroup = mplProtocolGroup.setStatus('current')
if mibBuilder.loadTexts: mplProtocolGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Protocol Object Group.')
macPeerShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2))
mpsBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "mpsbMac1Index"), ("CODIMA-EXPRESS-MIB", "mpsbMac2Index"), ("CODIMA-EXPRESS-MIB", "mpsbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mpsbTimeStamp"), ("CODIMA-EXPRESS-MIB", "mpsbFrames"), ("CODIMA-EXPRESS-MIB", "mpsbBytes"), ("CODIMA-EXPRESS-MIB", "mpsbFrameSize"), ("CODIMA-EXPRESS-MIB", "mpsbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "mpsbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mpsBaseGroup = mpsBaseGroup.setStatus('current')
if mibBuilder.loadTexts: mpsBaseGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Base Object Group.')
mpsDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "mpsdMac1Index"), ("CODIMA-EXPRESS-MIB", "mpsdMac2Index"), ("CODIMA-EXPRESS-MIB", "mpsdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mpsdTimeStamp"), ("CODIMA-EXPRESS-MIB", "mpsdUtilization"), ("CODIMA-EXPRESS-MIB", "mpsdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mpsDerivedGroup = mpsDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: mpsDerivedGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Derived Object Group.')
mpsDuplexGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2, 3)).setObjects(("CODIMA-EXPRESS-MIB", "mpsduMac1Index"), ("CODIMA-EXPRESS-MIB", "mpsduMac2Index"), ("CODIMA-EXPRESS-MIB", "mpsduTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mpsduTimeStamp"), ("CODIMA-EXPRESS-MIB", "mpsduTxFrames"), ("CODIMA-EXPRESS-MIB", "mpsduTxBytes"), ("CODIMA-EXPRESS-MIB", "mpsduTxFrameSize"), ("CODIMA-EXPRESS-MIB", "mpsduTxUtilization"), ("CODIMA-EXPRESS-MIB", "mpsduRxFrames"), ("CODIMA-EXPRESS-MIB", "mpsduRxBytes"), ("CODIMA-EXPRESS-MIB", "mpsduRxFrameSize"), ("CODIMA-EXPRESS-MIB", "mpsduRxUtilization"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mpsDuplexGroup = mpsDuplexGroup.setStatus('current')
if mibBuilder.loadTexts: mpsDuplexGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Duplex Object Group.')
mpsProtocolGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2, 4)).setObjects(("CODIMA-EXPRESS-MIB", "mpspMac1Index"), ("CODIMA-EXPRESS-MIB", "mpspMac2Index"), ("CODIMA-EXPRESS-MIB", "mpspTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "mpspTimeStamp"), ("CODIMA-EXPRESS-MIB", "mpspNovell"), ("CODIMA-EXPRESS-MIB", "mpspSnmp"), ("CODIMA-EXPRESS-MIB", "mpspRouting"), ("CODIMA-EXPRESS-MIB", "mpspWww"), ("CODIMA-EXPRESS-MIB", "mpspIcmp"), ("CODIMA-EXPRESS-MIB", "mpspIso"), ("CODIMA-EXPRESS-MIB", "mpspMail"), ("CODIMA-EXPRESS-MIB", "mpspNetbios"), ("CODIMA-EXPRESS-MIB", "mpspDns"), ("CODIMA-EXPRESS-MIB", "mpspIp"), ("CODIMA-EXPRESS-MIB", "mpspVoip"), ("CODIMA-EXPRESS-MIB", "mpspLayer3Traffic"), ("CODIMA-EXPRESS-MIB", "mpspIpData"), ("CODIMA-EXPRESS-MIB", "mpspApplications"), ("CODIMA-EXPRESS-MIB", "mpspIpControl"), ("CODIMA-EXPRESS-MIB", "mpspManagement"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
mpsProtocolGroup = mpsProtocolGroup.setStatus('current')
if mibBuilder.loadTexts: mpsProtocolGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Protocol Object Group.')
dbIPv4Groups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5))
ipLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 1))
ilBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "ilbIpIndex"), ("CODIMA-EXPRESS-MIB", "ilbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ilbTimeStamp"), ("CODIMA-EXPRESS-MIB", "ilbFrames"), ("CODIMA-EXPRESS-MIB", "ilbBytes"), ("CODIMA-EXPRESS-MIB", "ilbFrameSize"), ("CODIMA-EXPRESS-MIB", "ilbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "ilbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilBaseGroup = ilBaseGroup.setStatus('current')
if mibBuilder.loadTexts: ilBaseGroup.setDescription('CODIMA Express History Long Term IPv4 Database Base Object Group.')
ilDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "ildIpIndex"), ("CODIMA-EXPRESS-MIB", "ildTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ildTimeStamp"), ("CODIMA-EXPRESS-MIB", "ildUtilization"), ("CODIMA-EXPRESS-MIB", "ildErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilDerivedGroup = ilDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: ilDerivedGroup.setDescription('CODIMA Express History Long Term IPv4 Database Derived Object Group.')
ilIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 1, 3)).setObjects(("CODIMA-EXPRESS-MIB", "iliIpIndex"), ("CODIMA-EXPRESS-MIB", "iliTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "iliTimeStamp"), ("CODIMA-EXPRESS-MIB", "iliPing"), ("CODIMA-EXPRESS-MIB", "iliSrcQuench"), ("CODIMA-EXPRESS-MIB", "iliRedirect"), ("CODIMA-EXPRESS-MIB", "iliTtlExceeded"), ("CODIMA-EXPRESS-MIB", "iliParamProblem"), ("CODIMA-EXPRESS-MIB", "iliTimestamp"), ("CODIMA-EXPRESS-MIB", "iliFragTimeout"), ("CODIMA-EXPRESS-MIB", "iliNetUnreachable"), ("CODIMA-EXPRESS-MIB", "iliHostUnreachable"), ("CODIMA-EXPRESS-MIB", "iliProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "iliPortUnreachable"), ("CODIMA-EXPRESS-MIB", "iliFragRequired"), ("CODIMA-EXPRESS-MIB", "iliSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "iliDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "iliDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "iliSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "iliNetProhibited"), ("CODIMA-EXPRESS-MIB", "iliHostProhibited"), ("CODIMA-EXPRESS-MIB", "iliNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "iliHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "iliPerformance"), ("CODIMA-EXPRESS-MIB", "iliNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "iliHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "iliAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "iliRouteChange"), ("CODIMA-EXPRESS-MIB", "iliErrors"), ("CODIMA-EXPRESS-MIB", "iliMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ilIcmpGroup = ilIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: ilIcmpGroup.setDescription('CODIMA Express History Long Term IPv4 Database ICMP Object Group.')
ipShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 2))
isBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "isbIpIndex"), ("CODIMA-EXPRESS-MIB", "isbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "isbTimeStamp"), ("CODIMA-EXPRESS-MIB", "isbFrames"), ("CODIMA-EXPRESS-MIB", "isbBytes"), ("CODIMA-EXPRESS-MIB", "isbFrameSize"), ("CODIMA-EXPRESS-MIB", "isbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "isbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
isBaseGroup = isBaseGroup.setStatus('current')
if mibBuilder.loadTexts: isBaseGroup.setDescription('CODIMA Express History Short Term IPv4 Database Base Object Group.')
isDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "isdIpIndex"), ("CODIMA-EXPRESS-MIB", "isdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "isdTimeStamp"), ("CODIMA-EXPRESS-MIB", "isdUtilization"), ("CODIMA-EXPRESS-MIB", "isdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
isDerivedGroup = isDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: isDerivedGroup.setDescription('CODIMA Express History Short Term IPv4 Database Derived Object Group.')
isIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 2, 3)).setObjects(("CODIMA-EXPRESS-MIB", "isiIpIndex"), ("CODIMA-EXPRESS-MIB", "isiTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "isiTimeStamp"), ("CODIMA-EXPRESS-MIB", "isiPing"), ("CODIMA-EXPRESS-MIB", "isiSrcQuench"), ("CODIMA-EXPRESS-MIB", "isiRedirect"), ("CODIMA-EXPRESS-MIB", "isiTtlExceeded"), ("CODIMA-EXPRESS-MIB", "isiParamProblem"), ("CODIMA-EXPRESS-MIB", "isiTimestamp"), ("CODIMA-EXPRESS-MIB", "isiFragTimeout"), ("CODIMA-EXPRESS-MIB", "isiNetUnreachable"), ("CODIMA-EXPRESS-MIB", "isiHostUnreachable"), ("CODIMA-EXPRESS-MIB", "isiProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "isiPortUnreachable"), ("CODIMA-EXPRESS-MIB", "isiFragRequired"), ("CODIMA-EXPRESS-MIB", "isiSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "isiDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "isiDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "isiSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "isiNetProhibited"), ("CODIMA-EXPRESS-MIB", "isiHostProhibited"), ("CODIMA-EXPRESS-MIB", "isiNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "isiHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "isiPerformance"), ("CODIMA-EXPRESS-MIB", "isiNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "isiHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "isiAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "isiRouteChange"), ("CODIMA-EXPRESS-MIB", "isiErrors"), ("CODIMA-EXPRESS-MIB", "isiMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
isIcmpGroup = isIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: isIcmpGroup.setDescription('CODIMA Express History Short Term IPv4 Database ICMP Object Group.')
dpIPv4PeerGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6))
ipPeerLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 1))
iplBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "iplbIp1Index"), ("CODIMA-EXPRESS-MIB", "iplbIp2Index"), ("CODIMA-EXPRESS-MIB", "iplbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "iplbTimeStamp"), ("CODIMA-EXPRESS-MIB", "iplbFrames"), ("CODIMA-EXPRESS-MIB", "iplbBytes"), ("CODIMA-EXPRESS-MIB", "iplbFrameSize"), ("CODIMA-EXPRESS-MIB", "iplbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "iplbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
iplBaseGroup = iplBaseGroup.setStatus('current')
if mibBuilder.loadTexts: iplBaseGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database Base Object Group.')
iplDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "ipldIp1Index"), ("CODIMA-EXPRESS-MIB", "ipldIp2Index"), ("CODIMA-EXPRESS-MIB", "ipldTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ipldTimeStamp"), ("CODIMA-EXPRESS-MIB", "ipldUtilization"), ("CODIMA-EXPRESS-MIB", "ipldErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
iplDerivedGroup = iplDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: iplDerivedGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database Derived Object Group.')
iplIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 1, 3)).setObjects(("CODIMA-EXPRESS-MIB", "ipliIp1Index"), ("CODIMA-EXPRESS-MIB", "ipliIp2Index"), ("CODIMA-EXPRESS-MIB", "ipliTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ipliTimeStamp"), ("CODIMA-EXPRESS-MIB", "ipliPing"), ("CODIMA-EXPRESS-MIB", "ipliSrcQuench"), ("CODIMA-EXPRESS-MIB", "ipliRedirect"), ("CODIMA-EXPRESS-MIB", "ipliTtlExceeded"), ("CODIMA-EXPRESS-MIB", "ipliParamProblem"), ("CODIMA-EXPRESS-MIB", "ipliTimestamp"), ("CODIMA-EXPRESS-MIB", "ipliFragTimeout"), ("CODIMA-EXPRESS-MIB", "ipliNetUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliHostUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliPortUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliFragRequired"), ("CODIMA-EXPRESS-MIB", "ipliSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "ipliDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "ipliDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "ipliSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "ipliNetProhibited"), ("CODIMA-EXPRESS-MIB", "ipliHostProhibited"), ("CODIMA-EXPRESS-MIB", "ipliNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ipliPerformance"), ("CODIMA-EXPRESS-MIB", "ipliNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipliHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipliAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipliRouteChange"), ("CODIMA-EXPRESS-MIB", "ipliErrors"), ("CODIMA-EXPRESS-MIB", "ipliMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
iplIcmpGroup = iplIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: iplIcmpGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database ICMP Object Group.')
ipPeerShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 2))
ipsBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "ipsbIp1Index"), ("CODIMA-EXPRESS-MIB", "ipsbIp2Index"), ("CODIMA-EXPRESS-MIB", "ipsbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ipsbTimeStamp"), ("CODIMA-EXPRESS-MIB", "ipsbFrames"), ("CODIMA-EXPRESS-MIB", "ipsbBytes"), ("CODIMA-EXPRESS-MIB", "ipsbFrameSize"), ("CODIMA-EXPRESS-MIB", "ipsbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "ipsbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ipsBaseGroup = ipsBaseGroup.setStatus('current')
if mibBuilder.loadTexts: ipsBaseGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database Base Object Group.')
ipsDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "ipsdIp1Index"), ("CODIMA-EXPRESS-MIB", "ipsdIp2Index"), ("CODIMA-EXPRESS-MIB", "ipsdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ipsdTimeStamp"), ("CODIMA-EXPRESS-MIB", "ipsdUtilization"), ("CODIMA-EXPRESS-MIB", "ipsdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ipsDerivedGroup = ipsDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: ipsDerivedGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database Derived Object Group.')
ipsIcmpGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 2, 3)).setObjects(("CODIMA-EXPRESS-MIB", "ipsiIp1Index"), ("CODIMA-EXPRESS-MIB", "ipsiIp2Index"), ("CODIMA-EXPRESS-MIB", "ipsiTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "ipsiTimeStamp"), ("CODIMA-EXPRESS-MIB", "ipsiPing"), ("CODIMA-EXPRESS-MIB", "ipsiSrcQuench"), ("CODIMA-EXPRESS-MIB", "ipsiRedirect"), ("CODIMA-EXPRESS-MIB", "ipsiTtlExceeded"), ("CODIMA-EXPRESS-MIB", "ipsiParamProblem"), ("CODIMA-EXPRESS-MIB", "ipsiTimestamp"), ("CODIMA-EXPRESS-MIB", "ipsiFragTimeout"), ("CODIMA-EXPRESS-MIB", "ipsiNetUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiHostUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiProtocolUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiPortUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiFragRequired"), ("CODIMA-EXPRESS-MIB", "ipsiSrcRouteFail"), ("CODIMA-EXPRESS-MIB", "ipsiDestNetUnknown"), ("CODIMA-EXPRESS-MIB", "ipsiDestHostUnknown"), ("CODIMA-EXPRESS-MIB", "ipsiSrcHostIsolated"), ("CODIMA-EXPRESS-MIB", "ipsiNetProhibited"), ("CODIMA-EXPRESS-MIB", "ipsiHostProhibited"), ("CODIMA-EXPRESS-MIB", "ipsiNetTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiHostTosUnreachable"), ("CODIMA-EXPRESS-MIB", "ipsiPerformance"), ("CODIMA-EXPRESS-MIB", "ipsiNetRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipsiHostRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipsiAppRouteProblem"), ("CODIMA-EXPRESS-MIB", "ipsiRouteChange"), ("CODIMA-EXPRESS-MIB", "ipsiErrors"), ("CODIMA-EXPRESS-MIB", "ipsiMaintenance"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ipsIcmpGroup = ipsIcmpGroup.setStatus('current')
if mibBuilder.loadTexts: ipsIcmpGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database ICMP Object Group.')
dbProtocolGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7))
protocolLongTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 1))
plBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 1, 1)).setObjects(("CODIMA-EXPRESS-MIB", "plbLayerIndex"), ("CODIMA-EXPRESS-MIB", "plbIdIndex"), ("CODIMA-EXPRESS-MIB", "plbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "plbTimeStamp"), ("CODIMA-EXPRESS-MIB", "plbProtocolName"), ("CODIMA-EXPRESS-MIB", "plbFrames"), ("CODIMA-EXPRESS-MIB", "plbBytes"), ("CODIMA-EXPRESS-MIB", "plbFrameSize"), ("CODIMA-EXPRESS-MIB", "plbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "plbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
plBaseGroup = plBaseGroup.setStatus('current')
if mibBuilder.loadTexts: plBaseGroup.setDescription('CODIMA Express History Long Term Protocol Database Base Object Group.')
plDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "pldLayerIndex"), ("CODIMA-EXPRESS-MIB", "pldIdIndex"), ("CODIMA-EXPRESS-MIB", "pldTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "pldTimeStamp"), ("CODIMA-EXPRESS-MIB", "pldProtocolName"), ("CODIMA-EXPRESS-MIB", "pldUtilization"), ("CODIMA-EXPRESS-MIB", "pldErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
plDerivedGroup = plDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: plDerivedGroup.setDescription('CODIMA Express History Long Term Protocol Database Derived Object Group.')
protocolShortTermGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 2))
psBaseGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "psbLayerIndex"), ("CODIMA-EXPRESS-MIB", "psbIdIndex"), ("CODIMA-EXPRESS-MIB", "psbTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "psbTimeStamp"), ("CODIMA-EXPRESS-MIB", "psbProtocolName"), ("CODIMA-EXPRESS-MIB", "psbFrames"), ("CODIMA-EXPRESS-MIB", "psbBytes"), ("CODIMA-EXPRESS-MIB", "psbFrameSize"), ("CODIMA-EXPRESS-MIB", "psbHardwareErrors"), ("CODIMA-EXPRESS-MIB", "psbSoftwareErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
psBaseGroup = psBaseGroup.setStatus('current')
if mibBuilder.loadTexts: psBaseGroup.setDescription('CODIMA Express History Short Term Protocol Database Base Object Group.')
psDerivedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 2, 2)).setObjects(("CODIMA-EXPRESS-MIB", "psdLayerIndex"), ("CODIMA-EXPRESS-MIB", "psdIdIndex"), ("CODIMA-EXPRESS-MIB", "psdTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "psdTimeStamp"), ("CODIMA-EXPRESS-MIB", "psdProtocolName"), ("CODIMA-EXPRESS-MIB", "psdUtilization"), ("CODIMA-EXPRESS-MIB", "psdErrorFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
psDerivedGroup = psDerivedGroup.setStatus('current')
if mibBuilder.loadTexts: psDerivedGroup.setDescription('CODIMA Express History Short Term Protocol Database Derived Object Group.')
dbNetChannelGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 8))
netChannelLongTermGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 8, 1)).setObjects(("CODIMA-EXPRESS-MIB", "nlTypeIndex"), ("CODIMA-EXPRESS-MIB", "nlNameIndex"), ("CODIMA-EXPRESS-MIB", "nlTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "nlTimeStamp"), ("CODIMA-EXPRESS-MIB", "nlFrames"), ("CODIMA-EXPRESS-MIB", "nlBytes"), ("CODIMA-EXPRESS-MIB", "nlFrameSize"), ("CODIMA-EXPRESS-MIB", "nlHardErrors"), ("CODIMA-EXPRESS-MIB", "nlSoftErrors"), ("CODIMA-EXPRESS-MIB", "nlUtilization"), ("CODIMA-EXPRESS-MIB", "nlHardErrorsPercent"), ("CODIMA-EXPRESS-MIB", "nlSoftErrorsPercent"), ("CODIMA-EXPRESS-MIB", "nlFramesPercent"), ("CODIMA-EXPRESS-MIB", "nlBytesPercent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
netChannelLongTermGroup = netChannelLongTermGroup.setStatus('current')
if mibBuilder.loadTexts: netChannelLongTermGroup.setDescription('CODIMA Express History Long Term NetChannel Database NetChannel Object Group.')
netChannelShortTermGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 8, 2)).setObjects(("CODIMA-EXPRESS-MIB", "nsTypeIndex"), ("CODIMA-EXPRESS-MIB", "nsNameIndex"), ("CODIMA-EXPRESS-MIB", "nsTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "nsTimeStamp"), ("CODIMA-EXPRESS-MIB", "nsFrames"), ("CODIMA-EXPRESS-MIB", "nsBytes"), ("CODIMA-EXPRESS-MIB", "nsFrameSize"), ("CODIMA-EXPRESS-MIB", "nsHardErrors"), ("CODIMA-EXPRESS-MIB", "nsSoftErrors"), ("CODIMA-EXPRESS-MIB", "nsUtilization"), ("CODIMA-EXPRESS-MIB", "nsHardErrorsPercent"), ("CODIMA-EXPRESS-MIB", "nsSoftErrorsPercent"), ("CODIMA-EXPRESS-MIB", "nsFramesPercent"), ("CODIMA-EXPRESS-MIB", "nsBytesPercent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
netChannelShortTermGroup = netChannelShortTermGroup.setStatus('current')
if mibBuilder.loadTexts: netChannelShortTermGroup.setDescription('CODIMA Express History Short Term NetChannel Database NetChannel Object Group.')
dbVlanGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 9))
vlanLongTermGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 9, 1)).setObjects(("CODIMA-EXPRESS-MIB", "vlIdIndex"), ("CODIMA-EXPRESS-MIB", "vlTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "vlTimeStamp"), ("CODIMA-EXPRESS-MIB", "vlName"), ("CODIMA-EXPRESS-MIB", "vlFrames"), ("CODIMA-EXPRESS-MIB", "vlBytes"), ("CODIMA-EXPRESS-MIB", "vlFrameSize"), ("CODIMA-EXPRESS-MIB", "vlHardErrors"), ("CODIMA-EXPRESS-MIB", "vlSoftErrors"), ("CODIMA-EXPRESS-MIB", "vlUtilization"), ("CODIMA-EXPRESS-MIB", "vlHardErrorsPercent"), ("CODIMA-EXPRESS-MIB", "vlSoftErrorsPercent"), ("CODIMA-EXPRESS-MIB", "vlFramesPercent"), ("CODIMA-EXPRESS-MIB", "vlBytesPercent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vlanLongTermGroup = vlanLongTermGroup.setStatus('current')
if mibBuilder.loadTexts: vlanLongTermGroup.setDescription('CODIMA Express History Long Term VLAN Database VLAN Object Group.')
vlanShortTermGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 9, 2)).setObjects(("CODIMA-EXPRESS-MIB", "vsIdIndex"), ("CODIMA-EXPRESS-MIB", "vsTimeStampIndex"), ("CODIMA-EXPRESS-MIB", "vsTimeStamp"), ("CODIMA-EXPRESS-MIB", "vsName"), ("CODIMA-EXPRESS-MIB", "vsFrames"), ("CODIMA-EXPRESS-MIB", "vsBytes"), ("CODIMA-EXPRESS-MIB", "vsFrameSize"), ("CODIMA-EXPRESS-MIB", "vsHardErrors"), ("CODIMA-EXPRESS-MIB", "vsSoftErrors"), ("CODIMA-EXPRESS-MIB", "vsUtilization"), ("CODIMA-EXPRESS-MIB", "vsHardErrorsPercent"), ("CODIMA-EXPRESS-MIB", "vsSoftErrorsPercent"), ("CODIMA-EXPRESS-MIB", "vsFramesPercent"), ("CODIMA-EXPRESS-MIB", "vsBytesPercent"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
vlanShortTermGroup = vlanShortTermGroup.setStatus('current')
if mibBuilder.loadTexts: vlanShortTermGroup.setDescription('CODIMA Express History Short Term VLAN Database Object Group.')
alarmObjectGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 2)).setObjects(("CODIMA-EXPRESS-MIB", "alarmMessage"), ("CODIMA-EXPRESS-MIB", "alarmTime"), ("CODIMA-EXPRESS-MIB", "alarmClass"), ("CODIMA-EXPRESS-MIB", "alarmUnitType"), ("CODIMA-EXPRESS-MIB", "alarmGroup"), ("CODIMA-EXPRESS-MIB", "alarmFunction"), ("CODIMA-EXPRESS-MIB", "alarmCode"), ("CODIMA-EXPRESS-MIB", "alarmLayer"), ("CODIMA-EXPRESS-MIB", "alarmBaseProtocol"), ("CODIMA-EXPRESS-MIB", "alarmTopProtocol"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alarmObjectGroup = alarmObjectGroup.setStatus('current')
if mibBuilder.loadTexts: alarmObjectGroup.setDescription('CODIMA Express Alarm Object Group.')
expressNotificationGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 2))
alarmNotifyGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 2, 1)).setObjects(("CODIMA-EXPRESS-MIB", "expressAlarm"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
alarmNotifyGroup = alarmNotifyGroup.setStatus('current')
if mibBuilder.loadTexts: alarmNotifyGroup.setDescription('This notification group includes all notifications defined for alarm generation.')
mibBuilder.exportSymbols("CODIMA-EXPRESS-MIB", isIcmpGroup=isIcmpGroup, mspVoip=mspVoip, mpspIso=mpspIso, vlanLongTermEntry=vlanLongTermEntry, mlIcmpTable=mlIcmpTable, msdTimeStamp=msdTimeStamp, slEthernetGroup=slEthernetGroup, nlTypeIndex=nlTypeIndex, mplpSnmp=mplpSnmp, ssPortEntry=ssPortEntry, sleJabbers=sleJabbers, ipliFragRequired=ipliFragRequired, ipsdTimeStamp=ipsdTimeStamp, ssp1Bytes=ssp1Bytes, mplbFrameSize=mplbFrameSize, ilDerivedTable=ilDerivedTable, isiAppRouteProblem=isiAppRouteProblem, msDerivedTable=msDerivedTable, mplpManagement=mplpManagement, mliMacIndex=mliMacIndex, ssp1Frames=ssp1Frames, msiParamProblem=msiParamProblem, nsFramesPercent=nsFramesPercent, mpspTimeStampIndex=mpspTimeStampIndex, ipldIp1Index=ipldIp1Index, ildErrorFrames=ildErrorFrames, sliTimeStamp=sliTimeStamp, slp1TimeStampIndex=slp1TimeStampIndex, mlpManagement=mlpManagement, mpsBaseGroup=mpsBaseGroup, protocolLongTerm=protocolLongTerm, mspManagement=mspManagement, iliSrcHostIsolated=iliSrcHostIsolated, ctrlTimeGroup=ctrlTimeGroup, mplpTimeStampIndex=mplpTimeStampIndex, dbIPv4=dbIPv4, ilBaseTable=ilBaseTable, sliTtlExceeded=sliTtlExceeded, slp2Collisions=slp2Collisions, ipsbTimeStampIndex=ipsbTimeStampIndex, psbProtocolName=psbProtocolName, iliPortUnreachable=iliPortUnreachable, mpspNovell=mpspNovell, isiRouteChange=isiRouteChange, mliFragRequired=mliFragRequired, msiDestHostUnknown=msiDestHostUnknown, mlbSoftwareErrors=mlbSoftwareErrors, ipliTimestamp=ipliTimestamp, psdUtilization=psdUtilization, ssPortTable=ssPortTable, psbBytes=psbBytes, sleTimeStamp=sleTimeStamp, plbSoftwareErrors=plbSoftwareErrors, ildTimeStampIndex=ildTimeStampIndex, ipliHostProhibited=ipliHostProhibited, alarmCode=alarmCode, slp2Utilization=slp2Utilization, mliSrcHostIsolated=mliSrcHostIsolated, pldLayerIndex=pldLayerIndex, msiPortUnreachable=msiPortUnreachable, sliNetProhibited=sliNetProhibited, ssDerivedGroup=ssDerivedGroup, mliNetUnreachable=mliNetUnreachable, ssiTtlExceeded=ssiTtlExceeded, ssiTimeStamp=ssiTimeStamp, slbTimeStamp=slbTimeStamp, iliIpIndex=iliIpIndex, ssiRouteChange=ssiRouteChange, slp2Bytes=slp2Bytes, mliFragTimeout=mliFragTimeout, mlpDns=mlpDns, msbMacIndex=msbMacIndex, ssiParamProblem=ssiParamProblem, msiHostProhibited=msiHostProhibited, codimaExpressNotifications=codimaExpressNotifications, mlEthernetEntry=mlEthernetEntry, iplIcmpTable=iplIcmpTable, pldTimeStamp=pldTimeStamp, pldTimeStampIndex=pldTimeStampIndex, mplduMac2Index=mplduMac2Index, ipShortTerm=ipShortTerm, iplBaseTable=iplBaseTable, sliDestHostUnknown=sliDestHostUnknown, ipPeerLongTermGroups=ipPeerLongTermGroups, sldUtilization=sldUtilization, iliErrors=iliErrors, dbProtocolGroups=dbProtocolGroups, iplbIp1Index=iplbIp1Index, mpsduTxFrameSize=mpsduTxFrameSize, mpsduTxFrames=mpsduTxFrames, msdpTimeStamp=msdpTimeStamp, mpsdErrorFrames=mpsdErrorFrames, alarmBaseProtocol=alarmBaseProtocol, mlIcmpGroup=mlIcmpGroup, ctTimeSlots=ctTimeSlots, ilbSoftwareErrors=ilbSoftwareErrors, dbSegmentGroups=dbSegmentGroups, vsSoftErrorsPercent=vsSoftErrorsPercent, plbBytes=plbBytes, ilDerivedGroup=ilDerivedGroup, expressTraps=expressTraps, mpsDuplexTable=mpsDuplexTable, ssiRedirect=ssiRedirect, slbHardwareErrors=slbHardwareErrors, mldUtilization=mldUtilization, mplduRxUtilization=mplduRxUtilization, msEthernetEntry=msEthernetEntry, mlbFrames=mlbFrames, isiMaintenance=isiMaintenance, ipsiParamProblem=ipsiParamProblem, vlSoftErrorsPercent=vlSoftErrorsPercent, ipsbIp2Index=ipsbIp2Index, mlDerivedTable=mlDerivedTable, ssDerivedTable=ssDerivedTable, mlduRxFrameSize=mlduRxFrameSize, dbMacGroups=dbMacGroups, isdIpIndex=isdIpIndex, ssp1FrameSize=ssp1FrameSize, slp1Utilization=slp1Utilization, mleCollisions=mleCollisions, ctLockUserTime=ctLockUserTime, msdMacIndex=msdMacIndex, slp2LineNoise=slp2LineNoise, slp2LineSpeed=slp2LineSpeed, iliNetTosUnreachable=iliNetTosUnreachable, isiHostProhibited=isiHostProhibited, mliProtocolUnreachable=mliProtocolUnreachable, mplpTimeStamp=mplpTimeStamp, mspNetbios=mspNetbios, isiErrors=isiErrors, sspTimeStampIndex=sspTimeStampIndex, isdErrorFrames=isdErrorFrames, ssp2FrameSize=ssp2FrameSize, ipldUtilization=ipldUtilization, slbcPercentBytes=slbcPercentBytes, ssp2Jabbers=ssp2Jabbers, ipsbBytes=ipsbBytes, sseCrc=sseCrc, mlduRxBytes=mlduRxBytes, mpspManagement=mpspManagement, ipsiTimestamp=ipsiTimestamp, sliPerformance=sliPerformance, mpsdTimeStamp=mpsdTimeStamp, ssBroadcastEntry=ssBroadcastEntry, netChanShortTermTable=netChanShortTermTable, ilbTimeStamp=ilbTimeStamp, iplDerivedGroup=iplDerivedGroup, mliHostUnreachable=mliHostUnreachable, iliParamProblem=iliParamProblem, nsTypeIndex=nsTypeIndex, slp2Crc=slp2Crc, mplpWww=mplpWww, ildIpIndex=ildIpIndex, psdLayerIndex=psdLayerIndex, msiAppRouteProblem=msiAppRouteProblem, codimaExpressObjects=codimaExpressObjects, iplbHardwareErrors=iplbHardwareErrors, ipsBaseTable=ipsBaseTable, ipsbFrameSize=ipsbFrameSize, mpspIcmp=mpspIcmp, mplProtocolGroup=mplProtocolGroup, expressNotificationGroups=expressNotificationGroups, vsName=vsName, mleMacIndex=mleMacIndex, isiHostUnreachable=isiHostUnreachable, ssPortGroup=ssPortGroup, msiHostRouteProblem=msiHostRouteProblem, msbFrames=msbFrames, slbFrameSize=slbFrameSize, expressObjectGroups=expressObjectGroups, msdErrorFrames=msdErrorFrames, ipsiNetProhibited=ipsiNetProhibited, sliTimeStampIndex=sliTimeStampIndex, ilbFrameSize=ilbFrameSize, plDerivedTable=plDerivedTable, slIcmpTable=slIcmpTable, mpsbTimeStamp=mpsbTimeStamp, msbFrameSize=msbFrameSize, vlTimeStampIndex=vlTimeStampIndex, vlHardErrors=vlHardErrors, mlDerivedGroup=mlDerivedGroup, mpsProtocolEntry=mpsProtocolEntry, macPeerShortTermGroups=macPeerShortTermGroups, ssBroadcastTable=ssBroadcastTable, mlpMail=mlpMail, mpsdMac2Index=mpsdMac2Index, mplpMail=mplpMail, mpspMac1Index=mpspMac1Index, mlbTimeStampIndex=mlbTimeStampIndex, mliPerformance=mliPerformance, ssiNetTosUnreachable=ssiNetTosUnreachable, msiFragRequired=msiFragRequired, mpldMac2Index=mpldMac2Index, nlHardErrorsPercent=nlHardErrorsPercent, mpspVoip=mpspVoip, sldTimeStampIndex=sldTimeStampIndex, isdTimeStamp=isdTimeStamp, mspRouting=mspRouting, mliNetRouteProblem=mliNetRouteProblem, iliDestNetUnknown=iliDestNetUnknown, msiNetUnreachable=msiNetUnreachable, mspSnmp=mspSnmp, ipsBaseGroup=ipsBaseGroup, sliHostUnreachable=sliHostUnreachable, dbProtocol=dbProtocol, mspDns=mspDns, mseTimeStamp=mseTimeStamp, isbTimeStampIndex=isbTimeStampIndex, mplProtocolEntry=mplProtocolEntry, ctrlTimeTable=ctrlTimeTable, vsFrameSize=vsFrameSize, sleLateCollisions=sleLateCollisions, mlbHardwareErrors=mlbHardwareErrors, sliAppRouteProblem=sliAppRouteProblem, sliHostTosUnreachable=sliHostTosUnreachable, slp2Runts=slp2Runts, ssbcFrames=ssbcFrames, dbVlan=dbVlan, vlBytes=vlBytes, plDerivedGroup=plDerivedGroup, mpspIpData=mpspIpData, msdpRxUtilization=msdpRxUtilization, dbMac=dbMac, ipsiProtocolUnreachable=ipsiProtocolUnreachable, ssiDestNetUnknown=ssiDestNetUnknown, mplBaseEntry=mplBaseEntry, psbTimeStamp=psbTimeStamp, netChanLongTermTable=netChanLongTermTable, ssbSoftwareErrors=ssbSoftwareErrors, msDuplexGroup=msDuplexGroup, ilbFrames=ilbFrames, ssp1Runts=ssp1Runts, mliHostRouteProblem=mliHostRouteProblem, ipsbSoftwareErrors=ipsbSoftwareErrors, ssp1LineNoise=ssp1LineNoise, ipsiSrcRouteFail=ipsiSrcRouteFail, ipsiTimeStampIndex=ipsiTimeStampIndex, ipsDerivedGroup=ipsDerivedGroup, nlBytes=nlBytes, ipsiHostUnreachable=ipsiHostUnreachable, iliAppRouteProblem=iliAppRouteProblem, slIcmpEntry=slIcmpEntry, mspMacIndex=mspMacIndex, mliMaintenance=mliMaintenance, netChanLongTermEntry=netChanLongTermEntry, mlBaseGroup=mlBaseGroup, psbFrames=psbFrames, mpsBaseTable=mpsBaseTable, vsHardErrorsPercent=vsHardErrorsPercent, mspIp=mspIp, dbControl=dbControl, msiRouteChange=msiRouteChange, slp1Collisions=slp1Collisions, isiDestHostUnknown=isiDestHostUnknown)
mibBuilder.exportSymbols("CODIMA-EXPRESS-MIB", ssp2Crc=ssp2Crc, slBaseGroup=slBaseGroup, mlEthernetTable=mlEthernetTable, nlTimeStamp=nlTimeStamp, sliNetTosUnreachable=sliNetTosUnreachable, isiNetTosUnreachable=isiNetTosUnreachable, nlUtilization=nlUtilization, mplBaseGroup=mplBaseGroup, slp2FrameSize=slp2FrameSize, vlBytesPercent=vlBytesPercent, mlpWww=mlpWww, ipliPortUnreachable=ipliPortUnreachable, ipsiSrcHostIsolated=ipsiSrcHostIsolated, ssiMaintenance=ssiMaintenance, ssp1Utilization=ssp1Utilization, ipliHostUnreachable=ipliHostUnreachable, historyDatabaseGroups=historyDatabaseGroups, mpspNetbios=mpspNetbios, mplduRxBytes=mplduRxBytes, mpsduRxFrameSize=mpsduRxFrameSize, isbBytes=isbBytes, iplBaseEntry=iplBaseEntry, ipliParamProblem=ipliParamProblem, mseCrc=mseCrc, mpldMac1Index=mpldMac1Index, mpsDuplexEntry=mpsDuplexEntry, psDerivedTable=psDerivedTable, mldMacIndex=mldMacIndex, mplpIso=mplpIso, mplbFrames=mplbFrames, ipsiAppRouteProblem=ipsiAppRouteProblem, psBaseTable=psBaseTable, psdProtocolName=psdProtocolName, slp1Crc=slp1Crc, pldIdIndex=pldIdIndex, mseJabbers=mseJabbers, isbTimeStamp=isbTimeStamp, alarmMessage=alarmMessage, ipsIcmpTable=ipsIcmpTable, nlFramesPercent=nlFramesPercent, sliRouteChange=sliRouteChange, slp2SoftErrors=slp2SoftErrors, slBaseTable=slBaseTable, ipldIp2Index=ipldIp2Index, msProtocolEntry=msProtocolEntry, iplbIp2Index=iplbIp2Index, mlDuplexGroup=mlDuplexGroup, slDerivedGroup=slDerivedGroup, mleJabbers=mleJabbers, msdpTxFrames=msdpTxFrames, ipsiPerformance=ipsiPerformance, sliSrcRouteFail=sliSrcRouteFail, segShortTerm=segShortTerm, ssp1Jabbers=ssp1Jabbers, ipLongTermGroups=ipLongTermGroups, ipsiDestNetUnknown=ipsiDestNetUnknown, ipsdUtilization=ipsdUtilization, mliPing=mliPing, ipliAppRouteProblem=ipliAppRouteProblem, sleRunts=sleRunts, msdUtilization=msdUtilization, sliHostRouteProblem=sliHostRouteProblem, sldTimeStamp=sldTimeStamp, macLongTerm=macLongTerm, psdErrorFrames=psdErrorFrames, mpsbTimeStampIndex=mpsbTimeStampIndex, iliPing=iliPing, iplbSoftwareErrors=iplbSoftwareErrors, plbFrames=plbFrames, mlpApplications=mlpApplications, dbMacPeer=dbMacPeer, iplbTimeStampIndex=iplbTimeStampIndex, mlProtocolGroup=mlProtocolGroup, mliHostTosUnreachable=mliHostTosUnreachable, isiHostTosUnreachable=isiHostTosUnreachable, ssbcFramesPercent=ssbcFramesPercent, mplduTimeStamp=mplduTimeStamp, ssiHostUnreachable=ssiHostUnreachable, ssp1SoftErrors=ssp1SoftErrors, msiSrcRouteFail=msiSrcRouteFail, mplDuplexEntry=mplDuplexEntry, mpspDns=mpspDns, alarmTime=alarmTime, mliParamProblem=mliParamProblem, ipldTimeStamp=ipldTimeStamp, msEthernetTable=msEthernetTable, msEthernetGroup=msEthernetGroup, slbBytes=slbBytes, codimaExpressMIB=codimaExpressMIB, mplDuplexTable=mplDuplexTable, slp2LateCollisions=slp2LateCollisions, psdTimeStamp=psdTimeStamp, mplpNetbios=mplpNetbios, iplDerivedEntry=iplDerivedEntry, psBaseEntry=psBaseEntry, alarmObjectGroup=alarmObjectGroup, mplbMac2Index=mplbMac2Index, nlFrames=nlFrames, slIcmpGroup=slIcmpGroup, msProtocolTable=msProtocolTable, ipliRedirect=ipliRedirect, mplDerivedEntry=mplDerivedEntry, isiTimestamp=isiTimestamp, msbTimeStamp=msbTimeStamp, ipliTimeStampIndex=ipliTimeStampIndex, slbcTimeStamp=slbcTimeStamp, msBaseGroup=msBaseGroup, vlanLongTermGroup=vlanLongTermGroup, msiFragTimeout=msiFragTimeout, ilBaseGroup=ilBaseGroup, ilIcmpTable=ilIcmpTable, mplpMac2Index=mplpMac2Index, psbHardwareErrors=psbHardwareErrors, isiHostRouteProblem=isiHostRouteProblem, ipliSrcHostIsolated=ipliSrcHostIsolated, ipsIcmpEntry=ipsIcmpEntry, mlduTimeStamp=mlduTimeStamp, iplIcmpGroup=iplIcmpGroup, ipShortTermGroups=ipShortTermGroups, segLongTerm=segLongTerm, dbMacPeerGroups=dbMacPeerGroups, ipsiFragRequired=ipsiFragRequired, ssiHostTosUnreachable=ssiHostTosUnreachable, msiRedirect=msiRedirect, mliAppRouteProblem=mliAppRouteProblem, ipsDerivedEntry=ipsDerivedEntry, msiPing=msiPing, mplProtocolTable=mplProtocolTable, vsBytesPercent=vsBytesPercent, mliDestNetUnknown=mliDestNetUnknown, isIcmpTable=isIcmpTable, nsHardErrors=nsHardErrors, netChannelLongTermGroup=netChannelLongTermGroup, msdpMacIndex=msdpMacIndex, msiTimeStampIndex=msiTimeStampIndex, ssiNetProhibited=ssiNetProhibited, slp2Jabbers=slp2Jabbers, vlUtilization=vlUtilization, mlbTimeStamp=mlbTimeStamp, slDerivedTable=slDerivedTable, plBaseTable=plBaseTable, slp1Runts=slp1Runts, ssp2LineNoise=ssp2LineNoise, ipliTtlExceeded=ipliTtlExceeded, msIcmpEntry=msIcmpEntry, ipliMaintenance=ipliMaintenance, nlSoftErrors=nlSoftErrors, mplduTxFrameSize=mplduTxFrameSize, mleTimeStamp=mleTimeStamp, vsFramesPercent=vsFramesPercent, slp2Frames=slp2Frames, sseCollisions=sseCollisions, sliTimestamp=sliTimestamp, ipsBaseEntry=ipsBaseEntry, mpsduRxFrames=mpsduRxFrames, ssp2LineSpeed=ssp2LineSpeed, isDerivedEntry=isDerivedEntry, isDerivedGroup=isDerivedGroup, mpldTimeStampIndex=mpldTimeStampIndex, mlEthernetGroup=mlEthernetGroup, ssbcBytes=ssbcBytes, mlpTimeStamp=mlpTimeStamp, msDuplexEntry=msDuplexEntry, isdUtilization=isdUtilization, mpsbFrameSize=mpsbFrameSize, iplDerivedTable=iplDerivedTable, ipliNetUnreachable=ipliNetUnreachable, dbControlGroups=dbControlGroups, mpspIpControl=mpspIpControl, ssp2Bytes=ssp2Bytes, protocolLongTermGroups=protocolLongTermGroups, slbFrames=slbFrames, mliTimeStamp=mliTimeStamp, iliDestHostUnknown=iliDestHostUnknown, plDerivedEntry=plDerivedEntry, msdpTxFrameSize=msdpTxFrameSize, isiNetRouteProblem=isiNetRouteProblem, iliTimeStampIndex=iliTimeStampIndex, ssp1LateCollisions=ssp1LateCollisions, ssBaseEntry=ssBaseEntry, ssiSrcQuench=ssiSrcQuench, sliDestNetUnknown=sliDestNetUnknown, ipliDestNetUnknown=ipliDestNetUnknown, mlpRouting=mlpRouting, ssdTimeStampIndex=ssdTimeStampIndex, msiHostTosUnreachable=msiHostTosUnreachable, ctLockMethod=ctLockMethod, ipliRouteChange=ipliRouteChange, ssbFrameSize=ssbFrameSize, ssIcmpTable=ssIcmpTable, mlBaseTable=mlBaseTable, ssDerivedEntry=ssDerivedEntry, mpsduRxUtilization=mpsduRxUtilization, plbHardwareErrors=plbHardwareErrors, mpsDerivedTable=mpsDerivedTable, mlbBytes=mlbBytes, ssbBytes=ssbBytes, isBaseTable=isBaseTable, mpspTimeStamp=mpspTimeStamp, macPeerLongTerm=macPeerLongTerm, sliProtocolUnreachable=sliProtocolUnreachable, msiTtlExceeded=msiTtlExceeded, ipsiNetRouteProblem=ipsiNetRouteProblem, ipsiMaintenance=ipsiMaintenance, ipliSrcQuench=ipliSrcQuench, ipliNetTosUnreachable=ipliNetTosUnreachable, nsUtilization=nsUtilization, vlanShortTermEntry=vlanShortTermEntry, mliTimestamp=mliTimestamp, codimaExpressConformance=codimaExpressConformance, vlanShortTermGroup=vlanShortTermGroup, netChanShortTermEntry=netChanShortTermEntry, ildTimeStamp=ildTimeStamp, mlDerivedEntry=mlDerivedEntry, mlbMacIndex=mlbMacIndex, msdpRxFrames=msdpRxFrames, ipLongTerm=ipLongTerm, mlDuplexTable=mlDuplexTable, msDerivedGroup=msDerivedGroup, mspIpControl=mspIpControl, mliRedirect=mliRedirect, dbNetChannelGroups=dbNetChannelGroups, mlpTimeStampIndex=mlpTimeStampIndex, iplbFrameSize=iplbFrameSize, mplpApplications=mplpApplications, mseCollisions=mseCollisions, mseLateCollisions=mseLateCollisions, mspMail=mspMail, ipliTimeStamp=ipliTimeStamp, ipliNetProhibited=ipliNetProhibited, dbNetChannel=dbNetChannel, ilbHardwareErrors=ilbHardwareErrors, sliHostProhibited=sliHostProhibited, mlpNovell=mlpNovell, slBroadcastEntry=slBroadcastEntry, ipsiRouteChange=ipsiRouteChange, mpsdUtilization=mpsdUtilization, ssbTimeStamp=ssbTimeStamp, ssBaseGroup=ssBaseGroup, mldTimeStamp=mldTimeStamp, mlduTimeStampIndex=mlduTimeStampIndex, isiIpIndex=isiIpIndex, ssdUtilization=ssdUtilization, isbFrameSize=isbFrameSize, ipsiRedirect=ipsiRedirect, ssiHostProhibited=ssiHostProhibited, msdpTxUtilization=msdpTxUtilization, ipsiHostTosUnreachable=ipsiHostTosUnreachable, msiTimestamp=msiTimestamp, mplDuplexGroup=mplDuplexGroup, protocolShortTermGroups=protocolShortTermGroups, mplDerivedGroup=mplDerivedGroup, msbHardwareErrors=msbHardwareErrors, mspApplications=mspApplications)
mibBuilder.exportSymbols("CODIMA-EXPRESS-MIB", mplbSoftwareErrors=mplbSoftwareErrors, mspTimeStamp=mspTimeStamp, plbTimeStamp=plbTimeStamp, mldTimeStampIndex=mldTimeStampIndex, macPeerLongTermGroups=macPeerLongTermGroups, sseRunts=sseRunts, slbcBytes=slbcBytes, isdTimeStampIndex=isdTimeStampIndex, ssiNetRouteProblem=ssiNetRouteProblem, dbVlanGroups=dbVlanGroups, mlbFrameSize=mlbFrameSize, mpspIp=mpspIp, mlBaseEntry=mlBaseEntry, ssp2SoftErrors=ssp2SoftErrors, mleRunts=mleRunts, msBaseEntry=msBaseEntry, ipliIp1Index=ipliIp1Index, ildUtilization=ildUtilization, ipsiHostRouteProblem=ipsiHostRouteProblem, msiTimeStamp=msiTimeStamp, isbIpIndex=isbIpIndex, msiSrcQuench=msiSrcQuench, iliSrcRouteFail=iliSrcRouteFail, nsFrames=nsFrames, isBaseEntry=isBaseEntry, mlIcmpEntry=mlIcmpEntry, ipsbIp1Index=ipsbIp1Index, ipliHostRouteProblem=ipliHostRouteProblem, mspLayer3Traffic=mspLayer3Traffic, iliHostUnreachable=iliHostUnreachable, psbTimeStampIndex=psbTimeStampIndex, ssp2Collisions=ssp2Collisions, vlanLongTermTable=vlanLongTermTable, msbSoftwareErrors=msbSoftwareErrors, isiPerformance=isiPerformance, msiDestNetUnknown=msiDestNetUnknown, isiTimeStampIndex=isiTimeStampIndex, vlFrameSize=vlFrameSize, mlProtocolTable=mlProtocolTable, mplbHardwareErrors=mplbHardwareErrors, isiSrcRouteFail=isiSrcRouteFail, slbActiveNodes=slbActiveNodes, vsFrames=vsFrames, mseRunts=mseRunts, slEthernetEntry=slEthernetEntry, isbSoftwareErrors=isbSoftwareErrors, sliFragTimeout=sliFragTimeout, mplbMac1Index=mplbMac1Index, ipsdTimeStampIndex=ipsdTimeStampIndex, ssIcmpGroup=ssIcmpGroup, ilBaseEntry=ilBaseEntry, ssiPing=ssiPing, mpsbSoftwareErrors=mpsbSoftwareErrors, iliFragRequired=iliFragRequired, ssiProtocolUnreachable=ssiProtocolUnreachable, vsSoftErrors=vsSoftErrors, isbFrames=isbFrames, ssbActiveNodes=ssbActiveNodes, ipliSrcRouteFail=ipliSrcRouteFail, msiSrcHostIsolated=msiSrcHostIsolated, ssBroadcastGroup=ssBroadcastGroup, ssiPerformance=ssiPerformance, ssiHostRouteProblem=ssiHostRouteProblem, mspNovell=mspNovell, mpldErrorFrames=mpldErrorFrames, iplbTimeStamp=iplbTimeStamp, mspIcmp=mspIcmp, mlpSnmp=mlpSnmp, slp1Jabbers=slp1Jabbers, segShortTermGroups=segShortTermGroups, msdpTimeStampIndex=msdpTimeStampIndex, mpldTimeStamp=mpldTimeStamp, vsUtilization=vsUtilization, iplbBytes=iplbBytes, sliRedirect=sliRedirect, alarmFunction=alarmFunction, ipsiTtlExceeded=ipsiTtlExceeded, mplbTimeStamp=mplbTimeStamp, mplduRxFrames=mplduRxFrames, mpsduTxBytes=mpsduTxBytes, isBaseGroup=isBaseGroup, slp1LineSpeed=slp1LineSpeed, msdTimeStampIndex=msdTimeStampIndex, iliTimestamp=iliTimestamp, ipliIp2Index=ipliIp2Index, sldErrorFrames=sldErrorFrames, mpspLayer3Traffic=mpspLayer3Traffic, mlduMacIndex=mlduMacIndex, nlHardErrors=nlHardErrors, alarmTopProtocol=alarmTopProtocol, plBaseGroup=plBaseGroup, mliTimeStampIndex=mliTimeStampIndex, ipliPerformance=ipliPerformance, ssiFragRequired=ssiFragRequired, ipliDestHostUnknown=ipliDestHostUnknown, psBaseGroup=psBaseGroup, slBroadcastGroup=slBroadcastGroup, dbSegment=dbSegment, mplpIpControl=mplpIpControl, msDuplexTable=msDuplexTable, vsTimeStamp=vsTimeStamp, macShortTermGroups=macShortTermGroups, sleTimeStampIndex=sleTimeStampIndex, ssiTimeStampIndex=ssiTimeStampIndex, mpsbFrames=mpsbFrames, slbcFrames=slbcFrames, ipsiHostProhibited=ipsiHostProhibited, mplduTimeStampIndex=mplduTimeStampIndex, mplbTimeStampIndex=mplbTimeStampIndex, mspIso=mspIso, ilIcmpGroup=ilIcmpGroup, iliHostTosUnreachable=iliHostTosUnreachable, nlNameIndex=nlNameIndex, ssiSrcHostIsolated=ssiSrcHostIsolated, sliNetUnreachable=sliNetUnreachable, ipsiTimeStamp=ipsiTimeStamp, isiFragTimeout=isiFragTimeout, iliMaintenance=iliMaintenance, mplduTxUtilization=mplduTxUtilization, ipldErrorFrames=ipldErrorFrames, iplBaseGroup=iplBaseGroup, mpspWww=mpspWww, ilbBytes=ilbBytes, ssbFrames=ssbFrames, msiHostUnreachable=msiHostUnreachable, nsFrameSize=nsFrameSize, vsIdIndex=vsIdIndex, vsTimeStampIndex=vsTimeStampIndex, mplduRxFrameSize=mplduRxFrameSize, expressAlarm=expressAlarm, ipsiPing=ipsiPing, ipsiNetUnreachable=ipsiNetUnreachable, isiNetUnreachable=isiNetUnreachable, mliNetTosUnreachable=mliNetTosUnreachable, vlHardErrorsPercent=vlHardErrorsPercent, mpspMac2Index=mpspMac2Index, vlIdIndex=vlIdIndex, mplpIpData=mplpIpData, slEthernetTable=slEthernetTable, ssEthernetGroup=ssEthernetGroup, slp1Bytes=slp1Bytes, msbTimeStampIndex=msbTimeStampIndex, nsTimeStamp=nsTimeStamp, mpsbMac2Index=mpsbMac2Index, isiDestNetUnknown=isiDestNetUnknown, nsHardErrorsPercent=nsHardErrorsPercent, isiTimeStamp=isiTimeStamp, alarmUnitType=alarmUnitType, ssEthernetEntry=ssEthernetEntry, msiMaintenance=msiMaintenance, iliRouteChange=iliRouteChange, isiRedirect=isiRedirect, nlTimeStampIndex=nlTimeStampIndex, plbLayerIndex=plbLayerIndex, msiMacIndex=msiMacIndex, ssbHardwareErrors=ssbHardwareErrors, ssp1Collisions=ssp1Collisions, ipsiFragTimeout=ipsiFragTimeout, mlduRxUtilization=mlduRxUtilization, isiSrcQuench=isiSrcQuench, slp1Frames=slp1Frames, mleTimeStampIndex=mleTimeStampIndex, psbSoftwareErrors=psbSoftwareErrors, msdpRxFrameSize=msdpRxFrameSize, mspTimeStampIndex=mspTimeStampIndex, ssEthernetTable=ssEthernetTable, PYSNMP_MODULE_ID=codimaExpressMIB, mlduRxFrames=mlduRxFrames, iliFragTimeout=iliFragTimeout, isIcmpEntry=isIcmpEntry, ipsiIp2Index=ipsiIp2Index, protocolShortTerm=protocolShortTerm, sspTimeStamp=sspTimeStamp, mpsProtocolGroup=mpsProtocolGroup, mpsduMac2Index=mpsduMac2Index, ssbcTimeStampIndex=ssbcTimeStampIndex, msDerivedEntry=msDerivedEntry, slBaseEntry=slBaseEntry, sliSrcQuench=sliSrcQuench, mliTtlExceeded=mliTtlExceeded, mspWww=mspWww, mlpLayer3Traffic=mlpLayer3Traffic, iliNetProhibited=iliNetProhibited, psbLayerIndex=psbLayerIndex, ipsbHardwareErrors=ipsbHardwareErrors, psbFrameSize=psbFrameSize, msiProtocolUnreachable=msiProtocolUnreachable, msiErrors=msiErrors, isbHardwareErrors=isbHardwareErrors, mpsduRxBytes=mpsduRxBytes, mliSrcRouteFail=mliSrcRouteFail, ssiFragTimeout=ssiFragTimeout, ipsIcmpGroup=ipsIcmpGroup, mplpIcmp=mplpIcmp, ilbTimeStampIndex=ilbTimeStampIndex, sliNetRouteProblem=sliNetRouteProblem, vlSoftErrors=vlSoftErrors, isiFragRequired=isiFragRequired, ipliFragTimeout=ipliFragTimeout, slbcTimeStampIndex=slbcTimeStampIndex, ssiDestHostUnknown=ssiDestHostUnknown, mplduMac1Index=mplduMac1Index, ssdErrorFrames=ssdErrorFrames, mlProtocolEntry=mlProtocolEntry, iliPerformance=iliPerformance, isiParamProblem=isiParamProblem, sliPing=sliPing, mpsDerivedEntry=mpsDerivedEntry, dbIPv4Peer=dbIPv4Peer, sliParamProblem=sliParamProblem, mplpRouting=mplpRouting, mplpLayer3Traffic=mplpLayer3Traffic, ssBaseTable=ssBaseTable, nlSoftErrorsPercent=nlSoftErrorsPercent, mlpIcmp=mlpIcmp, mpsbMac1Index=mpsbMac1Index, iliSrcQuench=iliSrcQuench, iliNetRouteProblem=iliNetRouteProblem, iliHostRouteProblem=iliHostRouteProblem, mplDerivedTable=mplDerivedTable, mpsduTxUtilization=mpsduTxUtilization, ipsiDestHostUnknown=ipsiDestHostUnknown, dbIPv4Groups=dbIPv4Groups, plbFrameSize=plbFrameSize, iplIcmpEntry=iplIcmpEntry, mpsduMac1Index=mpsduMac1Index, vlName=vlName, mpsdMac1Index=mpsdMac1Index, macPeerShortTerm=macPeerShortTerm, mpsDerivedGroup=mpsDerivedGroup, vlFrames=vlFrames, mliErrors=mliErrors, psDerivedEntry=psDerivedEntry, slp1FrameSize=slp1FrameSize, iliTtlExceeded=iliTtlExceeded, msbBytes=msbBytes, mliHostProhibited=mliHostProhibited, mlpNetbios=mlpNetbios, ilIcmpEntry=ilIcmpEntry, slBroadcastTable=slBroadcastTable, ssiTimestamp=ssiTimestamp, isiProtocolUnreachable=isiProtocolUnreachable, plbIdIndex=plbIdIndex, ssp2Utilization=ssp2Utilization, nsSoftErrorsPercent=nsSoftErrorsPercent, slbSoftwareErrors=slbSoftwareErrors, ipsiIp1Index=ipsiIp1Index, isiPing=isiPing, mlpIpData=mlpIpData, ipPeerShortTermGroups=ipPeerShortTermGroups, expAlarms=expAlarms, vlTimeStamp=vlTimeStamp, ipsiNetTosUnreachable=ipsiNetTosUnreachable, isiNetProhibited=isiNetProhibited)
mibBuilder.exportSymbols("CODIMA-EXPRESS-MIB", mplpDns=mplpDns, macLongTermGroups=macLongTermGroups, ssp2Frames=ssp2Frames, sliFragRequired=sliFragRequired, slp1TimeStamp=slp1TimeStamp, slbTimeStampIndex=slbTimeStampIndex, mpsduTimeStampIndex=mpsduTimeStampIndex, ssiAppRouteProblem=ssiAppRouteProblem, ssbcTimeStamp=ssbcTimeStamp, mliSrcQuench=mliSrcQuench, sseTimeStampIndex=sseTimeStampIndex, nlFrameSize=nlFrameSize, msIcmpTable=msIcmpTable, ipldTimeStampIndex=ipldTimeStampIndex, ipsiPortUnreachable=ipsiPortUnreachable, mpsbBytes=mpsbBytes, mlpIp=mlpIp, mplpVoip=mplpVoip, ipsdIp2Index=ipsdIp2Index, vlFramesPercent=vlFramesPercent, iliRedirect=iliRedirect, mpsbHardwareErrors=mpsbHardwareErrors, slp1LateCollisions=slp1LateCollisions, mspIpData=mspIpData, ipsDerivedTable=ipsDerivedTable, alarmNotifyGroup=alarmNotifyGroup, ssbcBytesPercent=ssbcBytesPercent, ssdTimeStamp=ssdTimeStamp, sliGrpErrors=sliGrpErrors, mliNetProhibited=mliNetProhibited, ctrlTimeEntry=ctrlTimeEntry, nsBytes=nsBytes, dpIPv4PeerGroups=dpIPv4PeerGroups, msdpRxBytes=msdpRxBytes, msiNetRouteProblem=msiNetRouteProblem, slPortGroup=slPortGroup, plBaseEntry=plBaseEntry, slbcPercentFrames=slbcPercentFrames, msBaseTable=msBaseTable, ipliNetRouteProblem=ipliNetRouteProblem, mlduTxFrameSize=mlduTxFrameSize, iliNetUnreachable=iliNetUnreachable, netChannelShortTermGroup=netChannelShortTermGroup, mpsProtocolTable=mpsProtocolTable, ssiPortUnreachable=ssiPortUnreachable, ipPeerLongTerm=ipPeerLongTerm, isiTtlExceeded=isiTtlExceeded, plbTimeStampIndex=plbTimeStampIndex, iliProtocolUnreachable=iliProtocolUnreachable, sliPortUnreachable=sliPortUnreachable, mpspMail=mpspMail, iplbFrames=iplbFrames, ipliHostTosUnreachable=ipliHostTosUnreachable, sleCrc=sleCrc, msiPerformance=msiPerformance, sliMaintenance=sliMaintenance, sseJabbers=sseJabbers, ipliProtocolUnreachable=ipliProtocolUnreachable, ssiErrors=ssiErrors, slp1SoftErrors=slp1SoftErrors, vlanShortTermTable=vlanShortTermTable, nsNameIndex=nsNameIndex, ssp2Runts=ssp2Runts, vsBytes=vsBytes, mleLateCollisions=mleLateCollisions, nlBytesPercent=nlBytesPercent, sleCollisions=sleCollisions, psdIdIndex=psdIdIndex, mleCrc=mleCrc, pldProtocolName=pldProtocolName, ipsdErrorFrames=ipsdErrorFrames, pldUtilization=pldUtilization, ssp1LineSpeed=ssp1LineSpeed, msdpTxBytes=msdpTxBytes, mpsduTimeStamp=mpsduTimeStamp, psbIdIndex=psbIdIndex, alarmClass=alarmClass, ipPeerShortTerm=ipPeerShortTerm, slPortTable=slPortTable, mldErrorFrames=mldErrorFrames, vsHardErrors=vsHardErrors, alarmGroup=alarmGroup, isiPortUnreachable=isiPortUnreachable, mseTimeStampIndex=mseTimeStampIndex, nsTimeStampIndex=nsTimeStampIndex, nsSoftErrors=nsSoftErrors, slDerivedEntry=slDerivedEntry, ssp2LateCollisions=ssp2LateCollisions, slp1LineNoise=slp1LineNoise, mliDestHostUnknown=mliDestHostUnknown, ilbIpIndex=ilbIpIndex, mlpIpControl=mlpIpControl, iliTimeStamp=iliTimeStamp, mseMacIndex=mseMacIndex, mplpIp=mplpIp, msiNetTosUnreachable=msiNetTosUnreachable, ssp1Crc=ssp1Crc, sseLateCollisions=sseLateCollisions, mlpMacIndex=mlpMacIndex, mlpIso=mlpIso, alarmLayer=alarmLayer, mplpNovell=mplpNovell, mpsDuplexGroup=mpsDuplexGroup, mplbBytes=mplbBytes, ipliErrors=ipliErrors, psDerivedGroup=psDerivedGroup, ilDerivedEntry=ilDerivedEntry, mplpMac1Index=mplpMac1Index, msiNetProhibited=msiNetProhibited, mplBaseTable=mplBaseTable, isDerivedTable=isDerivedTable, mliRouteChange=mliRouteChange, ctLockRealTime=ctLockRealTime, macShortTerm=macShortTerm, psdTimeStampIndex=psdTimeStampIndex, mpspRouting=mpspRouting, pldErrorFrames=pldErrorFrames, nsBytesPercent=nsBytesPercent, ipsbFrames=ipsbFrames, ctSampleType=ctSampleType, iliHostProhibited=iliHostProhibited, ipliPing=ipliPing, ipsdIp1Index=ipsdIp1Index, mpsdTimeStampIndex=mpsdTimeStampIndex, slPortEntry=slPortEntry, mplduTxBytes=mplduTxBytes, mlDuplexEntry=mlDuplexEntry, ssiNetUnreachable=ssiNetUnreachable, mlduTxFrames=mlduTxFrames, mliPortUnreachable=mliPortUnreachable, plbProtocolName=plbProtocolName, isiSrcHostIsolated=isiSrcHostIsolated, ssiSrcRouteFail=ssiSrcRouteFail, mlduTxBytes=mlduTxBytes, ipsiErrors=ipsiErrors, mpsBaseEntry=mpsBaseEntry, ssIcmpEntry=ssIcmpEntry, mpspApplications=mpspApplications, mpspSnmp=mpspSnmp, mlduTxUtilization=mlduTxUtilization, ipsbTimeStamp=ipsbTimeStamp, mlpVoip=mlpVoip, expHistoryDatabases=expHistoryDatabases, mpldUtilization=mpldUtilization, msIcmpGroup=msIcmpGroup, ssbTimeStampIndex=ssbTimeStampIndex, mplduTxFrames=mplduTxFrames, sseTimeStamp=sseTimeStamp, msProtocolGroup=msProtocolGroup, ipsiSrcQuench=ipsiSrcQuench, segLongTermGroups=segLongTermGroups, sliSrcHostIsolated=sliSrcHostIsolated)
|
class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
if not arr or len(arr) < 3:
return
start, end = 0, len(arr) - 1
while start + 1 < end:
mid = (start + end) // 2
if arr[mid] > arr[mid - 1]:
start = mid
else:
end = mid
if arr[start] > arr[start + 1] and arr[start] > arr[start - 1]:
return start
else:
return end
|
#!/usr/bin/env qork
img = "player.png"
camera.mode = "3D"
camera.z = 1
p = add(img)
level = add("map.png", scale=25, pos=-Z * 10)
nodes = [None] * 4
nodes[0] = p.add(img, scale=0.25, pos=(-0.5, 0.5, 0.1))
nodes[1] = p.add(img, scale=0.25, pos=(0.5, -0.5, 0.1))
nodes[2] = p.add(img, scale=0.25, pos=(-0.5, -0.5, 0.1))
nodes[3] = p.add(img, scale=0.25, pos=(0.5, 0.5, 0.1))
t = 0
def update(dt):
global t
t += dt
camera.pos = (0, 0, 2 + 0.5 * sint(t) + 1)
p.rotate(dt * 0.1)
for i, n in enumerate(nodes):
n.z = 1 + 0.5 * sint(t)
n.rotate(dt * i * 0.1)
n.rotate(dt, X)
camera.reset_orientation()
camera.rotate(0.01 * sint(t / 2), Y)
|
"""
Comprehensions - constructs that allow sequences to be built
from other sequences
Three types -
List Comprehensions
Dictionary Comprehensions
Set Comprehensions
"""
# List Comprehensions
# variable = [out_exp for out_exp in input_list if out_exp == 2]
multiples = [i for i in range(30) if i % 3 is 0]
print(multiples) #[0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
squared = [x**2 for x in range(10)]
# Dict Comprehensions
mcase = {'a': 10, 'b': 34, 'A': 7, 'Z': 3, 'z': 5}
mcase_freq = {
k.lower(): mcase.get(k.lower(), 0) + mcase.get(k.upper(), 0)
for k in mcase.keys()
}
print(mcase_freq)
# mcase_freq == {'a': 17, 'z': 8, 'b': 34}
# Set Comprehensions
squared = {x**2 for x in [1, 1, 2]}
print(squared) # {1, 4} |
#!/usr/bin/python
table_cols = 9
table_rows = 9
list_size = 9
with open("vimwiki.snippets", "w") as file:
# generate tables
for i in range(1, table_cols+1):
for j in range(1, table_rows+1):
file.write("snippet table{}x{} \"table{}x{}\" A\n".format(i, j, i, j))
for k in range(0, i):
file.write("|")
for l in range(0, j):
if k == 0 and l == 0:
file.write(" ${0} |")
else:
file.write(" |")
file.write("\n")
file.write("endsnippet\n\n")
# generate lists
for i in range(1, list_size+1):
file.write("snippet list{} \"list{}\" A\n".format(i, i))
for k in range(0, i):
if k == i-1:
file.write(" * ${{{}}}".format(0))
else:
file.write(" * ${{{}}}".format(k+1))
file.write("\n")
file.write("endsnippet\n\n")
# generate numbered lists
for i in range(1, list_size+1):
file.write("snippet numlist{} \"numlist{}\" A\n".format(i, i))
for k in range(0, i):
if k == i-1:
file.write(" {}. ${{{}}}".format(k+1, 0))
else:
file.write(" {}. ${{{}}}".format(k+1, k+1))
file.write("\n")
file.write("endsnippet\n\n")
# generate checklists
for i in range(1, list_size+1):
file.write("snippet check{} \"checklist{}\" A\n".format(i, i))
for k in range(0, i):
if k == i-1:
file.write(" * [ ] ${{{}}}".format(0))
else:
file.write(" * [ ] ${{{}}}".format(k+1))
file.write("\n")
file.write("endsnippet\n\n")
|
# -*- coding: utf-8 -*-
def main():
h, w = map(int, input().split())
grids = [list(input()) for _ in range(h)]
up = [[1 for __ in range(w)] for _ in range(h)]
down = [[1 for __ in range(w)] for _ in range(h)]
left = [[1 for __ in range(w)] for _ in range(h)]
right = [[1 for __ in range(w)] for _ in range(h)]
ans = 0
for i in range(h - 1, -1, -1):
for j in range(w):
if (grids[i][j] == '.') and (i < h - 1):
up[i][j] = up[i + 1][j] + 1
elif grids[i][j] == '#':
up[i][j] = 0
for i in range(h):
for j in range(w):
if (grids[i][j] == '.') and (i > 0):
down[i][j] = down[i - 1][j] + 1
elif grids[i][j] == '#':
down[i][j] = 0
for i in range(h):
for j in range(w - 1, -1, -1):
if (grids[i][j] == '.') and (j < w - 1):
left[i][j] = left[i][j + 1] + 1
elif grids[i][j] == '#':
left[i][j] = 0
for i in range(h):
for j in range(w):
if (grids[i][j] == '.') and (j > 0):
right[i][j] = right[i][j - 1] + 1
elif grids[i][j] == '#':
right[i][j] = 0
for i in range(h):
for j in range(w):
ans = max(ans, (up[i][j] + down[i][j] - 1) + (left[i][j] + right[i][j] - 1) - 1)
print(ans)
if __name__ == '__main__':
main()
|
def solution(nums):
setNums = set(nums)
if len(setNums) > (len(nums) // 2): return len(nums) // 2
return len(setNums)
# print(solution([3,1,2,3]))
# print(solution([3,3,3,2,2,4]))
print(solution([3, 3, 3, 2, 2, 2]))
|
def test1():
for i in range(2):
print('+' + str(i))
yield str(i)
for a in test1():
print("-" + a)
for a in list(test1()):
print('-' + a) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.