content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class Solution: def findLUSlength(self, words): def isSubsequence(s, t): t = iter(t) return all(c in t for c in s) words.sort(key = lambda x:-len(x)) for i, word in enumerate(words): if all(not isSubsequence(word, words[j]) for j in range(len(words)) if j != i): return len(word) return -1
class Solution: def find_lu_slength(self, words): def is_subsequence(s, t): t = iter(t) return all((c in t for c in s)) words.sort(key=lambda x: -len(x)) for (i, word) in enumerate(words): if all((not is_subsequence(word, words[j]) for j in range(len(words)) if j != i)): return len(word) return -1
class Query: def __init__(self, the_query, filename=None): self.data = None self.the_query = the_query def set_data(self, data): self.data = data def __repr__(self): return self.the_query class LocalMP3Query(Query): def __init__(self, filename, url, author_name): self.title = f"{filename} by {author_name}" super().__init__(url) def __repr__(self): return self.title class YoutubeQuery(Query): def __init__(self, the_query): super().__init__(the_query) def __repr__(self): return " ".join(self.the_query) if isinstance(self.the_query, tuple) or isinstance(self.the_query, list) else self.the_query class SpotifyQuery(Query): def __init__(self, the_query): super().__init__(the_query) class SoundcloudQuery(Query): def __init__(self, the_query): super().__init__(the_query)
class Query: def __init__(self, the_query, filename=None): self.data = None self.the_query = the_query def set_data(self, data): self.data = data def __repr__(self): return self.the_query class Localmp3Query(Query): def __init__(self, filename, url, author_name): self.title = f'{filename} by {author_name}' super().__init__(url) def __repr__(self): return self.title class Youtubequery(Query): def __init__(self, the_query): super().__init__(the_query) def __repr__(self): return ' '.join(self.the_query) if isinstance(self.the_query, tuple) or isinstance(self.the_query, list) else self.the_query class Spotifyquery(Query): def __init__(self, the_query): super().__init__(the_query) class Soundcloudquery(Query): def __init__(self, the_query): super().__init__(the_query)
class Rect: def __init__(self, id: int, x: int, y: int, w: int, h: int): self.id = id self.pos = (x,y) self.size = (w,h) def getX(self): return self.pos[0] def getY(self): return self.pos[1] def getEndX(self): return self.getX() + self.getW() def getEndY(self): return self.getY() + self.getH() def getW(self): return self.size[0] def getH(self): return self.size[1] def __repr__(self): return "{}: {},{} | {},{}".format(self.id, self.getX(), self.getY(), self.getW(), self.getH()) def parse(line: str) -> Rect: id = line[1:line.find('@') - 1] x = line[line.find('@') + 2:line.find(',')] y = line[line.find(',') + 1:line.find(':')] w = line[line.find(':') + 2:line.find('x')] h = line[line.find('x') + 1:len(line) - 1] #print("{},{} | {},{}".format(x, y, w, h)) return Rect(id, int(x), int(y), int(w), int(h)) dict = {} with open('input.txt', 'r') as f: lines = f.readlines() rects = list(map(parse, lines)) for r in rects: for y in range (r.getX(), r.getEndX()): for x in range (r.getY(), r.getEndY()): k = (x, y) if k in dict: dict[k] = 2 else: dict[k] = 1 sum = 0 for x in dict.values(): if x > 1: sum += 1 print(sum)
class Rect: def __init__(self, id: int, x: int, y: int, w: int, h: int): self.id = id self.pos = (x, y) self.size = (w, h) def get_x(self): return self.pos[0] def get_y(self): return self.pos[1] def get_end_x(self): return self.getX() + self.getW() def get_end_y(self): return self.getY() + self.getH() def get_w(self): return self.size[0] def get_h(self): return self.size[1] def __repr__(self): return '{}: {},{} | {},{}'.format(self.id, self.getX(), self.getY(), self.getW(), self.getH()) def parse(line: str) -> Rect: id = line[1:line.find('@') - 1] x = line[line.find('@') + 2:line.find(',')] y = line[line.find(',') + 1:line.find(':')] w = line[line.find(':') + 2:line.find('x')] h = line[line.find('x') + 1:len(line) - 1] return rect(id, int(x), int(y), int(w), int(h)) dict = {} with open('input.txt', 'r') as f: lines = f.readlines() rects = list(map(parse, lines)) for r in rects: for y in range(r.getX(), r.getEndX()): for x in range(r.getY(), r.getEndY()): k = (x, y) if k in dict: dict[k] = 2 else: dict[k] = 1 sum = 0 for x in dict.values(): if x > 1: sum += 1 print(sum)
# Databricks notebook source # MAGIC %run /Shared/churn-model/utils # COMMAND ---------- seed = 2022 target = 'Churn' drop_columns = [target, 'CodigoCliente'] # Get the Train Dataset dataset = get_dataset('/dbfs/Dataset/Customer') # Preprocessing Features dataset, numeric_columns = preprocessing(dataset) # Split train and test train_dataset, test_dataset = split_dataset(dataset, seed) # Parameters we got from the best interaction params = {'early_stopping_rounds': 50, 'learning_rate': 0.2260, 'max_depth': 64, 'maximize': False, 'min_child_weight': 19.22, 'num_boost_round': 1000, 'reg_alpha': 0.01, 'reg_lambda': 0.348, 'verbose_eval': False, 'seed': seed} # Get X, y X_train, X_test, y_train, y_test = get_X_y(train_dataset, test_dataset, target, numeric_columns, drop_columns) # Train model and Load model_uri = train_model(X_train, y_train, X_test, y_test) model = load_model(model_uri) # Persist in the DBFS persist_model(model, '/dbfs/models/churn-prediction') print('Model trained - TEST')
seed = 2022 target = 'Churn' drop_columns = [target, 'CodigoCliente'] dataset = get_dataset('/dbfs/Dataset/Customer') (dataset, numeric_columns) = preprocessing(dataset) (train_dataset, test_dataset) = split_dataset(dataset, seed) params = {'early_stopping_rounds': 50, 'learning_rate': 0.226, 'max_depth': 64, 'maximize': False, 'min_child_weight': 19.22, 'num_boost_round': 1000, 'reg_alpha': 0.01, 'reg_lambda': 0.348, 'verbose_eval': False, 'seed': seed} (x_train, x_test, y_train, y_test) = get_x_y(train_dataset, test_dataset, target, numeric_columns, drop_columns) model_uri = train_model(X_train, y_train, X_test, y_test) model = load_model(model_uri) persist_model(model, '/dbfs/models/churn-prediction') print('Model trained - TEST')
# # @lc app=leetcode.cn id=747 lang=python3 # # [747] min-cost-climbing-stairs # None # @lc code=end
None
class Note: def __init__(self, number=0, name='', alt_name='', frequency=0, velocity=1): self.number = number self.name = name self.alt_name = alt_name self.frequency = frequency self.velocity = velocity
class Note: def __init__(self, number=0, name='', alt_name='', frequency=0, velocity=1): self.number = number self.name = name self.alt_name = alt_name self.frequency = frequency self.velocity = velocity
#!/usr/bin/env python # Copyright (c) 2015 Nelson Tran # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # Mouse basic commands and arguments MOUSE_CMD = 0xE0 MOUSE_CALIBRATE = 0xE1 MOUSE_PRESS = 0xE2 MOUSE_RELEASE = 0xE3 MOUSE_CLICK = 0xE4 MOUSE_FAST_CLICK = 0xE5 MOUSE_MOVE = 0xE6 MOUSE_BEZIER = 0xE7 # Mouse buttons MOUSE_LEFT = 0xEA MOUSE_RIGHT = 0xEB MOUSE_MIDDLE = 0xEC MOUSE_BUTTONS = [MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT] # Keyboard commands and arguments KEYBOARD_CMD = 0xF0 KEYBOARD_PRESS = 0xF1 KEYBOARD_RELEASE = 0xF2 KEYBOARD_RELEASE_ALL = 0xF3 KEYBOARD_PRINT = 0xF4 KEYBOARD_PRINTLN = 0xF5 KEYBOARD_WRITE = 0xF6 KEYBOARD_TYPE = 0xF7 # Arduino keyboard modifiers # http://arduino.cc/en/Reference/KeyboardModifiers LEFT_CTRL = 0x80 LEFT_SHIFT = 0x81 LEFT_ALT = 0x82 LEFT_GUI = 0x83 RIGHT_CTRL = 0x84 RIGHT_SHIFT = 0x85 RIGHT_ALT = 0x86 RIGHT_GUI = 0x87 UP_ARROW = 0xDA DOWN_ARROW = 0xD9 LEFT_ARROW = 0xD8 RIGHT_ARROW = 0xD7 BACKSPACE = 0xB2 TAB = 0xB3 RETURN = 0xB0 ESC = 0xB1 INSERT = 0xD1 DELETE = 0xD4 PAGE_UP = 0xD3 PAGE_DOWN = 0xD6 HOME = 0xD2 END = 0xD5 CAPS_LOCK = 0xC1 F1 = 0xC2 F2 = 0xC3 F3 = 0xC4 F4 = 0xC5 F5 = 0xC6 F6 = 0xC7 F7 = 0xC8 F8 = 0xC9 F9 = 0xCA F10 = 0xCB F11 = 0xCC F12 = 0xCD # etc. SCREEN_CALIBRATE = 0xFF COMMAND_COMPLETE = 0xFE
mouse_cmd = 224 mouse_calibrate = 225 mouse_press = 226 mouse_release = 227 mouse_click = 228 mouse_fast_click = 229 mouse_move = 230 mouse_bezier = 231 mouse_left = 234 mouse_right = 235 mouse_middle = 236 mouse_buttons = [MOUSE_LEFT, MOUSE_MIDDLE, MOUSE_RIGHT] keyboard_cmd = 240 keyboard_press = 241 keyboard_release = 242 keyboard_release_all = 243 keyboard_print = 244 keyboard_println = 245 keyboard_write = 246 keyboard_type = 247 left_ctrl = 128 left_shift = 129 left_alt = 130 left_gui = 131 right_ctrl = 132 right_shift = 133 right_alt = 134 right_gui = 135 up_arrow = 218 down_arrow = 217 left_arrow = 216 right_arrow = 215 backspace = 178 tab = 179 return = 176 esc = 177 insert = 209 delete = 212 page_up = 211 page_down = 214 home = 210 end = 213 caps_lock = 193 f1 = 194 f2 = 195 f3 = 196 f4 = 197 f5 = 198 f6 = 199 f7 = 200 f8 = 201 f9 = 202 f10 = 203 f11 = 204 f12 = 205 screen_calibrate = 255 command_complete = 254
def minion_game(string): # your code goes here vowels = ['A', 'E', 'I', 'O', 'U'] kevin = 0 stuart = 0 for i in range(len(string)): if s[i] in vowels: kevin = kevin + (len(s)-i) else: stuart = stuart + (len(s)-i) if stuart > kevin: print('Stuart '+ str(stuart)) elif kevin > stuart: print('Kevin ' + str(kevin)) else: print('Draw') if __name__ == '__main__': s = input() minion_game(s)
def minion_game(string): vowels = ['A', 'E', 'I', 'O', 'U'] kevin = 0 stuart = 0 for i in range(len(string)): if s[i] in vowels: kevin = kevin + (len(s) - i) else: stuart = stuart + (len(s) - i) if stuart > kevin: print('Stuart ' + str(stuart)) elif kevin > stuart: print('Kevin ' + str(kevin)) else: print('Draw') if __name__ == '__main__': s = input() minion_game(s)
# https://www.hackerrank.com/challenges/find-second-maximum-number-in-a-list N = int(input()) line_of_numbers = input().split(' ') # Extract numbers from input line and add them to list A = [] for i in range(N): A.append(int(line_of_numbers[i])) # Sort list and get largest value from it A.sort() max_number = A[-1] # Remove all instances of the largest value from the list while (A[-1] == max_number): A.pop() # Print the list's last element, which is now the 2nd largest value print(A[-1])
n = int(input()) line_of_numbers = input().split(' ') a = [] for i in range(N): A.append(int(line_of_numbers[i])) A.sort() max_number = A[-1] while A[-1] == max_number: A.pop() print(A[-1])
# The kth Factor of n ''' Given two positive integers n and k. A factor of an integer n is defined as an integer i where n % i == 0. Consider a list of all factors of n sorted in ascending order, return the kth factor in this list or return -1 if n has less than k factors. Example 1: Input: n = 12, k = 3 Output: 3 Explanation: Factors list is [1, 2, 3, 4, 6, 12], the 3rd factor is 3. Example 2: Input: n = 7, k = 2 Output: 7 Explanation: Factors list is [1, 7], the 2nd factor is 7. Example 3: Input: n = 4, k = 4 Output: -1 Explanation: Factors list is [1, 2, 4], there is only 3 factors. We should return -1. Example 4: Input: n = 1, k = 1 Output: 1 Explanation: Factors list is [1], the 1st factor is 1. Example 5: Input: n = 1000, k = 3 Output: 4 Explanation: Factors list is [1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 125, 200, 250, 500, 1000]. Constraints: 1 <= k <= n <= 1000 Hide Hint #1 The factors of n will be always in the range [1, n]. Hide Hint #2 Keep a list of all factors sorted. Loop i from 1 to n and add i if n % i == 0. Return the kth factor if it exist in this list. ''' class Solution: def kthFactor(self, n: int, k: int) -> int: factors = [] for i in range(1,n//2+1): if n%i == 0: factors.append(i) factors.append(n) return factors[k-1] if len(factors)>=k else -1
""" Given two positive integers n and k. A factor of an integer n is defined as an integer i where n % i == 0. Consider a list of all factors of n sorted in ascending order, return the kth factor in this list or return -1 if n has less than k factors. Example 1: Input: n = 12, k = 3 Output: 3 Explanation: Factors list is [1, 2, 3, 4, 6, 12], the 3rd factor is 3. Example 2: Input: n = 7, k = 2 Output: 7 Explanation: Factors list is [1, 7], the 2nd factor is 7. Example 3: Input: n = 4, k = 4 Output: -1 Explanation: Factors list is [1, 2, 4], there is only 3 factors. We should return -1. Example 4: Input: n = 1, k = 1 Output: 1 Explanation: Factors list is [1], the 1st factor is 1. Example 5: Input: n = 1000, k = 3 Output: 4 Explanation: Factors list is [1, 2, 4, 5, 8, 10, 20, 25, 40, 50, 100, 125, 200, 250, 500, 1000]. Constraints: 1 <= k <= n <= 1000 Hide Hint #1 The factors of n will be always in the range [1, n]. Hide Hint #2 Keep a list of all factors sorted. Loop i from 1 to n and add i if n % i == 0. Return the kth factor if it exist in this list. """ class Solution: def kth_factor(self, n: int, k: int) -> int: factors = [] for i in range(1, n // 2 + 1): if n % i == 0: factors.append(i) factors.append(n) return factors[k - 1] if len(factors) >= k else -1
LOGIN_REQUIRED = 'Es Necesario iniciar Sesion!' USER_CREATED = 'Usuario Creado Exitosamente!' LOGOUT = 'Cerraste Sesion!' ERRO_USER_PASSWORD = 'Usuario o Contrasena Invalidos!' LOGIN = 'Usuario Autenticado Exitosamente!' TASK_CREATED = 'Tarea creada Exitosamente!' TASK_UPDATED = 'Tarea Actualizada!' TASK_DELETE = "Tarea Eliminada!"
login_required = 'Es Necesario iniciar Sesion!' user_created = 'Usuario Creado Exitosamente!' logout = 'Cerraste Sesion!' erro_user_password = 'Usuario o Contrasena Invalidos!' login = 'Usuario Autenticado Exitosamente!' task_created = 'Tarea creada Exitosamente!' task_updated = 'Tarea Actualizada!' task_delete = 'Tarea Eliminada!'
def left_join(d1, d2): results = [] for key in d1: if key in d2: results.append([key, d1[key], d2[key]]) else: results.append([key, d1[key], None]) return results
def left_join(d1, d2): results = [] for key in d1: if key in d2: results.append([key, d1[key], d2[key]]) else: results.append([key, d1[key], None]) return results
listagem = ('APRENDER', 'PROGRAMAR', 'LINGUAGEM', 'PYTHON', 'CURSO', 'GRATIS', 'ESTUDAR', 'PRATICAR', 'TRABALHAR', 'MERCADO', 'PROGRAMADOR', 'FUTURO') for pos in listagem: print(f'\nNa palavra {pos} temos ', end=' ') for letra in pos: if letra.upper() in 'AEIOU': print(letra, end=' ')
listagem = ('APRENDER', 'PROGRAMAR', 'LINGUAGEM', 'PYTHON', 'CURSO', 'GRATIS', 'ESTUDAR', 'PRATICAR', 'TRABALHAR', 'MERCADO', 'PROGRAMADOR', 'FUTURO') for pos in listagem: print(f'\nNa palavra {pos} temos ', end=' ') for letra in pos: if letra.upper() in 'AEIOU': print(letra, end=' ')
# In Python, the names of classes follow the CapWords # convention. Let's convert the input phrase accordingly by # capitilizing all words and spelling them without underscores in- # between. # The input format: # A word or phrase, with words separated by underscores, like # function and variable names in Python. # You might want to change the case of letters since they are not # necessarily lowercased. # The output format: # The name written in the CapWords fashion. # word.capitalize() if word.isalpha else word = input() print(word.title() if word.find("_") == -1 else word.title().replace("_", '')) print(''.join([x.capitalize() for x in input().lower().split('_')]))
word = input() print(word.title() if word.find('_') == -1 else word.title().replace('_', '')) print(''.join([x.capitalize() for x in input().lower().split('_')]))
pow_of_5th = {i:i**5 for i in range(10)} def get_5th_pow_of(n): return pow_of_5th[n] def get_sum_of_5th_pow_of(n): sum = 0 for digit in str(n): sum += get_5th_pow_of(int(digit)) return sum if __name__ == "__main__": numb = set() ceil = ((pow_of_5th[9]) * 9)+1 # Verify this ceil for n in range(2, ceil): if get_sum_of_5th_pow_of(n) == n: numb.add(n) print(sum(numb))
pow_of_5th = {i: i ** 5 for i in range(10)} def get_5th_pow_of(n): return pow_of_5th[n] def get_sum_of_5th_pow_of(n): sum = 0 for digit in str(n): sum += get_5th_pow_of(int(digit)) return sum if __name__ == '__main__': numb = set() ceil = pow_of_5th[9] * 9 + 1 for n in range(2, ceil): if get_sum_of_5th_pow_of(n) == n: numb.add(n) print(sum(numb))
CONSUMER_API_KEY = "" CONSUMER_API_SECRET = "" ACCESS_TOKEN = "" ACCESS_KEY = ""
consumer_api_key = '' consumer_api_secret = '' access_token = '' access_key = ''
def emergency_stop(driver): driver.setSteeringAngle(0.0) driver.setCruisingSpeed(0) def stop(driver, frame=30): driver.setSteeringAngle(0.0) driver.setCruisingSpeed(0) def print_all_devices(r): print('---------------------------------------') for i in range(r.getNumberOfDevices()): print('~ Device:', r.getDeviceByIndex(i).getName(), ' ===> ', r.getDeviceByIndex(i)) print('---------------------------------------')
def emergency_stop(driver): driver.setSteeringAngle(0.0) driver.setCruisingSpeed(0) def stop(driver, frame=30): driver.setSteeringAngle(0.0) driver.setCruisingSpeed(0) def print_all_devices(r): print('---------------------------------------') for i in range(r.getNumberOfDevices()): print('~ Device:', r.getDeviceByIndex(i).getName(), ' ===> ', r.getDeviceByIndex(i)) print('---------------------------------------')
#!/usr/bin/env python3 # -*- coding:utf-8 -*- # @Script: solution.py # @Author: Pradip Patil # @Contact: @pradip__patil # @Created: 2018-02-12 23:58:20 # @Last Modified By: Pradip Patil # @Last Modified: 2018-02-13 00:15:16 # @Description: https://www.hackerrank.com/challenges/find-second-maximum-number-in-a-list/problem if __name__ == '__main__': n = int(input()) # 1. create list fom space separated input # 2. remove duplicates by creating set from list # 3. sort the set and print second last element print(sorted(set([int(i) for i in input().split()]))[-2])
if __name__ == '__main__': n = int(input()) print(sorted(set([int(i) for i in input().split()]))[-2])
class Base(object): TYPE_ATTRIBUTES = ("_entity_type", "workflow_type") @staticmethod def _get_camelcase(attribute): if attribute in Base.TYPE_ATTRIBUTES: return "type" tmp = attribute.split("_") return tmp[0] + "".join([w.title() for w in tmp[1:]]) @staticmethod def _get_serialized(attribute_value): serializable = getattr(attribute_value, "serialize", None) if serializable: attribute_value = attribute_value.serialize() return attribute_value def _get_serialized_attribute(self, attribute_value): if isinstance(attribute_value, list): attribute_value = [self._get_serialized(a) for a in attribute_value] else: attribute_value = self._get_serialized(attribute_value) return attribute_value def serialize(self): return {self._get_camelcase(k): self._get_serialized_attribute(v) for k, v in self.__dict__.items() if v is not None } class Entity(Base): def __init__(self, value): self.value = value
class Base(object): type_attributes = ('_entity_type', 'workflow_type') @staticmethod def _get_camelcase(attribute): if attribute in Base.TYPE_ATTRIBUTES: return 'type' tmp = attribute.split('_') return tmp[0] + ''.join([w.title() for w in tmp[1:]]) @staticmethod def _get_serialized(attribute_value): serializable = getattr(attribute_value, 'serialize', None) if serializable: attribute_value = attribute_value.serialize() return attribute_value def _get_serialized_attribute(self, attribute_value): if isinstance(attribute_value, list): attribute_value = [self._get_serialized(a) for a in attribute_value] else: attribute_value = self._get_serialized(attribute_value) return attribute_value def serialize(self): return {self._get_camelcase(k): self._get_serialized_attribute(v) for (k, v) in self.__dict__.items() if v is not None} class Entity(Base): def __init__(self, value): self.value = value
n = int(input()) while n: p = str(input()) print("gzuz") n = n - 1
n = int(input()) while n: p = str(input()) print('gzuz') n = n - 1
group_name = [ 'DA', 'DG', 'DC', 'DT', 'DI' ]
group_name = ['DA', 'DG', 'DC', 'DT', 'DI']
LESSONS = [ { "Move cursor left": ["h"], "Move cursor right": ["l"], "Move cursor down": ["j"], "Move cursor up": ["k"], "Close file": [":q"], "Close file, don't save changes": [":q!"], "Save changes to file": [":w"], "Save changes and close file": [":wq", ":x", "ZZ"], "Delete character at cursor": ["x"], "Insert at cursor": ["i"], "Insert at beginning of line": ["I"], "Append after cursor": ["a"], "Append at end of line": ["A"], "Exit insert mode": ["ESC"] }, { "Delete word": ["dw"], "Delete to end of line": ["d$", "D"], "Next word": ["w"], "Go to end of text on current line": ["$"], "Go to beginning of text on current line": ["^"], "Go to beginning of current line": ["0"], "Go two word forward": ["2w"], "Go to end of third word ahead": ["3e"], "Delete two words": ["d2w"], "Delete entire line": ["dd"], "Delete two lines": ["2dd"], "Undo last change": ["u"], "Undo changes on entire line": ["U"], "Redo changes": ["CTRL_R"] }, { "Paste after cursor": ["p"], "Paste before cursor": ["P"], "Replace character under cursor": ["r"], "Change word": ["cw"], "Change to end of line": ["c$", "C"], "Change two words": ["c2w"] }, { "Go to line 50": ["50G"], "Go to last line in file": ["G"], "Go to first line in file": ["gg"], "Search for \"vim\"": ["/vim"], "Go to next search result": ["n"], "Go to previous search result": ["N"], "Search backwards for \"editor\"": ["?editor"], "Jump to previous location (jump back)": ["CTRL_O"], "Jump to next location (jump foward)": ["CTRL_I"], "Go to matching parentheses or brackets": ["%"], "Replace bad with good in CURRENT LINE": [":%s/bad/good"], "Replace hi with bye in entire file": [":%s/hi/bye/g"], "Replace x with y in entire file, prompt for changes": ["%s/x/y/gc"] }, { "Run shell command ls": [":!ls"], "Open visual mode": ["v"], "Visual selected world": ["vw"], "Visual select word, then delete word": ["vwd", "vwx"], "Save current file as \"socket.js\"": [":w socket.js"], "Read in file \"play.py\"": [":r play.py"] }, { "Open new line below": ["o"], "Open new line above": ["O"], "Go to end of word": ["e"], "Go to end of next word": ["2e"], "Enter replace mode": ["R"], "Yank word": ["yw"], "Visual select word, then yank": ["vwy"], "Yank to end of current line": ["y$"], "Change search settings to ignore case": ["set ignorecase", "set ic"], "Change search settings to use case": ["set noignorecase", "set noic"] }, { "Open file \"~/.vimrc\"": [":e ~/.vimrc"], "Get help for \"d\" command": [":help d"], "Get help for \"y\" command": [":help y"] } ]
lessons = [{'Move cursor left': ['h'], 'Move cursor right': ['l'], 'Move cursor down': ['j'], 'Move cursor up': ['k'], 'Close file': [':q'], "Close file, don't save changes": [':q!'], 'Save changes to file': [':w'], 'Save changes and close file': [':wq', ':x', 'ZZ'], 'Delete character at cursor': ['x'], 'Insert at cursor': ['i'], 'Insert at beginning of line': ['I'], 'Append after cursor': ['a'], 'Append at end of line': ['A'], 'Exit insert mode': ['ESC']}, {'Delete word': ['dw'], 'Delete to end of line': ['d$', 'D'], 'Next word': ['w'], 'Go to end of text on current line': ['$'], 'Go to beginning of text on current line': ['^'], 'Go to beginning of current line': ['0'], 'Go two word forward': ['2w'], 'Go to end of third word ahead': ['3e'], 'Delete two words': ['d2w'], 'Delete entire line': ['dd'], 'Delete two lines': ['2dd'], 'Undo last change': ['u'], 'Undo changes on entire line': ['U'], 'Redo changes': ['CTRL_R']}, {'Paste after cursor': ['p'], 'Paste before cursor': ['P'], 'Replace character under cursor': ['r'], 'Change word': ['cw'], 'Change to end of line': ['c$', 'C'], 'Change two words': ['c2w']}, {'Go to line 50': ['50G'], 'Go to last line in file': ['G'], 'Go to first line in file': ['gg'], 'Search for "vim"': ['/vim'], 'Go to next search result': ['n'], 'Go to previous search result': ['N'], 'Search backwards for "editor"': ['?editor'], 'Jump to previous location (jump back)': ['CTRL_O'], 'Jump to next location (jump foward)': ['CTRL_I'], 'Go to matching parentheses or brackets': ['%'], 'Replace bad with good in CURRENT LINE': [':%s/bad/good'], 'Replace hi with bye in entire file': [':%s/hi/bye/g'], 'Replace x with y in entire file, prompt for changes': ['%s/x/y/gc']}, {'Run shell command ls': [':!ls'], 'Open visual mode': ['v'], 'Visual selected world': ['vw'], 'Visual select word, then delete word': ['vwd', 'vwx'], 'Save current file as "socket.js"': [':w socket.js'], 'Read in file "play.py"': [':r play.py']}, {'Open new line below': ['o'], 'Open new line above': ['O'], 'Go to end of word': ['e'], 'Go to end of next word': ['2e'], 'Enter replace mode': ['R'], 'Yank word': ['yw'], 'Visual select word, then yank': ['vwy'], 'Yank to end of current line': ['y$'], 'Change search settings to ignore case': ['set ignorecase', 'set ic'], 'Change search settings to use case': ['set noignorecase', 'set noic']}, {'Open file "~/.vimrc"': [':e ~/.vimrc'], 'Get help for "d" command': [':help d'], 'Get help for "y" command': [':help y']}]
def centuryFromYear(year): if ((year > 0) and (year <= 2005)): str_year = str(year) # converts integer input to string type with 'str()' len_year = len(str_year) # finds length of new 'str_year' century_arr = [] century = 0 # iterates through 'str_year'... for digit in range(len_year): # appends each digit from 'str_year' to century_arr century_arr.append(str_year[digit]) if len_year == 1: century += 1 if len_year == 2: century += 1 if len_year == 3: if ((century_arr[1] == '0') and (century_arr[2] == '0')): century = int(century_arr[0]) else: century = int(century_arr[0]) + 1 if len_year == 4: if ((century_arr[2] == '0') and (century_arr[3] == '0')): century = int(century_arr[0] + century_arr[1]) else: century = int(century_arr[0] + century_arr[1]) + 1 return century else: return "This is not a valid year. Please try again." print(centuryFromYear(1905)) # should print "20" print(centuryFromYear(12)) # should print "1" print(centuryFromYear(195)) # should print "2" print(centuryFromYear(2005)) # should print "21" print(centuryFromYear(2035)) # should print "This is not a valid year. Please try again." print(centuryFromYear(1700)) # should print "17" print(centuryFromYear(45)) # should print "1"
def century_from_year(year): if year > 0 and year <= 2005: str_year = str(year) len_year = len(str_year) century_arr = [] century = 0 for digit in range(len_year): century_arr.append(str_year[digit]) if len_year == 1: century += 1 if len_year == 2: century += 1 if len_year == 3: if century_arr[1] == '0' and century_arr[2] == '0': century = int(century_arr[0]) else: century = int(century_arr[0]) + 1 if len_year == 4: if century_arr[2] == '0' and century_arr[3] == '0': century = int(century_arr[0] + century_arr[1]) else: century = int(century_arr[0] + century_arr[1]) + 1 return century else: return 'This is not a valid year. Please try again.' print(century_from_year(1905)) print(century_from_year(12)) print(century_from_year(195)) print(century_from_year(2005)) print(century_from_year(2035)) print(century_from_year(1700)) print(century_from_year(45))
# # PySNMP MIB module CISCO-DMN-DSG-SDI-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-DMN-DSG-SDI-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 17:37:52 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") ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsIntersection") ciscoDSGUtilities, = mibBuilder.importSymbols("CISCO-DMN-DSG-ROOT-MIB", "ciscoDSGUtilities") NotificationGroup, ObjectGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ObjectGroup", "ModuleCompliance") Counter64, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, MibIdentifier, Unsigned32, iso, Gauge32, Counter32, Bits, Integer32, ObjectIdentity, IpAddress, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "MibIdentifier", "Unsigned32", "iso", "Gauge32", "Counter32", "Bits", "Integer32", "ObjectIdentity", "IpAddress", "TimeTicks") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") ciscoDSGSDI = ModuleIdentity((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32)) ciscoDSGSDI.setRevisions(('2012-03-20 11:00', '2010-08-24 07:00',)) if mibBuilder.loadTexts: ciscoDSGSDI.setLastUpdated('201203201100Z') if mibBuilder.loadTexts: ciscoDSGSDI.setOrganization('Cisco Systems, Inc.') sdiTable = MibIdentifier((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2)) sdiInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1)) sdiVii = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sdiVii.setStatus('current') vancGlobalStatusInterlaced = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusInterlaced.setStatus('current') vancGlobalStatusFrames = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusFrames.setStatus('current') vancGlobalStatusLines = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusLines.setStatus('current') vancGlobalStatusWords = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusWords.setStatus('current') vancGlobalStatusFirst = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusFirst.setStatus('current') vancGlobalStatusLast = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusLast.setStatus('current') vancGlobalStatusSwitch = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusSwitch.setStatus('current') vancGlobalStatusMultiLine = MibScalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vancGlobalStatusMultiLine.setStatus('current') vancCfgTable = MibTable((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1), ) if mibBuilder.loadTexts: vancCfgTable.setStatus('current') vancCfgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1), ).setIndexNames((0, "CISCO-DMN-DSG-SDI-MIB", "vancCfgSvcID")) if mibBuilder.loadTexts: vancCfgEntry.setStatus('current') vancCfgSvcID = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("eia708", 1), ("afd", 2), ("dpi", 3), ("smpte2031", 4), ("sdpOP47", 5), ("multiOP47", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vancCfgSvcID.setStatus('current') vancCfgEnable = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vancCfgEnable.setStatus('current') vancCfgOffset = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 18))).setMaxAccess("readwrite") if mibBuilder.loadTexts: vancCfgOffset.setStatus('current') sdiAudioSlotTable = MibTable((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2), ) if mibBuilder.loadTexts: sdiAudioSlotTable.setStatus('current') sdiAudioSlotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1), ).setIndexNames((0, "CISCO-DMN-DSG-SDI-MIB", "sdiAudioSlotGroup"), (0, "CISCO-DMN-DSG-SDI-MIB", "sdiAudioSlotPosition")) if mibBuilder.loadTexts: sdiAudioSlotEntry.setStatus('current') sdiAudioSlotGroup = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1))).setMaxAccess("readonly") if mibBuilder.loadTexts: sdiAudioSlotGroup.setStatus('current') sdiAudioSlotPosition = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly") if mibBuilder.loadTexts: sdiAudioSlotPosition.setStatus('current') sdiAudioSlotAud = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sdiAudioSlotAud.setStatus('current') sdiAudioSlotChan = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite") if mibBuilder.loadTexts: sdiAudioSlotChan.setStatus('current') vancServiceStatusTable = MibTable((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3), ) if mibBuilder.loadTexts: vancServiceStatusTable.setStatus('current') vancServiceStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1), ).setIndexNames((0, "CISCO-DMN-DSG-SDI-MIB", "vancServiceStatusServiceID")) if mibBuilder.loadTexts: vancServiceStatusEntry.setStatus('current') vancServiceStatusServiceID = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("eia708", 1), ("afd", 2), ("dpi", 3), ("smpte2031", 4), ("sdpOP47", 5), ("multiOP47", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusServiceID.setStatus('current') vancServiceStatusActive = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no", 1), ("yes", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusActive.setStatus('current') vancServiceStatusADJLine = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusADJLine.setStatus('current') vancServiceStatusACTLineF1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusACTLineF1.setStatus('current') vancServiceStatusACTLineF2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusACTLineF2.setStatus('current') vancServiceStatusLinesMAX = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusLinesMAX.setStatus('current') vancServiceStatusDataAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusDataAvg.setStatus('current') vancServiceStatusPacketsOKAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusPacketsOKAvg.setStatus('current') vancServiceStatusPacketsDroppedAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: vancServiceStatusPacketsDroppedAvg.setStatus('current') mibBuilder.exportSymbols("CISCO-DMN-DSG-SDI-MIB", vancGlobalStatusMultiLine=vancGlobalStatusMultiLine, sdiTable=sdiTable, vancGlobalStatusSwitch=vancGlobalStatusSwitch, vancServiceStatusPacketsOKAvg=vancServiceStatusPacketsOKAvg, sdiAudioSlotGroup=sdiAudioSlotGroup, vancCfgOffset=vancCfgOffset, vancCfgTable=vancCfgTable, PYSNMP_MODULE_ID=ciscoDSGSDI, vancServiceStatusDataAvg=vancServiceStatusDataAvg, vancServiceStatusACTLineF2=vancServiceStatusACTLineF2, sdiAudioSlotEntry=sdiAudioSlotEntry, vancServiceStatusActive=vancServiceStatusActive, sdiInfo=sdiInfo, sdiAudioSlotTable=sdiAudioSlotTable, vancServiceStatusLinesMAX=vancServiceStatusLinesMAX, vancServiceStatusEntry=vancServiceStatusEntry, vancGlobalStatusWords=vancGlobalStatusWords, vancServiceStatusPacketsDroppedAvg=vancServiceStatusPacketsDroppedAvg, sdiAudioSlotChan=sdiAudioSlotChan, vancServiceStatusServiceID=vancServiceStatusServiceID, vancGlobalStatusFirst=vancGlobalStatusFirst, sdiAudioSlotAud=sdiAudioSlotAud, sdiVii=sdiVii, vancServiceStatusADJLine=vancServiceStatusADJLine, vancServiceStatusTable=vancServiceStatusTable, vancServiceStatusACTLineF1=vancServiceStatusACTLineF1, vancGlobalStatusLines=vancGlobalStatusLines, ciscoDSGSDI=ciscoDSGSDI, vancGlobalStatusInterlaced=vancGlobalStatusInterlaced, vancCfgSvcID=vancCfgSvcID, vancCfgEntry=vancCfgEntry, vancCfgEnable=vancCfgEnable, sdiAudioSlotPosition=sdiAudioSlotPosition, vancGlobalStatusLast=vancGlobalStatusLast, vancGlobalStatusFrames=vancGlobalStatusFrames)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, single_value_constraint, value_size_constraint, value_range_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsIntersection') (cisco_dsg_utilities,) = mibBuilder.importSymbols('CISCO-DMN-DSG-ROOT-MIB', 'ciscoDSGUtilities') (notification_group, object_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ObjectGroup', 'ModuleCompliance') (counter64, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, mib_identifier, unsigned32, iso, gauge32, counter32, bits, integer32, object_identity, ip_address, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'MibIdentifier', 'Unsigned32', 'iso', 'Gauge32', 'Counter32', 'Bits', 'Integer32', 'ObjectIdentity', 'IpAddress', 'TimeTicks') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') cisco_dsgsdi = module_identity((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32)) ciscoDSGSDI.setRevisions(('2012-03-20 11:00', '2010-08-24 07:00')) if mibBuilder.loadTexts: ciscoDSGSDI.setLastUpdated('201203201100Z') if mibBuilder.loadTexts: ciscoDSGSDI.setOrganization('Cisco Systems, Inc.') sdi_table = mib_identifier((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2)) sdi_info = mib_identifier((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1)) sdi_vii = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sdiVii.setStatus('current') vanc_global_status_interlaced = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusInterlaced.setStatus('current') vanc_global_status_frames = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusFrames.setStatus('current') vanc_global_status_lines = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusLines.setStatus('current') vanc_global_status_words = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusWords.setStatus('current') vanc_global_status_first = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusFirst.setStatus('current') vanc_global_status_last = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusLast.setStatus('current') vanc_global_status_switch = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusSwitch.setStatus('current') vanc_global_status_multi_line = mib_scalar((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disabled', 1), ('enabled', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vancGlobalStatusMultiLine.setStatus('current') vanc_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1)) if mibBuilder.loadTexts: vancCfgTable.setStatus('current') vanc_cfg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1)).setIndexNames((0, 'CISCO-DMN-DSG-SDI-MIB', 'vancCfgSvcID')) if mibBuilder.loadTexts: vancCfgEntry.setStatus('current') vanc_cfg_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('eia708', 1), ('afd', 2), ('dpi', 3), ('smpte2031', 4), ('sdpOP47', 5), ('multiOP47', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vancCfgSvcID.setStatus('current') vanc_cfg_enable = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vancCfgEnable.setStatus('current') vanc_cfg_offset = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 18))).setMaxAccess('readwrite') if mibBuilder.loadTexts: vancCfgOffset.setStatus('current') sdi_audio_slot_table = mib_table((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2)) if mibBuilder.loadTexts: sdiAudioSlotTable.setStatus('current') sdi_audio_slot_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1)).setIndexNames((0, 'CISCO-DMN-DSG-SDI-MIB', 'sdiAudioSlotGroup'), (0, 'CISCO-DMN-DSG-SDI-MIB', 'sdiAudioSlotPosition')) if mibBuilder.loadTexts: sdiAudioSlotEntry.setStatus('current') sdi_audio_slot_group = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1))).setMaxAccess('readonly') if mibBuilder.loadTexts: sdiAudioSlotGroup.setStatus('current') sdi_audio_slot_position = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly') if mibBuilder.loadTexts: sdiAudioSlotPosition.setStatus('current') sdi_audio_slot_aud = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sdiAudioSlotAud.setStatus('current') sdi_audio_slot_chan = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite') if mibBuilder.loadTexts: sdiAudioSlotChan.setStatus('current') vanc_service_status_table = mib_table((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3)) if mibBuilder.loadTexts: vancServiceStatusTable.setStatus('current') vanc_service_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1)).setIndexNames((0, 'CISCO-DMN-DSG-SDI-MIB', 'vancServiceStatusServiceID')) if mibBuilder.loadTexts: vancServiceStatusEntry.setStatus('current') vanc_service_status_service_id = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('eia708', 1), ('afd', 2), ('dpi', 3), ('smpte2031', 4), ('sdpOP47', 5), ('multiOP47', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusServiceID.setStatus('current') vanc_service_status_active = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no', 1), ('yes', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusActive.setStatus('current') vanc_service_status_adj_line = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusADJLine.setStatus('current') vanc_service_status_act_line_f1 = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusACTLineF1.setStatus('current') vanc_service_status_act_line_f2 = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusACTLineF2.setStatus('current') vanc_service_status_lines_max = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusLinesMAX.setStatus('current') vanc_service_status_data_avg = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusDataAvg.setStatus('current') vanc_service_status_packets_ok_avg = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusPacketsOKAvg.setStatus('current') vanc_service_status_packets_dropped_avg = mib_table_column((1, 3, 6, 1, 4, 1, 1429, 2, 2, 5, 32, 2, 3, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: vancServiceStatusPacketsDroppedAvg.setStatus('current') mibBuilder.exportSymbols('CISCO-DMN-DSG-SDI-MIB', vancGlobalStatusMultiLine=vancGlobalStatusMultiLine, sdiTable=sdiTable, vancGlobalStatusSwitch=vancGlobalStatusSwitch, vancServiceStatusPacketsOKAvg=vancServiceStatusPacketsOKAvg, sdiAudioSlotGroup=sdiAudioSlotGroup, vancCfgOffset=vancCfgOffset, vancCfgTable=vancCfgTable, PYSNMP_MODULE_ID=ciscoDSGSDI, vancServiceStatusDataAvg=vancServiceStatusDataAvg, vancServiceStatusACTLineF2=vancServiceStatusACTLineF2, sdiAudioSlotEntry=sdiAudioSlotEntry, vancServiceStatusActive=vancServiceStatusActive, sdiInfo=sdiInfo, sdiAudioSlotTable=sdiAudioSlotTable, vancServiceStatusLinesMAX=vancServiceStatusLinesMAX, vancServiceStatusEntry=vancServiceStatusEntry, vancGlobalStatusWords=vancGlobalStatusWords, vancServiceStatusPacketsDroppedAvg=vancServiceStatusPacketsDroppedAvg, sdiAudioSlotChan=sdiAudioSlotChan, vancServiceStatusServiceID=vancServiceStatusServiceID, vancGlobalStatusFirst=vancGlobalStatusFirst, sdiAudioSlotAud=sdiAudioSlotAud, sdiVii=sdiVii, vancServiceStatusADJLine=vancServiceStatusADJLine, vancServiceStatusTable=vancServiceStatusTable, vancServiceStatusACTLineF1=vancServiceStatusACTLineF1, vancGlobalStatusLines=vancGlobalStatusLines, ciscoDSGSDI=ciscoDSGSDI, vancGlobalStatusInterlaced=vancGlobalStatusInterlaced, vancCfgSvcID=vancCfgSvcID, vancCfgEntry=vancCfgEntry, vancCfgEnable=vancCfgEnable, sdiAudioSlotPosition=sdiAudioSlotPosition, vancGlobalStatusLast=vancGlobalStatusLast, vancGlobalStatusFrames=vancGlobalStatusFrames)
# # TrafficLight.py # Taco --- SPH Innovation Challenge # # Created by Mat, Kon and Len on 2017-03-11. # Copyright 2016 Researchnix. All rights reserved. # class TrafficLight: # State is a 2D array with the values 0 and 1 associating red and green # to the path from one incoming street to another outgoing street state = {} def __init__(self, incoming, outgoing): for o in outgoing: self.state[o.ID] = {} for i in incoming: self.state[o.ID][i.ID] = True # For now every state is 1, so every car can go anywhere def setState(self): pass # Dummy function, should actually decide if # if a path on the intersection is clear # depending on its current state def pathAllowed(self, i, o): return self.state[o][i] # Another dummt functio def update(self, time): pass
class Trafficlight: state = {} def __init__(self, incoming, outgoing): for o in outgoing: self.state[o.ID] = {} for i in incoming: self.state[o.ID][i.ID] = True def set_state(self): pass def path_allowed(self, i, o): return self.state[o][i] def update(self, time): pass
mins = [] maxes = [] letters = [] passwords = [] with open("day2_input", "r") as f: for line in f: first, second = line.split(':') first = first.split('-') mins.append(int(first[0])) maxes.append(int(first[1].split(' ')[0])) letters.append(first[1].split(' ')[1]) passwords.append(second.lstrip(' ').rstrip('\n')) def valid(min_l, max_l, letter, password): count = password.count(letter) return (min_l <= count) and (count <= max_l) def valid2(index1, index2, letter, password): # print(index1, index2, letter, password) return ((password[index1-1] == letter) and (password[index2-1] != letter)) or ((password[index1-1] != letter) and (password[index2-1] == letter)) # part 1 # total = 0 # for (mn, mx, l, p) in zip(mins, maxes, letters, passwords): # if valid(mn, mx, l, p): # total += 1 # print(total) # part 2 total = 0 for (mn, mx, l, p) in zip(mins, maxes, letters, passwords): # print(valid2(mn, mx, l, p), mn, mx, l, p) if valid2(mn, mx, l, p): total += 1 print(total)
mins = [] maxes = [] letters = [] passwords = [] with open('day2_input', 'r') as f: for line in f: (first, second) = line.split(':') first = first.split('-') mins.append(int(first[0])) maxes.append(int(first[1].split(' ')[0])) letters.append(first[1].split(' ')[1]) passwords.append(second.lstrip(' ').rstrip('\n')) def valid(min_l, max_l, letter, password): count = password.count(letter) return min_l <= count and count <= max_l def valid2(index1, index2, letter, password): return password[index1 - 1] == letter and password[index2 - 1] != letter or (password[index1 - 1] != letter and password[index2 - 1] == letter) total = 0 for (mn, mx, l, p) in zip(mins, maxes, letters, passwords): if valid2(mn, mx, l, p): total += 1 print(total)
# # PySNMP MIB module PDN-UPLINK-TAGGING-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-UPLINK-TAGGING-MIB # Produced by pysmi-0.3.4 at Wed May 1 14:39:49 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") ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint") pdn_common, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-common") VlanId, = mibBuilder.importSymbols("Q-BRIDGE-MIB", "VlanId") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") Counter64, Integer32, NotificationType, Unsigned32, Counter32, IpAddress, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, TimeTicks, iso, ObjectIdentity, Gauge32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "Integer32", "NotificationType", "Unsigned32", "Counter32", "IpAddress", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "TimeTicks", "iso", "ObjectIdentity", "Gauge32", "ModuleIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") pdnUplinkTagging = ModuleIdentity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37)) pdnUplinkTagging.setRevisions(('2003-03-12 00:00', '2002-05-15 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: pdnUplinkTagging.setRevisionsDescriptions(("Deprecated the origional objects, ultBaseVlanTag and ultIndex. Added new objects as follows: 1. pdnUltIndex - This new object is basically an Unsigned32 that excludes '0'. It idea is that different implementations will support different maximum values of the index. As such, the syntax for this object will cover any implementation and actual implementation specific maximum values should be documented in something like the implementation's SNMP Op Spec. 2. pdnGenUltBaseVlanTag - This object allows a any base VLAN Tag to be defined. 3. pdn48UltBaseVlanTag - This object defines a set of enumerations for base VLAN Tags for chassis/units that contain 48 ports. 4. pdn24UltBaseVlanTag - This object defines a set of enumerations for base VLAN Tags for chassis/units that contain 24 ports.", 'Initial Release.',)) if mibBuilder.loadTexts: pdnUplinkTagging.setLastUpdated('200303120000Z') if mibBuilder.loadTexts: pdnUplinkTagging.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') if mibBuilder.loadTexts: pdnUplinkTagging.setContactInfo('Paradyne Networks, Inc. 8545 126th Avenue North Largo, FL 33733 www.paradyne.com General Comments to: mibwg_team@paradyne.com Editors Clay Sikes') if mibBuilder.loadTexts: pdnUplinkTagging.setDescription("This MIB contains objects that are used to configure Uplink Tagging (ULT). Uplink Tagging is a term used to describe a feature that simplifies the setup and administration of networks where a service provider wants to use a unique VLAN per subscriber port. Ingress frames will get tagged with a VLAN and these tagged frame will be transmitted on the uplink port towards the WAN. In cases where the hardware implementation permits, multiple units can be interconnected together to form a 'Uplink Tagging Domain (ULT Domain)'. A ULT domain is defined as the set of interconnected Paradyne DSLAMs that share a common block of VLAN IDs. The maximum number of Paradyne DSLAMs that can be interconnected is implementation dependent. Generally, all DSLAMs in a ULT Domain will be configured with the same block of VLAN IDs. Each chassis/unit will be assigned a unique ULT Index within the ULT Domain. There are two parts of configuring Uplink Tagging: 1. Uplink Base VLAN Tag - This object specifies the beginning VLAN ID for a particular common block of VLAN IDs. This object will be defined as an enumeration whose values will depend on the number of port in a chassis/unit. 2. Uplink Tag Index - This object specifies the index within some block of VLAN IDs. Generally, this index can thought of a chassis/unit number as can be seen with the examples below.") pdnUplinkTaggingObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1)) pdnUplinkTaggingObjectsR2 = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3)) pdnUltIndex = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdnUltIndex.setStatus('current') if mibBuilder.loadTexts: pdnUltIndex.setDescription("This object represents VLAN tag index which is an index into a block of VLAN Tags the unit will use. Generally, this can be also thought of as the chassis/unit number in the case where multiple units are interconnected and form a ULT Domain described above. It is strongly encouraged that the upper limit for a particular implementation be clearly documented in the product's SNMP Op Spec.") pdnGenUltBaseVlanTag = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 2), VlanId().clone(16)).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdnGenUltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdnGenUltBaseVlanTag.setDescription("This object can be used to allow any Uplink Tagging Base Index to be entered when they don't like the 'canned' list defined in the objects below.") pdn48UltBaseVlanTag = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("ultBase16", 1), ("ultBase512", 2), ("ultBase1024", 3), ("ultBase1536", 4), ("ultBase2048", 5), ("ultBase2560", 6), ("ultBase3072", 7), ("ultBase3584", 8))).clone('ultBase16')).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdn48UltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdn48UltBaseVlanTag.setDescription('This object represents Uplink Tagging base index which is the starting VLAN ID for a particular common block of VLAN IDs for chassis/units that contain 48 DSL subscriber ports.') pdn24UltBaseVlanTag = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("ultBase16", 1), ("ultBase256", 2), ("ultBase512", 3), ("ultBase768", 4), ("ultBase1024", 5), ("ultBase1280", 6), ("ultBase1536", 7), ("ultBase1792", 8), ("ultBase2048", 9), ("ultBase2304", 10), ("ultBase2560", 11), ("ultBase2816", 12), ("ultBase3072", 13), ("ultBase3328", 14), ("ultBase3584", 15), ("ultBase3840", 16))).clone('ultBase16')).setMaxAccess("readwrite") if mibBuilder.loadTexts: pdn24UltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdn24UltBaseVlanTag.setDescription('This object represents Uplink Tagging base index which is the starting VLAN ID for a particular common block of VLAN IDs for chassis/units that contain 24 DSL subscriber ports.') ultBaseVlanTag = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("ultBase16", 1), ("ultBase512", 2), ("ultBase1024", 3), ("ultBase1536", 4), ("ultBase2048", 5), ("ultBase2560", 6), ("ultBase3072", 7), ("ultBase3584", 8))).clone('ultBase16')).setMaxAccess("readwrite") if mibBuilder.loadTexts: ultBaseVlanTag.setStatus('deprecated') if mibBuilder.loadTexts: ultBaseVlanTag.setDescription('This object represents Uplink Tagging base index. This object has been deprecated. Please use an object defined in pdnUplinkTaggingObjectsR2.') ultIndex = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: ultIndex.setStatus('deprecated') if mibBuilder.loadTexts: ultIndex.setDescription('This object represents VLAN tag index which represents an index into a block of VLAN Tags the unit will use. This object has been deprecated. Please use pdnUltIndex, which is more general below.') pdnUplinkTaggingConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2)) pdnUplinkTaggingGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1)) pdnUplinkTaggingCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 2)) pdnUplinkTaggingDeprecatedGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 3)) pdn48PortUpLinkTaggingGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1, 1)).setObjects(("PDN-UPLINK-TAGGING-MIB", "pdnUltIndex"), ("PDN-UPLINK-TAGGING-MIB", "pdnGenUltBaseVlanTag"), ("PDN-UPLINK-TAGGING-MIB", "pdn48UltBaseVlanTag")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn48PortUpLinkTaggingGroup = pdn48PortUpLinkTaggingGroup.setStatus('current') if mibBuilder.loadTexts: pdn48PortUpLinkTaggingGroup.setDescription('Uplink Tagging Objects for 48-Port chassis/units.') pdn24PortUpLinkTaggingGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1, 2)).setObjects(("PDN-UPLINK-TAGGING-MIB", "pdnUltIndex"), ("PDN-UPLINK-TAGGING-MIB", "pdnGenUltBaseVlanTag"), ("PDN-UPLINK-TAGGING-MIB", "pdn24UltBaseVlanTag")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn24PortUpLinkTaggingGroup = pdn24PortUpLinkTaggingGroup.setStatus('current') if mibBuilder.loadTexts: pdn24PortUpLinkTaggingGroup.setDescription('Uplink Tagging Objects for 24-Port chassis/units.') upLinkTaggingDeprecatedGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 3, 1)).setObjects(("PDN-UPLINK-TAGGING-MIB", "ultBaseVlanTag"), ("PDN-UPLINK-TAGGING-MIB", "ultIndex")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): upLinkTaggingDeprecatedGroup = upLinkTaggingDeprecatedGroup.setStatus('deprecated') if mibBuilder.loadTexts: upLinkTaggingDeprecatedGroup.setDescription('Objects not to use.') mibBuilder.exportSymbols("PDN-UPLINK-TAGGING-MIB", pdnUplinkTaggingObjectsR2=pdnUplinkTaggingObjectsR2, pdn24PortUpLinkTaggingGroup=pdn24PortUpLinkTaggingGroup, pdnGenUltBaseVlanTag=pdnGenUltBaseVlanTag, pdnUplinkTaggingCompliances=pdnUplinkTaggingCompliances, ultBaseVlanTag=ultBaseVlanTag, ultIndex=ultIndex, pdn48PortUpLinkTaggingGroup=pdn48PortUpLinkTaggingGroup, upLinkTaggingDeprecatedGroup=upLinkTaggingDeprecatedGroup, pdnUplinkTaggingConformance=pdnUplinkTaggingConformance, pdn48UltBaseVlanTag=pdn48UltBaseVlanTag, pdnUltIndex=pdnUltIndex, pdn24UltBaseVlanTag=pdn24UltBaseVlanTag, pdnUplinkTagging=pdnUplinkTagging, pdnUplinkTaggingObjects=pdnUplinkTaggingObjects, pdnUplinkTaggingDeprecatedGroup=pdnUplinkTaggingDeprecatedGroup, pdnUplinkTaggingGroups=pdnUplinkTaggingGroups, PYSNMP_MODULE_ID=pdnUplinkTagging)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_union, constraints_intersection, value_size_constraint, value_range_constraint, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint') (pdn_common,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-common') (vlan_id,) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'VlanId') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (counter64, integer32, notification_type, unsigned32, counter32, ip_address, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, time_ticks, iso, object_identity, gauge32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'Integer32', 'NotificationType', 'Unsigned32', 'Counter32', 'IpAddress', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'TimeTicks', 'iso', 'ObjectIdentity', 'Gauge32', 'ModuleIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') pdn_uplink_tagging = module_identity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37)) pdnUplinkTagging.setRevisions(('2003-03-12 00:00', '2002-05-15 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: pdnUplinkTagging.setRevisionsDescriptions(("Deprecated the origional objects, ultBaseVlanTag and ultIndex. Added new objects as follows: 1. pdnUltIndex - This new object is basically an Unsigned32 that excludes '0'. It idea is that different implementations will support different maximum values of the index. As such, the syntax for this object will cover any implementation and actual implementation specific maximum values should be documented in something like the implementation's SNMP Op Spec. 2. pdnGenUltBaseVlanTag - This object allows a any base VLAN Tag to be defined. 3. pdn48UltBaseVlanTag - This object defines a set of enumerations for base VLAN Tags for chassis/units that contain 48 ports. 4. pdn24UltBaseVlanTag - This object defines a set of enumerations for base VLAN Tags for chassis/units that contain 24 ports.", 'Initial Release.')) if mibBuilder.loadTexts: pdnUplinkTagging.setLastUpdated('200303120000Z') if mibBuilder.loadTexts: pdnUplinkTagging.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB') if mibBuilder.loadTexts: pdnUplinkTagging.setContactInfo('Paradyne Networks, Inc. 8545 126th Avenue North Largo, FL 33733 www.paradyne.com General Comments to: mibwg_team@paradyne.com Editors Clay Sikes') if mibBuilder.loadTexts: pdnUplinkTagging.setDescription("This MIB contains objects that are used to configure Uplink Tagging (ULT). Uplink Tagging is a term used to describe a feature that simplifies the setup and administration of networks where a service provider wants to use a unique VLAN per subscriber port. Ingress frames will get tagged with a VLAN and these tagged frame will be transmitted on the uplink port towards the WAN. In cases where the hardware implementation permits, multiple units can be interconnected together to form a 'Uplink Tagging Domain (ULT Domain)'. A ULT domain is defined as the set of interconnected Paradyne DSLAMs that share a common block of VLAN IDs. The maximum number of Paradyne DSLAMs that can be interconnected is implementation dependent. Generally, all DSLAMs in a ULT Domain will be configured with the same block of VLAN IDs. Each chassis/unit will be assigned a unique ULT Index within the ULT Domain. There are two parts of configuring Uplink Tagging: 1. Uplink Base VLAN Tag - This object specifies the beginning VLAN ID for a particular common block of VLAN IDs. This object will be defined as an enumeration whose values will depend on the number of port in a chassis/unit. 2. Uplink Tag Index - This object specifies the index within some block of VLAN IDs. Generally, this index can thought of a chassis/unit number as can be seen with the examples below.") pdn_uplink_tagging_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1)) pdn_uplink_tagging_objects_r2 = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3)) pdn_ult_index = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdnUltIndex.setStatus('current') if mibBuilder.loadTexts: pdnUltIndex.setDescription("This object represents VLAN tag index which is an index into a block of VLAN Tags the unit will use. Generally, this can be also thought of as the chassis/unit number in the case where multiple units are interconnected and form a ULT Domain described above. It is strongly encouraged that the upper limit for a particular implementation be clearly documented in the product's SNMP Op Spec.") pdn_gen_ult_base_vlan_tag = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 2), vlan_id().clone(16)).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdnGenUltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdnGenUltBaseVlanTag.setDescription("This object can be used to allow any Uplink Tagging Base Index to be entered when they don't like the 'canned' list defined in the objects below.") pdn48_ult_base_vlan_tag = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('ultBase16', 1), ('ultBase512', 2), ('ultBase1024', 3), ('ultBase1536', 4), ('ultBase2048', 5), ('ultBase2560', 6), ('ultBase3072', 7), ('ultBase3584', 8))).clone('ultBase16')).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdn48UltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdn48UltBaseVlanTag.setDescription('This object represents Uplink Tagging base index which is the starting VLAN ID for a particular common block of VLAN IDs for chassis/units that contain 48 DSL subscriber ports.') pdn24_ult_base_vlan_tag = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('ultBase16', 1), ('ultBase256', 2), ('ultBase512', 3), ('ultBase768', 4), ('ultBase1024', 5), ('ultBase1280', 6), ('ultBase1536', 7), ('ultBase1792', 8), ('ultBase2048', 9), ('ultBase2304', 10), ('ultBase2560', 11), ('ultBase2816', 12), ('ultBase3072', 13), ('ultBase3328', 14), ('ultBase3584', 15), ('ultBase3840', 16))).clone('ultBase16')).setMaxAccess('readwrite') if mibBuilder.loadTexts: pdn24UltBaseVlanTag.setStatus('current') if mibBuilder.loadTexts: pdn24UltBaseVlanTag.setDescription('This object represents Uplink Tagging base index which is the starting VLAN ID for a particular common block of VLAN IDs for chassis/units that contain 24 DSL subscriber ports.') ult_base_vlan_tag = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('ultBase16', 1), ('ultBase512', 2), ('ultBase1024', 3), ('ultBase1536', 4), ('ultBase2048', 5), ('ultBase2560', 6), ('ultBase3072', 7), ('ultBase3584', 8))).clone('ultBase16')).setMaxAccess('readwrite') if mibBuilder.loadTexts: ultBaseVlanTag.setStatus('deprecated') if mibBuilder.loadTexts: ultBaseVlanTag.setDescription('This object represents Uplink Tagging base index. This object has been deprecated. Please use an object defined in pdnUplinkTaggingObjectsR2.') ult_index = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 5)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: ultIndex.setStatus('deprecated') if mibBuilder.loadTexts: ultIndex.setDescription('This object represents VLAN tag index which represents an index into a block of VLAN Tags the unit will use. This object has been deprecated. Please use pdnUltIndex, which is more general below.') pdn_uplink_tagging_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2)) pdn_uplink_tagging_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1)) pdn_uplink_tagging_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 2)) pdn_uplink_tagging_deprecated_group = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 3)) pdn48_port_up_link_tagging_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1, 1)).setObjects(('PDN-UPLINK-TAGGING-MIB', 'pdnUltIndex'), ('PDN-UPLINK-TAGGING-MIB', 'pdnGenUltBaseVlanTag'), ('PDN-UPLINK-TAGGING-MIB', 'pdn48UltBaseVlanTag')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn48_port_up_link_tagging_group = pdn48PortUpLinkTaggingGroup.setStatus('current') if mibBuilder.loadTexts: pdn48PortUpLinkTaggingGroup.setDescription('Uplink Tagging Objects for 48-Port chassis/units.') pdn24_port_up_link_tagging_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 1, 2)).setObjects(('PDN-UPLINK-TAGGING-MIB', 'pdnUltIndex'), ('PDN-UPLINK-TAGGING-MIB', 'pdnGenUltBaseVlanTag'), ('PDN-UPLINK-TAGGING-MIB', 'pdn24UltBaseVlanTag')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): pdn24_port_up_link_tagging_group = pdn24PortUpLinkTaggingGroup.setStatus('current') if mibBuilder.loadTexts: pdn24PortUpLinkTaggingGroup.setDescription('Uplink Tagging Objects for 24-Port chassis/units.') up_link_tagging_deprecated_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 37, 2, 3, 1)).setObjects(('PDN-UPLINK-TAGGING-MIB', 'ultBaseVlanTag'), ('PDN-UPLINK-TAGGING-MIB', 'ultIndex')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): up_link_tagging_deprecated_group = upLinkTaggingDeprecatedGroup.setStatus('deprecated') if mibBuilder.loadTexts: upLinkTaggingDeprecatedGroup.setDescription('Objects not to use.') mibBuilder.exportSymbols('PDN-UPLINK-TAGGING-MIB', pdnUplinkTaggingObjectsR2=pdnUplinkTaggingObjectsR2, pdn24PortUpLinkTaggingGroup=pdn24PortUpLinkTaggingGroup, pdnGenUltBaseVlanTag=pdnGenUltBaseVlanTag, pdnUplinkTaggingCompliances=pdnUplinkTaggingCompliances, ultBaseVlanTag=ultBaseVlanTag, ultIndex=ultIndex, pdn48PortUpLinkTaggingGroup=pdn48PortUpLinkTaggingGroup, upLinkTaggingDeprecatedGroup=upLinkTaggingDeprecatedGroup, pdnUplinkTaggingConformance=pdnUplinkTaggingConformance, pdn48UltBaseVlanTag=pdn48UltBaseVlanTag, pdnUltIndex=pdnUltIndex, pdn24UltBaseVlanTag=pdn24UltBaseVlanTag, pdnUplinkTagging=pdnUplinkTagging, pdnUplinkTaggingObjects=pdnUplinkTaggingObjects, pdnUplinkTaggingDeprecatedGroup=pdnUplinkTaggingDeprecatedGroup, pdnUplinkTaggingGroups=pdnUplinkTaggingGroups, PYSNMP_MODULE_ID=pdnUplinkTagging)
class Chromosome: def __init__(self, gene): self.gene = gene
class Chromosome: def __init__(self, gene): self.gene = gene
# # PySNMP MIB module FDRY-RADIUS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/FDRY-RADIUS-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 18:59:41 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, Integer, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "OctetString", "Integer", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection") fdryRadius, = mibBuilder.importSymbols("FOUNDRY-SN-ROOT-MIB", "fdryRadius") InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") MibScalar, MibTable, MibTableRow, MibTableColumn, iso, ModuleIdentity, Integer32, TimeTicks, Unsigned32, Counter32, Counter64, NotificationType, MibIdentifier, Gauge32, Bits, ObjectIdentity, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "ModuleIdentity", "Integer32", "TimeTicks", "Unsigned32", "Counter32", "Counter64", "NotificationType", "MibIdentifier", "Gauge32", "Bits", "ObjectIdentity", "IpAddress") TextualConvention, RowStatus, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "RowStatus", "DisplayString") fdryRadiusMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1)) fdryRadiusMIB.setRevisions(('2010-06-02 00:00', '2008-02-25 00:00',)) if mibBuilder.loadTexts: fdryRadiusMIB.setLastUpdated('201006020000Z') if mibBuilder.loadTexts: fdryRadiusMIB.setOrganization('Brocade Communications Systems, Inc.') class ServerUsage(TextualConvention, Integer32): status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4)) namedValues = NamedValues(("default", 1), ("authenticationOnly", 2), ("authorizationOnly", 3), ("accountingOnly", 4)) fdryRadiusServer = MibIdentifier((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1)) fdryRadiusServerTable = MibTable((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1), ) if mibBuilder.loadTexts: fdryRadiusServerTable.setStatus('current') fdryRadiusServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1), ).setIndexNames((0, "FDRY-RADIUS-MIB", "fdryRadiusServerIndex")) if mibBuilder.loadTexts: fdryRadiusServerEntry.setStatus('current') fdryRadiusServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 1), Unsigned32()) if mibBuilder.loadTexts: fdryRadiusServerIndex.setStatus('current') fdryRadiusServerAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 2), InetAddressType().clone('ipv4')).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerAddrType.setStatus('current') fdryRadiusServerAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 3), InetAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerAddr.setStatus('current') fdryRadiusServerAuthPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 4), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerAuthPort.setStatus('current') fdryRadiusServerAcctPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 5), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerAcctPort.setStatus('current') fdryRadiusServerRowKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 6), DisplayString()).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerRowKey.setStatus('current') fdryRadiusServerUsage = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 7), ServerUsage().clone('default')).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerUsage.setStatus('current') fdryRadiusServerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 8), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: fdryRadiusServerRowStatus.setStatus('current') mibBuilder.exportSymbols("FDRY-RADIUS-MIB", fdryRadiusServerTable=fdryRadiusServerTable, fdryRadiusServerAddr=fdryRadiusServerAddr, PYSNMP_MODULE_ID=fdryRadiusMIB, ServerUsage=ServerUsage, fdryRadiusServerAddrType=fdryRadiusServerAddrType, fdryRadiusMIB=fdryRadiusMIB, fdryRadiusServerEntry=fdryRadiusServerEntry, fdryRadiusServerIndex=fdryRadiusServerIndex, fdryRadiusServer=fdryRadiusServer, fdryRadiusServerUsage=fdryRadiusServerUsage, fdryRadiusServerAcctPort=fdryRadiusServerAcctPort, fdryRadiusServerAuthPort=fdryRadiusServerAuthPort, fdryRadiusServerRowStatus=fdryRadiusServerRowStatus, fdryRadiusServerRowKey=fdryRadiusServerRowKey)
(octet_string, integer, object_identifier) = mibBuilder.importSymbols('ASN1', 'OctetString', 'Integer', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, value_size_constraint, value_range_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection') (fdry_radius,) = mibBuilder.importSymbols('FOUNDRY-SN-ROOT-MIB', 'fdryRadius') (inet_address_type, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (mib_scalar, mib_table, mib_table_row, mib_table_column, iso, module_identity, integer32, time_ticks, unsigned32, counter32, counter64, notification_type, mib_identifier, gauge32, bits, object_identity, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'ModuleIdentity', 'Integer32', 'TimeTicks', 'Unsigned32', 'Counter32', 'Counter64', 'NotificationType', 'MibIdentifier', 'Gauge32', 'Bits', 'ObjectIdentity', 'IpAddress') (textual_convention, row_status, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'RowStatus', 'DisplayString') fdry_radius_mib = module_identity((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1)) fdryRadiusMIB.setRevisions(('2010-06-02 00:00', '2008-02-25 00:00')) if mibBuilder.loadTexts: fdryRadiusMIB.setLastUpdated('201006020000Z') if mibBuilder.loadTexts: fdryRadiusMIB.setOrganization('Brocade Communications Systems, Inc.') class Serverusage(TextualConvention, Integer32): status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4)) named_values = named_values(('default', 1), ('authenticationOnly', 2), ('authorizationOnly', 3), ('accountingOnly', 4)) fdry_radius_server = mib_identifier((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1)) fdry_radius_server_table = mib_table((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1)) if mibBuilder.loadTexts: fdryRadiusServerTable.setStatus('current') fdry_radius_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1)).setIndexNames((0, 'FDRY-RADIUS-MIB', 'fdryRadiusServerIndex')) if mibBuilder.loadTexts: fdryRadiusServerEntry.setStatus('current') fdry_radius_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 1), unsigned32()) if mibBuilder.loadTexts: fdryRadiusServerIndex.setStatus('current') fdry_radius_server_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 2), inet_address_type().clone('ipv4')).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerAddrType.setStatus('current') fdry_radius_server_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 3), inet_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerAddr.setStatus('current') fdry_radius_server_auth_port = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 4), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerAuthPort.setStatus('current') fdry_radius_server_acct_port = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 5), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerAcctPort.setStatus('current') fdry_radius_server_row_key = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 6), display_string()).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerRowKey.setStatus('current') fdry_radius_server_usage = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 7), server_usage().clone('default')).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerUsage.setStatus('current') fdry_radius_server_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 1991, 1, 1, 8, 1, 1, 1, 1, 8), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: fdryRadiusServerRowStatus.setStatus('current') mibBuilder.exportSymbols('FDRY-RADIUS-MIB', fdryRadiusServerTable=fdryRadiusServerTable, fdryRadiusServerAddr=fdryRadiusServerAddr, PYSNMP_MODULE_ID=fdryRadiusMIB, ServerUsage=ServerUsage, fdryRadiusServerAddrType=fdryRadiusServerAddrType, fdryRadiusMIB=fdryRadiusMIB, fdryRadiusServerEntry=fdryRadiusServerEntry, fdryRadiusServerIndex=fdryRadiusServerIndex, fdryRadiusServer=fdryRadiusServer, fdryRadiusServerUsage=fdryRadiusServerUsage, fdryRadiusServerAcctPort=fdryRadiusServerAcctPort, fdryRadiusServerAuthPort=fdryRadiusServerAuthPort, fdryRadiusServerRowStatus=fdryRadiusServerRowStatus, fdryRadiusServerRowKey=fdryRadiusServerRowKey)
expected_output = { "ap_name": { "b25a-13-cap10": { "ap_mac": "3c41.0fee.5094", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-12-cap01": { "ap_mac": "3c41.0fee.5884", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-11-cap01": { "ap_mac": "3c41.0fee.5d90", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-12-cap07": { "ap_mac": "3c41.0fee.5de8", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap05": { "ap_mac": "3c41.0fee.5df0", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap04": { "ap_mac": "3c41.0fee.5e5c", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-12-cap08": { "ap_mac": "3c41.0fee.5e74", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap01": { "ap_mac": "3c41.0fee.5eac", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap08": { "ap_mac": "3c41.0fee.5ef8", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap02": { "ap_mac": "3c41.0fee.5f94", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-11-cap07": { "ap_mac": "3c41.0fee.5fbc", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-12-cap02": { "ap_mac": "2c57.4518.16ac", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-11-cap06": { "ap_mac": "2c57.4518.2df0", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-11-cap08": { "ap_mac": "2c57.4518.41b0", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-11-cap07": { "ap_mac": "2c57.4518.432c", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-12-cap11": { "ap_mac": "2c57.4518.4330", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-12-cap02": { "ap_mac": "3c41.0fee.4394", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-13-cap09": { "ap_mac": "2c57.4518.564c", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25b-12-cap03": { "ap_mac": "2c57.4518.5b40", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, "b25a-12-cap10": { "ap_mac": "2c57.4518.5b48", "site_tag_name": "default-site-tag-fabric", "policy_tag_name": "PT_Fabri_B25_B25-1_fe778", "rf_tag_name": "Standard", "misconfigured": "No", "tag_source": "Static", }, }, "number_of_aps": 20, }
expected_output = {'ap_name': {'b25a-13-cap10': {'ap_mac': '3c41.0fee.5094', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-12-cap01': {'ap_mac': '3c41.0fee.5884', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-11-cap01': {'ap_mac': '3c41.0fee.5d90', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-12-cap07': {'ap_mac': '3c41.0fee.5de8', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap05': {'ap_mac': '3c41.0fee.5df0', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap04': {'ap_mac': '3c41.0fee.5e5c', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-12-cap08': {'ap_mac': '3c41.0fee.5e74', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap01': {'ap_mac': '3c41.0fee.5eac', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap08': {'ap_mac': '3c41.0fee.5ef8', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap02': {'ap_mac': '3c41.0fee.5f94', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-11-cap07': {'ap_mac': '3c41.0fee.5fbc', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-12-cap02': {'ap_mac': '2c57.4518.16ac', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-11-cap06': {'ap_mac': '2c57.4518.2df0', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-11-cap08': {'ap_mac': '2c57.4518.41b0', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-11-cap07': {'ap_mac': '2c57.4518.432c', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-12-cap11': {'ap_mac': '2c57.4518.4330', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-12-cap02': {'ap_mac': '3c41.0fee.4394', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-13-cap09': {'ap_mac': '2c57.4518.564c', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25b-12-cap03': {'ap_mac': '2c57.4518.5b40', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}, 'b25a-12-cap10': {'ap_mac': '2c57.4518.5b48', 'site_tag_name': 'default-site-tag-fabric', 'policy_tag_name': 'PT_Fabri_B25_B25-1_fe778', 'rf_tag_name': 'Standard', 'misconfigured': 'No', 'tag_source': 'Static'}}, 'number_of_aps': 20}
epoch = 100 train_result = "/home/yetaoyu/zc/Classification/patch_train_results" train_dataset_dir = "/home/yetaoyu/zc/Classification/patch_data" test_data_dir = "/home/yetaoyu/zc/Classification/patch_data" test_result_dir = "/home/yetaoyu/zc/Classification/patch_test_results" model_weight_path = "/home/yetaoyu/zc/Classification/patch_train_results"
epoch = 100 train_result = '/home/yetaoyu/zc/Classification/patch_train_results' train_dataset_dir = '/home/yetaoyu/zc/Classification/patch_data' test_data_dir = '/home/yetaoyu/zc/Classification/patch_data' test_result_dir = '/home/yetaoyu/zc/Classification/patch_test_results' model_weight_path = '/home/yetaoyu/zc/Classification/patch_train_results'
bunsyou = "I am a" gengo = "cat" if len(gengo) > 3: print(gengo) elif bunsyou[-1] == gengo[1]: print(bunsyou) else: print(bunsyou + " " + gengo)
bunsyou = 'I am a' gengo = 'cat' if len(gengo) > 3: print(gengo) elif bunsyou[-1] == gengo[1]: print(bunsyou) else: print(bunsyou + ' ' + gengo)
# Space: O(n) # Time: O(n!) class Solution: def permuteUnique(self, nums): def backtracking(nums_list, temp_list, res, visited): if len(nums_list) == len(temp_list): res.append(temp_list[:]) for i, num in enumerate(nums_list): if visited[i]: continue if i > 0 and nums_list[i] == nums_list[i - 1] and not visited[i - 1]: continue temp_list.append(num) visited[i] = True backtracking(nums_list, temp_list, res, visited) temp_list.pop() visited[i] = False return res nums.sort() visited = [False for _ in range(len(nums))] return backtracking(nums, [], [], visited)
class Solution: def permute_unique(self, nums): def backtracking(nums_list, temp_list, res, visited): if len(nums_list) == len(temp_list): res.append(temp_list[:]) for (i, num) in enumerate(nums_list): if visited[i]: continue if i > 0 and nums_list[i] == nums_list[i - 1] and (not visited[i - 1]): continue temp_list.append(num) visited[i] = True backtracking(nums_list, temp_list, res, visited) temp_list.pop() visited[i] = False return res nums.sort() visited = [False for _ in range(len(nums))] return backtracking(nums, [], [], visited)
# # PySNMP MIB module HH3C-NVGRE-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-NVGRE-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:16:01 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion") hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") ModuleIdentity, IpAddress, MibIdentifier, TimeTicks, Gauge32, Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, NotificationType, Integer32, Unsigned32, iso, Bits, ObjectIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "IpAddress", "MibIdentifier", "TimeTicks", "Gauge32", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "NotificationType", "Integer32", "Unsigned32", "iso", "Bits", "ObjectIdentity") DisplayString, TextualConvention, MacAddress, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "MacAddress", "RowStatus") hh3cNvgre = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 156)) hh3cNvgre.setRevisions(('2014-03-11 09:00',)) if mibBuilder.loadTexts: hh3cNvgre.setLastUpdated('201403110900Z') if mibBuilder.loadTexts: hh3cNvgre.setOrganization('Hangzhou H3C Technologies Co., Ltd.') hh3cNvgreObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1)) hh3cNvgreScalarGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1)) hh3cNvgreNextNvgreID = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreNextNvgreID.setStatus('current') hh3cNvgreConfigured = MibScalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreConfigured.setStatus('current') hh3cNvgreTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2), ) if mibBuilder.loadTexts: hh3cNvgreTable.setStatus('current') hh3cNvgreEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreID")) if mibBuilder.loadTexts: hh3cNvgreEntry.setStatus('current') hh3cNvgreID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 1), Unsigned32()) if mibBuilder.loadTexts: hh3cNvgreID.setStatus('current') hh3cNvgreVsiIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 2), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cNvgreVsiIndex.setStatus('current') hh3cNvgreRemoteMacCount = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreRemoteMacCount.setStatus('current') hh3cNvgreRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 4), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cNvgreRowStatus.setStatus('current') hh3cNvgreTunnelTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3), ) if mibBuilder.loadTexts: hh3cNvgreTunnelTable.setStatus('current') hh3cNvgreTunnelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreID"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreTunnelID")) if mibBuilder.loadTexts: hh3cNvgreTunnelEntry.setStatus('current') hh3cNvgreTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 1), Unsigned32()) if mibBuilder.loadTexts: hh3cNvgreTunnelID.setStatus('current') hh3cNvgreTunnelRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cNvgreTunnelRowStatus.setStatus('current') hh3cNvgreTunnelOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreTunnelOctets.setStatus('current') hh3cNvgreTunnelPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreTunnelPackets.setStatus('current') hh3cNvgreTunnelBoundTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4), ) if mibBuilder.loadTexts: hh3cNvgreTunnelBoundTable.setStatus('current') hh3cNvgreTunnelBoundEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreTunnelID")) if mibBuilder.loadTexts: hh3cNvgreTunnelBoundEntry.setStatus('current') hh3cNvgreTunnelBoundNvgreNum = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreTunnelBoundNvgreNum.setStatus('current') hh3cNvgreMacTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5), ) if mibBuilder.loadTexts: hh3cNvgreMacTable.setStatus('current') hh3cNvgreMacEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreVsiIndex"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreMacAddr")) if mibBuilder.loadTexts: hh3cNvgreMacEntry.setStatus('current') hh3cNvgreMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 1), MacAddress()) if mibBuilder.loadTexts: hh3cNvgreMacAddr.setStatus('current') hh3cNvgreMacTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreMacTunnelID.setStatus('current') hh3cNvgreMacType = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("selfLearned", 1), ("staticConfigured", 2), ("protocolLearned", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: hh3cNvgreMacType.setStatus('current') hh3cNvgreStaticMacTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6), ) if mibBuilder.loadTexts: hh3cNvgreStaticMacTable.setStatus('current') hh3cNvgreStaticMacEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1), ).setIndexNames((0, "HH3C-NVGRE-MIB", "hh3cNvgreVsiIndex"), (0, "HH3C-NVGRE-MIB", "hh3cNvgreStaticMacAddr")) if mibBuilder.loadTexts: hh3cNvgreStaticMacEntry.setStatus('current') hh3cNvgreStaticMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 1), MacAddress()) if mibBuilder.loadTexts: hh3cNvgreStaticMacAddr.setStatus('current') hh3cNvgreStaticMacTunnelID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 2), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cNvgreStaticMacTunnelID.setStatus('current') hh3cNvgreStaticMacRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: hh3cNvgreStaticMacRowStatus.setStatus('current') mibBuilder.exportSymbols("HH3C-NVGRE-MIB", hh3cNvgreScalarGroup=hh3cNvgreScalarGroup, hh3cNvgreTunnelBoundNvgreNum=hh3cNvgreTunnelBoundNvgreNum, hh3cNvgreConfigured=hh3cNvgreConfigured, hh3cNvgreTable=hh3cNvgreTable, hh3cNvgreMacTunnelID=hh3cNvgreMacTunnelID, hh3cNvgreRowStatus=hh3cNvgreRowStatus, hh3cNvgreTunnelBoundEntry=hh3cNvgreTunnelBoundEntry, hh3cNvgreObjects=hh3cNvgreObjects, hh3cNvgreTunnelEntry=hh3cNvgreTunnelEntry, hh3cNvgreStaticMacAddr=hh3cNvgreStaticMacAddr, hh3cNvgreStaticMacTunnelID=hh3cNvgreStaticMacTunnelID, hh3cNvgreTunnelTable=hh3cNvgreTunnelTable, hh3cNvgreNextNvgreID=hh3cNvgreNextNvgreID, PYSNMP_MODULE_ID=hh3cNvgre, hh3cNvgreTunnelID=hh3cNvgreTunnelID, hh3cNvgre=hh3cNvgre, hh3cNvgreRemoteMacCount=hh3cNvgreRemoteMacCount, hh3cNvgreTunnelOctets=hh3cNvgreTunnelOctets, hh3cNvgreMacEntry=hh3cNvgreMacEntry, hh3cNvgreID=hh3cNvgreID, hh3cNvgreTunnelPackets=hh3cNvgreTunnelPackets, hh3cNvgreVsiIndex=hh3cNvgreVsiIndex, hh3cNvgreMacType=hh3cNvgreMacType, hh3cNvgreTunnelBoundTable=hh3cNvgreTunnelBoundTable, hh3cNvgreMacTable=hh3cNvgreMacTable, hh3cNvgreStaticMacRowStatus=hh3cNvgreStaticMacRowStatus, hh3cNvgreTunnelRowStatus=hh3cNvgreTunnelRowStatus, hh3cNvgreStaticMacEntry=hh3cNvgreStaticMacEntry, hh3cNvgreMacAddr=hh3cNvgreMacAddr, hh3cNvgreEntry=hh3cNvgreEntry, hh3cNvgreStaticMacTable=hh3cNvgreStaticMacTable)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion') (hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (module_identity, ip_address, mib_identifier, time_ticks, gauge32, counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, notification_type, integer32, unsigned32, iso, bits, object_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'IpAddress', 'MibIdentifier', 'TimeTicks', 'Gauge32', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'NotificationType', 'Integer32', 'Unsigned32', 'iso', 'Bits', 'ObjectIdentity') (display_string, textual_convention, mac_address, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'MacAddress', 'RowStatus') hh3c_nvgre = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 156)) hh3cNvgre.setRevisions(('2014-03-11 09:00',)) if mibBuilder.loadTexts: hh3cNvgre.setLastUpdated('201403110900Z') if mibBuilder.loadTexts: hh3cNvgre.setOrganization('Hangzhou H3C Technologies Co., Ltd.') hh3c_nvgre_objects = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1)) hh3c_nvgre_scalar_group = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1)) hh3c_nvgre_next_nvgre_id = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreNextNvgreID.setStatus('current') hh3c_nvgre_configured = mib_scalar((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreConfigured.setStatus('current') hh3c_nvgre_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2)) if mibBuilder.loadTexts: hh3cNvgreTable.setStatus('current') hh3c_nvgre_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1)).setIndexNames((0, 'HH3C-NVGRE-MIB', 'hh3cNvgreID')) if mibBuilder.loadTexts: hh3cNvgreEntry.setStatus('current') hh3c_nvgre_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 1), unsigned32()) if mibBuilder.loadTexts: hh3cNvgreID.setStatus('current') hh3c_nvgre_vsi_index = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 2), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cNvgreVsiIndex.setStatus('current') hh3c_nvgre_remote_mac_count = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreRemoteMacCount.setStatus('current') hh3c_nvgre_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 2, 1, 4), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cNvgreRowStatus.setStatus('current') hh3c_nvgre_tunnel_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3)) if mibBuilder.loadTexts: hh3cNvgreTunnelTable.setStatus('current') hh3c_nvgre_tunnel_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1)).setIndexNames((0, 'HH3C-NVGRE-MIB', 'hh3cNvgreID'), (0, 'HH3C-NVGRE-MIB', 'hh3cNvgreTunnelID')) if mibBuilder.loadTexts: hh3cNvgreTunnelEntry.setStatus('current') hh3c_nvgre_tunnel_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 1), unsigned32()) if mibBuilder.loadTexts: hh3cNvgreTunnelID.setStatus('current') hh3c_nvgre_tunnel_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cNvgreTunnelRowStatus.setStatus('current') hh3c_nvgre_tunnel_octets = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreTunnelOctets.setStatus('current') hh3c_nvgre_tunnel_packets = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 3, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreTunnelPackets.setStatus('current') hh3c_nvgre_tunnel_bound_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4)) if mibBuilder.loadTexts: hh3cNvgreTunnelBoundTable.setStatus('current') hh3c_nvgre_tunnel_bound_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1)).setIndexNames((0, 'HH3C-NVGRE-MIB', 'hh3cNvgreTunnelID')) if mibBuilder.loadTexts: hh3cNvgreTunnelBoundEntry.setStatus('current') hh3c_nvgre_tunnel_bound_nvgre_num = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 4, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreTunnelBoundNvgreNum.setStatus('current') hh3c_nvgre_mac_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5)) if mibBuilder.loadTexts: hh3cNvgreMacTable.setStatus('current') hh3c_nvgre_mac_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1)).setIndexNames((0, 'HH3C-NVGRE-MIB', 'hh3cNvgreVsiIndex'), (0, 'HH3C-NVGRE-MIB', 'hh3cNvgreMacAddr')) if mibBuilder.loadTexts: hh3cNvgreMacEntry.setStatus('current') hh3c_nvgre_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 1), mac_address()) if mibBuilder.loadTexts: hh3cNvgreMacAddr.setStatus('current') hh3c_nvgre_mac_tunnel_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreMacTunnelID.setStatus('current') hh3c_nvgre_mac_type = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 5, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('selfLearned', 1), ('staticConfigured', 2), ('protocolLearned', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: hh3cNvgreMacType.setStatus('current') hh3c_nvgre_static_mac_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6)) if mibBuilder.loadTexts: hh3cNvgreStaticMacTable.setStatus('current') hh3c_nvgre_static_mac_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1)).setIndexNames((0, 'HH3C-NVGRE-MIB', 'hh3cNvgreVsiIndex'), (0, 'HH3C-NVGRE-MIB', 'hh3cNvgreStaticMacAddr')) if mibBuilder.loadTexts: hh3cNvgreStaticMacEntry.setStatus('current') hh3c_nvgre_static_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 1), mac_address()) if mibBuilder.loadTexts: hh3cNvgreStaticMacAddr.setStatus('current') hh3c_nvgre_static_mac_tunnel_id = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 2), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cNvgreStaticMacTunnelID.setStatus('current') hh3c_nvgre_static_mac_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 156, 1, 6, 1, 3), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: hh3cNvgreStaticMacRowStatus.setStatus('current') mibBuilder.exportSymbols('HH3C-NVGRE-MIB', hh3cNvgreScalarGroup=hh3cNvgreScalarGroup, hh3cNvgreTunnelBoundNvgreNum=hh3cNvgreTunnelBoundNvgreNum, hh3cNvgreConfigured=hh3cNvgreConfigured, hh3cNvgreTable=hh3cNvgreTable, hh3cNvgreMacTunnelID=hh3cNvgreMacTunnelID, hh3cNvgreRowStatus=hh3cNvgreRowStatus, hh3cNvgreTunnelBoundEntry=hh3cNvgreTunnelBoundEntry, hh3cNvgreObjects=hh3cNvgreObjects, hh3cNvgreTunnelEntry=hh3cNvgreTunnelEntry, hh3cNvgreStaticMacAddr=hh3cNvgreStaticMacAddr, hh3cNvgreStaticMacTunnelID=hh3cNvgreStaticMacTunnelID, hh3cNvgreTunnelTable=hh3cNvgreTunnelTable, hh3cNvgreNextNvgreID=hh3cNvgreNextNvgreID, PYSNMP_MODULE_ID=hh3cNvgre, hh3cNvgreTunnelID=hh3cNvgreTunnelID, hh3cNvgre=hh3cNvgre, hh3cNvgreRemoteMacCount=hh3cNvgreRemoteMacCount, hh3cNvgreTunnelOctets=hh3cNvgreTunnelOctets, hh3cNvgreMacEntry=hh3cNvgreMacEntry, hh3cNvgreID=hh3cNvgreID, hh3cNvgreTunnelPackets=hh3cNvgreTunnelPackets, hh3cNvgreVsiIndex=hh3cNvgreVsiIndex, hh3cNvgreMacType=hh3cNvgreMacType, hh3cNvgreTunnelBoundTable=hh3cNvgreTunnelBoundTable, hh3cNvgreMacTable=hh3cNvgreMacTable, hh3cNvgreStaticMacRowStatus=hh3cNvgreStaticMacRowStatus, hh3cNvgreTunnelRowStatus=hh3cNvgreTunnelRowStatus, hh3cNvgreStaticMacEntry=hh3cNvgreStaticMacEntry, hh3cNvgreMacAddr=hh3cNvgreMacAddr, hh3cNvgreEntry=hh3cNvgreEntry, hh3cNvgreStaticMacTable=hh3cNvgreStaticMacTable)
def isPrime(n): if n<=3 : return True for i in range(2, n): if n%i==0: return False return True a,b = map(int, input().split()) flag = True if not isPrime(a) or not isPrime(b): flag = False print("NO") else : for i in range(a+1,b): if isPrime(i): flag = False print("NO") break if flag: print("YES")
def is_prime(n): if n <= 3: return True for i in range(2, n): if n % i == 0: return False return True (a, b) = map(int, input().split()) flag = True if not is_prime(a) or not is_prime(b): flag = False print('NO') else: for i in range(a + 1, b): if is_prime(i): flag = False print('NO') break if flag: print('YES')
def binary_search_recursive(array, element, start, end): if start > end: return -1 mid = (start + end) // 2 if element < array[mid]: return binary_search_recursive(array, element, start, mid - 1) else: return binary_search_recursive(array, element, mid + 1, end) element = 18 array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29] print("Searching for {}".format(element)) print("Index of {}: {}".format(element, binary_search_recursive(array, element, 0, len(array)))) def binary_search_iterative(array, element): mid = 0 start = 0 end = len(array) step = 0 while (start <= end): print("Subarray in step {}: {}".format(step, str(array[start:end+1]))) step = step+1 mid = (start + end) // 2 if element == array[mid]: return mid if element < array[mid]: end = mid - 1 else: start = mid + 1 return -1 array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29] element = 18 print("Searching for {} in {}".format(element, array)) print("Index of {}: {}".format(element, binary_search_iterative(array, element)))
def binary_search_recursive(array, element, start, end): if start > end: return -1 mid = (start + end) // 2 if element < array[mid]: return binary_search_recursive(array, element, start, mid - 1) else: return binary_search_recursive(array, element, mid + 1, end) element = 18 array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29] print('Searching for {}'.format(element)) print('Index of {}: {}'.format(element, binary_search_recursive(array, element, 0, len(array)))) def binary_search_iterative(array, element): mid = 0 start = 0 end = len(array) step = 0 while start <= end: print('Subarray in step {}: {}'.format(step, str(array[start:end + 1]))) step = step + 1 mid = (start + end) // 2 if element == array[mid]: return mid if element < array[mid]: end = mid - 1 else: start = mid + 1 return -1 array = [1, 2, 5, 7, 13, 15, 16, 18, 24, 28, 29] element = 18 print('Searching for {} in {}'.format(element, array)) print('Index of {}: {}'.format(element, binary_search_iterative(array, element)))
_base_ = './faster_rcnn_r50_fpn_1x_voc0712_cocofmt.py' model = dict( rpn_head=dict(loss_bbox=dict(type='MSELoss', loss_weight=1.0)), roi_head=dict( bbox_head=dict( loss_bbox=dict(type='MSELoss', loss_weight=1.0)))) optimizer_config = dict( _delete_=True, grad_clip=dict(max_norm=35, norm_type=2)) work_dir = './work_dirs/voc/reg_loss/faster_rcnn/faster_rcnn_r50_fpn_l2_1x_voc0712_cocofmt'
_base_ = './faster_rcnn_r50_fpn_1x_voc0712_cocofmt.py' model = dict(rpn_head=dict(loss_bbox=dict(type='MSELoss', loss_weight=1.0)), roi_head=dict(bbox_head=dict(loss_bbox=dict(type='MSELoss', loss_weight=1.0)))) optimizer_config = dict(_delete_=True, grad_clip=dict(max_norm=35, norm_type=2)) work_dir = './work_dirs/voc/reg_loss/faster_rcnn/faster_rcnn_r50_fpn_l2_1x_voc0712_cocofmt'
no_of_labels=4 no_of_iterations = 10 graph = { 'a': {('b', 1), ('e', 4),('c',2)}, 'b': {('a',1),('c', 3), ('d',3),('e',4)}, 'c': {('a',2),('d',1),('b',3)}, 'd': {('b',3),('e',1), ('c',1)}, 'e': {('d',1),('a',4),('b',4)} }
no_of_labels = 4 no_of_iterations = 10 graph = {'a': {('b', 1), ('e', 4), ('c', 2)}, 'b': {('a', 1), ('c', 3), ('d', 3), ('e', 4)}, 'c': {('a', 2), ('d', 1), ('b', 3)}, 'd': {('b', 3), ('e', 1), ('c', 1)}, 'e': {('d', 1), ('a', 4), ('b', 4)}}
# Read one line of data file = open('myfile.txt', 'r') line_of_data = file.readline() print(line_of_data, end='') file.close()
file = open('myfile.txt', 'r') line_of_data = file.readline() print(line_of_data, end='') file.close()
# # PySNMP MIB module Nortel-Magellan-Passport-VnetEtsiQsigMIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-Magellan-Passport-VnetEtsiQsigMIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:19:14 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion") StorageType, Unsigned32, RowStatus, DisplayString = mibBuilder.importSymbols("Nortel-Magellan-Passport-StandardTextualConventionsMIB", "StorageType", "Unsigned32", "RowStatus", "DisplayString") Link, NonReplicated = mibBuilder.importSymbols("Nortel-Magellan-Passport-TextualConventionsMIB", "Link", "NonReplicated") passportMIBs, = mibBuilder.importSymbols("Nortel-Magellan-Passport-UsefulDefinitionsMIB", "passportMIBs") sigChan, sigChanIndex = mibBuilder.importSymbols("Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChan", "sigChanIndex") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") ObjectIdentity, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, NotificationType, IpAddress, MibIdentifier, iso, TimeTicks, Counter64, Integer32, Counter32, Gauge32, Unsigned32, ModuleIdentity = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "NotificationType", "IpAddress", "MibIdentifier", "iso", "TimeTicks", "Counter64", "Integer32", "Counter32", "Gauge32", "Unsigned32", "ModuleIdentity") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") vnetEtsiQsigMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110)) sigChanEQsig = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2)) sigChanEQsigRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1), ) if mibBuilder.loadTexts: sigChanEQsigRowStatusTable.setStatus('mandatory') sigChanEQsigRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigRowStatusEntry.setStatus('mandatory') sigChanEQsigRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigRowStatus.setStatus('mandatory') sigChanEQsigComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigComponentName.setStatus('mandatory') sigChanEQsigStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigStorageType.setStatus('mandatory') sigChanEQsigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: sigChanEQsigIndex.setStatus('mandatory') sigChanEQsigL2Table = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11), ) if mibBuilder.loadTexts: sigChanEQsigL2Table.setStatus('mandatory') sigChanEQsigL2Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigL2Entry.setStatus('mandatory') sigChanEQsigT23 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 15)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigT23.setStatus('mandatory') sigChanEQsigT200 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 20)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigT200.setStatus('mandatory') sigChanEQsigN200 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigN200.setStatus('mandatory') sigChanEQsigT203 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(2, 40)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigT203.setStatus('mandatory') sigChanEQsigCircuitSwitchedK = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127)).clone(7)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigCircuitSwitchedK.setStatus('mandatory') sigChanEQsigL3Table = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12), ) if mibBuilder.loadTexts: sigChanEQsigL3Table.setStatus('mandatory') sigChanEQsigL3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigL3Entry.setStatus('mandatory') sigChanEQsigT309 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(15, 120)).clone(90)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigT309.setStatus('mandatory') sigChanEQsigT310 = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(10, 120)).clone(30)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigT310.setStatus('mandatory') sigChanEQsigProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13), ) if mibBuilder.loadTexts: sigChanEQsigProvTable.setStatus('mandatory') sigChanEQsigProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigProvEntry.setStatus('mandatory') sigChanEQsigSide = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("network", 1), ("user", 2))).clone('network')).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigSide.setStatus('mandatory') sigChanEQsigMaxNonCallConcurrent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(30)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigMaxNonCallConcurrent.setStatus('mandatory') sigChanEQsigOverlapSendingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigOverlapSendingEnabled.setStatus('mandatory') sigChanEQsigOverlapReceivingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigOverlapReceivingEnabled.setStatus('mandatory') sigChanEQsigStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14), ) if mibBuilder.loadTexts: sigChanEQsigStateTable.setStatus('mandatory') sigChanEQsigStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigStateEntry.setStatus('mandatory') sigChanEQsigAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigAdminState.setStatus('mandatory') sigChanEQsigOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigOperationalState.setStatus('mandatory') sigChanEQsigUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigUsageState.setStatus('mandatory') sigChanEQsigStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15), ) if mibBuilder.loadTexts: sigChanEQsigStatsTable.setStatus('mandatory') sigChanEQsigStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigStatsEntry.setStatus('mandatory') sigChanEQsigTotalCallsToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigTotalCallsToIf.setStatus('mandatory') sigChanEQsigTotalCallsFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigTotalCallsFromIf.setStatus('mandatory') sigChanEQsigNonCallAssocSessionsToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsToIf.setStatus('mandatory') sigChanEQsigNonCallAssocSessionsFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsFromIf.setStatus('mandatory') sigChanEQsigOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16), ) if mibBuilder.loadTexts: sigChanEQsigOperTable.setStatus('mandatory') sigChanEQsigOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigOperEntry.setStatus('mandatory') sigChanEQsigActiveChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigActiveChannels.setStatus('mandatory') sigChanEQsigActiveVoiceChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigActiveVoiceChannels.setStatus('mandatory') sigChanEQsigActiveDataChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigActiveDataChannels.setStatus('mandatory') sigChanEQsigPeakActiveChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigPeakActiveChannels.setStatus('mandatory') sigChanEQsigPeakActiveVoiceChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigPeakActiveVoiceChannels.setStatus('mandatory') sigChanEQsigPeakActiveDataChannels = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigPeakActiveDataChannels.setStatus('mandatory') sigChanEQsigDChanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("outOfService", 0), ("establishing", 1), ("established", 2), ("enabling", 3), ("inService", 4), ("restarting", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigDChanStatus.setStatus('mandatory') sigChanEQsigToolsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17), ) if mibBuilder.loadTexts: sigChanEQsigToolsTable.setStatus('mandatory') sigChanEQsigToolsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigToolsEntry.setStatus('mandatory') sigChanEQsigTracing = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigTracing.setStatus('mandatory') sigChanEQsigEQsigSpecificProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18), ) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvTable.setStatus('mandatory') sigChanEQsigEQsigSpecificProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvEntry.setStatus('mandatory') sigChanEQsigMsgSegmentation = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigMsgSegmentation.setStatus('mandatory') sigChanEQsigE1ChannelNumbers = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("skip16", 1), ("contiguous", 2))).clone('skip16')).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigE1ChannelNumbers.setStatus('mandatory') sigChanEQsigEQsigSpecificOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19), ) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpTable.setStatus('mandatory') sigChanEQsigEQsigSpecificOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex")) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpEntry.setStatus('mandatory') sigChanEQsigSegmentationAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigSegmentationAccepted.setStatus('mandatory') sigChanEQsigSegmentationFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigSegmentationFailed.setStatus('mandatory') sigChanEQsigFramer = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2)) sigChanEQsigFramerRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1), ) if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusTable.setStatus('mandatory') sigChanEQsigFramerRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex")) if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusEntry.setStatus('mandatory') sigChanEQsigFramerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerRowStatus.setStatus('mandatory') sigChanEQsigFramerComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerComponentName.setStatus('mandatory') sigChanEQsigFramerStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerStorageType.setStatus('mandatory') sigChanEQsigFramerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: sigChanEQsigFramerIndex.setStatus('mandatory') sigChanEQsigFramerProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10), ) if mibBuilder.loadTexts: sigChanEQsigFramerProvTable.setStatus('mandatory') sigChanEQsigFramerProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex")) if mibBuilder.loadTexts: sigChanEQsigFramerProvEntry.setStatus('mandatory') sigChanEQsigFramerInterfaceName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: sigChanEQsigFramerInterfaceName.setStatus('mandatory') sigChanEQsigFramerStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12), ) if mibBuilder.loadTexts: sigChanEQsigFramerStateTable.setStatus('mandatory') sigChanEQsigFramerStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex")) if mibBuilder.loadTexts: sigChanEQsigFramerStateEntry.setStatus('mandatory') sigChanEQsigFramerAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerAdminState.setStatus('mandatory') sigChanEQsigFramerOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerOperationalState.setStatus('mandatory') sigChanEQsigFramerUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerUsageState.setStatus('mandatory') sigChanEQsigFramerStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13), ) if mibBuilder.loadTexts: sigChanEQsigFramerStatsTable.setStatus('mandatory') sigChanEQsigFramerStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-VoiceNetworkingMIB", "sigChanIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigIndex"), (0, "Nortel-Magellan-Passport-VnetEtsiQsigMIB", "sigChanEQsigFramerIndex")) if mibBuilder.loadTexts: sigChanEQsigFramerStatsEntry.setStatus('mandatory') sigChanEQsigFramerFrmToIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerFrmToIf.setStatus('mandatory') sigChanEQsigFramerFrmFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerFrmFromIf.setStatus('mandatory') sigChanEQsigFramerOctetFromIf = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerOctetFromIf.setStatus('mandatory') sigChanEQsigFramerAborts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerAborts.setStatus('mandatory') sigChanEQsigFramerCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerCrcErrors.setStatus('mandatory') sigChanEQsigFramerLrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerLrcErrors.setStatus('mandatory') sigChanEQsigFramerNonOctetErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerNonOctetErrors.setStatus('mandatory') sigChanEQsigFramerOverruns = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerOverruns.setStatus('mandatory') sigChanEQsigFramerUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerUnderruns.setStatus('mandatory') sigChanEQsigFramerLargeFrmErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: sigChanEQsigFramerLargeFrmErrors.setStatus('mandatory') vnetEtsiQsigGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1)) vnetEtsiQsigGroupBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5)) vnetEtsiQsigGroupBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2)) vnetEtsiQsigGroupBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2, 2)) vnetEtsiQsigCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3)) vnetEtsiQsigCapabilitiesBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5)) vnetEtsiQsigCapabilitiesBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2)) vnetEtsiQsigCapabilitiesBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2, 2)) mibBuilder.exportSymbols("Nortel-Magellan-Passport-VnetEtsiQsigMIB", sigChanEQsigSegmentationAccepted=sigChanEQsigSegmentationAccepted, sigChanEQsigFramerFrmToIf=sigChanEQsigFramerFrmToIf, sigChanEQsigOperEntry=sigChanEQsigOperEntry, sigChanEQsigFramerStorageType=sigChanEQsigFramerStorageType, sigChanEQsigStorageType=sigChanEQsigStorageType, vnetEtsiQsigGroupBE01A=vnetEtsiQsigGroupBE01A, sigChanEQsigFramerProvTable=sigChanEQsigFramerProvTable, sigChanEQsigTotalCallsFromIf=sigChanEQsigTotalCallsFromIf, sigChanEQsig=sigChanEQsig, sigChanEQsigFramerInterfaceName=sigChanEQsigFramerInterfaceName, sigChanEQsigTotalCallsToIf=sigChanEQsigTotalCallsToIf, sigChanEQsigFramerLargeFrmErrors=sigChanEQsigFramerLargeFrmErrors, sigChanEQsigToolsTable=sigChanEQsigToolsTable, sigChanEQsigCircuitSwitchedK=sigChanEQsigCircuitSwitchedK, sigChanEQsigEQsigSpecificOpTable=sigChanEQsigEQsigSpecificOpTable, sigChanEQsigProvEntry=sigChanEQsigProvEntry, sigChanEQsigEQsigSpecificProvTable=sigChanEQsigEQsigSpecificProvTable, sigChanEQsigFramerStatsEntry=sigChanEQsigFramerStatsEntry, sigChanEQsigOverlapReceivingEnabled=sigChanEQsigOverlapReceivingEnabled, sigChanEQsigIndex=sigChanEQsigIndex, sigChanEQsigL2Entry=sigChanEQsigL2Entry, sigChanEQsigOverlapSendingEnabled=sigChanEQsigOverlapSendingEnabled, sigChanEQsigProvTable=sigChanEQsigProvTable, sigChanEQsigSide=sigChanEQsigSide, sigChanEQsigFramerUsageState=sigChanEQsigFramerUsageState, sigChanEQsigFramerAborts=sigChanEQsigFramerAborts, sigChanEQsigNonCallAssocSessionsFromIf=sigChanEQsigNonCallAssocSessionsFromIf, sigChanEQsigL3Entry=sigChanEQsigL3Entry, sigChanEQsigFramerCrcErrors=sigChanEQsigFramerCrcErrors, sigChanEQsigFramerRowStatusTable=sigChanEQsigFramerRowStatusTable, sigChanEQsigL2Table=sigChanEQsigL2Table, sigChanEQsigFramer=sigChanEQsigFramer, sigChanEQsigEQsigSpecificProvEntry=sigChanEQsigEQsigSpecificProvEntry, sigChanEQsigPeakActiveDataChannels=sigChanEQsigPeakActiveDataChannels, sigChanEQsigFramerComponentName=sigChanEQsigFramerComponentName, vnetEtsiQsigCapabilitiesBE01=vnetEtsiQsigCapabilitiesBE01, sigChanEQsigFramerOctetFromIf=sigChanEQsigFramerOctetFromIf, sigChanEQsigDChanStatus=sigChanEQsigDChanStatus, sigChanEQsigFramerFrmFromIf=sigChanEQsigFramerFrmFromIf, sigChanEQsigTracing=sigChanEQsigTracing, sigChanEQsigToolsEntry=sigChanEQsigToolsEntry, vnetEtsiQsigGroupBE01=vnetEtsiQsigGroupBE01, sigChanEQsigT200=sigChanEQsigT200, sigChanEQsigOperationalState=sigChanEQsigOperationalState, sigChanEQsigRowStatusTable=sigChanEQsigRowStatusTable, sigChanEQsigActiveChannels=sigChanEQsigActiveChannels, vnetEtsiQsigGroupBE=vnetEtsiQsigGroupBE, sigChanEQsigN200=sigChanEQsigN200, sigChanEQsigMaxNonCallConcurrent=sigChanEQsigMaxNonCallConcurrent, sigChanEQsigT23=sigChanEQsigT23, sigChanEQsigEQsigSpecificOpEntry=sigChanEQsigEQsigSpecificOpEntry, sigChanEQsigT203=sigChanEQsigT203, sigChanEQsigL3Table=sigChanEQsigL3Table, sigChanEQsigT310=sigChanEQsigT310, sigChanEQsigStatsTable=sigChanEQsigStatsTable, sigChanEQsigRowStatusEntry=sigChanEQsigRowStatusEntry, vnetEtsiQsigCapabilities=vnetEtsiQsigCapabilities, sigChanEQsigOperTable=sigChanEQsigOperTable, sigChanEQsigActiveVoiceChannels=sigChanEQsigActiveVoiceChannels, sigChanEQsigPeakActiveChannels=sigChanEQsigPeakActiveChannels, sigChanEQsigT309=sigChanEQsigT309, sigChanEQsigFramerAdminState=sigChanEQsigFramerAdminState, sigChanEQsigFramerRowStatusEntry=sigChanEQsigFramerRowStatusEntry, sigChanEQsigFramerNonOctetErrors=sigChanEQsigFramerNonOctetErrors, sigChanEQsigAdminState=sigChanEQsigAdminState, vnetEtsiQsigGroup=vnetEtsiQsigGroup, vnetEtsiQsigCapabilitiesBE=vnetEtsiQsigCapabilitiesBE, sigChanEQsigFramerProvEntry=sigChanEQsigFramerProvEntry, sigChanEQsigFramerStateEntry=sigChanEQsigFramerStateEntry, sigChanEQsigComponentName=sigChanEQsigComponentName, sigChanEQsigFramerStatsTable=sigChanEQsigFramerStatsTable, sigChanEQsigFramerStateTable=sigChanEQsigFramerStateTable, sigChanEQsigActiveDataChannels=sigChanEQsigActiveDataChannels, sigChanEQsigUsageState=sigChanEQsigUsageState, sigChanEQsigFramerLrcErrors=sigChanEQsigFramerLrcErrors, sigChanEQsigFramerOperationalState=sigChanEQsigFramerOperationalState, sigChanEQsigMsgSegmentation=sigChanEQsigMsgSegmentation, sigChanEQsigRowStatus=sigChanEQsigRowStatus, sigChanEQsigNonCallAssocSessionsToIf=sigChanEQsigNonCallAssocSessionsToIf, sigChanEQsigFramerIndex=sigChanEQsigFramerIndex, sigChanEQsigPeakActiveVoiceChannels=sigChanEQsigPeakActiveVoiceChannels, sigChanEQsigFramerRowStatus=sigChanEQsigFramerRowStatus, sigChanEQsigStatsEntry=sigChanEQsigStatsEntry, sigChanEQsigFramerUnderruns=sigChanEQsigFramerUnderruns, sigChanEQsigSegmentationFailed=sigChanEQsigSegmentationFailed, sigChanEQsigStateTable=sigChanEQsigStateTable, sigChanEQsigFramerOverruns=sigChanEQsigFramerOverruns, vnetEtsiQsigMIB=vnetEtsiQsigMIB, sigChanEQsigStateEntry=sigChanEQsigStateEntry, vnetEtsiQsigCapabilitiesBE01A=vnetEtsiQsigCapabilitiesBE01A, sigChanEQsigE1ChannelNumbers=sigChanEQsigE1ChannelNumbers)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, single_value_constraint, constraints_intersection, value_size_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion') (storage_type, unsigned32, row_status, display_string) = mibBuilder.importSymbols('Nortel-Magellan-Passport-StandardTextualConventionsMIB', 'StorageType', 'Unsigned32', 'RowStatus', 'DisplayString') (link, non_replicated) = mibBuilder.importSymbols('Nortel-Magellan-Passport-TextualConventionsMIB', 'Link', 'NonReplicated') (passport_mi_bs,) = mibBuilder.importSymbols('Nortel-Magellan-Passport-UsefulDefinitionsMIB', 'passportMIBs') (sig_chan, sig_chan_index) = mibBuilder.importSymbols('Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChan', 'sigChanIndex') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (object_identity, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, notification_type, ip_address, mib_identifier, iso, time_ticks, counter64, integer32, counter32, gauge32, unsigned32, module_identity) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'NotificationType', 'IpAddress', 'MibIdentifier', 'iso', 'TimeTicks', 'Counter64', 'Integer32', 'Counter32', 'Gauge32', 'Unsigned32', 'ModuleIdentity') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') vnet_etsi_qsig_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110)) sig_chan_e_qsig = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2)) sig_chan_e_qsig_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1)) if mibBuilder.loadTexts: sigChanEQsigRowStatusTable.setStatus('mandatory') sig_chan_e_qsig_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigRowStatusEntry.setStatus('mandatory') sig_chan_e_qsig_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigRowStatus.setStatus('mandatory') sig_chan_e_qsig_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigComponentName.setStatus('mandatory') sig_chan_e_qsig_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigStorageType.setStatus('mandatory') sig_chan_e_qsig_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: sigChanEQsigIndex.setStatus('mandatory') sig_chan_e_qsig_l2_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11)) if mibBuilder.loadTexts: sigChanEQsigL2Table.setStatus('mandatory') sig_chan_e_qsig_l2_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigL2Entry.setStatus('mandatory') sig_chan_e_qsig_t23 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 15)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigT23.setStatus('mandatory') sig_chan_e_qsig_t200 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 20)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigT200.setStatus('mandatory') sig_chan_e_qsig_n200 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 8)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigN200.setStatus('mandatory') sig_chan_e_qsig_t203 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(2, 40)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigT203.setStatus('mandatory') sig_chan_e_qsig_circuit_switched_k = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127)).clone(7)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigCircuitSwitchedK.setStatus('mandatory') sig_chan_e_qsig_l3_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12)) if mibBuilder.loadTexts: sigChanEQsigL3Table.setStatus('mandatory') sig_chan_e_qsig_l3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigL3Entry.setStatus('mandatory') sig_chan_e_qsig_t309 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(15, 120)).clone(90)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigT309.setStatus('mandatory') sig_chan_e_qsig_t310 = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(10, 120)).clone(30)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigT310.setStatus('mandatory') sig_chan_e_qsig_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13)) if mibBuilder.loadTexts: sigChanEQsigProvTable.setStatus('mandatory') sig_chan_e_qsig_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigProvEntry.setStatus('mandatory') sig_chan_e_qsig_side = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('network', 1), ('user', 2))).clone('network')).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigSide.setStatus('mandatory') sig_chan_e_qsig_max_non_call_concurrent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(30)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigMaxNonCallConcurrent.setStatus('mandatory') sig_chan_e_qsig_overlap_sending_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigOverlapSendingEnabled.setStatus('mandatory') sig_chan_e_qsig_overlap_receiving_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigOverlapReceivingEnabled.setStatus('mandatory') sig_chan_e_qsig_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14)) if mibBuilder.loadTexts: sigChanEQsigStateTable.setStatus('mandatory') sig_chan_e_qsig_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigStateEntry.setStatus('mandatory') sig_chan_e_qsig_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigAdminState.setStatus('mandatory') sig_chan_e_qsig_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigOperationalState.setStatus('mandatory') sig_chan_e_qsig_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 14, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigUsageState.setStatus('mandatory') sig_chan_e_qsig_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15)) if mibBuilder.loadTexts: sigChanEQsigStatsTable.setStatus('mandatory') sig_chan_e_qsig_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigStatsEntry.setStatus('mandatory') sig_chan_e_qsig_total_calls_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigTotalCallsToIf.setStatus('mandatory') sig_chan_e_qsig_total_calls_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigTotalCallsFromIf.setStatus('mandatory') sig_chan_e_qsig_non_call_assoc_sessions_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsToIf.setStatus('mandatory') sig_chan_e_qsig_non_call_assoc_sessions_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 15, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigNonCallAssocSessionsFromIf.setStatus('mandatory') sig_chan_e_qsig_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16)) if mibBuilder.loadTexts: sigChanEQsigOperTable.setStatus('mandatory') sig_chan_e_qsig_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigOperEntry.setStatus('mandatory') sig_chan_e_qsig_active_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigActiveChannels.setStatus('mandatory') sig_chan_e_qsig_active_voice_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigActiveVoiceChannels.setStatus('mandatory') sig_chan_e_qsig_active_data_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigActiveDataChannels.setStatus('mandatory') sig_chan_e_qsig_peak_active_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigPeakActiveChannels.setStatus('mandatory') sig_chan_e_qsig_peak_active_voice_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigPeakActiveVoiceChannels.setStatus('mandatory') sig_chan_e_qsig_peak_active_data_channels = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigPeakActiveDataChannels.setStatus('mandatory') sig_chan_e_qsig_d_chan_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 16, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('outOfService', 0), ('establishing', 1), ('established', 2), ('enabling', 3), ('inService', 4), ('restarting', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigDChanStatus.setStatus('mandatory') sig_chan_e_qsig_tools_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17)) if mibBuilder.loadTexts: sigChanEQsigToolsTable.setStatus('mandatory') sig_chan_e_qsig_tools_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigToolsEntry.setStatus('mandatory') sig_chan_e_qsig_tracing = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 17, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigTracing.setStatus('mandatory') sig_chan_e_qsig_e_qsig_specific_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18)) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvTable.setStatus('mandatory') sig_chan_e_qsig_e_qsig_specific_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificProvEntry.setStatus('mandatory') sig_chan_e_qsig_msg_segmentation = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigMsgSegmentation.setStatus('mandatory') sig_chan_e_qsig_e1_channel_numbers = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 18, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('skip16', 1), ('contiguous', 2))).clone('skip16')).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigE1ChannelNumbers.setStatus('mandatory') sig_chan_e_qsig_e_qsig_specific_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19)) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpTable.setStatus('mandatory') sig_chan_e_qsig_e_qsig_specific_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex')) if mibBuilder.loadTexts: sigChanEQsigEQsigSpecificOpEntry.setStatus('mandatory') sig_chan_e_qsig_segmentation_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigSegmentationAccepted.setStatus('mandatory') sig_chan_e_qsig_segmentation_failed = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 19, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigSegmentationFailed.setStatus('mandatory') sig_chan_e_qsig_framer = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2)) sig_chan_e_qsig_framer_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1)) if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusTable.setStatus('mandatory') sig_chan_e_qsig_framer_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigFramerIndex')) if mibBuilder.loadTexts: sigChanEQsigFramerRowStatusEntry.setStatus('mandatory') sig_chan_e_qsig_framer_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerRowStatus.setStatus('mandatory') sig_chan_e_qsig_framer_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerComponentName.setStatus('mandatory') sig_chan_e_qsig_framer_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerStorageType.setStatus('mandatory') sig_chan_e_qsig_framer_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: sigChanEQsigFramerIndex.setStatus('mandatory') sig_chan_e_qsig_framer_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10)) if mibBuilder.loadTexts: sigChanEQsigFramerProvTable.setStatus('mandatory') sig_chan_e_qsig_framer_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigFramerIndex')) if mibBuilder.loadTexts: sigChanEQsigFramerProvEntry.setStatus('mandatory') sig_chan_e_qsig_framer_interface_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 10, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: sigChanEQsigFramerInterfaceName.setStatus('mandatory') sig_chan_e_qsig_framer_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12)) if mibBuilder.loadTexts: sigChanEQsigFramerStateTable.setStatus('mandatory') sig_chan_e_qsig_framer_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigFramerIndex')) if mibBuilder.loadTexts: sigChanEQsigFramerStateEntry.setStatus('mandatory') sig_chan_e_qsig_framer_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerAdminState.setStatus('mandatory') sig_chan_e_qsig_framer_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerOperationalState.setStatus('mandatory') sig_chan_e_qsig_framer_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerUsageState.setStatus('mandatory') sig_chan_e_qsig_framer_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13)) if mibBuilder.loadTexts: sigChanEQsigFramerStatsTable.setStatus('mandatory') sig_chan_e_qsig_framer_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-VoiceNetworkingMIB', 'sigChanIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigIndex'), (0, 'Nortel-Magellan-Passport-VnetEtsiQsigMIB', 'sigChanEQsigFramerIndex')) if mibBuilder.loadTexts: sigChanEQsigFramerStatsEntry.setStatus('mandatory') sig_chan_e_qsig_framer_frm_to_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerFrmToIf.setStatus('mandatory') sig_chan_e_qsig_framer_frm_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerFrmFromIf.setStatus('mandatory') sig_chan_e_qsig_framer_octet_from_if = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerOctetFromIf.setStatus('mandatory') sig_chan_e_qsig_framer_aborts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerAborts.setStatus('mandatory') sig_chan_e_qsig_framer_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerCrcErrors.setStatus('mandatory') sig_chan_e_qsig_framer_lrc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerLrcErrors.setStatus('mandatory') sig_chan_e_qsig_framer_non_octet_errors = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerNonOctetErrors.setStatus('mandatory') sig_chan_e_qsig_framer_overruns = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerOverruns.setStatus('mandatory') sig_chan_e_qsig_framer_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerUnderruns.setStatus('mandatory') sig_chan_e_qsig_framer_large_frm_errors = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 115, 2, 2, 13, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: sigChanEQsigFramerLargeFrmErrors.setStatus('mandatory') vnet_etsi_qsig_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1)) vnet_etsi_qsig_group_be = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5)) vnet_etsi_qsig_group_be01 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2)) vnet_etsi_qsig_group_be01_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 1, 5, 2, 2)) vnet_etsi_qsig_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3)) vnet_etsi_qsig_capabilities_be = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5)) vnet_etsi_qsig_capabilities_be01 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2)) vnet_etsi_qsig_capabilities_be01_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 110, 3, 5, 2, 2)) mibBuilder.exportSymbols('Nortel-Magellan-Passport-VnetEtsiQsigMIB', sigChanEQsigSegmentationAccepted=sigChanEQsigSegmentationAccepted, sigChanEQsigFramerFrmToIf=sigChanEQsigFramerFrmToIf, sigChanEQsigOperEntry=sigChanEQsigOperEntry, sigChanEQsigFramerStorageType=sigChanEQsigFramerStorageType, sigChanEQsigStorageType=sigChanEQsigStorageType, vnetEtsiQsigGroupBE01A=vnetEtsiQsigGroupBE01A, sigChanEQsigFramerProvTable=sigChanEQsigFramerProvTable, sigChanEQsigTotalCallsFromIf=sigChanEQsigTotalCallsFromIf, sigChanEQsig=sigChanEQsig, sigChanEQsigFramerInterfaceName=sigChanEQsigFramerInterfaceName, sigChanEQsigTotalCallsToIf=sigChanEQsigTotalCallsToIf, sigChanEQsigFramerLargeFrmErrors=sigChanEQsigFramerLargeFrmErrors, sigChanEQsigToolsTable=sigChanEQsigToolsTable, sigChanEQsigCircuitSwitchedK=sigChanEQsigCircuitSwitchedK, sigChanEQsigEQsigSpecificOpTable=sigChanEQsigEQsigSpecificOpTable, sigChanEQsigProvEntry=sigChanEQsigProvEntry, sigChanEQsigEQsigSpecificProvTable=sigChanEQsigEQsigSpecificProvTable, sigChanEQsigFramerStatsEntry=sigChanEQsigFramerStatsEntry, sigChanEQsigOverlapReceivingEnabled=sigChanEQsigOverlapReceivingEnabled, sigChanEQsigIndex=sigChanEQsigIndex, sigChanEQsigL2Entry=sigChanEQsigL2Entry, sigChanEQsigOverlapSendingEnabled=sigChanEQsigOverlapSendingEnabled, sigChanEQsigProvTable=sigChanEQsigProvTable, sigChanEQsigSide=sigChanEQsigSide, sigChanEQsigFramerUsageState=sigChanEQsigFramerUsageState, sigChanEQsigFramerAborts=sigChanEQsigFramerAborts, sigChanEQsigNonCallAssocSessionsFromIf=sigChanEQsigNonCallAssocSessionsFromIf, sigChanEQsigL3Entry=sigChanEQsigL3Entry, sigChanEQsigFramerCrcErrors=sigChanEQsigFramerCrcErrors, sigChanEQsigFramerRowStatusTable=sigChanEQsigFramerRowStatusTable, sigChanEQsigL2Table=sigChanEQsigL2Table, sigChanEQsigFramer=sigChanEQsigFramer, sigChanEQsigEQsigSpecificProvEntry=sigChanEQsigEQsigSpecificProvEntry, sigChanEQsigPeakActiveDataChannels=sigChanEQsigPeakActiveDataChannels, sigChanEQsigFramerComponentName=sigChanEQsigFramerComponentName, vnetEtsiQsigCapabilitiesBE01=vnetEtsiQsigCapabilitiesBE01, sigChanEQsigFramerOctetFromIf=sigChanEQsigFramerOctetFromIf, sigChanEQsigDChanStatus=sigChanEQsigDChanStatus, sigChanEQsigFramerFrmFromIf=sigChanEQsigFramerFrmFromIf, sigChanEQsigTracing=sigChanEQsigTracing, sigChanEQsigToolsEntry=sigChanEQsigToolsEntry, vnetEtsiQsigGroupBE01=vnetEtsiQsigGroupBE01, sigChanEQsigT200=sigChanEQsigT200, sigChanEQsigOperationalState=sigChanEQsigOperationalState, sigChanEQsigRowStatusTable=sigChanEQsigRowStatusTable, sigChanEQsigActiveChannels=sigChanEQsigActiveChannels, vnetEtsiQsigGroupBE=vnetEtsiQsigGroupBE, sigChanEQsigN200=sigChanEQsigN200, sigChanEQsigMaxNonCallConcurrent=sigChanEQsigMaxNonCallConcurrent, sigChanEQsigT23=sigChanEQsigT23, sigChanEQsigEQsigSpecificOpEntry=sigChanEQsigEQsigSpecificOpEntry, sigChanEQsigT203=sigChanEQsigT203, sigChanEQsigL3Table=sigChanEQsigL3Table, sigChanEQsigT310=sigChanEQsigT310, sigChanEQsigStatsTable=sigChanEQsigStatsTable, sigChanEQsigRowStatusEntry=sigChanEQsigRowStatusEntry, vnetEtsiQsigCapabilities=vnetEtsiQsigCapabilities, sigChanEQsigOperTable=sigChanEQsigOperTable, sigChanEQsigActiveVoiceChannels=sigChanEQsigActiveVoiceChannels, sigChanEQsigPeakActiveChannels=sigChanEQsigPeakActiveChannels, sigChanEQsigT309=sigChanEQsigT309, sigChanEQsigFramerAdminState=sigChanEQsigFramerAdminState, sigChanEQsigFramerRowStatusEntry=sigChanEQsigFramerRowStatusEntry, sigChanEQsigFramerNonOctetErrors=sigChanEQsigFramerNonOctetErrors, sigChanEQsigAdminState=sigChanEQsigAdminState, vnetEtsiQsigGroup=vnetEtsiQsigGroup, vnetEtsiQsigCapabilitiesBE=vnetEtsiQsigCapabilitiesBE, sigChanEQsigFramerProvEntry=sigChanEQsigFramerProvEntry, sigChanEQsigFramerStateEntry=sigChanEQsigFramerStateEntry, sigChanEQsigComponentName=sigChanEQsigComponentName, sigChanEQsigFramerStatsTable=sigChanEQsigFramerStatsTable, sigChanEQsigFramerStateTable=sigChanEQsigFramerStateTable, sigChanEQsigActiveDataChannels=sigChanEQsigActiveDataChannels, sigChanEQsigUsageState=sigChanEQsigUsageState, sigChanEQsigFramerLrcErrors=sigChanEQsigFramerLrcErrors, sigChanEQsigFramerOperationalState=sigChanEQsigFramerOperationalState, sigChanEQsigMsgSegmentation=sigChanEQsigMsgSegmentation, sigChanEQsigRowStatus=sigChanEQsigRowStatus, sigChanEQsigNonCallAssocSessionsToIf=sigChanEQsigNonCallAssocSessionsToIf, sigChanEQsigFramerIndex=sigChanEQsigFramerIndex, sigChanEQsigPeakActiveVoiceChannels=sigChanEQsigPeakActiveVoiceChannels, sigChanEQsigFramerRowStatus=sigChanEQsigFramerRowStatus, sigChanEQsigStatsEntry=sigChanEQsigStatsEntry, sigChanEQsigFramerUnderruns=sigChanEQsigFramerUnderruns, sigChanEQsigSegmentationFailed=sigChanEQsigSegmentationFailed, sigChanEQsigStateTable=sigChanEQsigStateTable, sigChanEQsigFramerOverruns=sigChanEQsigFramerOverruns, vnetEtsiQsigMIB=vnetEtsiQsigMIB, sigChanEQsigStateEntry=sigChanEQsigStateEntry, vnetEtsiQsigCapabilitiesBE01A=vnetEtsiQsigCapabilitiesBE01A, sigChanEQsigE1ChannelNumbers=sigChanEQsigE1ChannelNumbers)
# -*- coding: utf-8 -*- # (N.B : the site root is also related to the nginx conf!) SITE_ROOT = "__YNH_APP_WEBPATH__" DEBUG = False TEMPLATE_DEBUG = False
site_root = '__YNH_APP_WEBPATH__' debug = False template_debug = False
class TestarosaPyError(Exception): ... class AnotherError(TestarosaPyError): ...
class Testarosapyerror(Exception): ... class Anothererror(TestarosaPyError): ...
def upper_case_first_param(func): def wrapper(text): return func(text.upper()) return wrapper @upper_case_first_param def recibed_a_msg(name: str) -> str: return f"{name}, you has received a message." @upper_case_first_param def uppercase(msg: str) -> str: return msg if __name__ == "__main__": print(recibed_a_msg("Cesar")) print(uppercase("hello world!"))
def upper_case_first_param(func): def wrapper(text): return func(text.upper()) return wrapper @upper_case_first_param def recibed_a_msg(name: str) -> str: return f'{name}, you has received a message.' @upper_case_first_param def uppercase(msg: str) -> str: return msg if __name__ == '__main__': print(recibed_a_msg('Cesar')) print(uppercase('hello world!'))
class FlagRegion: def __init__(self, name, format, icon, mode): self.name = name self.format = format self.icon = icon self.mode = mode
class Flagregion: def __init__(self, name, format, icon, mode): self.name = name self.format = format self.icon = icon self.mode = mode
class Status(object): '''Object to represent row in status table Attributes: conn: database connection, usually sqlite3 connection object name: name of pipeline job running display_name: pretty formatted display name for pipeline last_ran: UNIX timestamp (number) for last complete run start_time: UNIX timestamp (number) for last complete run start status: string representing status/errors with the pipeline num_lines: if successful, number of lines processed input_checksum: a checksum of the input's contents ''' def __init__( self, conn, name, display_name, last_ran, start_time, status, frequency, num_lines, input_checksum ): self.conn = conn self.name = name self.display_name = display_name self.last_ran = last_ran self.start_time = start_time self.status = status self.num_lines = num_lines self.input_checksum = input_checksum def update(self, **kwargs): '''Update the Status object with passed kwargs and write the result ''' for k, v in kwargs.items(): setattr(self, k, v) self.write() def write(self): '''Insert or replace a status row ''' cur = self.conn.cursor() cur.execute( ''' INSERT OR REPLACE INTO status ( name, display_name, last_ran, start_time, input_checksum, status, num_lines ) VALUES (?, ?, ?, ?, ?, ?, ?) ''', ( self.name, self.display_name, self.last_ran, self.start_time, self.input_checksum, self.status, self.num_lines ) ) self.conn.commit()
class Status(object): """Object to represent row in status table Attributes: conn: database connection, usually sqlite3 connection object name: name of pipeline job running display_name: pretty formatted display name for pipeline last_ran: UNIX timestamp (number) for last complete run start_time: UNIX timestamp (number) for last complete run start status: string representing status/errors with the pipeline num_lines: if successful, number of lines processed input_checksum: a checksum of the input's contents """ def __init__(self, conn, name, display_name, last_ran, start_time, status, frequency, num_lines, input_checksum): self.conn = conn self.name = name self.display_name = display_name self.last_ran = last_ran self.start_time = start_time self.status = status self.num_lines = num_lines self.input_checksum = input_checksum def update(self, **kwargs): """Update the Status object with passed kwargs and write the result """ for (k, v) in kwargs.items(): setattr(self, k, v) self.write() def write(self): """Insert or replace a status row """ cur = self.conn.cursor() cur.execute('\n INSERT OR REPLACE INTO status (\n name, display_name, last_ran, start_time,\n input_checksum, status, num_lines\n ) VALUES (?, ?, ?, ?, ?, ?, ?)\n ', (self.name, self.display_name, self.last_ran, self.start_time, self.input_checksum, self.status, self.num_lines)) self.conn.commit()
# clean = open("../data/fics_2017_HvC.pgn", "w+") # with open("../data/fics_2017_HvC_raw.pgn") as raw: # for i, line in enumerate(raw): # if (i % 1000): print(i) # if "\r\n" in line: # clean.write(line.replace("\r\n", "\n")) # else: # clean.write("\n\n") # clean.write("\n\n") def writeEOF(src): with open(src, "a") as f: f.write("EOF\n") writeEOF("../data/fics_2017_HvC.pgn") writeEOF("../data/games.pgn")
def write_eof(src): with open(src, 'a') as f: f.write('EOF\n') write_eof('../data/fics_2017_HvC.pgn') write_eof('../data/games.pgn')
# Multiple Choice # Return the answer to the multiple choice question in the handout. # If you think option c is the correct answer, # return 'c' def question_1(): # [Image] The first hidden layer has 4 filters of kernel-width 2 and stride 2; # the second layer has 3 filters of kernel-width 8 and stride 2; the third layer has 2 filters of kernel-width 6 and stride 2 return 'b' def question_2(): # out_width = [(in_width_padded - kernel_dilated) // stride] + 1, # where in_width_padded = in_width + 2 * padding, kernel_dilated = (kernel - 1) * (dilation - 1) + kernel return 'd' def question_3(): # [Image] ip = 100, kernel = 5, stride = 2. Op = ?? # Example Input: Batch size = 2, In channel = 3, In width = 100 # Example W: Out channel = 4, In channel = 3, Kernel width = 5 # Example Out: Batch size = 2, Out channel = 4, Out width = 48 return 'b' def question_4(): #working of numpy.tensordot #A = np.arange(30.).reshape(2,3,5) #B = np.arange(24.).reshape(3,4,2) #C = np.tensordot(A,B, axes = ([0,1],[2,0])) return 'a' #random to test def question_5(): #lol question return 'a'
def question_1(): return 'b' def question_2(): return 'd' def question_3(): return 'b' def question_4(): return 'a' def question_5(): return 'a'
class WorkflowNotFound(Exception): pass class WorkflowSyntaxError(Exception): pass
class Workflownotfound(Exception): pass class Workflowsyntaxerror(Exception): pass
# # PySNMP MIB module ALVARION-BANDWIDTH-CONTROL-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALVARION-BANDWIDTH-CONTROL-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:21:58 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # alvarionMgmtV2, = mibBuilder.importSymbols("ALVARION-SMI", "alvarionMgmtV2") AlvarionPriorityQueue, = mibBuilder.importSymbols("ALVARION-TC", "AlvarionPriorityQueue") OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ConstraintsIntersection, ConstraintsUnion, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ConstraintsUnion", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint") ObjectGroup, ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "ModuleCompliance", "NotificationGroup") TimeTicks, ModuleIdentity, Unsigned32, Counter32, Integer32, Gauge32, ObjectIdentity, Counter64, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, iso, Bits, MibIdentifier, IpAddress = mibBuilder.importSymbols("SNMPv2-SMI", "TimeTicks", "ModuleIdentity", "Unsigned32", "Counter32", "Integer32", "Gauge32", "ObjectIdentity", "Counter64", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "iso", "Bits", "MibIdentifier", "IpAddress") TruthValue, TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TruthValue", "TextualConvention", "DisplayString") alvarionBandwidthControlMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14)) if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setLastUpdated('200710310000Z') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setOrganization('Alvarion Ltd.') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setContactInfo('Alvarion Ltd. Postal: 21a HaBarzel St. P.O. Box 13139 Tel-Aviv 69710 Israel Phone: +972 3 645 6262') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setDescription('Alvarion Bandwidth Control MIB.') alvarionBandwidthControlMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1)) coBandwidthControlConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1)) coBandwidthControlEnable = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 1), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlEnable.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlEnable.setDescription('Indicates if bandwidth control is enabled or disabled on the Internet port.') coBandwidthControlMaxTransmitRate = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setDescription('Indicates the maximum rate at which data can be transmitted on the Internet port. If traffic exceeds this rate for short bursts, it is buffered. Long overages will result in data being dropped.') coBandwidthControlMaxReceiveRate = MibScalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setDescription('Indicates the maximum rate at which data can be received on the Internet port. If traffic exceeds this rate for short bursts it is buffered. Long overages will result in data being dropped.') coBandwidthControlLevelTable = MibTable((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4), ) if mibBuilder.loadTexts: coBandwidthControlLevelTable.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelTable.setDescription('A table defining the current bandwidth level settings that are active on the device.') coBandwidthControlLevelEntry = MibTableRow((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1), ).setIndexNames((0, "ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelIndex")) if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setDescription('An entry in the coBandwidthControlLevelTable. coBandwidthControlLevelIndex - Uniquely access a definition for this particular bandwidth control level.') coBandwidthControlLevelIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 1), AlvarionPriorityQueue()) if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setDescription('Specifies the level index. Each index defines a bandwidth level that traffic can be assigned to. Four indexes are defined (1 to 4) with the following meanings: 1-Low, 2-Normal, 3- High, 4-Very High.') coBandwidthControlLevelMinTransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setDescription('Specify the minimum transmit rate for the level as a percentage of coBandwidthControlMaxTransmitRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as outgoing traffic is present on the level.') coBandwidthControlLevelMaxTransmitRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setDescription('Specify the maximum transmit rate for the specified level as a percentage of coBandwidthControlMaxTransmitRate. This is the maximum amount of outgoing bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages') coBandwidthControlLevelMinReceiveRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setDescription('Specify the minimum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as incoming traffic is present on the level.') coBandwidthControlLevelMaxReceiveRate = MibTableColumn((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readonly") if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setDescription('Specify the maximum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the maximum amount of incoming bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages.') alvarionBandwidthControlMIBConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2)) alvarionBandwidthControlMIBCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1)) alvarionBandwidthControlMIBGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2)) alvarionBandwidthControlMIBCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1, 1)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "alvarionBandwidthControlMIBGroup"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "alvarionBandwidthControlLevelMIBGroup")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarionBandwidthControlMIBCompliance = alvarionBandwidthControlMIBCompliance.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlMIBCompliance.setDescription('The compliance statement for the Bandwidth Control MIB.') alvarionBandwidthControlMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 1)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlEnable"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlMaxTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlMaxReceiveRate")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarionBandwidthControlMIBGroup = alvarionBandwidthControlMIBGroup.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.') alvarionBandwidthControlLevelMIBGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 2)).setObjects(("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMinTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMaxTransmitRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMinReceiveRate"), ("ALVARION-BANDWIDTH-CONTROL-MIB", "coBandwidthControlLevelMaxReceiveRate")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarionBandwidthControlLevelMIBGroup = alvarionBandwidthControlLevelMIBGroup.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlLevelMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.') mibBuilder.exportSymbols("ALVARION-BANDWIDTH-CONTROL-MIB", coBandwidthControlLevelMaxTransmitRate=coBandwidthControlLevelMaxTransmitRate, alvarionBandwidthControlMIBGroups=alvarionBandwidthControlMIBGroups, coBandwidthControlMaxReceiveRate=coBandwidthControlMaxReceiveRate, alvarionBandwidthControlMIBGroup=alvarionBandwidthControlMIBGroup, alvarionBandwidthControlMIBCompliance=alvarionBandwidthControlMIBCompliance, coBandwidthControlLevelMaxReceiveRate=coBandwidthControlLevelMaxReceiveRate, coBandwidthControlLevelMinTransmitRate=coBandwidthControlLevelMinTransmitRate, coBandwidthControlMaxTransmitRate=coBandwidthControlMaxTransmitRate, alvarionBandwidthControlMIBConformance=alvarionBandwidthControlMIBConformance, coBandwidthControlConfig=coBandwidthControlConfig, alvarionBandwidthControlMIB=alvarionBandwidthControlMIB, alvarionBandwidthControlMIBObjects=alvarionBandwidthControlMIBObjects, coBandwidthControlLevelMinReceiveRate=coBandwidthControlLevelMinReceiveRate, PYSNMP_MODULE_ID=alvarionBandwidthControlMIB, coBandwidthControlEnable=coBandwidthControlEnable, coBandwidthControlLevelTable=coBandwidthControlLevelTable, coBandwidthControlLevelEntry=coBandwidthControlLevelEntry, coBandwidthControlLevelIndex=coBandwidthControlLevelIndex, alvarionBandwidthControlLevelMIBGroup=alvarionBandwidthControlLevelMIBGroup, alvarionBandwidthControlMIBCompliances=alvarionBandwidthControlMIBCompliances)
(alvarion_mgmt_v2,) = mibBuilder.importSymbols('ALVARION-SMI', 'alvarionMgmtV2') (alvarion_priority_queue,) = mibBuilder.importSymbols('ALVARION-TC', 'AlvarionPriorityQueue') (octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (constraints_intersection, constraints_union, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ConstraintsUnion', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint') (object_group, module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'ModuleCompliance', 'NotificationGroup') (time_ticks, module_identity, unsigned32, counter32, integer32, gauge32, object_identity, counter64, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, iso, bits, mib_identifier, ip_address) = mibBuilder.importSymbols('SNMPv2-SMI', 'TimeTicks', 'ModuleIdentity', 'Unsigned32', 'Counter32', 'Integer32', 'Gauge32', 'ObjectIdentity', 'Counter64', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'iso', 'Bits', 'MibIdentifier', 'IpAddress') (truth_value, textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TruthValue', 'TextualConvention', 'DisplayString') alvarion_bandwidth_control_mib = module_identity((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14)) if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setLastUpdated('200710310000Z') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setOrganization('Alvarion Ltd.') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setContactInfo('Alvarion Ltd. Postal: 21a HaBarzel St. P.O. Box 13139 Tel-Aviv 69710 Israel Phone: +972 3 645 6262') if mibBuilder.loadTexts: alvarionBandwidthControlMIB.setDescription('Alvarion Bandwidth Control MIB.') alvarion_bandwidth_control_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1)) co_bandwidth_control_config = mib_identifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1)) co_bandwidth_control_enable = mib_scalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 1), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlEnable.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlEnable.setDescription('Indicates if bandwidth control is enabled or disabled on the Internet port.') co_bandwidth_control_max_transmit_rate = mib_scalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlMaxTransmitRate.setDescription('Indicates the maximum rate at which data can be transmitted on the Internet port. If traffic exceeds this rate for short bursts, it is buffered. Long overages will result in data being dropped.') co_bandwidth_control_max_receive_rate = mib_scalar((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlMaxReceiveRate.setDescription('Indicates the maximum rate at which data can be received on the Internet port. If traffic exceeds this rate for short bursts it is buffered. Long overages will result in data being dropped.') co_bandwidth_control_level_table = mib_table((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4)) if mibBuilder.loadTexts: coBandwidthControlLevelTable.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelTable.setDescription('A table defining the current bandwidth level settings that are active on the device.') co_bandwidth_control_level_entry = mib_table_row((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1)).setIndexNames((0, 'ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlLevelIndex')) if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelEntry.setDescription('An entry in the coBandwidthControlLevelTable. coBandwidthControlLevelIndex - Uniquely access a definition for this particular bandwidth control level.') co_bandwidth_control_level_index = mib_table_column((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 1), alvarion_priority_queue()) if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelIndex.setDescription('Specifies the level index. Each index defines a bandwidth level that traffic can be assigned to. Four indexes are defined (1 to 4) with the following meanings: 1-Low, 2-Normal, 3- High, 4-Very High.') co_bandwidth_control_level_min_transmit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMinTransmitRate.setDescription('Specify the minimum transmit rate for the level as a percentage of coBandwidthControlMaxTransmitRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as outgoing traffic is present on the level.') co_bandwidth_control_level_max_transmit_rate = mib_table_column((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMaxTransmitRate.setDescription('Specify the maximum transmit rate for the specified level as a percentage of coBandwidthControlMaxTransmitRate. This is the maximum amount of outgoing bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages') co_bandwidth_control_level_min_receive_rate = mib_table_column((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMinReceiveRate.setDescription('Specify the minimum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the minimum amount of bandwidth that will be assigned to a level as soon as incoming traffic is present on the level.') co_bandwidth_control_level_max_receive_rate = mib_table_column((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 1, 1, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readonly') if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setStatus('current') if mibBuilder.loadTexts: coBandwidthControlLevelMaxReceiveRate.setDescription('Specify the maximum receive rate for the specified level as a percentage of coBandwidthControlMaxReceiveRateRate. This is the maximum amount of incoming bandwidth that can be consumed by the level. Traffic in excess will be buffered for short bursts, and dropped for sustained overages.') alvarion_bandwidth_control_mib_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2)) alvarion_bandwidth_control_mib_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1)) alvarion_bandwidth_control_mib_groups = mib_identifier((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2)) alvarion_bandwidth_control_mib_compliance = module_compliance((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 1, 1)).setObjects(('ALVARION-BANDWIDTH-CONTROL-MIB', 'alvarionBandwidthControlMIBGroup'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'alvarionBandwidthControlLevelMIBGroup')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarion_bandwidth_control_mib_compliance = alvarionBandwidthControlMIBCompliance.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlMIBCompliance.setDescription('The compliance statement for the Bandwidth Control MIB.') alvarion_bandwidth_control_mib_group = object_group((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 1)).setObjects(('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlEnable'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlMaxTransmitRate'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlMaxReceiveRate')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarion_bandwidth_control_mib_group = alvarionBandwidthControlMIBGroup.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.') alvarion_bandwidth_control_level_mib_group = object_group((1, 3, 6, 1, 4, 1, 12394, 1, 10, 5, 14, 2, 2, 2)).setObjects(('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlLevelMinTransmitRate'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlLevelMaxTransmitRate'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlLevelMinReceiveRate'), ('ALVARION-BANDWIDTH-CONTROL-MIB', 'coBandwidthControlLevelMaxReceiveRate')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): alvarion_bandwidth_control_level_mib_group = alvarionBandwidthControlLevelMIBGroup.setStatus('current') if mibBuilder.loadTexts: alvarionBandwidthControlLevelMIBGroup.setDescription('A collection of objects for use with Bandwidth Controls.') mibBuilder.exportSymbols('ALVARION-BANDWIDTH-CONTROL-MIB', coBandwidthControlLevelMaxTransmitRate=coBandwidthControlLevelMaxTransmitRate, alvarionBandwidthControlMIBGroups=alvarionBandwidthControlMIBGroups, coBandwidthControlMaxReceiveRate=coBandwidthControlMaxReceiveRate, alvarionBandwidthControlMIBGroup=alvarionBandwidthControlMIBGroup, alvarionBandwidthControlMIBCompliance=alvarionBandwidthControlMIBCompliance, coBandwidthControlLevelMaxReceiveRate=coBandwidthControlLevelMaxReceiveRate, coBandwidthControlLevelMinTransmitRate=coBandwidthControlLevelMinTransmitRate, coBandwidthControlMaxTransmitRate=coBandwidthControlMaxTransmitRate, alvarionBandwidthControlMIBConformance=alvarionBandwidthControlMIBConformance, coBandwidthControlConfig=coBandwidthControlConfig, alvarionBandwidthControlMIB=alvarionBandwidthControlMIB, alvarionBandwidthControlMIBObjects=alvarionBandwidthControlMIBObjects, coBandwidthControlLevelMinReceiveRate=coBandwidthControlLevelMinReceiveRate, PYSNMP_MODULE_ID=alvarionBandwidthControlMIB, coBandwidthControlEnable=coBandwidthControlEnable, coBandwidthControlLevelTable=coBandwidthControlLevelTable, coBandwidthControlLevelEntry=coBandwidthControlLevelEntry, coBandwidthControlLevelIndex=coBandwidthControlLevelIndex, alvarionBandwidthControlLevelMIBGroup=alvarionBandwidthControlLevelMIBGroup, alvarionBandwidthControlMIBCompliances=alvarionBandwidthControlMIBCompliances)
# Solution by PauloBA def sum_of_minimums(numbers): ans = 0 for i in numbers: i.sort() ans = ans + i[0] return ans
def sum_of_minimums(numbers): ans = 0 for i in numbers: i.sort() ans = ans + i[0] return ans
s=str(input()) # Number n in binary format s='0'+s # Trailing zero will make the code run for '11111' etc. without changes first1=-1 seqend=-1 if s[-1]=='0': ''' If s ends with '0', the next biggest number will be '1' followed by the number of '0's + one extra '0' followed by the number of '1's. For ex: if s = 111000 answer = 1000011 ''' for i in range(len(s)): if s[len(s)-i-1]=='1': if first1==-1: first1=len(s)-i-1 else: if first1!=-1: seqend=len(s)-i-1+1 break if seqend==0: print('Next smallest:', s[1:seqend]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1') next_smallest=int(s[1:seqend]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1',2) else: print('Next smallest:', s[1:seqend-1]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1') next_smallest=int(s[1:seqend-1]+'1'+(len(s)-1-first1+1)*'0'+(first1-seqend)*'1',2) else: ''' If s ends with '1', find the first '0' from the right, swap it with the bit just right of it. if s = 111000111 answer = 111001011 ''' first1=len(s)-1 for i in range(len(s)): if s[len(s)-i-1]=='0': seqend=len(s)-i-1+1 break print('Next smallest:', s[1:seqend-1]+'1'+'0'+(first1-seqend)*'1') next_smallest=int(s[1:seqend-1]+'1'+'0'+(first1-seqend)*'1', 2) ''' I am assuming we cannot add trailing zero to the end, otherwise next largest doesn't make much sense since we can keep adding trailing zeros and the number will get larger and larger. If s in not all '1's, the next largest will be the one with all '1's to the left (if s is already the number with all '1's to the left, just add a trailing zero). If s is all '1's the next largest will be s+'0' ''' s=s[1:] # Remove the trailing zero we added earlier print('Next largest:',end=' ') if '0' not in s: print(s) next_largest=int(s,2) else: ones=s.count('1') if s.index('0')==ones: # s is already all '1's to the left print(s) next_largest=int(s,2) else: print('1'*ones+'0'*(len(s)-ones)) next_largest=int('1'*ones+'0'*(len(s)-ones),2) # Testing next smallest code i=int(s,2)+1 ones=s.count('1') while True: if bin(i).count('1')==ones: if i==next_smallest: print('Next smallest test passed') break else: print('Next smallest test failed, found: ' + bin(next_smallest)[2:] + ' , needed: ' + bin(i)[2:]) break i+=1 # Testing next largest code i=int('1'*len(s),2) while i>0: if bin(i).count('1')==ones: if i==next_largest: print('Next largest test passed') break else: print('Next largest test failed, found: ' + bin(next_largest)[2:] + ' , needed: ' + bin(i)[2:]) break i-=1
s = str(input()) s = '0' + s first1 = -1 seqend = -1 if s[-1] == '0': "\n If s ends with '0', the next biggest number will be '1' followed by the\n number of '0's + one extra '0' followed by the number of '1's. For ex:\n\n if s = 111000\n answer = 1000011\n " for i in range(len(s)): if s[len(s) - i - 1] == '1': if first1 == -1: first1 = len(s) - i - 1 elif first1 != -1: seqend = len(s) - i - 1 + 1 break if seqend == 0: print('Next smallest:', s[1:seqend] + '1' + (len(s) - 1 - first1 + 1) * '0' + (first1 - seqend) * '1') next_smallest = int(s[1:seqend] + '1' + (len(s) - 1 - first1 + 1) * '0' + (first1 - seqend) * '1', 2) else: print('Next smallest:', s[1:seqend - 1] + '1' + (len(s) - 1 - first1 + 1) * '0' + (first1 - seqend) * '1') next_smallest = int(s[1:seqend - 1] + '1' + (len(s) - 1 - first1 + 1) * '0' + (first1 - seqend) * '1', 2) else: "\n If s ends with '1', find the first '0' from the right, swap it with\n the bit just right of it.\n\n if s = 111000111\n answer = 111001011\n " first1 = len(s) - 1 for i in range(len(s)): if s[len(s) - i - 1] == '0': seqend = len(s) - i - 1 + 1 break print('Next smallest:', s[1:seqend - 1] + '1' + '0' + (first1 - seqend) * '1') next_smallest = int(s[1:seqend - 1] + '1' + '0' + (first1 - seqend) * '1', 2) "\nI am assuming we cannot add trailing zero to the end, otherwise\nnext largest doesn't make much sense since we can keep adding trailing\nzeros and the number will get larger and larger.\n\nIf s in not all '1's, the next largest will be the one with all '1's to\nthe left (if s is already the number with all '1's to the left, just add\na trailing zero). If s is all '1's the next largest will be s+'0'\n" s = s[1:] print('Next largest:', end=' ') if '0' not in s: print(s) next_largest = int(s, 2) else: ones = s.count('1') if s.index('0') == ones: print(s) next_largest = int(s, 2) else: print('1' * ones + '0' * (len(s) - ones)) next_largest = int('1' * ones + '0' * (len(s) - ones), 2) i = int(s, 2) + 1 ones = s.count('1') while True: if bin(i).count('1') == ones: if i == next_smallest: print('Next smallest test passed') break else: print('Next smallest test failed, found: ' + bin(next_smallest)[2:] + ' , needed: ' + bin(i)[2:]) break i += 1 i = int('1' * len(s), 2) while i > 0: if bin(i).count('1') == ones: if i == next_largest: print('Next largest test passed') break else: print('Next largest test failed, found: ' + bin(next_largest)[2:] + ' , needed: ' + bin(i)[2:]) break i -= 1
n = int(input()) case = 0 l = [] for i in range(n): item = int(input()) l.append(item) for i in l: for j in range(1, i+1): x = j y = i - j lx = [int(a) for a in str(x)] ly = [int(b) for b in str(y)] if((4 in lx) or (4 in ly)): continue else: case += 1 print ('Case #'+str(case)+':', x, y) break
n = int(input()) case = 0 l = [] for i in range(n): item = int(input()) l.append(item) for i in l: for j in range(1, i + 1): x = j y = i - j lx = [int(a) for a in str(x)] ly = [int(b) for b in str(y)] if 4 in lx or 4 in ly: continue else: case += 1 print('Case #' + str(case) + ':', x, y) break
# If Expression # if expr: if True: print("it is true") else: print("it is false") if False: print("it is false") print("print intented next line") else: print("it is not false") if bool("python"): print("it is python") else: print("it is not python") h = 50 if h > 50: print("h is not greater than 50") else: print("h is less than or equal to 50") if h < 20: print("h is less than 20") else: print("h is between 20 and 50") #elif if h > 50: print("h is not greater than 50") elif h < 20: print("h is less than 20") else: print("h is between 20 and 50")
if True: print('it is true') else: print('it is false') if False: print('it is false') print('print intented next line') else: print('it is not false') if bool('python'): print('it is python') else: print('it is not python') h = 50 if h > 50: print('h is not greater than 50') else: print('h is less than or equal to 50') if h < 20: print('h is less than 20') else: print('h is between 20 and 50') if h > 50: print('h is not greater than 50') elif h < 20: print('h is less than 20') else: print('h is between 20 and 50')
''' test cases and facts for unit tests ''' # list for testing fibonacci output fib_list = [ 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196418, 317811, 514229, 832040, 1346269, 2178309, 3524578, 5702887, 9227465, 14930352, 24157817, 39088169, 63245986, 102334155, 165580141, 267914296, 433494437, 701408733, 1134903170, 1836311903, 2971215073, 4807526976, 7778742049, 12586269025, 20365011074, 32951280099, 53316291173, 86267571272, 139583862445, 225851433717, 365435296162, 591286729879, 956722026041, 1548008755920, 2504730781961, 4052739537881, 6557470319842, 10610209857723, 17167680177565, 27777890035288, 44945570212853, 72723460248141, 117669030460994, 190392490709135, 308061521170129, 498454011879264, 806515533049393, 1304969544928657, 2111485077978050, 3416454622906707, 5527939700884757, 8944394323791464, 14472334024676221, 23416728348467685, 37889062373143906, 61305790721611591, 99194853094755497, 160500643816367088, 259695496911122585, 420196140727489673, 679891637638612258, 1100087778366101931, 1779979416004714189, 2880067194370816120, 4660046610375530309, 7540113804746346429, 12200160415121876738, 19740274219868223167, 31940434634990099905, 51680708854858323072, 83621143489848422977, 135301852344706746049, 218922995834555169026 ]
""" 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__')
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)
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))
# -*- 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']
# -*- 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')
#!/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()
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
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())
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
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
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)
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())
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)
# 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.'))
# # 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)
#!/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'
#!/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'
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}
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 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