content stringlengths 7 1.05M | fixed_cases stringlengths 1 1.28M |
|---|---|
'''
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
]
| """
test cases and facts for unit tests
"""
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] |
# 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',
],
},
],
}],
],
}
| {'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': ['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)) | class Solution:
def fraction_to_decimal(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__'
)
| 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"]
| """
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
""" |
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) | 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:
if len(line) <= 1:
continue
line_list = line.split(',')
doc = {}
doc['Suburb'] = lineList[0].strip()
doc['cases'] = float(lineList[1].strip())
school_list.append(doc)
hospital_Json['doc'] = school_list
print(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'
| """
constants used throughout the application/
"""
esc_key = 27
char_q = ord('q')
exit_keys = [ESC_KEY, CHAR_Q]
refresh_interval = 1.5
'\nDescribes the way screen should be divides. There\nmay be a better way to do this, but this works fine\nfor the current application since all boxes are uniform.\n\n{\n NUM_APPLICATIONS: [WIDTH_FACTOR, HEIGHT_FACTOR],\n ..\n}\n\nNUM_APPLICATIONS: number of applications\nWIDTH_FACTOR: Parts in which width will be divided\nHEIGHT_FACTOR: Parts in which height will be divided.\n\nThis assumes that most of the users are using landscape mode in\ntheir screens.\n\nTODO: autogenerate this thing.\n'
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]}
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:
"""
| documentation = "\n---\nmodule: sda_host_onboarding_access_point\nshort_description: Manage SdaHostOnboardingAccessPoint objects of Sda\ndescription:\n- Delete Port assignment for access point in SDA Fabric.\n- Get Port assignment for access point in SDA Fabric.\n- Add Port assignment for access point in SDA Fabric.\nversion_added: '1.0.0'\nauthor: Rafael Campos (@racampos)\noptions:\n device_ip:\n description:\n - Device-ip query parameter.\n type: str\n required: True\n interface_name:\n description:\n - InterfaceName query parameter.\n type: str\n required: True\n payload:\n description:\n - An object to send in the Request body.\n - Required for state create.\n type: list\n elements: dict\n suboptions:\n siteNameHierarchy:\n description:\n - It is the sda host onboarding access point's siteNameHierarchy.\n type: str\n deviceManagementIpAddress:\n description:\n - It is the sda host onboarding access point's deviceManagementIpAddress.\n type: str\n interfaceName:\n description:\n - It is the sda host onboarding access point's interfaceName.\n type: str\n dataIpAddressPoolName:\n description:\n - It is the sda host onboarding access point's dataIpAddressPoolName.\n type: str\n voiceIpAddressPoolName:\n description:\n - It is the sda host onboarding access point's voiceIpAddressPoolName.\n type: str\n authenticateTemplateName:\n description:\n - It is the sda host onboarding access point's authenticateTemplateName.\n type: str\n\n\nrequirements:\n- dnacentersdk\nseealso:\n# Reference by module name\n- module: cisco.dnac.plugins.module_utils.definitions.sda_host_onboarding_access_point\n# Reference by Internet resource\n- name: SdaHostOnboardingAccessPoint reference\n description: Complete reference of the SdaHostOnboardingAccessPoint object model.\n link: https://developer.cisco.com/docs/dna-center/api/1-3-3-x\n# Reference by Internet resource\n- name: SdaHostOnboardingAccessPoint reference\n description: SDK reference.\n link: https://dnacentersdk.readthedocs.io/en/latest/api/api.html#v2-1-1-summary\n"
examples = '\n- name: delete_port_assignment_for_access_point\n cisco.dnac.sda_host_onboarding_access_point:\n state: delete # required\n device_ip: SomeValue # string, required\n interface_name: SomeValue # string, required\n\n- name: get_port_assignment_for_access_point\n cisco.dnac.sda_host_onboarding_access_point:\n state: query # required\n device_ip: SomeValue # string, required\n interface_name: SomeValue # string, required\n register: nm_get_port_assignment_for_access_point\n\n- name: add_port_assignment_for_access_point\n cisco.dnac.sda_host_onboarding_access_point:\n state: create # required\n payload: # required\n - siteNameHierarchy: SomeValue # string\n deviceManagementIpAddress: SomeValue # string\n interfaceName: SomeValue # string\n dataIpAddressPoolName: SomeValue # string\n voiceIpAddressPoolName: SomeValue # string\n authenticateTemplateName: SomeValue # string\n\n'
return = '\ndnac_response:\n description: A dictionary with the response returned by the DNA Center Python SDK\n returned: always\n type: dict\n sample: {"response": 29, "version": "1.0"}\nsdk_function:\n description: The DNA Center SDK function used to execute the task\n returned: always\n type: str\n sample: sda.add_port_assignment_for_access_point\nmissing_params:\n description: Provided arguments do not comply with the schema of the DNA Center Python SDK function\n returned: when the function request schema is not satisfied\n type: list\n sample:\n' |
num = int(input())
def f(n):
if n <= 0:
return 0
return f(n-1) + n
print(f(num))
| 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']}""")
| 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])
if name not in all_heroes:
all_heroes[name] = {}
all_heroes[name]['hit points'] = hp
all_heroes[name]['mana points'] = mp
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()
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}\n HP: {sorted_all_heroes[name]['hit points']}\n 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',
]
| 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
| class Aidasim:
def __init__(self):
self.ke = 5.4
self.k1 = 0.025
self.k2 = 1.25
self.Ibasal = 10
self.Km = 10
self.GI = 0.54
self.GX = 5.3
self.c = 0.015
self.kgabs = 1
self.Vmaxge = 120
self.VI = 0.142
self.Vg = 0.22
self.a = 0
self.b = 0
self.s = 0
self.D = 0
self.t = 0
self.time = 0
self.I = 0
self.Ia = 0
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_d_t(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)
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 | class Solution:
stack1 = []
stack2 = []
def push(self, node):
self.stack1.append(node)
def pop(self):
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")
| 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 | class Solution(object):
def lexical_order(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.
""" | """ 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() | """
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()
| def display_permuation(s):
return display_permuation_helper('', s)
def display_permuation_helper(s1, s2):
if len(s2) == 0:
print(s1)
for i in range(len(s2)):
display_permuation_helper(s1 + s2[i], s2[0:i] + s2[i + 1:])
def main():
str = input('Please enter a string: ').replace(' ', '')
display_permuation(str)
if __name__ == '__main__':
main() |
"""
Settings for app
"""
READONLY_MODEL = {
'NAME': 'readonly_model',
'META_ATTR': 'read_only_model',
'DATABASE_ROUTER': 'readonly_model.dbrouters.ReadOnlyModelRouter'
}
| """
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)
| 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 Solution:
def four_sum(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()
| 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):
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:
if not self.wnd.lineup():
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):
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:
if not self.wnd.linedown():
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):
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:
continue
if cg[0] == 'Z':
continue
nextpos = f
break
return self.adjust_nextpos(pos, nextpos)
def word_left_pos(self, pos):
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):
if pos <= f:
break
if cg[0] == 'Z':
continue
prevpos = f
return self.adjust_nextpos(pos, prevpos)
def right(self, word=False):
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
if self.pos == self.wnd.document.endpos():
return
if not word:
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:
while not self.wnd.screen.is_visible(nextpos):
if not self.wnd.linedown():
break
self.setpos(nextpos)
self.savecol()
def left(self, word=False):
self.wnd.screen.locate(self.pos, middle=True, align_always=False)
if self.pos == 0:
return
if not word:
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:
while not self.wnd.screen.is_visible(prevpos):
if not self.wnd.lineup():
break
self.setpos(prevpos)
self.savecol()
def pagedown(self):
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):
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):
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):
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)) | """
Created on Fri Jan 5 17:15:00 2018
@author: User
"""
test_list = [1, -2, 3, 6, -3, -1, 6, -5]
def max_list(lst, start, end):
(max_left, max_right) = (0, 0)
(left_sum, right_sum) = (0, 0)
middle = (start + end) // 2
if start == end:
return max(lst[start], 0)
max_leftlist = max_list(lst, start, middle)
max_rightlist = max_list(lst, middle + 1, end)
for i in range(middle, start - 1, -1):
left_sum = leftSum + lst[i]
if leftSum > maxLeft:
max_left = leftSum
for i in range(middle + 1, end + 1):
right_sum = rightSum + lst[i]
if rightSum > maxRight:
max_right = rightSum
return max(maxLeft + maxRight, maxLeftlist, maxRightlist)
print(max_list(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
| 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
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]]
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.00885081384330988, 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.00957274530082941, 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.00975815486162901, 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.0084636639803648, 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.00925286766141653, 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.000933515781071037, -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])}))
def calc_hash(a, b):
max_int = 18446744073709551615
magic_mult = 5262098038554676069
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)
elif 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), 2147483647)
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
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.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
result = 0.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 |
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()) | 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))
| """
"""
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
| 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'
]
| """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] | 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') | day = ['saturday', 'sunday', 'monday', 'tuesday', 'wednesday', 'thursday', 'friday']
for _ in range(int(input())):
a = [x for x in input().split()]
(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
else:
gap = 7 - (c - d - 1)
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"},
} | desc = 'Animate Weapon target'
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
| class Solution:
def buildtree(self, preorder, inorder):
if inorder:
root_index = inorder.index(preorder.pop(0))
root = tree_node(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
| __all__ = ['b_flow']
def b_flow(a_vertices):
b = []
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))
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 |
"""
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))
| """
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)) | 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.1
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()) | n = int(input())
while n != 0:
jogadas = list(map(int, input().split()))
cont_mary = cont_jonh = 0
for i in range(len(jogadas)):
if jogadas[i] == 0:
cont_mary = contMary + 1
else:
cont_jonh = 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 | def lowest_common_ancestor(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 Ordenation:
def selection_sort(self, lista):
fim = len(lista)
for i in range(fim - 1):
posicao_do_menor = i
for j in range(i + 1, fim):
if lista[j] < lista[posicao_do_menor]:
posicao_do_menor = j
(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
| 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 |
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 | def minimum_movement(obstacleLanes):
pass
minimum_movement([2, 3, 2, 1, 3, 1])
minimum_movement([2, 1, 3, 3, 3, 1])
minimum_movement([3, 2, 2, 1, 2, 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())
| class Mylist(list):
def append(self, *args):
self.extend(args)
m = my_list()
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()\nprint(l)'
lista = my_list1()
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))
| """
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 nearest_fib(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
elif n - prev < fib - n:
return (False, prev)
else:
return (False, fib)
print(nearest_fib(1)) |
n1 = input('Digite algo:')
print('isnumeric:', n1.isnumeric())
print('isalpha:', n1.isalpha())
print('islower:', n1.islower())
print('isalnum:', n1.isalnum())
| 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)
| rgb_colour(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
| 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):
score += 4
return score if score > 0 else 1 |
#: 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
| global_upper_case = 0
mixed_case = 0
mixed__case = 0
_c = 0
__d = 0
__m_c = 0
__m_c__ = 0
__c6__ = 0
c6 = 0
c_6 = 0.0
mixed_case = 0 |
def sumOfNumbers(n):
if n <= 1:
return n
else:
return n + sumOfNumbers(n-1)
print(sumOfNumbers(10)) | def sum_of_numbers(n):
if n <= 1:
return n
else:
return n + sum_of_numbers(n - 1)
print(sum_of_numbers(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)
| width = 32
height = 32
first = 32
last = 127
_font = b'\x00JZ\x0eMWRFQHRTSHRF RRHRN RRYQZR[SZRY\x15I[NFMGMM RNGMM RNFOGMM RWFVGVM RWGVM RWFXGVM\x0bH]SBLb RYBRb RLOZO RKUYU)H\\PBP_ RTBT_ RXIWJXKYJYIWGTFPFMGKIKKLMMNOOUQWRYT RKKMMONUPWQXRYTYXWZT[P[MZKXKWLVMWLX\x1fF^[FI[ RNFPHPJOLMMKMIKIIJGLFNFPGSHVHYG[F RWTUUTWTYV[X[ZZ[X[VYTWT0F_[NZO[P\\O\\N[MZMYNXPVUTXRZP[M[JZIXIUJSPORMSKSIRGPFNGMIMKNNPQUXWZZ[[[\\Z\\Y RM[KZJXJUKSMQ RMKNMVXXZZ[\x05NVRFQM RSFQM\x13KYVBTDRGPKOPOTPYR]T`Vb RTDRHQKPPPTQYR\\T`\x13KYNBPDRGTKUPUTTYR]P`Nb RPDRHSKTPTTSYR\\P`\x08JZRLRX RMOWU RWOMU\x05E_RIR[ RIR[R\x07NVSWRXQWRVSWSYQ[\x02E_IR[R\x05NVRVQWRXSWRV\x02G][BIb\'H\\QFNGLJKOKRLWNZQ[S[VZXWYRYOXJVGSFQF RQFOGNHMJLOLRMWNYOZQ[ RS[UZVYWWXRXOWJVHUGSF\nH\\NJPISFS[ RRGR[ RN[W[,H\\LJMKLLKKKJLHMGPFTFWGXHYJYLXNUPPRNSLUKXK[ RTFVGWHXJXLWNTPPR RKYLXNXSZVZXYYX RNXS[W[XZYXYV.H\\LJMKLLKKKJLHMGPFTFWGXIXLWNTOQO RTFVGWIWLVNTO RTOVPXRYTYWXYWZT[P[MZLYKWKVLUMVLW RWQXTXWWYVZT[\x0cH\\THT[ RUFU[ RUFJUZU RQ[X[&H\\MFKP RKPMNPMSMVNXPYSYUXXVZS[P[MZLYKWKVLUMVLW RSMUNWPXSXUWXUZS[ RMFWF RMGRGWF/H\\WIVJWKXJXIWGUFRFOGMILKKOKULXNZQ[S[VZXXYUYTXQVOSNRNOOMQLT RRFPGNIMKLOLUMXOZQ[ RS[UZWXXUXTWQUOSN\x1eH\\KFKL RKJLHNFPFUIWIXHYF RLHNGPGUI RYFYIXLTQSSRVR[ RXLSQRSQVQ[>H\\PFMGLILLMNPOTOWNXLXIWGTFPF RPFNGMIMLNNPO RTOVNWLWIVGTF RPOMPLQKSKWLYMZP[T[WZXYYWYSXQWPTO RPONPMQLSLWMYNZP[ RT[VZWYXWXSWQVPTO/H\\XMWPURRSQSNRLPKMKLLINGQFSFVGXIYLYRXVWXUZR[O[MZLXLWMVNWMX RQSORMPLMLLMIOGQF RSFUGWIXLXRWVVXTZR[\x0bNVROQPRQSPRO RRVQWRXSWRV\rNVROQPRQSPRO RSWRXQWRVSWSYQ[\x03F^ZIJRZ[\x05E_IO[O RIU[U\x03F^JIZRJ[\x1fI[MJNKMLLKLJMHNGPFSFVGWHXJXLWNVORQRT RSFUGVHWJWLVNTP RRYQZR[SZRY7E`WNVLTKQKOLNMMPMSNUPVSVUUVS RQKOMNPNSOUPV RWKVSVUXVZV\\T]Q]O\\L[JYHWGTFQFNGLHJJILHOHRIUJWLYNZQ[T[WZYYZX RXKWSWUXV\x11H\\RFK[ RRFY[ RRIX[ RMUVU RI[O[ RU[[[,G]LFL[ RMFM[ RIFUFXGYHZJZLYNXOUP RUFWGXHYJYLXNWOUP RMPUPXQYRZTZWYYXZU[I[ RUPWQXRYTYWXYWZU[\x1fG\\XIYLYFXIVGSFQFNGLIKKJNJSKVLXNZQ[S[VZXXYV RQFOGMILKKNKSLVMXOZQ[\x1dG]LFL[ RMFM[ RIFSFVGXIYKZNZSYVXXVZS[I[ RSFUGWIXKYNYSXVWXUZS[\x15G\\LFL[ RMFM[ RSLST RIFYFYLXF RMPSP RI[Y[YUX[\x13G[LFL[ RMFM[ RSLST RIFYFYLXF RMPSP RI[P[\'G^XIYLYFXIVGSFQFNGLIKKJNJSKVLXNZQ[S[VZXX RQFOGMILKKNKSLVMXOZQ[ RXSX[ RYSY[ RUS\\S\x1aF^KFK[ RLFL[ RXFX[ RYFY[ RHFOF RUF\\F RLPXP RH[O[ RU[\\[\x0bMXRFR[ RSFS[ ROFVF RO[V[\x13KZUFUWTZR[P[NZMXMVNUOVNW RTFTWSZR[ RQFXF\x1aF\\KFK[ RLFL[ RYFLS RQOY[ RPOX[ RHFOF RUF[F RH[O[ RU[[[\rI[NFN[ ROFO[ RKFRF RK[Z[ZUY[\x1dF_KFK[ RLFRX RKFR[ RYFR[ RYFY[ RZFZ[ RHFLF RYF]F RH[N[ RV[][\x14G^LFL[ RMFYY RMHY[ RYFY[ RIFMF RVF\\F RI[O[+G]QFNGLIKKJOJRKVLXNZQ[S[VZXXYVZRZOYKXIVGSFQF RQFOGMILKKOKRLVMXOZQ[ RS[UZWXXVYRYOXKWIUGSF\x1cG]LFL[ RMFM[ RIFUFXGYHZJZMYOXPUQMQ RUFWGXHYJYMXOWPUQ RI[P[?G]QFNGLIKKJOJRKVLXNZQ[S[VZXXYVZRZOYKXIVGSFQF RQFOGMILKKOKRLVMXOZQ[ RS[UZWXXVYRYOXKWIUGSF RNYNXOVQURUTVUXV_W`Y`Z^Z] RUXV\\W^X_Y_Z^,G]LFL[ RMFM[ RIFUFXGYHZJZLYNXOUPMP RUFWGXHYJYLXNWOUP RI[P[ RRPTQURXYYZZZ[Y RTQUSWZX[Z[[Y[X!H\\XIYFYLXIVGSFPFMGKIKKLMMNOOUQWRYT RKKMMONUPWQXRYTYXWZT[Q[NZLXKUK[LX\x0fI\\RFR[ RSFS[ RLFKLKFZFZLYF RO[V[\x16F^KFKULXNZQ[S[VZXXYUYF RLFLUMXOZQ[ RHFOF RVF\\F\x0eH\\KFR[ RLFRX RYFR[ RIFOF RUF[F\x17F^JFN[ RKFNV RRFN[ RRFV[ RSFVV RZFV[ RGFNF RWF]F\x14H\\KFX[ RLFY[ RYFK[ RIFOF RUF[F RI[O[ RU[[[\x13H]KFRQR[ RLFSQS[ RZFSQ RIFOF RVF\\F RO[V[\x0fH\\XFK[ RYFL[ RLFKLKFYF RK[Y[YUX[\x0bKYOBOb RPBPb ROBVB RObVb\x02KYKFY^\x0bKYTBTb RUBUb RNBUB RNbUb\x07G]JTROZT RJTRPZT\x02H\\Hb\\b\x06LXPFUL RPFOGUL&I]NONPMPMONNPMTMVNWOXQXXYZZ[ RWOWXXZZ[[[ RWQVRPSMTLVLXMZP[S[UZWX RPSNTMVMXNZP[ G\\LFL[ RMFM[ RMPONQMSMVNXPYSYUXXVZS[Q[OZMX RSMUNWPXSXUWXUZS[ RIFMF\x1bH[WPVQWRXQXPVNTMQMNNLPKSKULXNZQ[S[VZXX RQMONMPLSLUMXOZQ[#H]WFW[ RXFX[ RWPUNSMQMNNLPKSKULXNZQ[S[UZWX RQMONMPLSLUMXOZQ[ RTFXF RW[[[\x1eH[LSXSXQWOVNTMQMNNLPKSKULXNZQ[S[VZXX RWSWPVN RQMONMPLSLUMXOZQ[\x15KXUGTHUIVHVGUFSFQGPIP[ RSFRGQIQ[ RMMUM RM[T[;I\\QMONNOMQMSNUOVQWSWUVVUWSWQVOUNSMQM RONNPNTOV RUVVTVPUN RVOWNYMYNWN RNUMVLXLYM[P\\U\\X]Y^ RLYMZP[U[X\\Y^Y_XaUbObLaK_K^L\\O[\x1bG]LFL[ RMFM[ RMPONRMTMWNXPX[ RTMVNWPW[ RIFMF RI[P[ RT[[[\x11MXRFQGRHSGRF RRMR[ RSMS[ ROMSM RO[V[\x18MXSFRGSHTGSF RTMT_SaQbObNaN`O_P`Oa RSMS_RaQb RPMTM\x1aG\\LFL[ RMFM[ RWMMW RRSX[ RQSW[ RIFMF RTMZM RI[P[ RT[Z[\x0bMXRFR[ RSFS[ ROFSF RO[V[+BcGMG[ RHMH[ RHPJNMMOMRNSPS[ ROMQNRPR[ RSPUNXMZM]N^P^[ RZM\\N]P][ RDMHM RD[K[ RO[V[ RZ[a[\x1bG]LML[ RMMM[ RMPONRMTMWNXPX[ RTMVNWPW[ RIMMM RI[P[ RT[[[#H\\QMNNLPKSKULXNZQ[S[VZXXYUYSXPVNSMQM RQMONMPLSLUMXOZQ[ RS[UZWXXUXSWPUNSM#G\\LMLb RMMMb RMPONQMSMVNXPYSYUXXVZS[Q[OZMX RSMUNWPXSXUWXUZS[ RIMMM RIbPb H\\WMWb RXMXb RWPUNSMQMNNLPKSKULXNZQ[S[UZWX RQMONMPLSLUMXOZQ[ RTb[b\x16IZNMN[ ROMO[ ROSPPRNTMWMXNXOWPVOWN RKMOM RK[R[\x1fJ[WOXMXQWOVNTMPMNNMOMQNRPSUUWVXW RMPNQPRUTWUXVXYWZU[Q[OZNYMWM[NY\x0fKZPFPWQZS[U[WZXX RQFQWRZS[ RMMUM\x1bG]LMLXMZP[R[UZWX RMMMXNZP[ RWMW[ RXMX[ RIMMM RTMXM RW[[[\x0eI[LMR[ RMMRY RXMR[ RJMPM RTMZM\x17F^JMN[ RKMNX RRMN[ RRMV[ RSMVX RZMV[ RGMNM RWM]M\x14H\\LMW[ RMMX[ RXML[ RJMPM RTMZM RJ[P[ RT[Z[\x15H[LMR[ RMMRY RXMR[P_NaLbKbJaK`La RJMPM RTMZM\x0fI[WML[ RXMM[ RMMLQLMXM RL[X[XWW[\'KYTBRCQDPFPHQJRKSMSOQQ RRCQEQGRISJTLTNSPORSTTVTXSZR[Q]Q_Ra RQSSUSWRYQZP\\P^Q`RaTb\x02NVRBRb\'KYPBRCSDTFTHSJRKQMQOSQ RRCSESGRIQJPLPNQPURQTPVPXQZR[S]S_Ra RSSQUQWRYSZT\\T^S`RaPb\x17F^IUISJPLONOPPTSVTXTZS[Q RISJQLPNPPQTTVUXUZT[Q[O"JZJFJ[K[KFLFL[M[MFNFN[O[OFPFP[Q[QFRFR[S[SFTFT[U[UFVFV[W[WFXFX[Y[YFZFZ['
_index = b'\x00\x00\x03\x00"\x00O\x00h\x00\xbd\x00\xfe\x00a\x01n\x01\x97\x01\xc0\x01\xd3\x01\xe0\x01\xf1\x01\xf8\x01\x05\x02\x0c\x02]\x02t\x02\xcf\x02.\x03I\x03\x98\x03\xf9\x038\x04\xb7\x04\x18\x051\x05N\x05W\x05d\x05m\x05\xae\x05\x1f\x06D\x06\x9f\x06\xe0\x06\x1d\x07J\x07s\x07\xc4\x07\xfb\x07\x14\x08=\x08t\x08\x91\x08\xce\x08\xf9\x08R\t\x8d\t\x0e\ni\n\xae\n\xcf\n\xfe\n\x1d\x0bN\x0by\x0b\xa2\x0b\xc3\x0b\xdc\x0b\xe3\x0b\xfc\x0b\r\x0c\x14\x0c#\x0cr\x0c\xb5\x0c\xee\x0c7\rv\r\xa3\r\x1c\x0eU\x0ez\x0e\xad\x0e\xe4\x0e\xfd\x0eV\x0f\x8f\x0f\xd8\x0f!\x10d\x10\x93\x10\xd4\x10\xf5\x10.\x11M\x11~\x11\xa9\x11\xd6\x11\xf7\x11H\x12O\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)
| """
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):
if len(delivery_code) != 3:
raise invalid_amp_code_exception('Delivery code is too long')
if delivery_code[0] in STUDENT_TYPES:
self.student_type = STUDENT_TYPES[delivery_code[0]]
else:
raise invalid_amp_code_exception('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:
term_1 = False
term_2 = False
term_3 = False
term_4 = False
summer = False
summer_school = False
summer_school_1 = False
summer_school_2 = False
lsr = False
year = False
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':
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 invalid_amp_code_exception('An invalid AMP code was found: ' + periods_code)
elif periods_code[0] == 'T':
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 invalid_amp_code_exception('AMP Periods Code contained an invalid term element')
else:
raise invalid_amp_code_exception('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]
periods_code = parts[1]
self.delivery = module_delivery(module_delivery_code)
self.periods = module_periods(periods_code) |
# 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' | 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)) | def cari_pasangan(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(cari_pasangan([1, 2, 3, 4, 5], 7)) |
# -*- coding: utf-8 -*-
# Copyright (c) 2019, Silvio Peroni <essepuntato@gmail.com>
#
# 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."))
| 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;
""")
| class Sqlqueries:
staging_songs_table_create = '\n CREATE TABLE IF NOT EXISTS staging_songs (\n num_songs int4,\n artist_id varchar(256),\n artist_name varchar(256),\n artist_latitude numeric(18,0),\n artist_longitude numeric(18,0),\n artist_location varchar(256),\n song_id varchar(256),\n title varchar(256),\n duration numeric(18,0),\n "year" int4 );\n '
staging_events_table_create = '\n CREATE TABLE IF NOT EXISTS staging_events (\n artist varchar(256),\n auth varchar(256),\n firstname varchar(256),\n gender varchar(256),\n iteminsession int4,\n lastname varchar(256),\n length numeric(18,0),\n "level" varchar(256),\n location varchar(256),\n "method" varchar(256),\n page varchar(256),\n registration numeric(18,0),\n sessionid int4,\n song varchar(256),\n status int4,\n ts int8,\n useragent varchar(256),\n userid int4 );\n '
users_table_create = '\n CREATE TABLE IF NOT EXISTS public.users (\n userid int4 NOT NULL,\n first_name varchar(256),\n last_name varchar(256),\n gender varchar(256),\n "level" varchar(256),\n CONSTRAINT users_pkey PRIMARY KEY (userid) );\n '
artists_table_create = '\n CREATE TABLE IF NOT EXISTS public.artists (\n artistid varchar(256) NOT NULL,\n name varchar(256),\n location varchar(256),\n latitude numeric(18,0),\n longitude numeric(18,0) );\n '
songs_table_create = '\n CREATE TABLE IF NOT EXISTS public.songs (\n songid varchar(256) NOT NULL,\n title varchar(256),\n artistid varchar(256),\n "year" int4,\n duration numeric(18,0),\n CONSTRAINT songs_pkey PRIMARY KEY (songid) );\n '
time_table_create = '\n CREATE TABLE IF NOT EXISTS public.time (\n start_time timestamp NOT NULL,\n "hour" int2,\n "day" int2,\n "week" int2,\n "month" int2,\n "year" int4,\n dayofweek int2 );\n '
songplay_table_create = '\n CREATE TABLE IF NOT EXISTS public.songplays (\n playid varchar(32) NOT NULL,\n start_time timestamp NOT NULL,\n userid int4 NOT NULL,\n "level" varchar(256),\n songid varchar(256),\n artistid varchar(256),\n sessionid int4,\n location varchar(256),\n user_agent varchar(256),\n CONSTRAINT songplays_pkey PRIMARY KEY (playid) );\n '
copy_sql_auto = "\n COPY {}\n FROM '{}'\n ACCESS_KEY_ID '{}'\n SECRET_ACCESS_KEY '{}'\n JSON 'auto';\n "
copy_sql_format = "\n COPY {}\n FROM '{}'\n ACCESS_KEY_ID '{}'\n SECRET_ACCESS_KEY '{}'\n FORMAT AS JSON '{}';\n "
truncate_sql = '\n TRUNCATE TABLE {};\n '
sql_count = '\n SELECT COUNT( * ) FROM {};\n '
songplay_table_insert = "\n INSERT INTO public.songplays\n (playid, start_time, userid, level, songid, artistid, sessionid, location, user_agent)\n SELECT\n md5(events.sessionid || events.start_time) AS playid,\n events.start_time, \n events.userid, \n events.level, \n songs.song_id, \n songs.artist_id, \n events.sessionid, \n events.location, \n events.useragent\n FROM (SELECT TIMESTAMP 'epoch' + ts/1000 * interval '1 second' AS start_time, *\n FROM staging_events\n WHERE page='NextSong') events\n LEFT JOIN staging_songs songs\n ON events.song = songs.title\n AND events.artist = songs.artist_name\n AND events.length = songs.duration;\n "
users_table_insert = "\n INSERT INTO public.users\n (userid, first_name, last_name, gender, level)\n SELECT distinct userid, firstname, lastname, gender, level\n FROM staging_events\n WHERE page='NextSong';\n "
songs_table_insert = '\n INSERT INTO public.songs\n (songid, title, artistid, year, duration)\n SELECT distinct song_id, title, artist_id, year, duration\n FROM staging_songs;\n '
artists_table_insert = '\n INSERT INTO public.artists\n (artistid, name, location, latitude, longitude)\n SELECT distinct artist_id, artist_name, artist_location, artist_latitude, artist_longitude\n FROM staging_songs;\n '
time_table_insert = '\n INSERT INTO public.time\n (start_time, hour, day, week, month, year, dayofweek)\n SELECT start_time, extract(hour from start_time), extract(day from start_time), extract(week from start_time), \n extract(month from start_time), extract(year from start_time), extract(dayofweek from start_time)\n FROM songplays;\n ' |
#
# 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:support@codimaTech.com 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)
| (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, constraints_union, single_value_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection')
(codima_products,) = mibBuilder.importSymbols('CODIMA-GLOBAL-REG', 'codimaProducts')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(unsigned32, ip_address, counter32, counter64, time_ticks, iso, integer32, mib_identifier, notification_type, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, object_identity, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'IpAddress', 'Counter32', 'Counter64', 'TimeTicks', 'iso', 'Integer32', 'MibIdentifier', 'NotificationType', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'ObjectIdentity', 'Bits')
(mac_address, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'DisplayString', 'TextualConvention')
codima_express_mib = module_identity((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:support@codimaTech.com http://www.codimaTech.com')
if mibBuilder.loadTexts:
codimaExpressMIB.setDescription('This module defines objects for the CODIMA Express product suite.')
codima_express_objects = object_identity((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.')
exp_history_databases = object_identity((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.')
db_control = object_identity((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.')
ctrl_time_table = mib_table((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.')
ctrl_time_entry = mib_table_row((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.')
ct_sample_type = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('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.')
ct_time_slots = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(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.')
ct_lock_method = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('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.')
ct_lock_user_time = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 4), display_string()).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.")
ct_lock_real_time = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 1, 1, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(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.")
db_segment = object_identity((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.')
seg_long_term = object_identity((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.')
sl_base_table = mib_table((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.')
sl_base_entry = mib_table_row((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.')
slb_time_stamp_index = mib_table_column((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.')
slb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
slb_frames = mib_table_column((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.')
slb_bytes = mib_table_column((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.')
slb_frame_size = mib_table_column((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.')
slb_hardware_errors = mib_table_column((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.')
slb_software_errors = mib_table_column((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.')
slb_active_nodes = mib_table_column((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.')
sl_broadcast_table = mib_table((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.')
sl_broadcast_entry = mib_table_row((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.')
slbc_time_stamp_index = mib_table_column((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.')
slbc_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
slbc_bytes = mib_table_column((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.')
slbc_percent_bytes = mib_table_column((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.')
slbc_frames = mib_table_column((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.')
slbc_percent_frames = mib_table_column((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.')
sl_derived_table = mib_table((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.')
sl_derived_entry = mib_table_row((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.')
sld_time_stamp_index = mib_table_column((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.')
sld_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
sld_utilization = mib_table_column((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.')
sld_error_frames = mib_table_column((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.')
sl_ethernet_table = mib_table((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.')
sl_ethernet_entry = mib_table_row((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.')
sle_time_stamp_index = mib_table_column((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.')
sle_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
sle_runts = mib_table_column((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.')
sle_jabbers = mib_table_column((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.')
sle_crc = mib_table_column((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.')
sle_collisions = mib_table_column((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.')
sle_late_collisions = mib_table_column((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.')
sl_icmp_table = mib_table((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.')
sl_icmp_entry = mib_table_row((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.')
sli_time_stamp_index = mib_table_column((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.')
sli_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
sli_ping = mib_table_column((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.')
sli_src_quench = mib_table_column((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.')
sli_redirect = mib_table_column((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.')
sli_ttl_exceeded = mib_table_column((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.')
sli_param_problem = mib_table_column((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.')
sli_timestamp = mib_table_column((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.')
sli_frag_timeout = mib_table_column((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.')
sli_net_unreachable = mib_table_column((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.')
sli_host_unreachable = mib_table_column((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.')
sli_protocol_unreachable = mib_table_column((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.')
sli_port_unreachable = mib_table_column((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.')
sli_frag_required = mib_table_column((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.")
sli_src_route_fail = mib_table_column((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.')
sli_dest_net_unknown = mib_table_column((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.')
sli_dest_host_unknown = mib_table_column((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.')
sli_src_host_isolated = mib_table_column((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.')
sli_net_prohibited = mib_table_column((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.')
sli_host_prohibited = mib_table_column((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.')
sli_net_tos_unreachable = mib_table_column((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.')
sli_host_tos_unreachable = mib_table_column((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.')
sli_performance = mib_table_column((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.'")
sli_net_route_problem = mib_table_column((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.')
sli_host_route_problem = mib_table_column((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.')
sli_app_route_problem = mib_table_column((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.')
sli_route_change = mib_table_column((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.')
sli_grp_errors = mib_table_column((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.')
sli_maintenance = mib_table_column((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.')
sl_port_table = mib_table((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.')
sl_port_entry = mib_table_row((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.')
slp1_time_stamp_index = mib_table_column((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.')
slp1_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 1, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
slp1_frames = mib_table_column((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.')
slp1_bytes = mib_table_column((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.')
slp1_frame_size = mib_table_column((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.')
slp1_utilization = mib_table_column((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.')
slp1_line_speed = mib_table_column((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.')
slp1_soft_errors = mib_table_column((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.')
slp1_runts = mib_table_column((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.')
slp1_jabbers = mib_table_column((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.')
slp1_crc = mib_table_column((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.')
slp1_collisions = mib_table_column((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.')
slp1_late_collisions = mib_table_column((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.')
slp1_line_noise = mib_table_column((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.')
slp2_frames = mib_table_column((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.')
slp2_bytes = mib_table_column((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.')
slp2_frame_size = mib_table_column((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.')
slp2_utilization = mib_table_column((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.')
slp2_line_speed = mib_table_column((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.')
slp2_soft_errors = mib_table_column((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.')
slp2_runts = mib_table_column((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.')
slp2_jabbers = mib_table_column((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.')
slp2_crc = mib_table_column((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.')
slp2_collisions = mib_table_column((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.')
slp2_late_collisions = mib_table_column((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.')
slp2_line_noise = mib_table_column((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.')
seg_short_term = object_identity((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.')
ss_base_table = mib_table((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.')
ss_base_entry = mib_table_row((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')
ssb_time_stamp_index = mib_table_column((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.')
ssb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ssb_frames = mib_table_column((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.')
ssb_bytes = mib_table_column((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.')
ssb_frame_size = mib_table_column((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.')
ssb_hardware_errors = mib_table_column((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.')
ssb_software_errors = mib_table_column((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.')
ssb_active_nodes = mib_table_column((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.')
ss_broadcast_table = mib_table((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.')
ss_broadcast_entry = mib_table_row((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.')
ssbc_time_stamp_index = mib_table_column((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.')
ssbc_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ssbc_bytes = mib_table_column((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.')
ssbc_bytes_percent = mib_table_column((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.')
ssbc_frames = mib_table_column((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.')
ssbc_frames_percent = mib_table_column((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.')
ss_derived_table = mib_table((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.')
ss_derived_entry = mib_table_row((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.')
ssd_time_stamp_index = mib_table_column((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.')
ssd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 3, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ssd_utilization = mib_table_column((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.')
ssd_error_frames = mib_table_column((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.')
ss_ethernet_table = mib_table((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.')
ss_ethernet_entry = mib_table_row((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.')
sse_time_stamp_index = mib_table_column((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.')
sse_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
sse_runts = mib_table_column((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.')
sse_jabbers = mib_table_column((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.')
sse_crc = mib_table_column((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.')
sse_collisions = mib_table_column((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.')
sse_late_collisions = mib_table_column((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.')
ss_icmp_table = mib_table((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.')
ss_icmp_entry = mib_table_row((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.')
ssi_time_stamp_index = mib_table_column((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.')
ssi_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ssi_ping = mib_table_column((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.')
ssi_src_quench = mib_table_column((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.')
ssi_redirect = mib_table_column((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.')
ssi_ttl_exceeded = mib_table_column((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.')
ssi_param_problem = mib_table_column((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.')
ssi_timestamp = mib_table_column((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.')
ssi_frag_timeout = mib_table_column((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.')
ssi_net_unreachable = mib_table_column((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.')
ssi_host_unreachable = mib_table_column((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.')
ssi_protocol_unreachable = mib_table_column((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.')
ssi_port_unreachable = mib_table_column((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.')
ssi_frag_required = mib_table_column((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.")
ssi_src_route_fail = mib_table_column((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.')
ssi_dest_net_unknown = mib_table_column((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.')
ssi_dest_host_unknown = mib_table_column((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.')
ssi_src_host_isolated = mib_table_column((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.')
ssi_net_prohibited = mib_table_column((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.')
ssi_host_prohibited = mib_table_column((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.')
ssi_net_tos_unreachable = mib_table_column((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.')
ssi_host_tos_unreachable = mib_table_column((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.')
ssi_performance = mib_table_column((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.'")
ssi_net_route_problem = mib_table_column((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.')
ssi_host_route_problem = mib_table_column((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.')
ssi_app_route_problem = mib_table_column((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.')
ssi_route_change = mib_table_column((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.')
ssi_errors = mib_table_column((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.')
ssi_maintenance = mib_table_column((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.')
ss_port_table = mib_table((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.')
ss_port_entry = mib_table_row((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.')
ssp_time_stamp_index = mib_table_column((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.')
ssp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 2, 2, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ssp1_frames = mib_table_column((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.')
ssp1_bytes = mib_table_column((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.')
ssp1_frame_size = mib_table_column((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.')
ssp1_utilization = mib_table_column((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.')
ssp1_line_speed = mib_table_column((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.')
ssp1_soft_errors = mib_table_column((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.')
ssp1_runts = mib_table_column((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.')
ssp1_jabbers = mib_table_column((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.')
ssp1_crc = mib_table_column((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.')
ssp1_collisions = mib_table_column((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.')
ssp1_late_collisions = mib_table_column((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.')
ssp1_line_noise = mib_table_column((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.')
ssp2_frames = mib_table_column((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.')
ssp2_bytes = mib_table_column((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.')
ssp2_frame_size = mib_table_column((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.')
ssp2_utilization = mib_table_column((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.')
ssp2_line_speed = mib_table_column((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.')
ssp2_soft_errors = mib_table_column((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.')
ssp2_runts = mib_table_column((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.')
ssp2_jabbers = mib_table_column((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.')
ssp2_crc = mib_table_column((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.')
ssp2_collisions = mib_table_column((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.')
ssp2_late_collisions = mib_table_column((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.')
ssp2_line_noise = mib_table_column((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.')
db_mac = object_identity((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.')
mac_long_term = object_identity((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.')
ml_base_table = mib_table((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.')
ml_base_entry = mib_table_row((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')
mlb_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mlbMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mlbMacIndex.setDescription('Identifies the MAC address of this row.')
mlb_time_stamp_index = mib_table_column((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.')
mlb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mlb_frames = mib_table_column((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.')
mlb_bytes = mib_table_column((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.')
mlb_frame_size = mib_table_column((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.')
mlb_hardware_errors = mib_table_column((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.')
mlb_software_errors = mib_table_column((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.')
ml_derived_table = mib_table((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.')
ml_derived_entry = mib_table_row((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')
mld_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mldMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mldMacIndex.setDescription('Identifies the MAC address of this row.')
mld_time_stamp_index = mib_table_column((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.')
mld_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.')
mld_utilization = mib_table_column((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.')
mld_error_frames = mib_table_column((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.')
ml_duplex_table = mib_table((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.')
ml_duplex_entry = mib_table_row((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')
mldu_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mlduMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mlduMacIndex.setDescription('Identifies the MAC address of this row.')
mldu_time_stamp_index = mib_table_column((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.')
mldu_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mldu_tx_frames = mib_table_column((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.')
mldu_tx_bytes = mib_table_column((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.')
mldu_tx_frame_size = mib_table_column((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.')
mldu_tx_utilization = mib_table_column((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.')
mldu_rx_frames = mib_table_column((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.')
mldu_rx_bytes = mib_table_column((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.')
mldu_rx_frame_size = mib_table_column((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.')
mldu_rx_utilization = mib_table_column((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.')
ml_ethernet_table = mib_table((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.')
ml_ethernet_entry = mib_table_row((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.')
mle_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mleMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mleMacIndex.setDescription('Identifies the MAC address of this row.')
mle_time_stamp_index = mib_table_column((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.')
mle_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 4, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mle_runts = mib_table_column((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.')
mle_jabbers = mib_table_column((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.')
mle_crc = mib_table_column((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.')
mle_collisions = mib_table_column((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.')
mle_late_collisions = mib_table_column((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.')
ml_icmp_table = mib_table((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.')
ml_icmp_entry = mib_table_row((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.')
mli_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mliMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mliMacIndex.setDescription('Identifies the MAC address of this row.')
mli_time_stamp_index = mib_table_column((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.')
mli_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 5, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mli_ping = mib_table_column((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.')
mli_src_quench = mib_table_column((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.')
mli_redirect = mib_table_column((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.')
mli_ttl_exceeded = mib_table_column((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.')
mli_param_problem = mib_table_column((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.')
mli_timestamp = mib_table_column((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.')
mli_frag_timeout = mib_table_column((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.')
mli_net_unreachable = mib_table_column((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.')
mli_host_unreachable = mib_table_column((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.')
mli_protocol_unreachable = mib_table_column((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.')
mli_port_unreachable = mib_table_column((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.')
mli_frag_required = mib_table_column((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.")
mli_src_route_fail = mib_table_column((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.')
mli_dest_net_unknown = mib_table_column((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.')
mli_dest_host_unknown = mib_table_column((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.')
mli_src_host_isolated = mib_table_column((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.')
mli_net_prohibited = mib_table_column((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.')
mli_host_prohibited = mib_table_column((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.')
mli_net_tos_unreachable = mib_table_column((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.')
mli_host_tos_unreachable = mib_table_column((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.')
mli_performance = mib_table_column((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.'")
mli_net_route_problem = mib_table_column((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.')
mli_host_route_problem = mib_table_column((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.')
mli_app_route_problem = mib_table_column((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.')
mli_route_change = mib_table_column((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.')
mli_errors = mib_table_column((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.')
mli_maintenance = mib_table_column((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.')
ml_protocol_table = mib_table((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.')
ml_protocol_entry = mib_table_row((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')
mlp_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mlpMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mlpMacIndex.setDescription('Identifies the MAC address of this row.')
mlp_time_stamp_index = mib_table_column((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.')
mlp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 1, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mlp_novell = mib_table_column((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.')
mlp_snmp = mib_table_column((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.')
mlp_routing = mib_table_column((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.')
mlp_www = mib_table_column((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.')
mlp_icmp = mib_table_column((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.')
mlp_iso = mib_table_column((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.')
mlp_mail = mib_table_column((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.')
mlp_netbios = mib_table_column((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.')
mlp_dns = mib_table_column((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.')
mlp_ip = mib_table_column((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.')
mlp_voip = mib_table_column((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.')
mlp_layer3_traffic = mib_table_column((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')
mlp_ip_data = mib_table_column((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')
mlp_applications = mib_table_column((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')
mlp_ip_control = mib_table_column((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')
mlp_management = mib_table_column((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')
mac_short_term = object_identity((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.')
ms_base_table = mib_table((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.')
ms_base_entry = mib_table_row((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')
msb_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
msbMacIndex.setStatus('current')
if mibBuilder.loadTexts:
msbMacIndex.setDescription('Identifies the MAC address of this row.')
msb_time_stamp_index = mib_table_column((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.')
msb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
msb_frames = mib_table_column((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.')
msb_bytes = mib_table_column((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.')
msb_frame_size = mib_table_column((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.')
msb_hardware_errors = mib_table_column((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.')
msb_software_errors = mib_table_column((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.')
ms_derived_table = mib_table((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.')
ms_derived_entry = mib_table_row((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')
msd_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
msdMacIndex.setStatus('current')
if mibBuilder.loadTexts:
msdMacIndex.setDescription('Identifies the MAC address of this row.')
msd_time_stamp_index = mib_table_column((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.')
msd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
msd_utilization = mib_table_column((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.')
msd_error_frames = mib_table_column((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.')
ms_duplex_table = mib_table((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.')
ms_duplex_entry = mib_table_row((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')
msdp_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
msdpMacIndex.setStatus('current')
if mibBuilder.loadTexts:
msdpMacIndex.setDescription('Identifies the MAC address of this row.')
msdp_time_stamp_index = mib_table_column((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.')
msdp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
msdp_tx_frames = mib_table_column((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.')
msdp_tx_bytes = mib_table_column((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.')
msdp_tx_frame_size = mib_table_column((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.')
msdp_tx_utilization = mib_table_column((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.')
msdp_rx_frames = mib_table_column((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.')
msdp_rx_bytes = mib_table_column((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.')
msdp_rx_frame_size = mib_table_column((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.')
msdp_rx_utilization = mib_table_column((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.')
ms_ethernet_table = mib_table((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.')
ms_ethernet_entry = mib_table_row((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.')
mse_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mseMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mseMacIndex.setDescription('Identifies the MAC address of this row.')
mse_time_stamp_index = mib_table_column((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.')
mse_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 4, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mse_runts = mib_table_column((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.')
mse_jabbers = mib_table_column((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.')
mse_crc = mib_table_column((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.')
mse_collisions = mib_table_column((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.')
mse_late_collisions = mib_table_column((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.')
ms_icmp_table = mib_table((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.')
ms_icmp_entry = mib_table_row((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.')
msi_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
msiMacIndex.setStatus('current')
if mibBuilder.loadTexts:
msiMacIndex.setDescription('Identifies the MAC address of this row.')
msi_time_stamp_index = mib_table_column((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.')
msi_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 5, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
msi_ping = mib_table_column((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.')
msi_src_quench = mib_table_column((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.')
msi_redirect = mib_table_column((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.')
msi_ttl_exceeded = mib_table_column((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.')
msi_param_problem = mib_table_column((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.')
msi_timestamp = mib_table_column((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.')
msi_frag_timeout = mib_table_column((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.')
msi_net_unreachable = mib_table_column((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.')
msi_host_unreachable = mib_table_column((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.')
msi_protocol_unreachable = mib_table_column((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.')
msi_port_unreachable = mib_table_column((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.')
msi_frag_required = mib_table_column((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.")
msi_src_route_fail = mib_table_column((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.')
msi_dest_net_unknown = mib_table_column((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.')
msi_dest_host_unknown = mib_table_column((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.')
msi_src_host_isolated = mib_table_column((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.')
msi_net_prohibited = mib_table_column((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.')
msi_host_prohibited = mib_table_column((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.')
msi_net_tos_unreachable = mib_table_column((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.')
msi_host_tos_unreachable = mib_table_column((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.')
msi_performance = mib_table_column((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.'")
msi_net_route_problem = mib_table_column((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.')
msi_host_route_problem = mib_table_column((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.')
msi_app_route_problem = mib_table_column((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.')
msi_route_change = mib_table_column((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.')
msi_errors = mib_table_column((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.')
msi_maintenance = mib_table_column((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.')
ms_protocol_table = mib_table((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.')
ms_protocol_entry = mib_table_row((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')
msp_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mspMacIndex.setStatus('current')
if mibBuilder.loadTexts:
mspMacIndex.setDescription('Identifies the MAC address of this row.')
msp_time_stamp_index = mib_table_column((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.')
msp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 3, 2, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
msp_novell = mib_table_column((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.')
msp_snmp = mib_table_column((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.')
msp_routing = mib_table_column((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.')
msp_www = mib_table_column((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.')
msp_icmp = mib_table_column((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.')
msp_iso = mib_table_column((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.')
msp_mail = mib_table_column((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.')
msp_netbios = mib_table_column((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.')
msp_dns = mib_table_column((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.')
msp_ip = mib_table_column((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.')
msp_voip = mib_table_column((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.')
msp_layer3_traffic = mib_table_column((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')
msp_ip_data = mib_table_column((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')
msp_applications = mib_table_column((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')
msp_ip_control = mib_table_column((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')
msp_management = mib_table_column((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')
db_mac_peer = object_identity((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.')
mac_peer_long_term = object_identity((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.')
mpl_base_table = mib_table((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.')
mpl_base_entry = mib_table_row((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')
mplb_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplbMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mplbMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mplb_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplbMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mplbMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mplb_time_stamp_index = mib_table_column((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.')
mplb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.')
mplb_frames = mib_table_column((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.')
mplb_bytes = mib_table_column((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.')
mplb_frame_size = mib_table_column((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.')
mplb_hardware_errors = mib_table_column((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.')
mplb_software_errors = mib_table_column((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.')
mpl_derived_table = mib_table((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.')
mpl_derived_entry = mib_table_row((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.')
mpld_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpldMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mpldMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpld_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpldMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mpldMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpld_time_stamp_index = mib_table_column((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.')
mpld_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpld_utilization = mib_table_column((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.')
mpld_error_frames = mib_table_column((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.')
mpl_duplex_table = mib_table((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.')
mpl_duplex_entry = mib_table_row((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')
mpldu_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplduMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mplduMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpldu_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplduMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mplduMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpldu_time_stamp_index = mib_table_column((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.')
mpldu_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpldu_tx_frames = mib_table_column((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.')
mpldu_tx_bytes = mib_table_column((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.')
mpldu_tx_frame_size = mib_table_column((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.')
mpldu_tx_utilization = mib_table_column((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.')
mpldu_rx_frames = mib_table_column((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.')
mpldu_rx_bytes = mib_table_column((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.')
mpldu_rx_frame_size = mib_table_column((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.')
mpldu_rx_utilization = mib_table_column((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.')
mpl_protocol_table = mib_table((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.')
mpl_protocol_entry = mib_table_row((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')
mplp_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplpMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mplpMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mplp_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mplpMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mplpMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mplp_time_stamp_index = mib_table_column((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.')
mplp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 1, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mplp_novell = mib_table_column((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.')
mplp_snmp = mib_table_column((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.')
mplp_routing = mib_table_column((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.')
mplp_www = mib_table_column((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.')
mplp_icmp = mib_table_column((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.')
mplp_iso = mib_table_column((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.')
mplp_mail = mib_table_column((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.')
mplp_netbios = mib_table_column((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.')
mplp_dns = mib_table_column((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.')
mplp_ip = mib_table_column((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.')
mplp_voip = mib_table_column((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.')
mplp_layer3_traffic = mib_table_column((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')
mplp_ip_data = mib_table_column((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')
mplp_applications = mib_table_column((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')
mplp_ip_control = mib_table_column((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')
mplp_management = mib_table_column((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')
mac_peer_short_term = object_identity((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.')
mps_base_table = mib_table((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.')
mps_base_entry = mib_table_row((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')
mpsb_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsbMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mpsbMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsb_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsbMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mpsbMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsb_time_stamp_index = mib_table_column((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.')
mpsb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpsb_frames = mib_table_column((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.')
mpsb_bytes = mib_table_column((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.')
mpsb_frame_size = mib_table_column((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.')
mpsb_hardware_errors = mib_table_column((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.')
mpsb_software_errors = mib_table_column((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.')
mps_derived_table = mib_table((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.')
mps_derived_entry = mib_table_row((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.')
mpsd_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsdMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mpsdMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsd_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsdMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mpsdMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsd_time_stamp_index = mib_table_column((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.')
mpsd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpsd_utilization = mib_table_column((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.')
mpsd_error_frames = mib_table_column((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.')
mps_duplex_table = mib_table((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.')
mps_duplex_entry = mib_table_row((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')
mpsdu_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsduMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mpsduMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsdu_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpsduMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mpsduMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsdu_time_stamp_index = mib_table_column((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.')
mpsdu_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpsdu_tx_frames = mib_table_column((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.')
mpsdu_tx_bytes = mib_table_column((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.')
mpsdu_tx_frame_size = mib_table_column((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.')
mpsdu_tx_utilization = mib_table_column((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.')
mpsdu_rx_frames = mib_table_column((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.')
mpsdu_rx_bytes = mib_table_column((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.')
mpsdu_rx_frame_size = mib_table_column((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.')
mpsdu_rx_utilization = mib_table_column((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.')
mps_protocol_table = mib_table((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.')
mps_protocol_entry = mib_table_row((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')
mpsp_mac1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 1), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpspMac1Index.setStatus('current')
if mibBuilder.loadTexts:
mpspMac1Index.setDescription('Identifies the first Peer MAC address of this row.')
mpsp_mac2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 2), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mpspMac2Index.setStatus('current')
if mibBuilder.loadTexts:
mpspMac2Index.setDescription('Identifies the second Peer MAC address of this row.')
mpsp_time_stamp_index = mib_table_column((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.')
mpsp_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 4, 2, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
mpsp_novell = mib_table_column((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.')
mpsp_snmp = mib_table_column((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.')
mpsp_routing = mib_table_column((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.')
mpsp_www = mib_table_column((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.')
mpsp_icmp = mib_table_column((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.')
mpsp_iso = mib_table_column((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.')
mpsp_mail = mib_table_column((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.')
mpsp_netbios = mib_table_column((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.')
mpsp_dns = mib_table_column((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.')
mpsp_ip = mib_table_column((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.')
mpsp_voip = mib_table_column((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.')
mpsp_layer3_traffic = mib_table_column((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')
mpsp_ip_data = mib_table_column((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')
mpsp_applications = mib_table_column((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')
mpsp_ip_control = mib_table_column((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')
mpsp_management = mib_table_column((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')
db_i_pv4 = object_identity((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.')
ip_long_term = object_identity((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.')
il_base_table = mib_table((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.')
il_base_entry = mib_table_row((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')
ilb_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ilbIpIndex.setStatus('current')
if mibBuilder.loadTexts:
ilbIpIndex.setDescription('Identifies the IPv4 address of this row.')
ilb_time_stamp_index = mib_table_column((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.')
ilb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ilb_frames = mib_table_column((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.')
ilb_bytes = mib_table_column((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.')
ilb_frame_size = mib_table_column((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.')
ilb_hardware_errors = mib_table_column((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.')
ilb_software_errors = mib_table_column((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.')
il_derived_table = mib_table((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.')
il_derived_entry = mib_table_row((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')
ild_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ildIpIndex.setStatus('current')
if mibBuilder.loadTexts:
ildIpIndex.setDescription('Identifies the IPv4 address of this row.')
ild_time_stamp_index = mib_table_column((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.')
ild_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ild_utilization = mib_table_column((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.')
ild_error_frames = mib_table_column((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.')
il_icmp_table = mib_table((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.')
il_icmp_entry = mib_table_row((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.')
ili_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iliIpIndex.setStatus('current')
if mibBuilder.loadTexts:
iliIpIndex.setDescription('Identifies the IPv4 address of this row.')
ili_time_stamp_index = mib_table_column((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.')
ili_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 1, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ili_ping = mib_table_column((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.')
ili_src_quench = mib_table_column((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.')
ili_redirect = mib_table_column((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.')
ili_ttl_exceeded = mib_table_column((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.')
ili_param_problem = mib_table_column((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.')
ili_timestamp = mib_table_column((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.')
ili_frag_timeout = mib_table_column((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.')
ili_net_unreachable = mib_table_column((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.')
ili_host_unreachable = mib_table_column((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.')
ili_protocol_unreachable = mib_table_column((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.')
ili_port_unreachable = mib_table_column((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.')
ili_frag_required = mib_table_column((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.")
ili_src_route_fail = mib_table_column((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.')
ili_dest_net_unknown = mib_table_column((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.')
ili_dest_host_unknown = mib_table_column((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.')
ili_src_host_isolated = mib_table_column((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.')
ili_net_prohibited = mib_table_column((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.')
ili_host_prohibited = mib_table_column((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.')
ili_net_tos_unreachable = mib_table_column((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.')
ili_host_tos_unreachable = mib_table_column((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.')
ili_performance = mib_table_column((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.'")
ili_net_route_problem = mib_table_column((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.')
ili_host_route_problem = mib_table_column((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.')
ili_app_route_problem = mib_table_column((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.')
ili_route_change = mib_table_column((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.')
ili_errors = mib_table_column((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.')
ili_maintenance = mib_table_column((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.')
ip_short_term = object_identity((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.')
is_base_table = mib_table((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.')
is_base_entry = mib_table_row((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')
isb_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
isbIpIndex.setStatus('current')
if mibBuilder.loadTexts:
isbIpIndex.setDescription('Identifies the IPv4 address of this row.')
isb_time_stamp_index = mib_table_column((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.')
isb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
isb_frames = mib_table_column((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.')
isb_bytes = mib_table_column((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.')
isb_frame_size = mib_table_column((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.')
isb_hardware_errors = mib_table_column((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.')
isb_software_errors = mib_table_column((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.')
is_derived_table = mib_table((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.')
is_derived_entry = mib_table_row((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')
isd_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
isdIpIndex.setStatus('current')
if mibBuilder.loadTexts:
isdIpIndex.setDescription('Identifies the IPv4 address of this row.')
isd_time_stamp_index = mib_table_column((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.')
isd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
isd_utilization = mib_table_column((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.')
isd_error_frames = mib_table_column((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.')
is_icmp_table = mib_table((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.')
is_icmp_entry = mib_table_row((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.')
isi_ip_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
isiIpIndex.setStatus('current')
if mibBuilder.loadTexts:
isiIpIndex.setDescription('Identifies the IPv4 address of this row.')
isi_time_stamp_index = mib_table_column((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.')
isi_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 5, 2, 3, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
isi_ping = mib_table_column((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.')
isi_src_quench = mib_table_column((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.')
isi_redirect = mib_table_column((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.')
isi_ttl_exceeded = mib_table_column((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.')
isi_param_problem = mib_table_column((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.')
isi_timestamp = mib_table_column((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.')
isi_frag_timeout = mib_table_column((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.')
isi_net_unreachable = mib_table_column((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.')
isi_host_unreachable = mib_table_column((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.')
isi_protocol_unreachable = mib_table_column((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.')
isi_port_unreachable = mib_table_column((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.')
isi_frag_required = mib_table_column((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.")
isi_src_route_fail = mib_table_column((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.')
isi_dest_net_unknown = mib_table_column((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.')
isi_dest_host_unknown = mib_table_column((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.')
isi_src_host_isolated = mib_table_column((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.')
isi_net_prohibited = mib_table_column((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.')
isi_host_prohibited = mib_table_column((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.')
isi_net_tos_unreachable = mib_table_column((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.')
isi_host_tos_unreachable = mib_table_column((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.')
isi_performance = mib_table_column((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.'")
isi_net_route_problem = mib_table_column((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.')
isi_host_route_problem = mib_table_column((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.')
isi_app_route_problem = mib_table_column((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.')
isi_route_change = mib_table_column((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.')
isi_errors = mib_table_column((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.')
isi_maintenance = mib_table_column((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.')
db_i_pv4_peer = object_identity((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.')
ip_peer_long_term = object_identity((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.')
ipl_base_table = mib_table((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.')
ipl_base_entry = mib_table_row((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')
iplb_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iplbIp1Index.setStatus('current')
if mibBuilder.loadTexts:
iplbIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
iplb_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
iplbIp2Index.setStatus('current')
if mibBuilder.loadTexts:
iplbIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
iplb_time_stamp_index = mib_table_column((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.')
iplb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.')
iplb_frames = mib_table_column((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.')
iplb_bytes = mib_table_column((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.')
iplb_frame_size = mib_table_column((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.')
iplb_hardware_errors = mib_table_column((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.')
iplb_software_errors = mib_table_column((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.')
ipl_derived_table = mib_table((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.')
ipl_derived_entry = mib_table_row((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.')
ipld_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipldIp1Index.setStatus('current')
if mibBuilder.loadTexts:
ipldIp1Index.setDescription('Identifies the first Peer MAC address of this row.')
ipld_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipldIp2Index.setStatus('current')
if mibBuilder.loadTexts:
ipldIp2Index.setDescription('Identifies the second Peer MAC address of this row.')
ipld_time_stamp_index = mib_table_column((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.')
ipld_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ipld_utilization = mib_table_column((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.')
ipld_error_frames = mib_table_column((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.')
ipl_icmp_table = mib_table((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.')
ipl_icmp_entry = mib_table_row((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.')
ipli_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipliIp1Index.setStatus('current')
if mibBuilder.loadTexts:
ipliIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipli_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipliIp2Index.setStatus('current')
if mibBuilder.loadTexts:
ipliIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipli_time_stamp_index = mib_table_column((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.')
ipli_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 1, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ipli_ping = mib_table_column((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.')
ipli_src_quench = mib_table_column((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.')
ipli_redirect = mib_table_column((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.')
ipli_ttl_exceeded = mib_table_column((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.')
ipli_param_problem = mib_table_column((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.')
ipli_timestamp = mib_table_column((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.')
ipli_frag_timeout = mib_table_column((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.')
ipli_net_unreachable = mib_table_column((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.')
ipli_host_unreachable = mib_table_column((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.')
ipli_protocol_unreachable = mib_table_column((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.')
ipli_port_unreachable = mib_table_column((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.')
ipli_frag_required = mib_table_column((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.")
ipli_src_route_fail = mib_table_column((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.')
ipli_dest_net_unknown = mib_table_column((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.')
ipli_dest_host_unknown = mib_table_column((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.')
ipli_src_host_isolated = mib_table_column((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.')
ipli_net_prohibited = mib_table_column((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.')
ipli_host_prohibited = mib_table_column((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.')
ipli_net_tos_unreachable = mib_table_column((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.')
ipli_host_tos_unreachable = mib_table_column((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.')
ipli_performance = mib_table_column((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.'")
ipli_net_route_problem = mib_table_column((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.')
ipli_host_route_problem = mib_table_column((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.')
ipli_app_route_problem = mib_table_column((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.')
ipli_route_change = mib_table_column((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.')
ipli_errors = mib_table_column((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.')
ipli_maintenance = mib_table_column((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.')
ip_peer_short_term = object_identity((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.')
ips_base_table = mib_table((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.')
ips_base_entry = mib_table_row((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')
ipsb_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsbIp1Index.setStatus('current')
if mibBuilder.loadTexts:
ipsbIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipsb_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsbIp2Index.setStatus('current')
if mibBuilder.loadTexts:
ipsbIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipsb_time_stamp_index = mib_table_column((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.')
ipsb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ipsb_frames = mib_table_column((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.')
ipsb_bytes = mib_table_column((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.')
ipsb_frame_size = mib_table_column((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.')
ipsb_hardware_errors = mib_table_column((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.')
ipsb_software_errors = mib_table_column((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.')
ips_derived_table = mib_table((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.')
ips_derived_entry = mib_table_row((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.')
ipsd_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsdIp1Index.setStatus('current')
if mibBuilder.loadTexts:
ipsdIp1Index.setDescription('Identifies the first Peer MAC address of this row.')
ipsd_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsdIp2Index.setStatus('current')
if mibBuilder.loadTexts:
ipsdIp2Index.setDescription('Identifies the second Peer MAC address of this row.')
ipsd_time_stamp_index = mib_table_column((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.')
ipsd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ipsd_utilization = mib_table_column((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.')
ipsd_error_frames = mib_table_column((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.')
ips_icmp_table = mib_table((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.')
ips_icmp_entry = mib_table_row((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.')
ipsi_ip1_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsiIp1Index.setStatus('current')
if mibBuilder.loadTexts:
ipsiIp1Index.setDescription('Identifies the first Peer IPv4 address of this row.')
ipsi_ip2_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipsiIp2Index.setStatus('current')
if mibBuilder.loadTexts:
ipsiIp2Index.setDescription('Identifies the second Peer IPv4 address of this row.')
ipsi_time_stamp_index = mib_table_column((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.')
ipsi_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 6, 2, 3, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ipsi_ping = mib_table_column((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.')
ipsi_src_quench = mib_table_column((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.')
ipsi_redirect = mib_table_column((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.')
ipsi_ttl_exceeded = mib_table_column((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.')
ipsi_param_problem = mib_table_column((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.')
ipsi_timestamp = mib_table_column((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.')
ipsi_frag_timeout = mib_table_column((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.')
ipsi_net_unreachable = mib_table_column((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.')
ipsi_host_unreachable = mib_table_column((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.')
ipsi_protocol_unreachable = mib_table_column((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.')
ipsi_port_unreachable = mib_table_column((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.')
ipsi_frag_required = mib_table_column((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.")
ipsi_src_route_fail = mib_table_column((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.')
ipsi_dest_net_unknown = mib_table_column((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.')
ipsi_dest_host_unknown = mib_table_column((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.')
ipsi_src_host_isolated = mib_table_column((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.')
ipsi_net_prohibited = mib_table_column((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.')
ipsi_host_prohibited = mib_table_column((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.')
ipsi_net_tos_unreachable = mib_table_column((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.')
ipsi_host_tos_unreachable = mib_table_column((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.')
ipsi_performance = mib_table_column((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.'")
ipsi_net_route_problem = mib_table_column((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.')
ipsi_host_route_problem = mib_table_column((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.')
ipsi_app_route_problem = mib_table_column((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.')
ipsi_route_change = mib_table_column((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.')
ipsi_errors = mib_table_column((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.')
ipsi_maintenance = mib_table_column((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.')
db_protocol = object_identity((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.')
protocol_long_term = object_identity((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.')
pl_base_table = mib_table((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.')
pl_base_entry = mib_table_row((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')
plb_layer_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('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.')
plb_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
plbIdIndex.setStatus('current')
if mibBuilder.loadTexts:
plbIdIndex.setDescription('Identifies the Protocol ID of this row.')
plb_time_stamp_index = mib_table_column((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.')
plb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
plb_protocol_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 1, 1, 5), display_string()).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.")
plb_frames = mib_table_column((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.')
plb_bytes = mib_table_column((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.')
plb_frame_size = mib_table_column((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.')
plb_hardware_errors = mib_table_column((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.')
plb_software_errors = mib_table_column((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.')
pl_derived_table = mib_table((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.')
pl_derived_entry = mib_table_row((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')
pld_layer_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('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.')
pld_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(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.')
pld_time_stamp_index = mib_table_column((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.')
pld_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
pld_protocol_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 1, 2, 1, 5), display_string()).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.")
pld_utilization = mib_table_column((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.')
pld_error_frames = mib_table_column((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.')
protocol_short_term = object_identity((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.')
ps_base_table = mib_table((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.')
ps_base_entry = mib_table_row((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')
psb_layer_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('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.')
psb_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(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.')
psb_time_stamp_index = mib_table_column((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.')
psb_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
psb_protocol_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 1, 1, 5), display_string()).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.")
psb_frames = mib_table_column((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.')
psb_bytes = mib_table_column((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.')
psb_frame_size = mib_table_column((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.')
psb_hardware_errors = mib_table_column((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.')
psb_software_errors = mib_table_column((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.')
ps_derived_table = mib_table((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.')
ps_derived_entry = mib_table_row((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')
psd_layer_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('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.')
psd_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(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.')
psd_time_stamp_index = mib_table_column((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.')
psd_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
psd_protocol_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 7, 2, 2, 1, 5), display_string()).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.")
psd_utilization = mib_table_column((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.')
psd_error_frames = mib_table_column((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.')
db_net_channel = object_identity((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.')
net_chan_long_term_table = mib_table((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.')
net_chan_long_term_entry = mib_table_row((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.')
nl_type_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('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.')
nl_name_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.')
nl_time_stamp_index = mib_table_column((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.')
nl_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
nl_frames = mib_table_column((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.')
nl_bytes = mib_table_column((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.')
nl_frame_size = mib_table_column((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.')
nl_hard_errors = mib_table_column((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.')
nl_soft_errors = mib_table_column((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.')
nl_utilization = mib_table_column((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.')
nl_hard_errors_percent = mib_table_column((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.')
nl_soft_errors_percent = mib_table_column((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.')
nl_frames_percent = mib_table_column((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.')
nl_bytes_percent = mib_table_column((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.')
net_chan_short_term_table = mib_table((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.')
net_chan_short_term_entry = mib_table_row((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.')
ns_type_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('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.')
ns_name_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(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.')
ns_time_stamp_index = mib_table_column((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.')
ns_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 8, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(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.")
ns_frames = mib_table_column((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.')
ns_bytes = mib_table_column((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.')
ns_frame_size = mib_table_column((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.')
ns_hard_errors = mib_table_column((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.')
ns_soft_errors = mib_table_column((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.')
ns_utilization = mib_table_column((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.')
ns_hard_errors_percent = mib_table_column((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.')
ns_soft_errors_percent = mib_table_column((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.')
ns_frames_percent = mib_table_column((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.')
ns_bytes_percent = mib_table_column((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.')
db_vlan = object_identity((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.')
vlan_long_term_table = mib_table((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.')
vlan_long_term_entry = mib_table_row((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.')
vl_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4094))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vlIdIndex.setStatus('current')
if mibBuilder.loadTexts:
vlIdIndex.setDescription('Identifies the VLAN Id for this row.')
vl_time_stamp_index = mib_table_column((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.')
vl_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
vl_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vlName.setStatus('current')
if mibBuilder.loadTexts:
vlName.setDescription('The name associated with this rows VLAN Id')
vl_frames = mib_table_column((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.')
vl_bytes = mib_table_column((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.')
vl_frame_size = mib_table_column((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.')
vl_hard_errors = mib_table_column((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.')
vl_soft_errors = mib_table_column((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.')
vl_utilization = mib_table_column((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.')
vl_hard_errors_percent = mib_table_column((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.')
vl_soft_errors_percent = mib_table_column((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.')
vl_frames_percent = mib_table_column((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.')
vl_bytes_percent = mib_table_column((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.')
vlan_short_term_table = mib_table((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.')
vlan_short_term_entry = mib_table_row((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.')
vs_id_index = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4094))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vsIdIndex.setStatus('current')
if mibBuilder.loadTexts:
vsIdIndex.setDescription('Identifies the VLAN Id for this row.')
vs_time_stamp_index = mib_table_column((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.')
vs_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(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.")
vs_name = mib_table_column((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 1, 9, 2, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vsName.setStatus('current')
if mibBuilder.loadTexts:
vsName.setDescription('The name associated with this rows VLAN Id')
vs_frames = mib_table_column((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.')
vs_bytes = mib_table_column((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.')
vs_frame_size = mib_table_column((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.')
vs_hard_errors = mib_table_column((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.')
vs_soft_errors = mib_table_column((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.')
vs_utilization = mib_table_column((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.')
vs_hard_errors_percent = mib_table_column((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.')
vs_soft_errors_percent = mib_table_column((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.')
vs_frames_percent = mib_table_column((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.')
vs_bytes_percent = mib_table_column((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.')
exp_alarms = object_identity((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.')
alarm_message = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 1), display_string()).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.')
alarm_layer = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 2), display_string()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
alarmLayer.setStatus('current')
if mibBuilder.loadTexts:
alarmLayer.setDescription('The OSI Network Layer associated with this event.')
alarm_top_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 3), display_string()).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.')
alarm_base_protocol = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 4), display_string()).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.')
alarm_code = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 5), display_string()).setMaxAccess('accessiblefornotify')
if mibBuilder.loadTexts:
alarmCode.setStatus('current')
if mibBuilder.loadTexts:
alarmCode.setDescription('The Code number associated with this event')
alarm_function = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 6), display_string()).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.')
alarm_group = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 7), display_string()).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.')
alarm_unit_type = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 8), display_string()).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.')
alarm_class = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 9), display_string()).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).')
alarm_time = mib_scalar((1, 3, 6, 1, 4, 1, 226, 3, 2, 1, 2, 10), display_string()).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.")
codima_express_notifications = object_identity((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.')
express_traps = object_identity((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.')
express_alarm = notification_type((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.")
codima_express_conformance = object_identity((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.')
express_object_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1))
history_database_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1))
db_control_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 1))
ctrl_time_group = object_group((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):
ctrl_time_group = ctrlTimeGroup.setStatus('current')
if mibBuilder.loadTexts:
ctrlTimeGroup.setDescription('CODIMA Express History Database Control Object Group.')
db_segment_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2))
seg_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 1))
sl_base_group = object_group((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):
sl_base_group = slBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
slBaseGroup.setDescription('CODIMA Express History Long Term Segment Database Base Object Group.')
sl_broadcast_group = object_group((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):
sl_broadcast_group = slBroadcastGroup.setStatus('current')
if mibBuilder.loadTexts:
slBroadcastGroup.setDescription('CODIMA Express History Long Term Segment Database Broadcast Object Group.')
sl_derived_group = object_group((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):
sl_derived_group = slDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
slDerivedGroup.setDescription('CODIMA Express History Long Term Segment Database Derived Object Group.')
sl_ethernet_group = object_group((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):
sl_ethernet_group = slEthernetGroup.setStatus('current')
if mibBuilder.loadTexts:
slEthernetGroup.setDescription('CODIMA Express History Long Term Segment Database Ethernet Object Group.')
sl_icmp_group = object_group((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):
sl_icmp_group = slIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
slIcmpGroup.setDescription('CODIMA Express History Long Term Segment Database ICMP Object Group.')
sl_port_group = object_group((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):
sl_port_group = slPortGroup.setStatus('current')
if mibBuilder.loadTexts:
slPortGroup.setDescription('CODIMA Express History Long Term Segment Database Port Object Group.')
seg_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 2, 2))
ss_base_group = object_group((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):
ss_base_group = ssBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
ssBaseGroup.setDescription('CODIMA Express History Short Term Segment Database Base Object Group.')
ss_broadcast_group = object_group((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):
ss_broadcast_group = ssBroadcastGroup.setStatus('current')
if mibBuilder.loadTexts:
ssBroadcastGroup.setDescription('CODIMA Express History Short Term Segment Database Broadcast Object Group.')
ss_derived_group = object_group((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):
ss_derived_group = ssDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
ssDerivedGroup.setDescription('CODIMA Express History Short Term Segment Database Derived Object Group.')
ss_ethernet_group = object_group((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):
ss_ethernet_group = ssEthernetGroup.setStatus('current')
if mibBuilder.loadTexts:
ssEthernetGroup.setDescription('CODIMA Express History Short Term Segment Database Ethernet Object Group.')
ss_icmp_group = object_group((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):
ss_icmp_group = ssIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
ssIcmpGroup.setDescription('CODIMA Express History Short Term Segment Database Ethernet Object Group.')
ss_port_group = object_group((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):
ss_port_group = ssPortGroup.setStatus('current')
if mibBuilder.loadTexts:
ssPortGroup.setDescription('CODIMA Express History Short Term Segment Database Port Object Group.')
db_mac_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3))
mac_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 1))
ml_base_group = object_group((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):
ml_base_group = mlBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
mlBaseGroup.setDescription('CODIMA Express History Long Term MAC Database Base Object Group.')
ml_derived_group = object_group((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):
ml_derived_group = mlDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
mlDerivedGroup.setDescription('CODIMA Express History Long Term MAC Database Derived Object Group.')
ml_duplex_group = object_group((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):
ml_duplex_group = mlDuplexGroup.setStatus('current')
if mibBuilder.loadTexts:
mlDuplexGroup.setDescription('CODIMA Express History Long Term MAC Database Duplex Object Group.')
ml_ethernet_group = object_group((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):
ml_ethernet_group = mlEthernetGroup.setStatus('current')
if mibBuilder.loadTexts:
mlEthernetGroup.setDescription('CODIMA Express History Long Term MAC Database Ethernet Object Group.')
ml_icmp_group = object_group((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):
ml_icmp_group = mlIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
mlIcmpGroup.setDescription('CODIMA Express History Long Term MAC Database ICMP Object Group.')
ml_protocol_group = object_group((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):
ml_protocol_group = mlProtocolGroup.setStatus('current')
if mibBuilder.loadTexts:
mlProtocolGroup.setDescription('CODIMA Express History Long Term MAC Database Protocol Object Group.')
mac_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 3, 2))
ms_base_group = object_group((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):
ms_base_group = msBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
msBaseGroup.setDescription('CODIMA Express History Short Term MAC Database Base Object Group.')
ms_derived_group = object_group((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):
ms_derived_group = msDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
msDerivedGroup.setDescription('CODIMA Express History Short Term MAC Database Derived Object Group.')
ms_duplex_group = object_group((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):
ms_duplex_group = msDuplexGroup.setStatus('current')
if mibBuilder.loadTexts:
msDuplexGroup.setDescription('CODIMA Express History Short Term MAC Database Duplex Object Group.')
ms_ethernet_group = object_group((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):
ms_ethernet_group = msEthernetGroup.setStatus('current')
if mibBuilder.loadTexts:
msEthernetGroup.setDescription('CODIMA Express History Short Term MAC Database Ethernet Object Group.')
ms_icmp_group = object_group((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):
ms_icmp_group = msIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
msIcmpGroup.setDescription('CODIMA Express History Short Term MAC Database ICMP Object Group.')
ms_protocol_group = object_group((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):
ms_protocol_group = msProtocolGroup.setStatus('current')
if mibBuilder.loadTexts:
msProtocolGroup.setDescription('CODIMA Express History Short Term MAC Database Protocol Object Group.')
db_mac_peer_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4))
mac_peer_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 1))
mpl_base_group = object_group((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):
mpl_base_group = mplBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
mplBaseGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Base Object Group.')
mpl_derived_group = object_group((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):
mpl_derived_group = mplDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
mplDerivedGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Derived Object Group.')
mpl_duplex_group = object_group((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):
mpl_duplex_group = mplDuplexGroup.setStatus('current')
if mibBuilder.loadTexts:
mplDuplexGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Duplex Object Group.')
mpl_protocol_group = object_group((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):
mpl_protocol_group = mplProtocolGroup.setStatus('current')
if mibBuilder.loadTexts:
mplProtocolGroup.setDescription('CODIMA Express History Long Term MAC Peer Database Protocol Object Group.')
mac_peer_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 4, 2))
mps_base_group = object_group((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):
mps_base_group = mpsBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
mpsBaseGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Base Object Group.')
mps_derived_group = object_group((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):
mps_derived_group = mpsDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
mpsDerivedGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Derived Object Group.')
mps_duplex_group = object_group((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):
mps_duplex_group = mpsDuplexGroup.setStatus('current')
if mibBuilder.loadTexts:
mpsDuplexGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Duplex Object Group.')
mps_protocol_group = object_group((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):
mps_protocol_group = mpsProtocolGroup.setStatus('current')
if mibBuilder.loadTexts:
mpsProtocolGroup.setDescription('CODIMA Express History Short Term MAC Peer Database Protocol Object Group.')
db_i_pv4_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5))
ip_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 1))
il_base_group = object_group((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):
il_base_group = ilBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
ilBaseGroup.setDescription('CODIMA Express History Long Term IPv4 Database Base Object Group.')
il_derived_group = object_group((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):
il_derived_group = ilDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
ilDerivedGroup.setDescription('CODIMA Express History Long Term IPv4 Database Derived Object Group.')
il_icmp_group = object_group((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):
il_icmp_group = ilIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
ilIcmpGroup.setDescription('CODIMA Express History Long Term IPv4 Database ICMP Object Group.')
ip_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 5, 2))
is_base_group = object_group((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):
is_base_group = isBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
isBaseGroup.setDescription('CODIMA Express History Short Term IPv4 Database Base Object Group.')
is_derived_group = object_group((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):
is_derived_group = isDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
isDerivedGroup.setDescription('CODIMA Express History Short Term IPv4 Database Derived Object Group.')
is_icmp_group = object_group((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):
is_icmp_group = isIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
isIcmpGroup.setDescription('CODIMA Express History Short Term IPv4 Database ICMP Object Group.')
dp_i_pv4_peer_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6))
ip_peer_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 1))
ipl_base_group = object_group((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):
ipl_base_group = iplBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
iplBaseGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database Base Object Group.')
ipl_derived_group = object_group((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):
ipl_derived_group = iplDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
iplDerivedGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database Derived Object Group.')
ipl_icmp_group = object_group((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):
ipl_icmp_group = iplIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
iplIcmpGroup.setDescription('CODIMA Express History Long Term IPv4 Peer Database ICMP Object Group.')
ip_peer_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 6, 2))
ips_base_group = object_group((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):
ips_base_group = ipsBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
ipsBaseGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database Base Object Group.')
ips_derived_group = object_group((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):
ips_derived_group = ipsDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
ipsDerivedGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database Derived Object Group.')
ips_icmp_group = object_group((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):
ips_icmp_group = ipsIcmpGroup.setStatus('current')
if mibBuilder.loadTexts:
ipsIcmpGroup.setDescription('CODIMA Express History Short Term IPv4 Peer Database ICMP Object Group.')
db_protocol_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7))
protocol_long_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 1))
pl_base_group = object_group((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):
pl_base_group = plBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
plBaseGroup.setDescription('CODIMA Express History Long Term Protocol Database Base Object Group.')
pl_derived_group = object_group((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):
pl_derived_group = plDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
plDerivedGroup.setDescription('CODIMA Express History Long Term Protocol Database Derived Object Group.')
protocol_short_term_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 7, 2))
ps_base_group = object_group((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):
ps_base_group = psBaseGroup.setStatus('current')
if mibBuilder.loadTexts:
psBaseGroup.setDescription('CODIMA Express History Short Term Protocol Database Base Object Group.')
ps_derived_group = object_group((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):
ps_derived_group = psDerivedGroup.setStatus('current')
if mibBuilder.loadTexts:
psDerivedGroup.setDescription('CODIMA Express History Short Term Protocol Database Derived Object Group.')
db_net_channel_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 8))
net_channel_long_term_group = object_group((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):
net_channel_long_term_group = netChannelLongTermGroup.setStatus('current')
if mibBuilder.loadTexts:
netChannelLongTermGroup.setDescription('CODIMA Express History Long Term NetChannel Database NetChannel Object Group.')
net_channel_short_term_group = object_group((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):
net_channel_short_term_group = netChannelShortTermGroup.setStatus('current')
if mibBuilder.loadTexts:
netChannelShortTermGroup.setDescription('CODIMA Express History Short Term NetChannel Database NetChannel Object Group.')
db_vlan_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 1, 1, 9))
vlan_long_term_group = object_group((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):
vlan_long_term_group = vlanLongTermGroup.setStatus('current')
if mibBuilder.loadTexts:
vlanLongTermGroup.setDescription('CODIMA Express History Long Term VLAN Database VLAN Object Group.')
vlan_short_term_group = object_group((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):
vlan_short_term_group = vlanShortTermGroup.setStatus('current')
if mibBuilder.loadTexts:
vlanShortTermGroup.setDescription('CODIMA Express History Short Term VLAN Database Object Group.')
alarm_object_group = object_group((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):
alarm_object_group = alarmObjectGroup.setStatus('current')
if mibBuilder.loadTexts:
alarmObjectGroup.setDescription('CODIMA Express Alarm Object Group.')
express_notification_groups = mib_identifier((1, 3, 6, 1, 4, 1, 226, 3, 2, 3, 2))
alarm_notify_group = notification_group((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):
alarm_notify_group = 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
| class Solution:
def peak_index_in_mountain_array(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)
| 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} | """
Comprehensions - constructs that allow sequences to be built
from other sequences
Three types -
List Comprehensions
Dictionary Comprehensions
Set Comprehensions
"""
multiples = [i for i in range(30) if i % 3 is 0]
print(multiples)
squared = [x ** 2 for x in range(10)]
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)
squared = {x ** 2 for x in [1, 1, 2]}
print(squared) |
#!/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")
| table_cols = 9
table_rows = 9
list_size = 9
with open('vimwiki.snippets', 'w') as file:
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')
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')
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')
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 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 solution(nums):
set_nums = set(nums)
if len(setNums) > len(nums) // 2:
return len(nums) // 2
return len(setNums)
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) | 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) |
def findDecision(obj): #obj[0]: Coupon, obj[1]: Education, obj[2]: Occupation, obj[3]: Distance
# {"feature": "Coupon", "instances": 51, "metric_value": 0.9975, "depth": 1}
if obj[0]>1:
# {"feature": "Education", "instances": 37, "metric_value": 0.9353, "depth": 2}
if obj[1]>0:
# {"feature": "Occupation", "instances": 29, "metric_value": 0.9784, "depth": 3}
if obj[2]<=20:
# {"feature": "Distance", "instances": 28, "metric_value": 0.9666, "depth": 4}
if obj[3]<=2:
return 'True'
elif obj[3]>2:
return 'True'
else: return 'True'
elif obj[2]>20:
return 'False'
else: return 'False'
elif obj[1]<=0:
# {"feature": "Occupation", "instances": 8, "metric_value": 0.5436, "depth": 3}
if obj[2]>5:
return 'True'
elif obj[2]<=5:
# {"feature": "Distance", "instances": 2, "metric_value": 1.0, "depth": 4}
if obj[3]<=1:
return 'True'
elif obj[3]>1:
return 'False'
else: return 'False'
else: return 'True'
else: return 'True'
elif obj[0]<=1:
# {"feature": "Occupation", "instances": 14, "metric_value": 0.7496, "depth": 2}
if obj[2]>4:
return 'False'
elif obj[2]<=4:
# {"feature": "Education", "instances": 6, "metric_value": 1.0, "depth": 3}
if obj[1]>1:
# {"feature": "Distance", "instances": 4, "metric_value": 0.8113, "depth": 4}
if obj[3]<=2:
return 'True'
elif obj[3]>2:
return 'True'
else: return 'True'
elif obj[1]<=1:
return 'False'
else: return 'False'
else: return 'False'
else: return 'False'
| def find_decision(obj):
if obj[0] > 1:
if obj[1] > 0:
if obj[2] <= 20:
if obj[3] <= 2:
return 'True'
elif obj[3] > 2:
return 'True'
else:
return 'True'
elif obj[2] > 20:
return 'False'
else:
return 'False'
elif obj[1] <= 0:
if obj[2] > 5:
return 'True'
elif obj[2] <= 5:
if obj[3] <= 1:
return 'True'
elif obj[3] > 1:
return 'False'
else:
return 'False'
else:
return 'True'
else:
return 'True'
elif obj[0] <= 1:
if obj[2] > 4:
return 'False'
elif obj[2] <= 4:
if obj[1] > 1:
if obj[3] <= 2:
return 'True'
elif obj[3] > 2:
return 'True'
else:
return 'True'
elif obj[1] <= 1:
return 'False'
else:
return 'False'
else:
return 'False'
else:
return 'False' |
# -*- coding: utf-8 -*-
"""
Auth* related model.
This is where the models used by the authentication stack are defined.
It's perfectly fine to re-use this definition in the redrugs application,
though.
"""
| """
Auth* related model.
This is where the models used by the authentication stack are defined.
It's perfectly fine to re-use this definition in the redrugs application,
though.
""" |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: (c) 2020, Brian Scholer <@briantist>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r'''
---
module: win_psrepository_copy
short_description: Copies registered PSRepositories to other user profiles
version_added: '1.3.0'
description:
- Copies specified registered PSRepositories to other user profiles on the system.
- Can include the C(Default) profile so that new users start with the selected repositories.
- Can include special service accounts like the local SYSTEM user, LocalService, NetworkService.
options:
source:
description:
- The full path to the source repositories XML file.
- Defaults to the repositories registered to the current user.
type: path
default: '%LOCALAPPDATA%\Microsoft\Windows\PowerShell\PowerShellGet\PSRepositories.xml'
name:
description:
- The names of repositories to copy.
- Names are interpreted as wildcards.
type: list
elements: str
default: ['*']
exclude:
description:
- The names of repositories to exclude.
- Names are interpreted as wildcards.
- If a name matches both an include (I(name)) and I(exclude), it will be excluded.
type: list
elements: str
profiles:
description:
- The names of user profiles to populate with repositories.
- Names are interpreted as wildcards.
- The C(Default) profile can also be matched.
- The C(Public) and C(All Users) profiles cannot be targeted, as PSRepositories are not loaded from them.
type: list
elements: str
default: ['*']
exclude_profiles:
description:
- The names of user profiles to exclude.
- If a profile matches both an include (I(profiles)) and I(exclude_profiles), it will be excluded.
- By default, the service account profiles are excluded.
- To explcitly exclude nothing, set I(exclude_profiles=[]).
type: list
elements: str
default:
- systemprofile
- LocalService
- NetworkService
notes:
- Does not require the C(PowerShellGet) module or any other external dependencies.
- User profiles are loaded from the registry. If a given path does not exist (like if the profile directory was deleted), it is silently skipped.
- If setting service account profiles, you may need C(become=yes). See examples.
- "When PowerShellGet first sets up a repositories file, it always adds C(PSGallery), however if this module creates a new repos file and your selected
repositories don't include C(PSGallery), it won't be in your destination."
- "The values searched in I(profiles) (and I(exclude_profiles)) are profile names, not necessarily user names. This can happen when the profile path is
deliberately changed or when domain user names conflict with users from the local computer or another domain. In this case the second+ user may have the
domain name or local computer name appended, like C(JoeUser.Contoso) vs. C(JoeUser).
If you intend to filter user profiles, ensure your filters catch the right names."
- "In the case of the service accounts, the specific profiles are C(systemprofile) (for the C(SYSTEM) user), and C(LocalService) or C(NetworkService)
for those accounts respectively."
- "Repositories with credentials (requiring authentication) or proxy information will copy, but the credentials and proxy details will not as that
information is not stored with repository."
seealso:
- module: community.windows.win_psrepository
- module: community.windows.win_psrepository_info
author:
- Brian Scholer (@briantist)
'''
EXAMPLES = r'''
- name: Copy the current user's PSRepositories to all non-service account profiles and Default profile
community.windows.win_psrepository_copy:
- name: Copy the current user's PSRepositories to all profiles and Default profile
community.windows.win_psrepository_copy:
exclude_profiles: []
- name: Copy the current user's PSRepositories to all profiles beginning with A, B, or C
community.windows.win_psrepository_copy:
profiles:
- 'A*'
- 'B*'
- 'C*'
- name: Copy the current user's PSRepositories to all profiles beginning B except Brian and Brianna
community.windows.win_psrepository_copy:
profiles: 'B*'
exclude_profiles:
- Brian
- Brianna
- name: Copy a specific set of repositories to profiles beginning with 'svc' with exceptions
community.windows.win_psrepository_copy:
name:
- CompanyRepo1
- CompanyRepo2
- PSGallery
profiles: 'svc*'
exclude_profiles: 'svc-restricted'
- name: Copy repos matching a pattern with exceptions
community.windows.win_psrepository_copy:
name: 'CompanyRepo*'
exclude: 'CompanyRepo*-Beta'
- name: Copy repositories from a custom XML file on the target host
community.windows.win_psrepository_copy:
source: 'C:\data\CustomRepostories.xml'
### A sample workflow of seeding a system with a custom repository
# A playbook that does initial host setup or builds system images
- name: Register custom respository
community.windows.win_psrepository:
name: PrivateRepo
source_location: https://example.com/nuget/feed/etc
installation_policy: trusted
- name: Ensure all current and new users have this repository registered
community.windows.win_psrepository_copy:
name: PrivateRepo
# In another playbook, run by other users (who may have been created later)
- name: Install a module
community.windows.win_psmodule:
name: CompanyModule
repository: PrivateRepo
state: present
'''
RETURN = r'''
'''
| documentation = '\n---\nmodule: win_psrepository_copy\nshort_description: Copies registered PSRepositories to other user profiles\nversion_added: \'1.3.0\'\ndescription:\n - Copies specified registered PSRepositories to other user profiles on the system.\n - Can include the C(Default) profile so that new users start with the selected repositories.\n - Can include special service accounts like the local SYSTEM user, LocalService, NetworkService.\noptions:\n source:\n description:\n - The full path to the source repositories XML file.\n - Defaults to the repositories registered to the current user.\n type: path\n default: \'%LOCALAPPDATA%\\Microsoft\\Windows\\PowerShell\\PowerShellGet\\PSRepositories.xml\'\n name:\n description:\n - The names of repositories to copy.\n - Names are interpreted as wildcards.\n type: list\n elements: str\n default: [\'*\']\n exclude:\n description:\n - The names of repositories to exclude.\n - Names are interpreted as wildcards.\n - If a name matches both an include (I(name)) and I(exclude), it will be excluded.\n type: list\n elements: str\n profiles:\n description:\n - The names of user profiles to populate with repositories.\n - Names are interpreted as wildcards.\n - The C(Default) profile can also be matched.\n - The C(Public) and C(All Users) profiles cannot be targeted, as PSRepositories are not loaded from them.\n type: list\n elements: str\n default: [\'*\']\n exclude_profiles:\n description:\n - The names of user profiles to exclude.\n - If a profile matches both an include (I(profiles)) and I(exclude_profiles), it will be excluded.\n - By default, the service account profiles are excluded.\n - To explcitly exclude nothing, set I(exclude_profiles=[]).\n type: list\n elements: str\n default:\n - systemprofile\n - LocalService\n - NetworkService\nnotes:\n - Does not require the C(PowerShellGet) module or any other external dependencies.\n - User profiles are loaded from the registry. If a given path does not exist (like if the profile directory was deleted), it is silently skipped.\n - If setting service account profiles, you may need C(become=yes). See examples.\n - "When PowerShellGet first sets up a repositories file, it always adds C(PSGallery), however if this module creates a new repos file and your selected\n repositories don\'t include C(PSGallery), it won\'t be in your destination."\n - "The values searched in I(profiles) (and I(exclude_profiles)) are profile names, not necessarily user names. This can happen when the profile path is\n deliberately changed or when domain user names conflict with users from the local computer or another domain. In this case the second+ user may have the\n domain name or local computer name appended, like C(JoeUser.Contoso) vs. C(JoeUser).\n If you intend to filter user profiles, ensure your filters catch the right names."\n - "In the case of the service accounts, the specific profiles are C(systemprofile) (for the C(SYSTEM) user), and C(LocalService) or C(NetworkService)\n for those accounts respectively."\n - "Repositories with credentials (requiring authentication) or proxy information will copy, but the credentials and proxy details will not as that\n information is not stored with repository."\nseealso:\n - module: community.windows.win_psrepository\n - module: community.windows.win_psrepository_info\nauthor:\n - Brian Scholer (@briantist)\n'
examples = "\n- name: Copy the current user's PSRepositories to all non-service account profiles and Default profile\n community.windows.win_psrepository_copy:\n\n- name: Copy the current user's PSRepositories to all profiles and Default profile\n community.windows.win_psrepository_copy:\n exclude_profiles: []\n\n- name: Copy the current user's PSRepositories to all profiles beginning with A, B, or C\n community.windows.win_psrepository_copy:\n profiles:\n - 'A*'\n - 'B*'\n - 'C*'\n\n- name: Copy the current user's PSRepositories to all profiles beginning B except Brian and Brianna\n community.windows.win_psrepository_copy:\n profiles: 'B*'\n exclude_profiles:\n - Brian\n - Brianna\n\n- name: Copy a specific set of repositories to profiles beginning with 'svc' with exceptions\n community.windows.win_psrepository_copy:\n name:\n - CompanyRepo1\n - CompanyRepo2\n - PSGallery\n profiles: 'svc*'\n exclude_profiles: 'svc-restricted'\n\n- name: Copy repos matching a pattern with exceptions\n community.windows.win_psrepository_copy:\n name: 'CompanyRepo*'\n exclude: 'CompanyRepo*-Beta'\n\n- name: Copy repositories from a custom XML file on the target host\n community.windows.win_psrepository_copy:\n source: 'C:\\data\\CustomRepostories.xml'\n\n### A sample workflow of seeding a system with a custom repository\n\n# A playbook that does initial host setup or builds system images\n\n- name: Register custom respository\n community.windows.win_psrepository:\n name: PrivateRepo\n source_location: https://example.com/nuget/feed/etc\n installation_policy: trusted\n\n- name: Ensure all current and new users have this repository registered\n community.windows.win_psrepository_copy:\n name: PrivateRepo\n\n# In another playbook, run by other users (who may have been created later)\n\n- name: Install a module\n community.windows.win_psmodule:\n name: CompanyModule\n repository: PrivateRepo\n state: present\n"
return = '\n' |
# -*- coding: utf-8 -*-
__version__ = '4.4.0'
__description__ = """Sequoia Python Client SDK"""
__url__ = "https://github.com/pikselpalette/sequoia-python-client-sdk"
__author__ = 'Piksel'
| __version__ = '4.4.0'
__description__ = 'Sequoia Python Client SDK'
__url__ = 'https://github.com/pikselpalette/sequoia-python-client-sdk'
__author__ = 'Piksel' |
class MockupSpineLog(object):
def debug(self, message, *args):
pass
class MockupSpine(object):
def __init__(self):
self.queryHandlers = {}
self.commandHandlers = {}
self.eventHandlers = {}
self.events={}
self.log = MockupSpineLog()
def register_query_handler(self, query, func, **kwargs):
self.queryHandlers[query] = func
def register_command_handler(self, query, func, **kwargs):
self.commandHandlers[query] = func
def register_event_handler(self, query, func, **kwargs):
self.eventHandlers[query] = func
def trigger_event(self, event, id, *args, **kwargs):
self.events[event] = {"id":id, "args":args, "kwargs":kwargs}
| class Mockupspinelog(object):
def debug(self, message, *args):
pass
class Mockupspine(object):
def __init__(self):
self.queryHandlers = {}
self.commandHandlers = {}
self.eventHandlers = {}
self.events = {}
self.log = mockup_spine_log()
def register_query_handler(self, query, func, **kwargs):
self.queryHandlers[query] = func
def register_command_handler(self, query, func, **kwargs):
self.commandHandlers[query] = func
def register_event_handler(self, query, func, **kwargs):
self.eventHandlers[query] = func
def trigger_event(self, event, id, *args, **kwargs):
self.events[event] = {'id': id, 'args': args, 'kwargs': kwargs} |
class BaseError(Exception):
"""Base error class"""
pass
class UtilError(BaseError):
"""Base util error class"""
pass
class CCMAPIError(UtilError):
"""Raised when a ccm_api returned status is not `ok`"""
pass | class Baseerror(Exception):
"""Base error class"""
pass
class Utilerror(BaseError):
"""Base util error class"""
pass
class Ccmapierror(UtilError):
"""Raised when a ccm_api returned status is not `ok`"""
pass |
def interchange(array,k):
low,high,n = 0, len(array)-1,len(array)
x = min(k,n-k)
for i in range(x):
array[low],array[high] = array[high],array[low]
low +=1
high -= 1
def rotateArray(array,k):
for i in range(k):
temp = array[0]
for j in range(len(array)-1):
array[j]=array[j+1]
array[j+1] = temp
# Round robin tournamnet scheduling:
def leftRotate(array):
temp = array[1]
length = len(array)
for i in range(1, length-1):
array[i] = array[i + 1]
array[length - 1] = temp
def insertPairing(array):
n = len(array) // 2
for i in range(n):
print(str(array[i])+" "+str(array[i+n]))
pass
def getTimeTable(array):
for i in range(len(array)-1):
insertPairing(array)
leftRotate(array)
print("--------------")
x = [1, 2, 3, 4, 5, 6]
getTimeTable(x)
| def interchange(array, k):
(low, high, n) = (0, len(array) - 1, len(array))
x = min(k, n - k)
for i in range(x):
(array[low], array[high]) = (array[high], array[low])
low += 1
high -= 1
def rotate_array(array, k):
for i in range(k):
temp = array[0]
for j in range(len(array) - 1):
array[j] = array[j + 1]
array[j + 1] = temp
def left_rotate(array):
temp = array[1]
length = len(array)
for i in range(1, length - 1):
array[i] = array[i + 1]
array[length - 1] = temp
def insert_pairing(array):
n = len(array) // 2
for i in range(n):
print(str(array[i]) + ' ' + str(array[i + n]))
pass
def get_time_table(array):
for i in range(len(array) - 1):
insert_pairing(array)
left_rotate(array)
print('--------------')
x = [1, 2, 3, 4, 5, 6]
get_time_table(x) |
class TestClass:
def test_deepsegmenter(self):
"""here is my test code
https://docs.pytest.org/en/stable/getting-started.html#create-your-first-test
"""
# no test now
assert True
| class Testclass:
def test_deepsegmenter(self):
"""here is my test code
https://docs.pytest.org/en/stable/getting-started.html#create-your-first-test
"""
assert True |
"""
RISC-V disassemble helper
(c) 2019 The Bonfire Project
License: See LICENSE
"""
abi_regnames = ( "zero","ra","sp","gp","tp","t0","t1","t2","s0","s1","a0","a1","a2","a3","a4","a5", \
"a6","a7","s2","s3","s4","s5","s6","s7","s8","s9","s10","s11","t3","t4","t5","t6")
def abi_name(x):
return abi_regnames[x]
| """
RISC-V disassemble helper
(c) 2019 The Bonfire Project
License: See LICENSE
"""
abi_regnames = ('zero', 'ra', 'sp', 'gp', 'tp', 't0', 't1', 't2', 's0', 's1', 'a0', 'a1', 'a2', 'a3', 'a4', 'a5', 'a6', 'a7', 's2', 's3', 's4', 's5', 's6', 's7', 's8', 's9', 's10', 's11', 't3', 't4', 't5', 't6')
def abi_name(x):
return abi_regnames[x] |
class Record():
def __init__(self, record_id, parent_id):
self.record_id = record_id
self.parent_id = parent_id
class Node():
def __init__(self, node_id):
self.node_id = node_id
self.children = []
def BuildTree(records):
root = None
records.sort(key=lambda x: x.record_id)
ordered_id = [i.record_id for i in records]
if records:
if ordered_id[-1] != len(ordered_id) - 1:
raise ValueError('Tree must be continuous')
if ordered_id[0] != 0:
raise ValueError('Tree must start with id 0')
trees = []
parent = {}
for i in range(len(ordered_id)):
for j in records:
if ordered_id[i] == j.record_id:
if j.record_id == 0:
if j.parent_id != 0:
raise ValueError('Root node cannot have a parent')
if j.record_id < j.parent_id:
raise ValueError('Parent id must be lower than child id')
if j.record_id == j.parent_id:
if j.record_id != 0:
raise ValueError('Tree is a cycle')
trees.append(Node(ordered_id[i]))
for i in range(len(ordered_id)):
for j in trees:
if i == j.node_id:
parent = j
for j in records:
if j.parent_id == i:
for k in trees:
if k.node_id == 0:
continue
if j.record_id == k.node_id:
child = k
parent.children.append(child)
if len(trees) > 0:
root = trees[0]
return root
| class Record:
def __init__(self, record_id, parent_id):
self.record_id = record_id
self.parent_id = parent_id
class Node:
def __init__(self, node_id):
self.node_id = node_id
self.children = []
def build_tree(records):
root = None
records.sort(key=lambda x: x.record_id)
ordered_id = [i.record_id for i in records]
if records:
if ordered_id[-1] != len(ordered_id) - 1:
raise value_error('Tree must be continuous')
if ordered_id[0] != 0:
raise value_error('Tree must start with id 0')
trees = []
parent = {}
for i in range(len(ordered_id)):
for j in records:
if ordered_id[i] == j.record_id:
if j.record_id == 0:
if j.parent_id != 0:
raise value_error('Root node cannot have a parent')
if j.record_id < j.parent_id:
raise value_error('Parent id must be lower than child id')
if j.record_id == j.parent_id:
if j.record_id != 0:
raise value_error('Tree is a cycle')
trees.append(node(ordered_id[i]))
for i in range(len(ordered_id)):
for j in trees:
if i == j.node_id:
parent = j
for j in records:
if j.parent_id == i:
for k in trees:
if k.node_id == 0:
continue
if j.record_id == k.node_id:
child = k
parent.children.append(child)
if len(trees) > 0:
root = trees[0]
return root |
def restrict_level(mobs, level):
for mob, priority in mobs:
if level < mob.level:
continue
yield (mob, priority)
def restrict_terrain(mobs, terrain):
for mob, priority in mobs:
if terrain not in mob.terrains:
continue
yield (mob, priority)
def restrict_mercenary(mobs, mercenary):
for mob, priority in mobs:
if mercenary != mob.is_mercenary:
continue
yield (mob, priority)
def change_type_priority(mobs, types, delta):
for mob, priority in mobs:
if mob.type in types:
yield (mob, priority + delta)
continue
yield (mob, priority)
| def restrict_level(mobs, level):
for (mob, priority) in mobs:
if level < mob.level:
continue
yield (mob, priority)
def restrict_terrain(mobs, terrain):
for (mob, priority) in mobs:
if terrain not in mob.terrains:
continue
yield (mob, priority)
def restrict_mercenary(mobs, mercenary):
for (mob, priority) in mobs:
if mercenary != mob.is_mercenary:
continue
yield (mob, priority)
def change_type_priority(mobs, types, delta):
for (mob, priority) in mobs:
if mob.type in types:
yield (mob, priority + delta)
continue
yield (mob, priority) |
# noinspection PyBroadException
def computegrade(score):
try:
score = float(input("Enter the score"))
if score >= 0.9:
print("Grade A")
elif score >= 0.8:
print("Grade B")
elif score >= 0.7:
print("Grade C")
elif score >= 0.6:
print("Grade D")
elif score < 0.6:
print("Grade F")
else:
print("Bad score")
except:
print("please revise ur values")
score = float(input("Enter the score:"))
if score >= 1.1:
computegrade(score)
else:
print("Enter correct numeric values")
| def computegrade(score):
try:
score = float(input('Enter the score'))
if score >= 0.9:
print('Grade A')
elif score >= 0.8:
print('Grade B')
elif score >= 0.7:
print('Grade C')
elif score >= 0.6:
print('Grade D')
elif score < 0.6:
print('Grade F')
else:
print('Bad score')
except:
print('please revise ur values')
score = float(input('Enter the score:'))
if score >= 1.1:
computegrade(score)
else:
print('Enter correct numeric values') |
""" LOL! I need = (One; Javascript) ~please . bin/djet.lang:print
:Note! 13; Street, Lulin10, Sofia; Boril B. Boyanov; (13 = Streetno); ...
([&1] -> Small Addreess) ~please Nigga, Im :l33t{wracker, hacker, physici\
an & physicist} """
| """ LOL! I need = (One; Javascript) ~please . bin/djet.lang:print
:Note! 13; Street, Lulin10, Sofia; Boril B. Boyanov; (13 = Streetno); ...
([&1] -> Small Addreess) ~please Nigga, Im :l33t{wracker, hacker, physici an & physicist} """ |
# __init__.py
# Copyright 2021 Roger Marsh
# Licence: See LICENCE (BSD licence)
"""Access Berkeley DB database of chess games using berkeleydb package.
This interface can be used if the berkeleydb package is installed.
berkeleydb is available as a source package, from PyPI for example.
Follow the instructions to build and install berkeleydb. This includes
installing Berkeley DB.
"""
| """Access Berkeley DB database of chess games using berkeleydb package.
This interface can be used if the berkeleydb package is installed.
berkeleydb is available as a source package, from PyPI for example.
Follow the instructions to build and install berkeleydb. This includes
installing Berkeley DB.
""" |
"""Shared modules for template-based document generation.
This is how the file generation from a yWriter project is generally done:
The write method runs through all chapters, scenes, and world building
elements, such as characters, locations ans items, and fills templates.
The package's README file contains a list of templates and placeholders:
https://github.com/peter88213/PyWriter/tree/master/src/pywriter/file#readme
Modules:
file_export.py -- Provide a generic class for template-based file export.
filter.py -- Provide a generic filter class for template-based file export.
sc_lc_filter.py -- Provide a scene per location filter class for template-based file export.
sc_cr_filter.py -- Provide a scene per character filter class for template-based file export.
sc_tg_filter.py -- Provide a scene per tag filter class for template-based file export.
sc_it_filter.py -- Provide a scene per item filter class for template-based file export.
sc_vp_filter.py -- Provide a scene per viewpoint filter class for template-based file export.
"""
| """Shared modules for template-based document generation.
This is how the file generation from a yWriter project is generally done:
The write method runs through all chapters, scenes, and world building
elements, such as characters, locations ans items, and fills templates.
The package's README file contains a list of templates and placeholders:
https://github.com/peter88213/PyWriter/tree/master/src/pywriter/file#readme
Modules:
file_export.py -- Provide a generic class for template-based file export.
filter.py -- Provide a generic filter class for template-based file export.
sc_lc_filter.py -- Provide a scene per location filter class for template-based file export.
sc_cr_filter.py -- Provide a scene per character filter class for template-based file export.
sc_tg_filter.py -- Provide a scene per tag filter class for template-based file export.
sc_it_filter.py -- Provide a scene per item filter class for template-based file export.
sc_vp_filter.py -- Provide a scene per viewpoint filter class for template-based file export.
""" |
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
# Generated by the Odoo plugin for Dia !
# -*- coding: utf-8 -*-
{
'name': "libro_compras",
'summary': """
Libro de Compras
""",
'description': """
Libro de Compras
""",
'author': "Softw & Hardw Solutions SSH",
'website': "https://solutionssh.com/",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Contabilidad',
'version': '0.1',
# any module necessary for this one to work correctly
"depends" : ['base','account'],
# always loaded
'data': ['views/wizard_libro_compras.xml','reports/report_factura_proveedores.xml'],
# only loaded in demonstration mode
'demo': [
],
'installable': True,
}
| {'name': 'libro_compras', 'summary': '\n Libro de Compras\n ', 'description': '\n Libro de Compras\n ', 'author': 'Softw & Hardw Solutions SSH', 'website': 'https://solutionssh.com/', 'category': 'Contabilidad', 'version': '0.1', 'depends': ['base', 'account'], 'data': ['views/wizard_libro_compras.xml', 'reports/report_factura_proveedores.xml'], 'demo': [], 'installable': True} |
cases = int(input())
for case in range(cases):
k,p = [int(x) for x in input().split(' ')]
print(k,int(p+(p*(p+1))/2))
| cases = int(input())
for case in range(cases):
(k, p) = [int(x) for x in input().split(' ')]
print(k, int(p + p * (p + 1) / 2)) |
test_cases = int(input().strip())
def get_days_of_month(month):
if month == 2:
return 28
if month in [1, 3, 5, 7, 8, 10, 12]:
return 31
return 30
for i in range(1, test_cases + 1):
month1, day1, month2, day2 = map(int, input().strip().split())
if month1 == month2:
print('#{} {}'.format(i, day2 - day1 + 1))
else:
total = 0
for j in range(month1, month2):
total += get_days_of_month(j)
total = total - day1 + 1
total += day2
print('#{} {}'.format(i, total))
| test_cases = int(input().strip())
def get_days_of_month(month):
if month == 2:
return 28
if month in [1, 3, 5, 7, 8, 10, 12]:
return 31
return 30
for i in range(1, test_cases + 1):
(month1, day1, month2, day2) = map(int, input().strip().split())
if month1 == month2:
print('#{} {}'.format(i, day2 - day1 + 1))
else:
total = 0
for j in range(month1, month2):
total += get_days_of_month(j)
total = total - day1 + 1
total += day2
print('#{} {}'.format(i, total)) |
#
# PySNMP MIB module CISCO-DOT11-QOS-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-DOT11-QOS-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:38:30 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)
#
OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ConstraintsIntersection, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint")
CDot11IfVlanIdOrZero, = mibBuilder.importSymbols("CISCO-DOT11-IF-MIB", "CDot11IfVlanIdOrZero")
ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ModuleCompliance, ObjectGroup, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "ObjectGroup", "NotificationGroup")
ObjectIdentity, ModuleIdentity, Unsigned32, Integer32, iso, Gauge32, MibIdentifier, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, Counter32, Bits, TimeTicks, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "ModuleIdentity", "Unsigned32", "Integer32", "iso", "Gauge32", "MibIdentifier", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "Counter32", "Bits", "TimeTicks", "IpAddress")
TruthValue, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "DisplayString", "TextualConvention")
ciscoDot11QosMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 416))
ciscoDot11QosMIB.setRevisions(('2006-05-09 00:00', '2003-11-24 00:00',))
if mibBuilder.loadTexts: ciscoDot11QosMIB.setLastUpdated('200605090000Z')
if mibBuilder.loadTexts: ciscoDot11QosMIB.setOrganization('Cisco Systems Inc.')
ciscoDot11QosMIBNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 0))
ciscoDot11QosMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1))
ciscoDot11QosMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2))
ciscoDot11QosConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1))
ciscoDot11QosQueue = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2))
ciscoDot11QosStatistics = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3))
ciscoDot11QosNotifControl = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 4))
class Cdot11QosTrafficClass(TextualConvention, Integer32):
reference = 'IEEE 802.1D-1998, Annex H.2.10 and IEEE 802.11E-2001, section 7.5.1.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))
namedValues = NamedValues(("background", 0), ("bestEffort", 1), ("video", 2), ("voice", 3))
cdot11QosConfigTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1), )
if mibBuilder.loadTexts: cdot11QosConfigTable.setStatus('current')
cdot11QosConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-DOT11-QOS-MIB", "cdot11TrafficQueue"))
if mibBuilder.loadTexts: cdot11QosConfigEntry.setStatus('current')
cdot11TrafficQueue = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 1), Unsigned32())
if mibBuilder.loadTexts: cdot11TrafficQueue.setStatus('current')
cdot11TrafficClass = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 2), Cdot11QosTrafficClass()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11TrafficClass.setStatus('current')
cdot11QosCWmin = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cdot11QosCWmin.setStatus('current')
cdot11QosCWmax = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cdot11QosCWmax.setStatus('current')
cdot11QosBackoffOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 20))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cdot11QosBackoffOffset.setStatus('current')
cdot11QosMaxRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cdot11QosMaxRetry.setStatus('current')
cdot11QosSupportTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2), )
if mibBuilder.loadTexts: cdot11QosSupportTable.setStatus('current')
cdot11QosSupportEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cdot11QosSupportEntry.setStatus('current')
cdot11QosOptionImplemented = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 1), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosOptionImplemented.setStatus('current')
cdot11QosOptionEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 2), TruthValue()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosOptionEnabled.setStatus('current')
cdot11QosQueuesAvailable = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(4, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosQueuesAvailable.setStatus('current')
cdot11QosQueueTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1), )
if mibBuilder.loadTexts: cdot11QosQueueTable.setStatus('current')
cdot11QosQueueEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-DOT11-QOS-MIB", "cdot11TrafficQueue"))
if mibBuilder.loadTexts: cdot11QosQueueEntry.setStatus('current')
cdot11QosQueueQuota = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosQueueQuota.setStatus('current')
cdot11QosQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosQueueSize.setStatus('current')
cdot11QosQueuePeakSize = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosQueuePeakSize.setStatus('current')
cdot11QosStatisticsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1), )
if mibBuilder.loadTexts: cdot11QosStatisticsTable.setStatus('current')
cdot11QosStatisticsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-DOT11-QOS-MIB", "cdot11TrafficQueue"))
if mibBuilder.loadTexts: cdot11QosStatisticsEntry.setStatus('current')
cdot11QosDiscardedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosDiscardedFrames.setStatus('current')
cdot11QosFails = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosFails.setStatus('current')
cdot11QosRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosRetries.setStatus('current')
cdot11QosMutipleRetries = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosMutipleRetries.setStatus('current')
cdot11QosTransmittedFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosTransmittedFrames.setStatus('current')
cdot11QosIfStatisticsTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2), )
if mibBuilder.loadTexts: cdot11QosIfStatisticsTable.setStatus('current')
cdot11QosIfStatisticsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: cdot11QosIfStatisticsEntry.setStatus('current')
cdot11QosIfDiscardedFragments = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosIfDiscardedFragments.setStatus('current')
cdot11QosIfVlanTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3), )
if mibBuilder.loadTexts: cdot11QosIfVlanTable.setStatus('current')
cdot11QosIfVlanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "CISCO-DOT11-QOS-MIB", "cdot11QosIfVlanId"))
if mibBuilder.loadTexts: cdot11QosIfVlanEntry.setStatus('current')
cdot11QosIfVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1, 1), CDot11IfVlanIdOrZero().subtype(subtypeSpec=ValueRangeConstraint(1, 4095)))
if mibBuilder.loadTexts: cdot11QosIfVlanId.setStatus('current')
cdot11QosIfVlanTrafficClass = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1, 2), Cdot11QosTrafficClass()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cdot11QosIfVlanTrafficClass.setStatus('current')
cdot11QosNotifEnabled = MibScalar((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 4, 1), TruthValue().clone('false')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: cdot11QosNotifEnabled.setStatus('current')
cdot11QosChangeNotif = NotificationType((1, 3, 6, 1, 4, 1, 9, 9, 416, 0, 1)).setObjects(("CISCO-DOT11-QOS-MIB", "cdot11TrafficClass"))
if mibBuilder.loadTexts: cdot11QosChangeNotif.setStatus('current')
ciscoDot11QosMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 1))
ciscoDot11QosMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2))
ciscoDot11QosMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 1, 1)).setObjects(("CISCO-DOT11-QOS-MIB", "ciscoDot11QosConfigGroup"), ("CISCO-DOT11-QOS-MIB", "ciscoDot11QosStatsGroup"), ("CISCO-DOT11-QOS-MIB", "ciscoDot11QosNotifControlGroup"), ("CISCO-DOT11-QOS-MIB", "ciscoDot11QosNotificationGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoDot11QosMIBCompliance = ciscoDot11QosMIBCompliance.setStatus('current')
ciscoDot11QosConfigGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 1)).setObjects(("CISCO-DOT11-QOS-MIB", "cdot11TrafficClass"), ("CISCO-DOT11-QOS-MIB", "cdot11QosCWmin"), ("CISCO-DOT11-QOS-MIB", "cdot11QosCWmax"), ("CISCO-DOT11-QOS-MIB", "cdot11QosBackoffOffset"), ("CISCO-DOT11-QOS-MIB", "cdot11QosMaxRetry"), ("CISCO-DOT11-QOS-MIB", "cdot11QosOptionImplemented"), ("CISCO-DOT11-QOS-MIB", "cdot11QosOptionEnabled"), ("CISCO-DOT11-QOS-MIB", "cdot11QosQueuesAvailable"), ("CISCO-DOT11-QOS-MIB", "cdot11QosQueueQuota"), ("CISCO-DOT11-QOS-MIB", "cdot11QosQueueSize"), ("CISCO-DOT11-QOS-MIB", "cdot11QosQueuePeakSize"), ("CISCO-DOT11-QOS-MIB", "cdot11QosIfVlanTrafficClass"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoDot11QosConfigGroup = ciscoDot11QosConfigGroup.setStatus('current')
ciscoDot11QosStatsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 2)).setObjects(("CISCO-DOT11-QOS-MIB", "cdot11QosIfDiscardedFragments"), ("CISCO-DOT11-QOS-MIB", "cdot11QosDiscardedFrames"), ("CISCO-DOT11-QOS-MIB", "cdot11QosFails"), ("CISCO-DOT11-QOS-MIB", "cdot11QosRetries"), ("CISCO-DOT11-QOS-MIB", "cdot11QosMutipleRetries"), ("CISCO-DOT11-QOS-MIB", "cdot11QosTransmittedFrames"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoDot11QosStatsGroup = ciscoDot11QosStatsGroup.setStatus('current')
ciscoDot11QosNotifControlGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 3)).setObjects(("CISCO-DOT11-QOS-MIB", "cdot11QosNotifEnabled"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoDot11QosNotifControlGroup = ciscoDot11QosNotifControlGroup.setStatus('current')
ciscoDot11QosNotificationGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 4)).setObjects(("CISCO-DOT11-QOS-MIB", "cdot11QosChangeNotif"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
ciscoDot11QosNotificationGroup = ciscoDot11QosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols("CISCO-DOT11-QOS-MIB", PYSNMP_MODULE_ID=ciscoDot11QosMIB, ciscoDot11QosMIBObjects=ciscoDot11QosMIBObjects, ciscoDot11QosMIBCompliances=ciscoDot11QosMIBCompliances, cdot11QosDiscardedFrames=cdot11QosDiscardedFrames, ciscoDot11QosNotifControl=ciscoDot11QosNotifControl, cdot11QosQueueTable=cdot11QosQueueTable, cdot11QosQueuePeakSize=cdot11QosQueuePeakSize, ciscoDot11QosMIBConformance=ciscoDot11QosMIBConformance, cdot11QosIfDiscardedFragments=cdot11QosIfDiscardedFragments, ciscoDot11QosStatsGroup=ciscoDot11QosStatsGroup, cdot11QosSupportEntry=cdot11QosSupportEntry, cdot11QosQueuesAvailable=cdot11QosQueuesAvailable, cdot11QosRetries=cdot11QosRetries, cdot11QosIfVlanId=cdot11QosIfVlanId, ciscoDot11QosMIBGroups=ciscoDot11QosMIBGroups, cdot11QosSupportTable=cdot11QosSupportTable, Cdot11QosTrafficClass=Cdot11QosTrafficClass, cdot11QosTransmittedFrames=cdot11QosTransmittedFrames, cdot11QosOptionEnabled=cdot11QosOptionEnabled, ciscoDot11QosQueue=ciscoDot11QosQueue, ciscoDot11QosMIB=ciscoDot11QosMIB, cdot11QosConfigEntry=cdot11QosConfigEntry, cdot11QosConfigTable=cdot11QosConfigTable, ciscoDot11QosConfig=ciscoDot11QosConfig, cdot11QosQueueEntry=cdot11QosQueueEntry, cdot11QosIfVlanEntry=cdot11QosIfVlanEntry, ciscoDot11QosMIBCompliance=ciscoDot11QosMIBCompliance, cdot11QosBackoffOffset=cdot11QosBackoffOffset, cdot11QosIfStatisticsEntry=cdot11QosIfStatisticsEntry, cdot11QosMutipleRetries=cdot11QosMutipleRetries, cdot11QosMaxRetry=cdot11QosMaxRetry, ciscoDot11QosNotifControlGroup=ciscoDot11QosNotifControlGroup, cdot11QosChangeNotif=cdot11QosChangeNotif, cdot11QosNotifEnabled=cdot11QosNotifEnabled, cdot11QosQueueSize=cdot11QosQueueSize, cdot11QosCWmin=cdot11QosCWmin, cdot11QosQueueQuota=cdot11QosQueueQuota, cdot11TrafficClass=cdot11TrafficClass, cdot11QosIfVlanTable=cdot11QosIfVlanTable, ciscoDot11QosNotificationGroup=ciscoDot11QosNotificationGroup, cdot11QosStatisticsEntry=cdot11QosStatisticsEntry, ciscoDot11QosStatistics=ciscoDot11QosStatistics, cdot11QosOptionImplemented=cdot11QosOptionImplemented, cdot11QosIfVlanTrafficClass=cdot11QosIfVlanTrafficClass, ciscoDot11QosMIBNotifs=ciscoDot11QosMIBNotifs, cdot11QosCWmax=cdot11QosCWmax, cdot11QosIfStatisticsTable=cdot11QosIfStatisticsTable, ciscoDot11QosConfigGroup=ciscoDot11QosConfigGroup, cdot11TrafficQueue=cdot11TrafficQueue, cdot11QosFails=cdot11QosFails, cdot11QosStatisticsTable=cdot11QosStatisticsTable)
| (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, constraints_intersection, constraints_union, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint')
(c_dot11_if_vlan_id_or_zero,) = mibBuilder.importSymbols('CISCO-DOT11-IF-MIB', 'CDot11IfVlanIdOrZero')
(cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(module_compliance, object_group, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'ObjectGroup', 'NotificationGroup')
(object_identity, module_identity, unsigned32, integer32, iso, gauge32, mib_identifier, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, counter32, bits, time_ticks, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'ModuleIdentity', 'Unsigned32', 'Integer32', 'iso', 'Gauge32', 'MibIdentifier', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'Counter32', 'Bits', 'TimeTicks', 'IpAddress')
(truth_value, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'DisplayString', 'TextualConvention')
cisco_dot11_qos_mib = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 416))
ciscoDot11QosMIB.setRevisions(('2006-05-09 00:00', '2003-11-24 00:00'))
if mibBuilder.loadTexts:
ciscoDot11QosMIB.setLastUpdated('200605090000Z')
if mibBuilder.loadTexts:
ciscoDot11QosMIB.setOrganization('Cisco Systems Inc.')
cisco_dot11_qos_mib_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 0))
cisco_dot11_qos_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1))
cisco_dot11_qos_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2))
cisco_dot11_qos_config = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1))
cisco_dot11_qos_queue = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2))
cisco_dot11_qos_statistics = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3))
cisco_dot11_qos_notif_control = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 4))
class Cdot11Qostrafficclass(TextualConvention, Integer32):
reference = 'IEEE 802.1D-1998, Annex H.2.10 and IEEE 802.11E-2001, section 7.5.1.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3))
named_values = named_values(('background', 0), ('bestEffort', 1), ('video', 2), ('voice', 3))
cdot11_qos_config_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1))
if mibBuilder.loadTexts:
cdot11QosConfigTable.setStatus('current')
cdot11_qos_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-DOT11-QOS-MIB', 'cdot11TrafficQueue'))
if mibBuilder.loadTexts:
cdot11QosConfigEntry.setStatus('current')
cdot11_traffic_queue = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 1), unsigned32())
if mibBuilder.loadTexts:
cdot11TrafficQueue.setStatus('current')
cdot11_traffic_class = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 2), cdot11_qos_traffic_class()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11TrafficClass.setStatus('current')
cdot11_qos_c_wmin = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cdot11QosCWmin.setStatus('current')
cdot11_qos_c_wmax = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cdot11QosCWmax.setStatus('current')
cdot11_qos_backoff_offset = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 20))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cdot11QosBackoffOffset.setStatus('current')
cdot11_qos_max_retry = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 1, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cdot11QosMaxRetry.setStatus('current')
cdot11_qos_support_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2))
if mibBuilder.loadTexts:
cdot11QosSupportTable.setStatus('current')
cdot11_qos_support_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cdot11QosSupportEntry.setStatus('current')
cdot11_qos_option_implemented = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 1), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosOptionImplemented.setStatus('current')
cdot11_qos_option_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 2), truth_value()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosOptionEnabled.setStatus('current')
cdot11_qos_queues_available = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 2, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(4, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosQueuesAvailable.setStatus('current')
cdot11_qos_queue_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1))
if mibBuilder.loadTexts:
cdot11QosQueueTable.setStatus('current')
cdot11_qos_queue_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-DOT11-QOS-MIB', 'cdot11TrafficQueue'))
if mibBuilder.loadTexts:
cdot11QosQueueEntry.setStatus('current')
cdot11_qos_queue_quota = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosQueueQuota.setStatus('current')
cdot11_qos_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosQueueSize.setStatus('current')
cdot11_qos_queue_peak_size = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 2, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosQueuePeakSize.setStatus('current')
cdot11_qos_statistics_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1))
if mibBuilder.loadTexts:
cdot11QosStatisticsTable.setStatus('current')
cdot11_qos_statistics_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-DOT11-QOS-MIB', 'cdot11TrafficQueue'))
if mibBuilder.loadTexts:
cdot11QosStatisticsEntry.setStatus('current')
cdot11_qos_discarded_frames = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosDiscardedFrames.setStatus('current')
cdot11_qos_fails = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosFails.setStatus('current')
cdot11_qos_retries = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosRetries.setStatus('current')
cdot11_qos_mutiple_retries = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosMutipleRetries.setStatus('current')
cdot11_qos_transmitted_frames = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosTransmittedFrames.setStatus('current')
cdot11_qos_if_statistics_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2))
if mibBuilder.loadTexts:
cdot11QosIfStatisticsTable.setStatus('current')
cdot11_qos_if_statistics_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
cdot11QosIfStatisticsEntry.setStatus('current')
cdot11_qos_if_discarded_fragments = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 3, 2, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosIfDiscardedFragments.setStatus('current')
cdot11_qos_if_vlan_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3))
if mibBuilder.loadTexts:
cdot11QosIfVlanTable.setStatus('current')
cdot11_qos_if_vlan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'CISCO-DOT11-QOS-MIB', 'cdot11QosIfVlanId'))
if mibBuilder.loadTexts:
cdot11QosIfVlanEntry.setStatus('current')
cdot11_qos_if_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1, 1), c_dot11_if_vlan_id_or_zero().subtype(subtypeSpec=value_range_constraint(1, 4095)))
if mibBuilder.loadTexts:
cdot11QosIfVlanId.setStatus('current')
cdot11_qos_if_vlan_traffic_class = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 1, 3, 1, 2), cdot11_qos_traffic_class()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cdot11QosIfVlanTrafficClass.setStatus('current')
cdot11_qos_notif_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 9, 9, 416, 1, 4, 1), truth_value().clone('false')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
cdot11QosNotifEnabled.setStatus('current')
cdot11_qos_change_notif = notification_type((1, 3, 6, 1, 4, 1, 9, 9, 416, 0, 1)).setObjects(('CISCO-DOT11-QOS-MIB', 'cdot11TrafficClass'))
if mibBuilder.loadTexts:
cdot11QosChangeNotif.setStatus('current')
cisco_dot11_qos_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 1))
cisco_dot11_qos_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2))
cisco_dot11_qos_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 1, 1)).setObjects(('CISCO-DOT11-QOS-MIB', 'ciscoDot11QosConfigGroup'), ('CISCO-DOT11-QOS-MIB', 'ciscoDot11QosStatsGroup'), ('CISCO-DOT11-QOS-MIB', 'ciscoDot11QosNotifControlGroup'), ('CISCO-DOT11-QOS-MIB', 'ciscoDot11QosNotificationGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_dot11_qos_mib_compliance = ciscoDot11QosMIBCompliance.setStatus('current')
cisco_dot11_qos_config_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 1)).setObjects(('CISCO-DOT11-QOS-MIB', 'cdot11TrafficClass'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosCWmin'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosCWmax'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosBackoffOffset'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosMaxRetry'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosOptionImplemented'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosOptionEnabled'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosQueuesAvailable'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosQueueQuota'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosQueueSize'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosQueuePeakSize'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosIfVlanTrafficClass'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_dot11_qos_config_group = ciscoDot11QosConfigGroup.setStatus('current')
cisco_dot11_qos_stats_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 2)).setObjects(('CISCO-DOT11-QOS-MIB', 'cdot11QosIfDiscardedFragments'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosDiscardedFrames'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosFails'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosRetries'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosMutipleRetries'), ('CISCO-DOT11-QOS-MIB', 'cdot11QosTransmittedFrames'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_dot11_qos_stats_group = ciscoDot11QosStatsGroup.setStatus('current')
cisco_dot11_qos_notif_control_group = object_group((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 3)).setObjects(('CISCO-DOT11-QOS-MIB', 'cdot11QosNotifEnabled'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_dot11_qos_notif_control_group = ciscoDot11QosNotifControlGroup.setStatus('current')
cisco_dot11_qos_notification_group = notification_group((1, 3, 6, 1, 4, 1, 9, 9, 416, 2, 2, 4)).setObjects(('CISCO-DOT11-QOS-MIB', 'cdot11QosChangeNotif'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
cisco_dot11_qos_notification_group = ciscoDot11QosNotificationGroup.setStatus('current')
mibBuilder.exportSymbols('CISCO-DOT11-QOS-MIB', PYSNMP_MODULE_ID=ciscoDot11QosMIB, ciscoDot11QosMIBObjects=ciscoDot11QosMIBObjects, ciscoDot11QosMIBCompliances=ciscoDot11QosMIBCompliances, cdot11QosDiscardedFrames=cdot11QosDiscardedFrames, ciscoDot11QosNotifControl=ciscoDot11QosNotifControl, cdot11QosQueueTable=cdot11QosQueueTable, cdot11QosQueuePeakSize=cdot11QosQueuePeakSize, ciscoDot11QosMIBConformance=ciscoDot11QosMIBConformance, cdot11QosIfDiscardedFragments=cdot11QosIfDiscardedFragments, ciscoDot11QosStatsGroup=ciscoDot11QosStatsGroup, cdot11QosSupportEntry=cdot11QosSupportEntry, cdot11QosQueuesAvailable=cdot11QosQueuesAvailable, cdot11QosRetries=cdot11QosRetries, cdot11QosIfVlanId=cdot11QosIfVlanId, ciscoDot11QosMIBGroups=ciscoDot11QosMIBGroups, cdot11QosSupportTable=cdot11QosSupportTable, Cdot11QosTrafficClass=Cdot11QosTrafficClass, cdot11QosTransmittedFrames=cdot11QosTransmittedFrames, cdot11QosOptionEnabled=cdot11QosOptionEnabled, ciscoDot11QosQueue=ciscoDot11QosQueue, ciscoDot11QosMIB=ciscoDot11QosMIB, cdot11QosConfigEntry=cdot11QosConfigEntry, cdot11QosConfigTable=cdot11QosConfigTable, ciscoDot11QosConfig=ciscoDot11QosConfig, cdot11QosQueueEntry=cdot11QosQueueEntry, cdot11QosIfVlanEntry=cdot11QosIfVlanEntry, ciscoDot11QosMIBCompliance=ciscoDot11QosMIBCompliance, cdot11QosBackoffOffset=cdot11QosBackoffOffset, cdot11QosIfStatisticsEntry=cdot11QosIfStatisticsEntry, cdot11QosMutipleRetries=cdot11QosMutipleRetries, cdot11QosMaxRetry=cdot11QosMaxRetry, ciscoDot11QosNotifControlGroup=ciscoDot11QosNotifControlGroup, cdot11QosChangeNotif=cdot11QosChangeNotif, cdot11QosNotifEnabled=cdot11QosNotifEnabled, cdot11QosQueueSize=cdot11QosQueueSize, cdot11QosCWmin=cdot11QosCWmin, cdot11QosQueueQuota=cdot11QosQueueQuota, cdot11TrafficClass=cdot11TrafficClass, cdot11QosIfVlanTable=cdot11QosIfVlanTable, ciscoDot11QosNotificationGroup=ciscoDot11QosNotificationGroup, cdot11QosStatisticsEntry=cdot11QosStatisticsEntry, ciscoDot11QosStatistics=ciscoDot11QosStatistics, cdot11QosOptionImplemented=cdot11QosOptionImplemented, cdot11QosIfVlanTrafficClass=cdot11QosIfVlanTrafficClass, ciscoDot11QosMIBNotifs=ciscoDot11QosMIBNotifs, cdot11QosCWmax=cdot11QosCWmax, cdot11QosIfStatisticsTable=cdot11QosIfStatisticsTable, ciscoDot11QosConfigGroup=ciscoDot11QosConfigGroup, cdot11TrafficQueue=cdot11TrafficQueue, cdot11QosFails=cdot11QosFails, cdot11QosStatisticsTable=cdot11QosStatisticsTable) |
def fibonacci(n):
a = 1
b = 1
while b <= n:
yield b
a, b = b, a + b
print("Numbers:", list(fibonacci(40)))
print("Sum:", sum(filter(lambda x: x % 2 == 0, fibonacci(4e6)))) | def fibonacci(n):
a = 1
b = 1
while b <= n:
yield b
(a, b) = (b, a + b)
print('Numbers:', list(fibonacci(40)))
print('Sum:', sum(filter(lambda x: x % 2 == 0, fibonacci(4000000.0)))) |
class NeureCtr:
def __init__(self, content_label):
self._uuid = content_label
self._relevants = {}
@property
def uuid(self):
return self._uuid
@property
def relevants(self):
return self._relevants
@relevants.setter
def relevants(self, value):
if value[0] not in self._relevants:
self._relevants[value[0]] = [value[1]]
else:
info = self._relevants[value[0]]
info.append(value[1]) | class Neurectr:
def __init__(self, content_label):
self._uuid = content_label
self._relevants = {}
@property
def uuid(self):
return self._uuid
@property
def relevants(self):
return self._relevants
@relevants.setter
def relevants(self, value):
if value[0] not in self._relevants:
self._relevants[value[0]] = [value[1]]
else:
info = self._relevants[value[0]]
info.append(value[1]) |
def boxplot(x_data, y_data, base_color="#539caf", median_color="#297083", x_label="", y_label="", title=""):
_, ax = plt.subplots()
# Draw boxplots, specifying desired style
ax.boxplot(y_data
# patch_artist must be True to control box fill
, patch_artist = True
# Properties of median line
, medianprops = {'color': median_color}
# Properties of box
, boxprops = {'color': base_color, 'facecolor': base_color}
# Properties of whiskers
, whiskerprops = {'color': base_color}
# Properties of whisker caps
, capprops = {'color': base_color})
# By default, the tick label starts at 1 and increments by 1 for
# each box drawn. This sets the labels to the ones we want
ax.set_xticklabels(x_data)
ax.set_ylabel(y_label)
ax.set_xlabel(x_label)
ax.set_title(title) | def boxplot(x_data, y_data, base_color='#539caf', median_color='#297083', x_label='', y_label='', title=''):
(_, ax) = plt.subplots()
ax.boxplot(y_data, patch_artist=True, medianprops={'color': median_color}, boxprops={'color': base_color, 'facecolor': base_color}, whiskerprops={'color': base_color}, capprops={'color': base_color})
ax.set_xticklabels(x_data)
ax.set_ylabel(y_label)
ax.set_xlabel(x_label)
ax.set_title(title) |
# -*- coding: utf-8 -*-
def get_lam_list(self, is_int_to_ext=True):
"""Returns the ordered list of lamination of the machine
Parameters
----------
self : MachineUD
MachineUD object
is_int_to_ext : bool
true to order the list from the inner lamination to the extrenal one
Returns
-------
lam_list : list
Ordered lamination list
"""
lam_list = self.lam_list
# Sort by Rint by assuming the lamination are not colliding
return sorted(lam_list, key=lambda x: x.Rint, reverse=not is_int_to_ext)
| def get_lam_list(self, is_int_to_ext=True):
"""Returns the ordered list of lamination of the machine
Parameters
----------
self : MachineUD
MachineUD object
is_int_to_ext : bool
true to order the list from the inner lamination to the extrenal one
Returns
-------
lam_list : list
Ordered lamination list
"""
lam_list = self.lam_list
return sorted(lam_list, key=lambda x: x.Rint, reverse=not is_int_to_ext) |
def lambda_handler(event, context):
# TODO implement
return {
'statusCode': 200,
'body': 'Hello from Lambda!'
}
| def lambda_handler(event, context):
return {'statusCode': 200, 'body': 'Hello from Lambda!'} |
#
# PySNMP MIB module WLSX-SYSTEMEXT-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/WLSX-SYSTEMEXT-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 21:30:06 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)
#
wlsxEnterpriseMibModules, = mibBuilder.importSymbols("ARUBA-MIB", "wlsxEnterpriseMibModules")
ArubaSwitchRole, ArubaActiveState, ArubaCardType = mibBuilder.importSymbols("ARUBA-TC", "ArubaSwitchRole", "ArubaActiveState", "ArubaCardType")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
Unsigned32, ModuleIdentity, Counter64, TimeTicks, Integer32, snmpModules, iso, Bits, MibIdentifier, IpAddress, TextualConvention, NotificationType, Counter32, Gauge32, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "ModuleIdentity", "Counter64", "TimeTicks", "Integer32", "snmpModules", "iso", "Bits", "MibIdentifier", "IpAddress", "TextualConvention", "NotificationType", "Counter32", "Gauge32", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TAddress, TruthValue, TimeInterval, TestAndIncr, DisplayString, MacAddress, PhysAddress, TextualConvention, RowStatus, TDomain, StorageType = mibBuilder.importSymbols("SNMPv2-TC", "TAddress", "TruthValue", "TimeInterval", "TestAndIncr", "DisplayString", "MacAddress", "PhysAddress", "TextualConvention", "RowStatus", "TDomain", "StorageType")
wlsxSystemExtMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2))
wlsxSystemExtMIB.setRevisions(('1908-12-11 21:08',))
if mibBuilder.loadTexts: wlsxSystemExtMIB.setLastUpdated('0812112108Z')
if mibBuilder.loadTexts: wlsxSystemExtMIB.setOrganization('Aruba Wireless Networks')
wlsxSystemExtGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1))
wlsxSystemExtTableGenNumberGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2))
wlsxSysExtSwitchIp = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchIp.setStatus('current')
wlsxSysExtHostname = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtHostname.setStatus('current')
wlsxSysExtModelName = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtModelName.setStatus('current')
wlsxSysExtSwitchRole = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 4), ArubaSwitchRole()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchRole.setStatus('current')
wlsxSysExtSwitchMasterIp = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchMasterIp.setStatus('current')
wlsxSysExtSwitchDate = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlsxSysExtSwitchDate.setStatus('current')
wlsxSysExtSwitchBaseMacaddress = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 7), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchBaseMacaddress.setStatus('current')
wlsxSysExtFanTrayAssemblyNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtFanTrayAssemblyNumber.setStatus('current')
wlsxSysExtFanTraySerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtFanTraySerialNumber.setStatus('current')
wlsxSysExtInternalTemparature = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtInternalTemparature.setStatus('current')
wlsxSysExtLicenseSerialNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtLicenseSerialNumber.setStatus('current')
wlsxSysExtSwitchLicenseCount = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchLicenseCount.setStatus('current')
wlsxSysExtProcessorTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13), )
if mibBuilder.loadTexts: wlsxSysExtProcessorTable.setStatus('current')
wlsxSysExtProcessorEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtProcessorID"))
if mibBuilder.loadTexts: wlsxSysExtProcessorEntry.setStatus('current')
sysExtProcessorID = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtProcessorID.setStatus('current')
sysExtProcessorDescr = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtProcessorDescr.setStatus('current')
sysExtProcessorLoad = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtProcessorLoad.setStatus('current')
wlsxSysExtStorageTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14), )
if mibBuilder.loadTexts: wlsxSysExtStorageTable.setStatus('current')
wlsxSysExtStorageEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtStorageIndex"))
if mibBuilder.loadTexts: wlsxSysExtStorageEntry.setStatus('current')
sysExtStorageIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtStorageIndex.setStatus('current')
sysExtStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ram", 1), ("flashMemory", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtStorageType.setStatus('current')
sysExtStorageSize = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtStorageSize.setStatus('current')
sysExtStorageUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtStorageUsed.setStatus('current')
sysExtStorageName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtStorageName.setStatus('current')
wlsxSysExtMemoryTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15), )
if mibBuilder.loadTexts: wlsxSysExtMemoryTable.setStatus('current')
wlsxSysExtMemoryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtMemoryIndex"))
if mibBuilder.loadTexts: wlsxSysExtMemoryEntry.setStatus('current')
sysExtMemoryIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtMemoryIndex.setStatus('current')
sysExtMemorySize = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtMemorySize.setStatus('current')
sysExtMemoryUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtMemoryUsed.setStatus('current')
sysExtMemoryFree = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtMemoryFree.setStatus('current')
wlsxSysExtCardTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16), )
if mibBuilder.loadTexts: wlsxSysExtCardTable.setStatus('current')
wlsxSysExtCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtCardSlot"))
if mibBuilder.loadTexts: wlsxSysExtCardEntry.setStatus('current')
sysExtCardSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtCardSlot.setStatus('current')
sysExtCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 2), ArubaCardType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardType.setStatus('current')
sysExtCardNumOfPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardNumOfPorts.setStatus('current')
sysExtCardNumOfFastethernetPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardNumOfFastethernetPorts.setStatus('current')
sysExtCardNumOfGigPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardNumOfGigPorts.setStatus('current')
sysExtCardSerialNo = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardSerialNo.setStatus('current')
sysExtCardAssemblyNo = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardAssemblyNo.setStatus('current')
sysExtCardManufacturingDate = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardManufacturingDate.setStatus('current')
sysExtCardHwRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardHwRevision.setStatus('current')
sysExtCardFpgaRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardFpgaRevision.setStatus('current')
sysExtCardSwitchChip = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardSwitchChip.setStatus('current')
sysExtCardStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 12), ArubaActiveState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardStatus.setStatus('current')
sysExtCardUserSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtCardUserSlot.setStatus('current')
wlsxSysExtFanTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17), )
if mibBuilder.loadTexts: wlsxSysExtFanTable.setStatus('current')
wlsxSysExtFanEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtFanIndex"))
if mibBuilder.loadTexts: wlsxSysExtFanEntry.setStatus('current')
sysExtFanIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtFanIndex.setStatus('current')
sysExtFanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1, 2), ArubaActiveState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtFanStatus.setStatus('current')
wlsxSysExtPowerSupplyTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18), )
if mibBuilder.loadTexts: wlsxSysExtPowerSupplyTable.setStatus('current')
wlsxSysExtPowerSupplyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtPowerSupplyIndex"))
if mibBuilder.loadTexts: wlsxSysExtPowerSupplyEntry.setStatus('current')
sysExtPowerSupplyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtPowerSupplyIndex.setStatus('current')
sysExtPowerSupplyStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1, 2), ArubaActiveState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtPowerSupplyStatus.setStatus('current')
wlsxSysExtSwitchListTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19), )
if mibBuilder.loadTexts: wlsxSysExtSwitchListTable.setStatus('current')
wlsxSysExtSwitchListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtSwitchIPAddress"))
if mibBuilder.loadTexts: wlsxSysExtSwitchListEntry.setStatus('current')
sysExtSwitchIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 1), IpAddress())
if mibBuilder.loadTexts: sysExtSwitchIPAddress.setStatus('current')
sysExtSwitchRole = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 2), ArubaSwitchRole()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchRole.setStatus('current')
sysExtSwitchLocation = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchLocation.setStatus('current')
sysExtSwitchSWVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchSWVersion.setStatus('current')
sysExtSwitchStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 5), ArubaActiveState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchStatus.setStatus('current')
sysExtSwitchName = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchName.setStatus('current')
sysExtSwitchSerNo = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtSwitchSerNo.setStatus('current')
wlsxSysExtSwitchLicenseTable = MibTable((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20), )
if mibBuilder.loadTexts: wlsxSysExtSwitchLicenseTable.setStatus('current')
wlsxSysExtLicenseEntry = MibTableRow((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1), ).setIndexNames((0, "WLSX-SYSTEMEXT-MIB", "sysExtLicenseIndex"))
if mibBuilder.loadTexts: wlsxSysExtLicenseEntry.setStatus('current')
sysExtLicenseIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 1), Integer32())
if mibBuilder.loadTexts: sysExtLicenseIndex.setStatus('current')
sysExtLicenseKey = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtLicenseKey.setStatus('current')
sysExtLicenseInstalled = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtLicenseInstalled.setStatus('current')
sysExtLicenseExpires = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtLicenseExpires.setStatus('current')
sysExtLicenseFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtLicenseFlags.setStatus('current')
sysExtLicenseService = MibTableColumn((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sysExtLicenseService.setStatus('current')
wlsxSysExtMMSCompatLevel = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 21), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtMMSCompatLevel.setStatus('current')
wlsxSysExtMMSConfigID = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 22), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtMMSConfigID.setStatus('current')
wlsxSysExtControllerConfigID = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 23), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtControllerConfigID.setStatus('current')
wlsxSysExtIsMMSConfigUpdateEnabled = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 24), TruthValue()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: wlsxSysExtIsMMSConfigUpdateEnabled.setStatus('current')
wlsxSysExtSwitchLastReload = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 25), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchLastReload.setStatus('current')
wlsxSysExtLastStatsReset = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 26), TimeTicks()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtLastStatsReset.setStatus('current')
wlsxSysExtUserTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtUserTableGenNumber.setStatus('current')
wlsxSysExtAPBssidTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtAPBssidTableGenNumber.setStatus('current')
wlsxSysExtAPRadioTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtAPRadioTableGenNumber.setStatus('current')
wlsxSysExtAPTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtAPTableGenNumber.setStatus('current')
wlsxSysExtSwitchListTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtSwitchListTableGenNumber.setStatus('current')
wlsxSysExtPortTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtPortTableGenNumber.setStatus('current')
wlsxSysExtVlanTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtVlanTableGenNumber.setStatus('current')
wlsxSysExtVlanInterfaceTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtVlanInterfaceTableGenNumber.setStatus('current')
wlsxSysExtLicenseTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtLicenseTableGenNumber.setStatus('current')
wlsxSysExtMonAPTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtMonAPTableGenNumber.setStatus('current')
wlsxSysExtMonStationTableGenNumber = MibScalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: wlsxSysExtMonStationTableGenNumber.setStatus('current')
mibBuilder.exportSymbols("WLSX-SYSTEMEXT-MIB", sysExtCardStatus=sysExtCardStatus, wlsxSysExtStorageTable=wlsxSysExtStorageTable, wlsxSysExtPowerSupplyEntry=wlsxSysExtPowerSupplyEntry, wlsxSysExtAPRadioTableGenNumber=wlsxSysExtAPRadioTableGenNumber, sysExtCardSerialNo=sysExtCardSerialNo, sysExtMemoryIndex=sysExtMemoryIndex, wlsxSysExtSwitchBaseMacaddress=wlsxSysExtSwitchBaseMacaddress, sysExtProcessorID=sysExtProcessorID, sysExtCardNumOfGigPorts=sysExtCardNumOfGigPorts, sysExtCardManufacturingDate=sysExtCardManufacturingDate, wlsxSysExtControllerConfigID=wlsxSysExtControllerConfigID, wlsxSysExtIsMMSConfigUpdateEnabled=wlsxSysExtIsMMSConfigUpdateEnabled, wlsxSysExtMonStationTableGenNumber=wlsxSysExtMonStationTableGenNumber, wlsxSystemExtTableGenNumberGroup=wlsxSystemExtTableGenNumberGroup, wlsxSystemExtMIB=wlsxSystemExtMIB, wlsxSysExtFanTable=wlsxSysExtFanTable, wlsxSysExtCardTable=wlsxSysExtCardTable, wlsxSysExtMMSCompatLevel=wlsxSysExtMMSCompatLevel, sysExtLicenseFlags=sysExtLicenseFlags, wlsxSystemExtGroup=wlsxSystemExtGroup, sysExtSwitchLocation=sysExtSwitchLocation, wlsxSysExtSwitchListTable=wlsxSysExtSwitchListTable, sysExtCardNumOfFastethernetPorts=sysExtCardNumOfFastethernetPorts, wlsxSysExtHostname=wlsxSysExtHostname, sysExtCardNumOfPorts=sysExtCardNumOfPorts, sysExtSwitchName=sysExtSwitchName, sysExtSwitchRole=sysExtSwitchRole, wlsxSysExtSwitchLastReload=wlsxSysExtSwitchLastReload, sysExtLicenseKey=sysExtLicenseKey, wlsxSysExtFanTraySerialNumber=wlsxSysExtFanTraySerialNumber, wlsxSysExtModelName=wlsxSysExtModelName, PYSNMP_MODULE_ID=wlsxSystemExtMIB, sysExtStorageName=sysExtStorageName, wlsxSysExtAPTableGenNumber=wlsxSysExtAPTableGenNumber, wlsxSysExtSwitchListEntry=wlsxSysExtSwitchListEntry, sysExtStorageType=sysExtStorageType, wlsxSysExtFanEntry=wlsxSysExtFanEntry, wlsxSysExtLicenseEntry=wlsxSysExtLicenseEntry, sysExtSwitchStatus=sysExtSwitchStatus, wlsxSysExtUserTableGenNumber=wlsxSysExtUserTableGenNumber, sysExtStorageSize=sysExtStorageSize, sysExtCardFpgaRevision=sysExtCardFpgaRevision, sysExtCardSlot=sysExtCardSlot, sysExtFanStatus=sysExtFanStatus, sysExtCardType=sysExtCardType, wlsxSysExtMMSConfigID=wlsxSysExtMMSConfigID, sysExtLicenseExpires=sysExtLicenseExpires, wlsxSysExtVlanInterfaceTableGenNumber=wlsxSysExtVlanInterfaceTableGenNumber, wlsxSysExtSwitchDate=wlsxSysExtSwitchDate, wlsxSysExtLastStatsReset=wlsxSysExtLastStatsReset, sysExtMemorySize=sysExtMemorySize, wlsxSysExtSwitchIp=wlsxSysExtSwitchIp, sysExtMemoryUsed=sysExtMemoryUsed, wlsxSysExtSwitchListTableGenNumber=wlsxSysExtSwitchListTableGenNumber, wlsxSysExtVlanTableGenNumber=wlsxSysExtVlanTableGenNumber, sysExtSwitchIPAddress=sysExtSwitchIPAddress, sysExtProcessorLoad=sysExtProcessorLoad, sysExtStorageIndex=sysExtStorageIndex, wlsxSysExtFanTrayAssemblyNumber=wlsxSysExtFanTrayAssemblyNumber, sysExtPowerSupplyIndex=sysExtPowerSupplyIndex, wlsxSysExtProcessorEntry=wlsxSysExtProcessorEntry, sysExtProcessorDescr=sysExtProcessorDescr, wlsxSysExtMemoryTable=wlsxSysExtMemoryTable, sysExtLicenseIndex=sysExtLicenseIndex, wlsxSysExtStorageEntry=wlsxSysExtStorageEntry, wlsxSysExtProcessorTable=wlsxSysExtProcessorTable, wlsxSysExtSwitchLicenseTable=wlsxSysExtSwitchLicenseTable, sysExtCardSwitchChip=sysExtCardSwitchChip, wlsxSysExtLicenseSerialNumber=wlsxSysExtLicenseSerialNumber, sysExtLicenseService=sysExtLicenseService, wlsxSysExtPowerSupplyTable=wlsxSysExtPowerSupplyTable, wlsxSysExtInternalTemparature=wlsxSysExtInternalTemparature, sysExtSwitchSWVersion=sysExtSwitchSWVersion, sysExtLicenseInstalled=sysExtLicenseInstalled, sysExtFanIndex=sysExtFanIndex, wlsxSysExtMonAPTableGenNumber=wlsxSysExtMonAPTableGenNumber, wlsxSysExtAPBssidTableGenNumber=wlsxSysExtAPBssidTableGenNumber, wlsxSysExtPortTableGenNumber=wlsxSysExtPortTableGenNumber, wlsxSysExtSwitchMasterIp=wlsxSysExtSwitchMasterIp, wlsxSysExtMemoryEntry=wlsxSysExtMemoryEntry, sysExtMemoryFree=sysExtMemoryFree, wlsxSysExtSwitchRole=wlsxSysExtSwitchRole, sysExtCardUserSlot=sysExtCardUserSlot, wlsxSysExtSwitchLicenseCount=wlsxSysExtSwitchLicenseCount, wlsxSysExtCardEntry=wlsxSysExtCardEntry, sysExtSwitchSerNo=sysExtSwitchSerNo, wlsxSysExtLicenseTableGenNumber=wlsxSysExtLicenseTableGenNumber, sysExtCardHwRevision=sysExtCardHwRevision, sysExtCardAssemblyNo=sysExtCardAssemblyNo, sysExtPowerSupplyStatus=sysExtPowerSupplyStatus, sysExtStorageUsed=sysExtStorageUsed)
| (wlsx_enterprise_mib_modules,) = mibBuilder.importSymbols('ARUBA-MIB', 'wlsxEnterpriseMibModules')
(aruba_switch_role, aruba_active_state, aruba_card_type) = mibBuilder.importSymbols('ARUBA-TC', 'ArubaSwitchRole', 'ArubaActiveState', 'ArubaCardType')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(unsigned32, module_identity, counter64, time_ticks, integer32, snmp_modules, iso, bits, mib_identifier, ip_address, textual_convention, notification_type, counter32, gauge32, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'ModuleIdentity', 'Counter64', 'TimeTicks', 'Integer32', 'snmpModules', 'iso', 'Bits', 'MibIdentifier', 'IpAddress', 'TextualConvention', 'NotificationType', 'Counter32', 'Gauge32', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(t_address, truth_value, time_interval, test_and_incr, display_string, mac_address, phys_address, textual_convention, row_status, t_domain, storage_type) = mibBuilder.importSymbols('SNMPv2-TC', 'TAddress', 'TruthValue', 'TimeInterval', 'TestAndIncr', 'DisplayString', 'MacAddress', 'PhysAddress', 'TextualConvention', 'RowStatus', 'TDomain', 'StorageType')
wlsx_system_ext_mib = module_identity((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2))
wlsxSystemExtMIB.setRevisions(('1908-12-11 21:08',))
if mibBuilder.loadTexts:
wlsxSystemExtMIB.setLastUpdated('0812112108Z')
if mibBuilder.loadTexts:
wlsxSystemExtMIB.setOrganization('Aruba Wireless Networks')
wlsx_system_ext_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1))
wlsx_system_ext_table_gen_number_group = mib_identifier((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2))
wlsx_sys_ext_switch_ip = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchIp.setStatus('current')
wlsx_sys_ext_hostname = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtHostname.setStatus('current')
wlsx_sys_ext_model_name = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(1, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtModelName.setStatus('current')
wlsx_sys_ext_switch_role = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 4), aruba_switch_role()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchRole.setStatus('current')
wlsx_sys_ext_switch_master_ip = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchMasterIp.setStatus('current')
wlsx_sys_ext_switch_date = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlsxSysExtSwitchDate.setStatus('current')
wlsx_sys_ext_switch_base_macaddress = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 7), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchBaseMacaddress.setStatus('current')
wlsx_sys_ext_fan_tray_assembly_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtFanTrayAssemblyNumber.setStatus('current')
wlsx_sys_ext_fan_tray_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtFanTraySerialNumber.setStatus('current')
wlsx_sys_ext_internal_temparature = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtInternalTemparature.setStatus('current')
wlsx_sys_ext_license_serial_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtLicenseSerialNumber.setStatus('current')
wlsx_sys_ext_switch_license_count = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchLicenseCount.setStatus('current')
wlsx_sys_ext_processor_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13))
if mibBuilder.loadTexts:
wlsxSysExtProcessorTable.setStatus('current')
wlsx_sys_ext_processor_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtProcessorID'))
if mibBuilder.loadTexts:
wlsxSysExtProcessorEntry.setStatus('current')
sys_ext_processor_id = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtProcessorID.setStatus('current')
sys_ext_processor_descr = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtProcessorDescr.setStatus('current')
sys_ext_processor_load = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 13, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtProcessorLoad.setStatus('current')
wlsx_sys_ext_storage_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14))
if mibBuilder.loadTexts:
wlsxSysExtStorageTable.setStatus('current')
wlsx_sys_ext_storage_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtStorageIndex'))
if mibBuilder.loadTexts:
wlsxSysExtStorageEntry.setStatus('current')
sys_ext_storage_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtStorageIndex.setStatus('current')
sys_ext_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ram', 1), ('flashMemory', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtStorageType.setStatus('current')
sys_ext_storage_size = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtStorageSize.setStatus('current')
sys_ext_storage_used = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtStorageUsed.setStatus('current')
sys_ext_storage_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 14, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtStorageName.setStatus('current')
wlsx_sys_ext_memory_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15))
if mibBuilder.loadTexts:
wlsxSysExtMemoryTable.setStatus('current')
wlsx_sys_ext_memory_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtMemoryIndex'))
if mibBuilder.loadTexts:
wlsxSysExtMemoryEntry.setStatus('current')
sys_ext_memory_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtMemoryIndex.setStatus('current')
sys_ext_memory_size = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtMemorySize.setStatus('current')
sys_ext_memory_used = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtMemoryUsed.setStatus('current')
sys_ext_memory_free = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 15, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtMemoryFree.setStatus('current')
wlsx_sys_ext_card_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16))
if mibBuilder.loadTexts:
wlsxSysExtCardTable.setStatus('current')
wlsx_sys_ext_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtCardSlot'))
if mibBuilder.loadTexts:
wlsxSysExtCardEntry.setStatus('current')
sys_ext_card_slot = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtCardSlot.setStatus('current')
sys_ext_card_type = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 2), aruba_card_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardType.setStatus('current')
sys_ext_card_num_of_ports = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardNumOfPorts.setStatus('current')
sys_ext_card_num_of_fastethernet_ports = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardNumOfFastethernetPorts.setStatus('current')
sys_ext_card_num_of_gig_ports = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardNumOfGigPorts.setStatus('current')
sys_ext_card_serial_no = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardSerialNo.setStatus('current')
sys_ext_card_assembly_no = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardAssemblyNo.setStatus('current')
sys_ext_card_manufacturing_date = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardManufacturingDate.setStatus('current')
sys_ext_card_hw_revision = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardHwRevision.setStatus('current')
sys_ext_card_fpga_revision = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardFpgaRevision.setStatus('current')
sys_ext_card_switch_chip = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardSwitchChip.setStatus('current')
sys_ext_card_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 12), aruba_active_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardStatus.setStatus('current')
sys_ext_card_user_slot = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 16, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtCardUserSlot.setStatus('current')
wlsx_sys_ext_fan_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17))
if mibBuilder.loadTexts:
wlsxSysExtFanTable.setStatus('current')
wlsx_sys_ext_fan_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtFanIndex'))
if mibBuilder.loadTexts:
wlsxSysExtFanEntry.setStatus('current')
sys_ext_fan_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtFanIndex.setStatus('current')
sys_ext_fan_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 17, 1, 2), aruba_active_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtFanStatus.setStatus('current')
wlsx_sys_ext_power_supply_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18))
if mibBuilder.loadTexts:
wlsxSysExtPowerSupplyTable.setStatus('current')
wlsx_sys_ext_power_supply_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtPowerSupplyIndex'))
if mibBuilder.loadTexts:
wlsxSysExtPowerSupplyEntry.setStatus('current')
sys_ext_power_supply_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtPowerSupplyIndex.setStatus('current')
sys_ext_power_supply_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 18, 1, 2), aruba_active_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtPowerSupplyStatus.setStatus('current')
wlsx_sys_ext_switch_list_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19))
if mibBuilder.loadTexts:
wlsxSysExtSwitchListTable.setStatus('current')
wlsx_sys_ext_switch_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtSwitchIPAddress'))
if mibBuilder.loadTexts:
wlsxSysExtSwitchListEntry.setStatus('current')
sys_ext_switch_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 1), ip_address())
if mibBuilder.loadTexts:
sysExtSwitchIPAddress.setStatus('current')
sys_ext_switch_role = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 2), aruba_switch_role()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchRole.setStatus('current')
sys_ext_switch_location = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchLocation.setStatus('current')
sys_ext_switch_sw_version = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchSWVersion.setStatus('current')
sys_ext_switch_status = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 5), aruba_active_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchStatus.setStatus('current')
sys_ext_switch_name = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchName.setStatus('current')
sys_ext_switch_ser_no = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 19, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtSwitchSerNo.setStatus('current')
wlsx_sys_ext_switch_license_table = mib_table((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20))
if mibBuilder.loadTexts:
wlsxSysExtSwitchLicenseTable.setStatus('current')
wlsx_sys_ext_license_entry = mib_table_row((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1)).setIndexNames((0, 'WLSX-SYSTEMEXT-MIB', 'sysExtLicenseIndex'))
if mibBuilder.loadTexts:
wlsxSysExtLicenseEntry.setStatus('current')
sys_ext_license_index = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 1), integer32())
if mibBuilder.loadTexts:
sysExtLicenseIndex.setStatus('current')
sys_ext_license_key = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtLicenseKey.setStatus('current')
sys_ext_license_installed = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtLicenseInstalled.setStatus('current')
sys_ext_license_expires = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtLicenseExpires.setStatus('current')
sys_ext_license_flags = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtLicenseFlags.setStatus('current')
sys_ext_license_service = mib_table_column((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 20, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sysExtLicenseService.setStatus('current')
wlsx_sys_ext_mms_compat_level = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 21), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtMMSCompatLevel.setStatus('current')
wlsx_sys_ext_mms_config_id = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 22), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtMMSConfigID.setStatus('current')
wlsx_sys_ext_controller_config_id = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 23), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtControllerConfigID.setStatus('current')
wlsx_sys_ext_is_mms_config_update_enabled = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 24), truth_value()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
wlsxSysExtIsMMSConfigUpdateEnabled.setStatus('current')
wlsx_sys_ext_switch_last_reload = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 25), display_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchLastReload.setStatus('current')
wlsx_sys_ext_last_stats_reset = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 1, 26), time_ticks()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtLastStatsReset.setStatus('current')
wlsx_sys_ext_user_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtUserTableGenNumber.setStatus('current')
wlsx_sys_ext_ap_bssid_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtAPBssidTableGenNumber.setStatus('current')
wlsx_sys_ext_ap_radio_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtAPRadioTableGenNumber.setStatus('current')
wlsx_sys_ext_ap_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtAPTableGenNumber.setStatus('current')
wlsx_sys_ext_switch_list_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtSwitchListTableGenNumber.setStatus('current')
wlsx_sys_ext_port_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtPortTableGenNumber.setStatus('current')
wlsx_sys_ext_vlan_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtVlanTableGenNumber.setStatus('current')
wlsx_sys_ext_vlan_interface_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtVlanInterfaceTableGenNumber.setStatus('current')
wlsx_sys_ext_license_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtLicenseTableGenNumber.setStatus('current')
wlsx_sys_ext_mon_ap_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtMonAPTableGenNumber.setStatus('current')
wlsx_sys_ext_mon_station_table_gen_number = mib_scalar((1, 3, 6, 1, 4, 1, 14823, 2, 2, 1, 2, 2, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
wlsxSysExtMonStationTableGenNumber.setStatus('current')
mibBuilder.exportSymbols('WLSX-SYSTEMEXT-MIB', sysExtCardStatus=sysExtCardStatus, wlsxSysExtStorageTable=wlsxSysExtStorageTable, wlsxSysExtPowerSupplyEntry=wlsxSysExtPowerSupplyEntry, wlsxSysExtAPRadioTableGenNumber=wlsxSysExtAPRadioTableGenNumber, sysExtCardSerialNo=sysExtCardSerialNo, sysExtMemoryIndex=sysExtMemoryIndex, wlsxSysExtSwitchBaseMacaddress=wlsxSysExtSwitchBaseMacaddress, sysExtProcessorID=sysExtProcessorID, sysExtCardNumOfGigPorts=sysExtCardNumOfGigPorts, sysExtCardManufacturingDate=sysExtCardManufacturingDate, wlsxSysExtControllerConfigID=wlsxSysExtControllerConfigID, wlsxSysExtIsMMSConfigUpdateEnabled=wlsxSysExtIsMMSConfigUpdateEnabled, wlsxSysExtMonStationTableGenNumber=wlsxSysExtMonStationTableGenNumber, wlsxSystemExtTableGenNumberGroup=wlsxSystemExtTableGenNumberGroup, wlsxSystemExtMIB=wlsxSystemExtMIB, wlsxSysExtFanTable=wlsxSysExtFanTable, wlsxSysExtCardTable=wlsxSysExtCardTable, wlsxSysExtMMSCompatLevel=wlsxSysExtMMSCompatLevel, sysExtLicenseFlags=sysExtLicenseFlags, wlsxSystemExtGroup=wlsxSystemExtGroup, sysExtSwitchLocation=sysExtSwitchLocation, wlsxSysExtSwitchListTable=wlsxSysExtSwitchListTable, sysExtCardNumOfFastethernetPorts=sysExtCardNumOfFastethernetPorts, wlsxSysExtHostname=wlsxSysExtHostname, sysExtCardNumOfPorts=sysExtCardNumOfPorts, sysExtSwitchName=sysExtSwitchName, sysExtSwitchRole=sysExtSwitchRole, wlsxSysExtSwitchLastReload=wlsxSysExtSwitchLastReload, sysExtLicenseKey=sysExtLicenseKey, wlsxSysExtFanTraySerialNumber=wlsxSysExtFanTraySerialNumber, wlsxSysExtModelName=wlsxSysExtModelName, PYSNMP_MODULE_ID=wlsxSystemExtMIB, sysExtStorageName=sysExtStorageName, wlsxSysExtAPTableGenNumber=wlsxSysExtAPTableGenNumber, wlsxSysExtSwitchListEntry=wlsxSysExtSwitchListEntry, sysExtStorageType=sysExtStorageType, wlsxSysExtFanEntry=wlsxSysExtFanEntry, wlsxSysExtLicenseEntry=wlsxSysExtLicenseEntry, sysExtSwitchStatus=sysExtSwitchStatus, wlsxSysExtUserTableGenNumber=wlsxSysExtUserTableGenNumber, sysExtStorageSize=sysExtStorageSize, sysExtCardFpgaRevision=sysExtCardFpgaRevision, sysExtCardSlot=sysExtCardSlot, sysExtFanStatus=sysExtFanStatus, sysExtCardType=sysExtCardType, wlsxSysExtMMSConfigID=wlsxSysExtMMSConfigID, sysExtLicenseExpires=sysExtLicenseExpires, wlsxSysExtVlanInterfaceTableGenNumber=wlsxSysExtVlanInterfaceTableGenNumber, wlsxSysExtSwitchDate=wlsxSysExtSwitchDate, wlsxSysExtLastStatsReset=wlsxSysExtLastStatsReset, sysExtMemorySize=sysExtMemorySize, wlsxSysExtSwitchIp=wlsxSysExtSwitchIp, sysExtMemoryUsed=sysExtMemoryUsed, wlsxSysExtSwitchListTableGenNumber=wlsxSysExtSwitchListTableGenNumber, wlsxSysExtVlanTableGenNumber=wlsxSysExtVlanTableGenNumber, sysExtSwitchIPAddress=sysExtSwitchIPAddress, sysExtProcessorLoad=sysExtProcessorLoad, sysExtStorageIndex=sysExtStorageIndex, wlsxSysExtFanTrayAssemblyNumber=wlsxSysExtFanTrayAssemblyNumber, sysExtPowerSupplyIndex=sysExtPowerSupplyIndex, wlsxSysExtProcessorEntry=wlsxSysExtProcessorEntry, sysExtProcessorDescr=sysExtProcessorDescr, wlsxSysExtMemoryTable=wlsxSysExtMemoryTable, sysExtLicenseIndex=sysExtLicenseIndex, wlsxSysExtStorageEntry=wlsxSysExtStorageEntry, wlsxSysExtProcessorTable=wlsxSysExtProcessorTable, wlsxSysExtSwitchLicenseTable=wlsxSysExtSwitchLicenseTable, sysExtCardSwitchChip=sysExtCardSwitchChip, wlsxSysExtLicenseSerialNumber=wlsxSysExtLicenseSerialNumber, sysExtLicenseService=sysExtLicenseService, wlsxSysExtPowerSupplyTable=wlsxSysExtPowerSupplyTable, wlsxSysExtInternalTemparature=wlsxSysExtInternalTemparature, sysExtSwitchSWVersion=sysExtSwitchSWVersion, sysExtLicenseInstalled=sysExtLicenseInstalled, sysExtFanIndex=sysExtFanIndex, wlsxSysExtMonAPTableGenNumber=wlsxSysExtMonAPTableGenNumber, wlsxSysExtAPBssidTableGenNumber=wlsxSysExtAPBssidTableGenNumber, wlsxSysExtPortTableGenNumber=wlsxSysExtPortTableGenNumber, wlsxSysExtSwitchMasterIp=wlsxSysExtSwitchMasterIp, wlsxSysExtMemoryEntry=wlsxSysExtMemoryEntry, sysExtMemoryFree=sysExtMemoryFree, wlsxSysExtSwitchRole=wlsxSysExtSwitchRole, sysExtCardUserSlot=sysExtCardUserSlot, wlsxSysExtSwitchLicenseCount=wlsxSysExtSwitchLicenseCount, wlsxSysExtCardEntry=wlsxSysExtCardEntry, sysExtSwitchSerNo=sysExtSwitchSerNo, wlsxSysExtLicenseTableGenNumber=wlsxSysExtLicenseTableGenNumber, sysExtCardHwRevision=sysExtCardHwRevision, sysExtCardAssemblyNo=sysExtCardAssemblyNo, sysExtPowerSupplyStatus=sysExtPowerSupplyStatus, sysExtStorageUsed=sysExtStorageUsed) |
with open('input', 'r') as f:
lengths = [ord(x) for x in f.read()] + [17, 31, 73, 47, 23]
inp = [x for x in range(0, 256)]
curr_position = 0
skip_size = 0
for i in range(64):
for length in lengths:
start_sublist = []
if curr_position + length >= len(inp):
start_sublist = inp[0:curr_position + length - len(inp)]
reversed_sublist = list(
reversed(inp[curr_position:curr_position + length] + start_sublist))
start_position = curr_position
for i in range(start_position, start_position + len(reversed_sublist)):
inp[i % len(inp)] = reversed_sublist[i - start_position]
curr_position = (curr_position + length + skip_size) % len(inp)
skip_size += 1
result = []
for i in range(16):
start_index = i * 16
end_index = start_index + 16
sub_list = inp[start_index:end_index]
res = 0
for i in range(0, 16):
res ^= sub_list[i]
result.append(res)
print("result", "".join([x[2:] for x in map(hex, result)]))
| with open('input', 'r') as f:
lengths = [ord(x) for x in f.read()] + [17, 31, 73, 47, 23]
inp = [x for x in range(0, 256)]
curr_position = 0
skip_size = 0
for i in range(64):
for length in lengths:
start_sublist = []
if curr_position + length >= len(inp):
start_sublist = inp[0:curr_position + length - len(inp)]
reversed_sublist = list(reversed(inp[curr_position:curr_position + length] + start_sublist))
start_position = curr_position
for i in range(start_position, start_position + len(reversed_sublist)):
inp[i % len(inp)] = reversed_sublist[i - start_position]
curr_position = (curr_position + length + skip_size) % len(inp)
skip_size += 1
result = []
for i in range(16):
start_index = i * 16
end_index = start_index + 16
sub_list = inp[start_index:end_index]
res = 0
for i in range(0, 16):
res ^= sub_list[i]
result.append(res)
print('result', ''.join([x[2:] for x in map(hex, result)])) |
products = {'gucci boots': 10000, 'channel': 20000, 'adidas boots': 8000,
'nike sport-suit': 23000, 'gucci sport-suit': 24000,
'Lonsdale suit': 8000, 'nike boots': 9000,
'dior chest': 10000, 'raben waist': 15000,
'wedding dress': 500000}
user = 'user'
password = 'user123456'
def check_login(login, password):
if len(login) < 20 and user == login and password == password and not password.isalpha() and not password.isdigit():
print('Vy voshli v sistemu!')
else:
print('Nepravelnye dannye!')
check_login('user', 'user123456')
def counter(money, price):
if money > price:
money = money - price
return money
else:
return 'Ne dostatochno sredst!'
def cart():
cart_list = []
for i in range(3):
product = input('Vvedite nazvanie tovara: ')
if product in products:
cart_list.append(product)
return cart_list
test_cart = cart()
def wallet(money):
test_cart1 = []
for line in test_cart:
if money >= products[line]:
money = counter(money, products[line])
test_cart1.append(line)
return {'4to ya hotel kupit:':test_cart1, 'Konechniy vybor:': test_cart, 'Sdacha:':money}
print(wallet(50000)) | products = {'gucci boots': 10000, 'channel': 20000, 'adidas boots': 8000, 'nike sport-suit': 23000, 'gucci sport-suit': 24000, 'Lonsdale suit': 8000, 'nike boots': 9000, 'dior chest': 10000, 'raben waist': 15000, 'wedding dress': 500000}
user = 'user'
password = 'user123456'
def check_login(login, password):
if len(login) < 20 and user == login and (password == password) and (not password.isalpha()) and (not password.isdigit()):
print('Vy voshli v sistemu!')
else:
print('Nepravelnye dannye!')
check_login('user', 'user123456')
def counter(money, price):
if money > price:
money = money - price
return money
else:
return 'Ne dostatochno sredst!'
def cart():
cart_list = []
for i in range(3):
product = input('Vvedite nazvanie tovara: ')
if product in products:
cart_list.append(product)
return cart_list
test_cart = cart()
def wallet(money):
test_cart1 = []
for line in test_cart:
if money >= products[line]:
money = counter(money, products[line])
test_cart1.append(line)
return {'4to ya hotel kupit:': test_cart1, 'Konechniy vybor:': test_cart, 'Sdacha:': money}
print(wallet(50000)) |
def l1_norm(lst):
"""
Calculates the l1 norm of a list of numbers
"""
return sum([abs(x) for x in lst])
def l2_norm(lst):
"""
Calculates the l2 norm of a list of numbers
"""
return sum([x*x for x in lst])
def linf_norm(lst):
"""
Calculates the l_infinity norm of a list of numbers
"""
return max([abs(x) for x in lst])
| def l1_norm(lst):
"""
Calculates the l1 norm of a list of numbers
"""
return sum([abs(x) for x in lst])
def l2_norm(lst):
"""
Calculates the l2 norm of a list of numbers
"""
return sum([x * x for x in lst])
def linf_norm(lst):
"""
Calculates the l_infinity norm of a list of numbers
"""
return max([abs(x) for x in lst]) |
#!/usr/bin/env python
__author__ = "bt3"
class Queue(object):
def __init__(self):
self.in_stack = []
self.out_stack = []
def _transfer(self):
while self.in_stack:
self.out_stack.append(self.in_stack.pop())
def enqueue(self, item):
return self.in_stack.append(item)
def dequeue(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return self.out_stack.pop()
else:
return "Queue empty!"
def size(self):
return len(self.in_stack) + len(self.out_stack)
def peek(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return self.out_stack[-1]
else:
return "Queue empty!"
def __repr__(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return '{}'.format(self.out_stack)
else:
return "Queue empty!"
def isEmpty(self):
return not (bool(self.in_stack) or bool(self.out_stack))
if __name__ == '__main__':
queue = Queue()
print("Is the queue empty? ", queue.isEmpty())
print("Adding 0 to 10 in the queue...")
for i in range(10):
queue.enqueue(i)
print("Queue size: ", queue.size())
print("Queue peek : ", queue.peek())
print("Dequeue...", queue.dequeue())
print("Queue peek: ", queue.peek())
print("Is the queue empty? ", queue.isEmpty())
print("Printing the queue...")
print(queue) | __author__ = 'bt3'
class Queue(object):
def __init__(self):
self.in_stack = []
self.out_stack = []
def _transfer(self):
while self.in_stack:
self.out_stack.append(self.in_stack.pop())
def enqueue(self, item):
return self.in_stack.append(item)
def dequeue(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return self.out_stack.pop()
else:
return 'Queue empty!'
def size(self):
return len(self.in_stack) + len(self.out_stack)
def peek(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return self.out_stack[-1]
else:
return 'Queue empty!'
def __repr__(self):
if not self.out_stack:
self._transfer()
if self.out_stack:
return '{}'.format(self.out_stack)
else:
return 'Queue empty!'
def is_empty(self):
return not (bool(self.in_stack) or bool(self.out_stack))
if __name__ == '__main__':
queue = queue()
print('Is the queue empty? ', queue.isEmpty())
print('Adding 0 to 10 in the queue...')
for i in range(10):
queue.enqueue(i)
print('Queue size: ', queue.size())
print('Queue peek : ', queue.peek())
print('Dequeue...', queue.dequeue())
print('Queue peek: ', queue.peek())
print('Is the queue empty? ', queue.isEmpty())
print('Printing the queue...')
print(queue) |
print("----------------------------------------------")
print(" Even/Odd Number Identifier")
print("----------------------------------------------")
play_again = 'Y'
while play_again == 'Y':
user_num = input("Enter any whole number: ")
user_int = int(user_num)
if user_int % 2 == 0:
print("The number entered is EVEN!")
print()
print()
else:
print("The number entered is ODD!")
print()
print()
play_again = input("Do you want to try again? (Y/N)")
if play_again == 'N':
print("Thank you for playing!")
print()
print()
| print('----------------------------------------------')
print(' Even/Odd Number Identifier')
print('----------------------------------------------')
play_again = 'Y'
while play_again == 'Y':
user_num = input('Enter any whole number: ')
user_int = int(user_num)
if user_int % 2 == 0:
print('The number entered is EVEN!')
print()
print()
else:
print('The number entered is ODD!')
print()
print()
play_again = input('Do you want to try again? (Y/N)')
if play_again == 'N':
print('Thank you for playing!')
print()
print() |
# 1. Exemplo de um trecho de codigo sem o uso da interupcao de repeticoes.
num = soma = 0
while num != 90:
num = int(input("Digite um numero: "))
soma += num
soma -= 90
print(f"A soma dos valores e' igual a {soma}.")
print("FIM!")
# 2. Com a interupcao de repeticoes while.
n = s = 0
while True:
n = int(input("Digite um numero: "))
if n == 90:
break
s += n
print(f"A soma dos valores e' igual a: {s}.")
print("FIM!")
# NB: A forma corecta de executar essa operacao e' usando o formato de codigo n.2 | num = soma = 0
while num != 90:
num = int(input('Digite um numero: '))
soma += num
soma -= 90
print(f"A soma dos valores e' igual a {soma}.")
print('FIM!')
n = s = 0
while True:
n = int(input('Digite um numero: '))
if n == 90:
break
s += n
print(f"A soma dos valores e' igual a: {s}.")
print('FIM!') |
M_PI = 3.14159265358979323846
EPSILON = 1.0e-38
MAX_TRANSIENTS = 4
BASE_N = 44 # The base number of segments of tract. | m_pi = 3.141592653589793
epsilon = 1e-38
max_transients = 4
base_n = 44 |
#!/usr/bin/env python3
# Create a function named remove_middle which has three parameters named
# lst, start, and end. The function should return a list where all elements
# in lst with an index between start and end(inclusive) have been removed.
def remove_middle(lst, start, end):
return lst[:start] + lst[end+1:]
print(remove_middle([9, 7, 3, 10, 2, 4], 1, 2))
| def remove_middle(lst, start, end):
return lst[:start] + lst[end + 1:]
print(remove_middle([9, 7, 3, 10, 2, 4], 1, 2)) |
user_input = input("Type a two digit number: ")
first_digit = user_input[0]
second_digit = user_input[1]
print(int(first_digit) + int(second_digit)) | user_input = input('Type a two digit number: ')
first_digit = user_input[0]
second_digit = user_input[1]
print(int(first_digit) + int(second_digit)) |
__program__ = "config"
__version__ = "0.1.0"
__author__ = "Darcy Jones"
__date__ = "30 December 2014"
__author_email__ = "darcy.ab.jones@gmail.com"
__license__ = """
##############################################################################
Copyright (C) 2014 Darcy Jones
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
##############################################################################
"""
DEBUG = False
WTF_CSRF_ENABLED = False
SECRET_KEY = 'development key'
| __program__ = 'config'
__version__ = '0.1.0'
__author__ = 'Darcy Jones'
__date__ = '30 December 2014'
__author_email__ = 'darcy.ab.jones@gmail.com'
__license__ = '\n##############################################################################\n\n Copyright (C) 2014 Darcy Jones\n\n This program is free software: you can redistribute it and/or modify\n it under the terms of the GNU General Public License as published by\n the Free Software Foundation, either version 3 of the License, or\n (at your option) any later version.\n\n This program is distributed in the hope that it will be useful,\n but WITHOUT ANY WARRANTY; without even the implied warranty of\n MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n GNU General Public License for more details.\n\n You should have received a copy of the GNU General Public License\n along with this program. If not, see <http://www.gnu.org/licenses/>.\n\n##############################################################################\n'
debug = False
wtf_csrf_enabled = False
secret_key = 'development key' |
"""
Python makes performing file I/O simple. Take a look
at how to read and write to files here:
https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files
"""
# Open up the "foo.txt" file (which already exists) for reading
# Print all the contents of the file, then close the file
# YOUR CODE HERE
# Open up a file called "bar.txt" (which doesn't exist yet) for
# writing. Write three lines of arbitrary content to that file,
# then close the file. Open up "bar.txt" and inspect it to make
# sure that it contains what you expect it to contain
# YOUR CODE HERE | """
Python makes performing file I/O simple. Take a look
at how to read and write to files here:
https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files
""" |
"""
List of variables common to every workflow, that can change the result in multiple workflows
"""
# Table Names
COMPANY_TABLE = "companies"
COMPANY_USERS_TABLE = "company_users"
SURVEYS_REPLIES_TABLE = "survey_replies"
COMPANIES_TABLE = 'companies'
SURVEYS_QUESTIONS_TABLE = 'survey_questions'
SURVEYS_ITERATIONS_TABLE = "survey_iterations"
TOPIC_ENTITIES_TABLE = "company_topic_entities"
SURVEY_ITERATION_ENTITIES_TABLE = "survey_iteration_entities"
SURVEY_ENTITIES_TABLE_SURVEY_ITERATION_ID = "survey_iteration_id"
ENTITIES_TABLE_COMPANY_ID = "company_id"
TOPIC_ENTITIES_TABLE_COMPANY_TOPIC_ID = "company_topic_id"
ENTITIES_TABLE_YEAR = "year"
ENTITIES_TABLE_WEEK = "week"
TOPIC_ENTITIES_TABLE_CATEGORIES = "categories"
TOPIC_ENTITIES_TABLE_TAGS = "tags"
SURVEYS_TABLE = "surveys"
QUESTIONS_TABLE = "questions"
DIMENSIONS_TABLE = "dimensions"
TOPICS_TABLE = "company_topics"
TOPIC_COMMENTS_TABLE = "company_topic_comments"
COMPANY_FF_TABLE = "company_feature_flags"
COMPANY_WEEK_TABLE = "company_week"
# Table Names for Active Companies
ACTIVE_COMPANIES_TABLE = "weekly_active_companies"
# Column names for mood_release
COMPANIES_COLUMN_NAMES = ["id", "name", "domain", "created_at", 'language', 'is_enabled', 'deleted_at']
COMPANY_USERS_COLUMN_NAMES = ["id", "company_id", "user_id", "is_general_manager",
"is_admin", "roles", "created_at", "deleted_at", "is_enabled"]
SURVEYS_REPLIES_COLUMN_NAMES = ["id", "survey_question_id", "user_id", "rating",
"created_at", "user_timezone", "system_timezone",
"survey_iteration_token_id", "comment", "comment_deleted_at"]
TOPICS_COLUMN_NAMES = ["topic_id", "company_id", 'is_archived', "topic_content", "created_at", "topic_comment"]
ACTIVE_COMPANIES_COLUMNS = ["company_ids"]
SURVEY_REPLIES_DIMENSIONS_QUESTIONS_COLUMN_NAMES = ["survey_reply_id", 'user_id', 'rating', 'comment_created_at',
'comment',
'survey_iteration_id', 'survey_iteration_created_at',
'iteration_year', 'iteration_week',
'company_id', 'question_id', 'question_description', "dimension_id",
'question_week',
'dimension_description']
# Tables Names
JOBS_ACTIVE_COMPANIES_TABLE = "logs_active_company"
JOBS_ACTIVE_COMPANIES_DETAILS_TABLE = "logs_detail_active_company"
# Columns Names for validation_logs
JOBS_ACTIVE_COMPANIES_COLUMNS_NAMES = ["ID", "date", "survey_year", "survey_week", "percent_accuracy", "error_msg"]
JOBS_ACTIVE_COMPANIES_DETAILS_COLUMNS_NAMES = ["ID", "log_id", "company_id", "label_company_python",
"label_company_php"]
TEST_COMPANIES = ["guerrilla.net", "guerrillamail.net", "mood0253.com", "grr.la", "sharklasers.com"]
# Oliver Classifiers Algorithms
##############################################################
# Variable to Connect to CSV files
PATH_COMPANY = "/data_connection/companies.csv"
PATH_USER = "/data_connection/company_users"
PATH_SURVEY_MOOD = "/data_connection/survey_moods.csv"
# Oliver Classifiers Time Series Algorithms
##########################################################################
TIME_TRIAL = 10
DELAY_WEEKS = 2
| """
List of variables common to every workflow, that can change the result in multiple workflows
"""
company_table = 'companies'
company_users_table = 'company_users'
surveys_replies_table = 'survey_replies'
companies_table = 'companies'
surveys_questions_table = 'survey_questions'
surveys_iterations_table = 'survey_iterations'
topic_entities_table = 'company_topic_entities'
survey_iteration_entities_table = 'survey_iteration_entities'
survey_entities_table_survey_iteration_id = 'survey_iteration_id'
entities_table_company_id = 'company_id'
topic_entities_table_company_topic_id = 'company_topic_id'
entities_table_year = 'year'
entities_table_week = 'week'
topic_entities_table_categories = 'categories'
topic_entities_table_tags = 'tags'
surveys_table = 'surveys'
questions_table = 'questions'
dimensions_table = 'dimensions'
topics_table = 'company_topics'
topic_comments_table = 'company_topic_comments'
company_ff_table = 'company_feature_flags'
company_week_table = 'company_week'
active_companies_table = 'weekly_active_companies'
companies_column_names = ['id', 'name', 'domain', 'created_at', 'language', 'is_enabled', 'deleted_at']
company_users_column_names = ['id', 'company_id', 'user_id', 'is_general_manager', 'is_admin', 'roles', 'created_at', 'deleted_at', 'is_enabled']
surveys_replies_column_names = ['id', 'survey_question_id', 'user_id', 'rating', 'created_at', 'user_timezone', 'system_timezone', 'survey_iteration_token_id', 'comment', 'comment_deleted_at']
topics_column_names = ['topic_id', 'company_id', 'is_archived', 'topic_content', 'created_at', 'topic_comment']
active_companies_columns = ['company_ids']
survey_replies_dimensions_questions_column_names = ['survey_reply_id', 'user_id', 'rating', 'comment_created_at', 'comment', 'survey_iteration_id', 'survey_iteration_created_at', 'iteration_year', 'iteration_week', 'company_id', 'question_id', 'question_description', 'dimension_id', 'question_week', 'dimension_description']
jobs_active_companies_table = 'logs_active_company'
jobs_active_companies_details_table = 'logs_detail_active_company'
jobs_active_companies_columns_names = ['ID', 'date', 'survey_year', 'survey_week', 'percent_accuracy', 'error_msg']
jobs_active_companies_details_columns_names = ['ID', 'log_id', 'company_id', 'label_company_python', 'label_company_php']
test_companies = ['guerrilla.net', 'guerrillamail.net', 'mood0253.com', 'grr.la', 'sharklasers.com']
path_company = '/data_connection/companies.csv'
path_user = '/data_connection/company_users'
path_survey_mood = '/data_connection/survey_moods.csv'
time_trial = 10
delay_weeks = 2 |
def steps(number):
'''
The Collatz Conjecture or 3x+1 problem.
Given a number n, return the number of steps required to reach 1.
:param number:
:return:
'''
# The Collatz Conjecture is only concerned with strictly positive integers,
# so your solution should raise a ValueError with a meaningful
# message if given 0 or a negative integer.
if number <= 0:
raise ValueError('.+')
steps_total = 0
while number != 1:
# If n is even, divide n by 2 to get n / 2.
if number % 2 == 0:
number = number / 2
else:
# If n is odd, multiply n by 3 and add 1 to get 3n + 1.
number = number * 3 + 1
steps_total += 1
return steps_total
| def steps(number):
"""
The Collatz Conjecture or 3x+1 problem.
Given a number n, return the number of steps required to reach 1.
:param number:
:return:
"""
if number <= 0:
raise value_error('.+')
steps_total = 0
while number != 1:
if number % 2 == 0:
number = number / 2
else:
number = number * 3 + 1
steps_total += 1
return steps_total |
class Word:
def __init__(self):
self.hanzi = ''
self.pinyin = ''
self.english = ''
self.strokes = []
self.mnemonics = ''
self.audio = ''
self.notes = ''
def __str__(self):
format_str = '{} ({}) - {}\n'
return format_str.format(self.hanzi, self.pinyin, self.english)
def write_to_file(self, filename_out):
'''Append the word to a tsv file.'''
fields = (self.hanzi,
self.pinyin,
self.english,
''.join(self.strokes),
self.audio)
with open(filename_out, 'a') as fout:
line = '\t'.join(fields)
fout.write(line)
fout.write('\n')
| class Word:
def __init__(self):
self.hanzi = ''
self.pinyin = ''
self.english = ''
self.strokes = []
self.mnemonics = ''
self.audio = ''
self.notes = ''
def __str__(self):
format_str = '{} ({}) - {}\n'
return format_str.format(self.hanzi, self.pinyin, self.english)
def write_to_file(self, filename_out):
"""Append the word to a tsv file."""
fields = (self.hanzi, self.pinyin, self.english, ''.join(self.strokes), self.audio)
with open(filename_out, 'a') as fout:
line = '\t'.join(fields)
fout.write(line)
fout.write('\n') |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.