content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class EmployeeTaskLink: def __init__(self, linkID, empID, taskID): self.linkID = linkID self.empID = empID self.taskID = taskID def get_employee(self, list): for emp in list: if emp.empID == self.empID: return emp def get_task(self, list): for task in list: if task.taskID == self.taskID: return task
class Employeetasklink: def __init__(self, linkID, empID, taskID): self.linkID = linkID self.empID = empID self.taskID = taskID def get_employee(self, list): for emp in list: if emp.empID == self.empID: return emp def get_task(self, list): for task in list: if task.taskID == self.taskID: return task
def findDecision(obj): #obj[0]: Passanger, obj[1]: Time, obj[2]: Coupon, obj[3]: Gender, obj[4]: Age, obj[5]: Children, obj[6]: Education, obj[7]: Occupation, obj[8]: Bar, obj[9]: Coffeehouse, obj[10]: Restaurant20to50, obj[11]: Direction_same, obj[12]: Distance # {"feature": "Age", "instances": 34, "metric_value": 0.9774, "depth": 1} if obj[4]<=4: # {"feature": "Passanger", "instances": 29, "metric_value": 0.9294, "depth": 2} if obj[0]<=1: # {"feature": "Education", "instances": 18, "metric_value": 0.7642, "depth": 3} if obj[6]<=4: # {"feature": "Time", "instances": 17, "metric_value": 0.6723, "depth": 4} if obj[1]<=1: return 'False' elif obj[1]>1: # {"feature": "Distance", "instances": 8, "metric_value": 0.9544, "depth": 5} if obj[12]<=1: # {"feature": "Occupation", "instances": 6, "metric_value": 0.65, "depth": 6} if obj[7]>1: return 'False' elif obj[7]<=1: # {"feature": "Gender", "instances": 2, "metric_value": 1.0, "depth": 7} if obj[3]>0: return 'False' elif obj[3]<=0: return 'True' else: return 'True' else: return 'False' elif obj[12]>1: return 'True' else: return 'True' else: return 'False' elif obj[6]>4: return 'True' else: return 'True' elif obj[0]>1: # {"feature": "Restaurant20to50", "instances": 11, "metric_value": 0.994, "depth": 3} if obj[10]<=1.0: # {"feature": "Distance", "instances": 8, "metric_value": 0.9544, "depth": 4} if obj[12]>1: # {"feature": "Time", "instances": 6, "metric_value": 0.65, "depth": 5} if obj[1]<=3: return 'False' elif obj[1]>3: # {"feature": "Coupon", "instances": 2, "metric_value": 1.0, "depth": 6} if obj[2]<=2: return 'True' elif obj[2]>2: return 'False' else: return 'False' else: return 'True' elif obj[12]<=1: return 'True' else: return 'True' elif obj[10]>1.0: return 'True' else: return 'True' else: return 'True' elif obj[4]>4: # {"feature": "Occupation", "instances": 5, "metric_value": 0.7219, "depth": 2} if obj[7]<=12: return 'True' elif obj[7]>12: return 'False' else: return 'False' else: return 'True'
def find_decision(obj): if obj[4] <= 4: if obj[0] <= 1: if obj[6] <= 4: if obj[1] <= 1: return 'False' elif obj[1] > 1: if obj[12] <= 1: if obj[7] > 1: return 'False' elif obj[7] <= 1: if obj[3] > 0: return 'False' elif obj[3] <= 0: return 'True' else: return 'True' else: return 'False' elif obj[12] > 1: return 'True' else: return 'True' else: return 'False' elif obj[6] > 4: return 'True' else: return 'True' elif obj[0] > 1: if obj[10] <= 1.0: if obj[12] > 1: if obj[1] <= 3: return 'False' elif obj[1] > 3: if obj[2] <= 2: return 'True' elif obj[2] > 2: return 'False' else: return 'False' else: return 'True' elif obj[12] <= 1: return 'True' else: return 'True' elif obj[10] > 1.0: return 'True' else: return 'True' else: return 'True' elif obj[4] > 4: if obj[7] <= 12: return 'True' elif obj[7] > 12: return 'False' else: return 'False' else: return 'True'
# Copyright 2015 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Helper functions for shared behavior.""" def topic_name_from_path(path, project): """Validate a topic URI path and get the topic name. :type path: string :param path: URI path for a topic API request. :type project: string :param project: The project associated with the request. It is included for validation purposes. :rtype: string :returns: Topic name parsed from ``path``. :raises: :class:`ValueError` if the ``path`` is ill-formed or if the project from the ``path`` does not agree with the ``project`` passed in. """ # PATH = 'projects/%s/topics/%s' % (PROJECT, TOPIC_NAME) path_parts = path.split('/') if (len(path_parts) != 4 or path_parts[0] != 'projects' or path_parts[2] != 'topics'): raise ValueError('Expected path to be of the form ' 'projects/{project}/topics/{topic_name}') if (len(path_parts) != 4 or path_parts[0] != 'projects' or path_parts[2] != 'topics' or path_parts[1] != project): raise ValueError('Project from client should agree with ' 'project from resource.') return path_parts[3]
"""Helper functions for shared behavior.""" def topic_name_from_path(path, project): """Validate a topic URI path and get the topic name. :type path: string :param path: URI path for a topic API request. :type project: string :param project: The project associated with the request. It is included for validation purposes. :rtype: string :returns: Topic name parsed from ``path``. :raises: :class:`ValueError` if the ``path`` is ill-formed or if the project from the ``path`` does not agree with the ``project`` passed in. """ path_parts = path.split('/') if len(path_parts) != 4 or path_parts[0] != 'projects' or path_parts[2] != 'topics': raise value_error('Expected path to be of the form projects/{project}/topics/{topic_name}') if len(path_parts) != 4 or path_parts[0] != 'projects' or path_parts[2] != 'topics' or (path_parts[1] != project): raise value_error('Project from client should agree with project from resource.') return path_parts[3]
""" Errors about channels. """ class FetchChannelFailed(Exception): """Raises when fetching a channel is failed.""" pass class FetchChannelMessagesFailed(Exception): """Raises when fetching messages from channel is failed.""" pass class FetchChannelMessageFailed(Exception): """Raises when fetching A message from channel is failed.""" pass class BulkDeleteMessagesFailed(Exception): """Raises when purge messages from channel is failed.""" pass class EditChannelFailed(Exception): """Raises when editing the channel is failed.""" pass class DeleteChannelFailed(Exception): """Raises when deleting the channel is failed.""" pass
""" Errors about channels. """ class Fetchchannelfailed(Exception): """Raises when fetching a channel is failed.""" pass class Fetchchannelmessagesfailed(Exception): """Raises when fetching messages from channel is failed.""" pass class Fetchchannelmessagefailed(Exception): """Raises when fetching A message from channel is failed.""" pass class Bulkdeletemessagesfailed(Exception): """Raises when purge messages from channel is failed.""" pass class Editchannelfailed(Exception): """Raises when editing the channel is failed.""" pass class Deletechannelfailed(Exception): """Raises when deleting the channel is failed.""" pass
# Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. class Constants: SYS_BOOLEAN: str = "boolean" SYS_BOOLEAN_TRUE: str = "boolean-true" SYS_BOOLEAN_FALSE: str = "boolean-false"
class Constants: sys_boolean: str = 'boolean' sys_boolean_true: str = 'boolean-true' sys_boolean_false: str = 'boolean-false'
t = int(input()) while t: A, B = map(int, input().split()) c = 1 while(c>0): if(c%2==0): B -= c else: A -= c if(A<0): print("Bob") break if(B<0): print("Limak") break c += 1 t = t-1
t = int(input()) while t: (a, b) = map(int, input().split()) c = 1 while c > 0: if c % 2 == 0: b -= c else: a -= c if A < 0: print('Bob') break if B < 0: print('Limak') break c += 1 t = t - 1
## Uppercase is BOLT # to use: from utils.beautyfy import * def red(string): return '\033[1;91m {}\033[00m'.format(string) def RED(string): return '\033[1;91m {}\033[00m'.format(string) def yellow(string): return '\033[93m {}\033[00m'.format(string) def YELLOW(string): return '\033[1;93m {}\033[00m'.format(string) def blue(string): return '\033[94m {}\033[00m'.format(string) def BLUE(string): return '\033[1;94m {}\033[00m'.format(string) def green(string): return '\033[92m {}\033[00m'.format(string) def GREEN(string): return '\033[1;92m {}\033[00m'.format(string) def cyan(string): return '\033[96m {}\033[00m'.format(string) def underline(string): return '\033[4m{}\033[00m'.format(string) def header(string): return '\033[95m{}\033[00m'.format(string) # HEADER = '\033[95m' # OKBLUE = '\033[94m' # OKCYAN = '\033[96m' # OKGREEN = '\033[92m' # WARNING = '\033[93m' # FAIL = '\033[91m' # ENDC = '\033[0m' # BOLD = '\033[1m' # UNDERLINE = '\033[4m'
def red(string): return '\x1b[1;91m {}\x1b[00m'.format(string) def red(string): return '\x1b[1;91m {}\x1b[00m'.format(string) def yellow(string): return '\x1b[93m {}\x1b[00m'.format(string) def yellow(string): return '\x1b[1;93m {}\x1b[00m'.format(string) def blue(string): return '\x1b[94m {}\x1b[00m'.format(string) def blue(string): return '\x1b[1;94m {}\x1b[00m'.format(string) def green(string): return '\x1b[92m {}\x1b[00m'.format(string) def green(string): return '\x1b[1;92m {}\x1b[00m'.format(string) def cyan(string): return '\x1b[96m {}\x1b[00m'.format(string) def underline(string): return '\x1b[4m{}\x1b[00m'.format(string) def header(string): return '\x1b[95m{}\x1b[00m'.format(string)
# Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. # """Server v2 API library""" RESOURCE_KEY = 'server' RESOURCES_KEY = 'servers' BASE_PATH = '/servers' def list( session, endpoint, long=False, all_data=False, marker=None, limit=None, end_marker=None, **params ): if all_data: data = listing = list( session, endpoint, long=long, marker=marker, limit=limit, end_marker=end_marker, **params ) while listing: # TODO(dtroyer): How can we use name here instead? marker = listing[-1]['id'] listing = list( session, endpoint, long=long, marker=marker, limit=limit, end_marker=end_marker, **params ) if listing: data.extend(listing) return data # NOTE(dtroyer): If we settle on not validating input these can be # passed in **params if marker: params['marker'] = marker if limit: params['limit'] = limit if end_marker: params['end_marker'] = end_marker # is endpoint or service catalog in session? url = endpoint + BASE_PATH if long: url += "/detail" return session.get(url, params=params).json()[RESOURCES_KEY]
"""Server v2 API library""" resource_key = 'server' resources_key = 'servers' base_path = '/servers' def list(session, endpoint, long=False, all_data=False, marker=None, limit=None, end_marker=None, **params): if all_data: data = listing = list(session, endpoint, long=long, marker=marker, limit=limit, end_marker=end_marker, **params) while listing: marker = listing[-1]['id'] listing = list(session, endpoint, long=long, marker=marker, limit=limit, end_marker=end_marker, **params) if listing: data.extend(listing) return data if marker: params['marker'] = marker if limit: params['limit'] = limit if end_marker: params['end_marker'] = end_marker url = endpoint + BASE_PATH if long: url += '/detail' return session.get(url, params=params).json()[RESOURCES_KEY]
# Time: O(n log n); Space: O(1) def ship_within_days(weights, days): low = max(weights) high = sum(weights) min_capacity = high while low <= high: mid = low + (high - low) // 2 cur_days, cur_daily_weight = 1, 0 for w in weights: if cur_daily_weight + w > mid: cur_days += 1 cur_daily_weight = w else: cur_daily_weight += w if cur_days <= days: min_capacity = min(min_capacity, mid) high = mid - 1 else: low = mid + 1 return min_capacity # Test cases: print(ship_within_days(weights=[3, 2, 2, 4, 1, 4], days=3)) print(ship_within_days(weights=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], days=5)) print(ship_within_days(weights=[1, 2, 3, 1, 1], days=4))
def ship_within_days(weights, days): low = max(weights) high = sum(weights) min_capacity = high while low <= high: mid = low + (high - low) // 2 (cur_days, cur_daily_weight) = (1, 0) for w in weights: if cur_daily_weight + w > mid: cur_days += 1 cur_daily_weight = w else: cur_daily_weight += w if cur_days <= days: min_capacity = min(min_capacity, mid) high = mid - 1 else: low = mid + 1 return min_capacity print(ship_within_days(weights=[3, 2, 2, 4, 1, 4], days=3)) print(ship_within_days(weights=[1, 2, 3, 4, 5, 6, 7, 8, 9, 10], days=5)) print(ship_within_days(weights=[1, 2, 3, 1, 1], days=4))
# -*- coding: utf-8 -*- """Top-level package for nola.""" __author__ = """Raghuveer Naraharisetti""" __email__ = 'raghuveernaraharisetti@gmail.com' __version__ = '0.1.0'
"""Top-level package for nola.""" __author__ = 'Raghuveer Naraharisetti' __email__ = 'raghuveernaraharisetti@gmail.com' __version__ = '0.1.0'
# config.py DEBUG = True DBHOST = '130.211.198.107' DBPASS = "gregb00th" DBPORT = 3306 DBUSER = 'root' DBNAME = 'baseball_2018' CLOUDSQL_PROJECT = "Baseball-2018" CLOUDSQL_INSTANCE = "personalwebsite-165915:us-central1:baseball-2018" CLOUD_STORAGE_BUCKET = 'analytics_data_extraction' MAX_CONTENT_LENGTH = 8 * 1024 * 1024 ALLOWED_EXTENSIONS = set(['png', 'jpg', 'jpeg', 'gif', 'txt'])
debug = True dbhost = '130.211.198.107' dbpass = 'gregb00th' dbport = 3306 dbuser = 'root' dbname = 'baseball_2018' cloudsql_project = 'Baseball-2018' cloudsql_instance = 'personalwebsite-165915:us-central1:baseball-2018' cloud_storage_bucket = 'analytics_data_extraction' max_content_length = 8 * 1024 * 1024 allowed_extensions = set(['png', 'jpg', 'jpeg', 'gif', 'txt'])
def get_certified_by(filing_data: dict): user_id = filing_data.get('u_user_id') if user_id: first_name = filing_data.get('u_first_name') middle_name = filing_data.get('u_middle_name') last_name = filing_data.get('u_last_name') if first_name or middle_name or last_name: result = f'{first_name} {middle_name} {last_name}' result = result.strip() return result return user_id return '' def get_street_additional(addr_line_2: str, addr_line_3: str): addr_line_2 = addr_line_2 if addr_line_2 else '' addr_line_2 = addr_line_2.strip() addr_line_3 = addr_line_3 if addr_line_3 else '' result = f'{addr_line_2} {addr_line_3}' result = result.strip() return result def get_party_role_type(corp_type_cd: str, role_type: str): if role_type == 'FCP': return 'Completing Party' elif role_type == 'FIO' or role_type == 'FBO': if corp_type_cd == 'SP': return 'Proprietor' elif corp_type_cd == 'GP': return 'Partner' else: return None else: return None def get_party_type(role_type: str, filing_party_data: dict): corp_party_business_name = filing_party_data['cp_business_name'] if corp_party_business_name: return 'organization' return 'person'
def get_certified_by(filing_data: dict): user_id = filing_data.get('u_user_id') if user_id: first_name = filing_data.get('u_first_name') middle_name = filing_data.get('u_middle_name') last_name = filing_data.get('u_last_name') if first_name or middle_name or last_name: result = f'{first_name} {middle_name} {last_name}' result = result.strip() return result return user_id return '' def get_street_additional(addr_line_2: str, addr_line_3: str): addr_line_2 = addr_line_2 if addr_line_2 else '' addr_line_2 = addr_line_2.strip() addr_line_3 = addr_line_3 if addr_line_3 else '' result = f'{addr_line_2} {addr_line_3}' result = result.strip() return result def get_party_role_type(corp_type_cd: str, role_type: str): if role_type == 'FCP': return 'Completing Party' elif role_type == 'FIO' or role_type == 'FBO': if corp_type_cd == 'SP': return 'Proprietor' elif corp_type_cd == 'GP': return 'Partner' else: return None else: return None def get_party_type(role_type: str, filing_party_data: dict): corp_party_business_name = filing_party_data['cp_business_name'] if corp_party_business_name: return 'organization' return 'person'
file_path = '/esdata/test/11.log' with open(file_path, 'w') as file: num = 1000 val = 0 while val <= num: file.write("{:x}\n".format(val).zfill(12)) val += 1
file_path = '/esdata/test/11.log' with open(file_path, 'w') as file: num = 1000 val = 0 while val <= num: file.write('{:x}\n'.format(val).zfill(12)) val += 1
load_modules = { ########### Attacker 'uds_engine_auth_baypass': { 'id_command': 0x71 }, 'gen_ping' : {}, 'uds_tester_ecu_engine':{ 'id_uds': 0x701, 'uds_shift': 0x08, 'uds_key':'' }, 'hw_TCP2CAN': {'port': 1111, 'mode': 'client', 'address':'127.0.0.1', 'debug':3}, 'hw_TCP2CAN~1': {'port': 1112, 'mode': 'client','address':'127.0.0.1', 'debug':3}, 'gen_fuzz':{}, 'mod_stat':{}, 'mod_stat~2': {} } actions = [ {'hw_TCP2CAN~1': {'pipe': 2,'action':'read'}}, {'hw_TCP2CAN': {'pipe': 1,'action':'read'}}, {'gen_ping': { # Generate UDS requests 'pipe': 3, 'delay': 0.06, 'range': [1700, 1800], # ID range (from 1790 to 1794) 'services':[{'service': 0x27, 'sub': 0x01}], 'mode':'UDS'} }, {'mod_stat': {'pipe': 2}}, {'mod_stat~2': {'pipe': 1}}, {'uds_tester_ecu_engine': { 'action': 'read', 'pipe': 1 } }, {'uds_tester_ecu_engine': { 'action': 'write', 'pipe': 3}}, {'gen_fuzz':{ 'id':[0x81],'data':[0,0],'index':[0,1],'delay':0.07,'pipe':4,'bytes':(0,0x20) }}, {'uds_engine_auth_baypass': { 'action': 'write', 'pipe': 4}}, {'hw_TCP2CAN': {'pipe': 3,'action':'write'}}, {'hw_TCP2CAN~1': {'pipe': 4,'action':'write'}} ]
load_modules = {'uds_engine_auth_baypass': {'id_command': 113}, 'gen_ping': {}, 'uds_tester_ecu_engine': {'id_uds': 1793, 'uds_shift': 8, 'uds_key': ''}, 'hw_TCP2CAN': {'port': 1111, 'mode': 'client', 'address': '127.0.0.1', 'debug': 3}, 'hw_TCP2CAN~1': {'port': 1112, 'mode': 'client', 'address': '127.0.0.1', 'debug': 3}, 'gen_fuzz': {}, 'mod_stat': {}, 'mod_stat~2': {}} actions = [{'hw_TCP2CAN~1': {'pipe': 2, 'action': 'read'}}, {'hw_TCP2CAN': {'pipe': 1, 'action': 'read'}}, {'gen_ping': {'pipe': 3, 'delay': 0.06, 'range': [1700, 1800], 'services': [{'service': 39, 'sub': 1}], 'mode': 'UDS'}}, {'mod_stat': {'pipe': 2}}, {'mod_stat~2': {'pipe': 1}}, {'uds_tester_ecu_engine': {'action': 'read', 'pipe': 1}}, {'uds_tester_ecu_engine': {'action': 'write', 'pipe': 3}}, {'gen_fuzz': {'id': [129], 'data': [0, 0], 'index': [0, 1], 'delay': 0.07, 'pipe': 4, 'bytes': (0, 32)}}, {'uds_engine_auth_baypass': {'action': 'write', 'pipe': 4}}, {'hw_TCP2CAN': {'pipe': 3, 'action': 'write'}}, {'hw_TCP2CAN~1': {'pipe': 4, 'action': 'write'}}]
# More indentation included to distinguish this from the rest. def server( host='localhost', port=443, secure=True, username='admin', password='admin'): return locals() # Aligned with opening delimiter. connection = server(host='localhost', port=443, secure=True, username='admin', password='admin') # Hanging indents should add a level. connection = server( host='localhost', port=443, secure=True, username='admin', password='admin') # The best connection = server( host='localhost', username='admin', password='admin', port=443, secure=True, )
def server(host='localhost', port=443, secure=True, username='admin', password='admin'): return locals() connection = server(host='localhost', port=443, secure=True, username='admin', password='admin') connection = server(host='localhost', port=443, secure=True, username='admin', password='admin') connection = server(host='localhost', username='admin', password='admin', port=443, secure=True)
# yacon.definitions.py # # This file contains common values that aren't usually changed per # installation and therefore shouldn't go in the django settings file # max length of slugs SLUG_LENGTH = 25 # max length of title TITLE_LENGTH = 50 # bleach constants ALLOWED_TAGS = [ 'a', 'address', 'b', 'br', 'blockquote', 'code', 'div', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'img', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strike', 'strong', 'sub', 'sup', 'table', 'tbody', 'thead', 'tr', 'td', 'u', 'ul', ] ALLOWED_ATTRIBUTES = { 'a':['href', 'title'], 'img':['alt', 'src', 'width', 'height', 'style'], 'table':['border', 'cellpadding', 'cellspacing', 'style', ], 'td':['style', ], 'tr':['style', ], 'tbody':['style', ], 'thead':['style', ], 'p':['style', ], 'span':['style', ], 'div':['style', ], } ALLOWED_STYLES = [ 'background-color', 'border-width', 'border-height', 'border-style', 'color', 'float', 'font-family', 'font-size', 'height', 'margin', 'margin-bottom', 'margin-left', 'margin-right', 'margin-top', 'text-align', 'width', ]
slug_length = 25 title_length = 50 allowed_tags = ['a', 'address', 'b', 'br', 'blockquote', 'code', 'div', 'em', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6', 'hr', 'img', 'i', 'li', 'ol', 'p', 'pre', 'span', 'strike', 'strong', 'sub', 'sup', 'table', 'tbody', 'thead', 'tr', 'td', 'u', 'ul'] allowed_attributes = {'a': ['href', 'title'], 'img': ['alt', 'src', 'width', 'height', 'style'], 'table': ['border', 'cellpadding', 'cellspacing', 'style'], 'td': ['style'], 'tr': ['style'], 'tbody': ['style'], 'thead': ['style'], 'p': ['style'], 'span': ['style'], 'div': ['style']} allowed_styles = ['background-color', 'border-width', 'border-height', 'border-style', 'color', 'float', 'font-family', 'font-size', 'height', 'margin', 'margin-bottom', 'margin-left', 'margin-right', 'margin-top', 'text-align', 'width']
''' Break statement '''
""" Break statement """
""" Statically define whether the measurementheaders should be enabled TODO: Make this adjustable at runtime """ class Measurement_Headers(): Active : bool = True
""" Statically define whether the measurementheaders should be enabled TODO: Make this adjustable at runtime """ class Measurement_Headers: active: bool = True
#greatest among 3 a=int(input("Enter no:")) b=int(input("Enter no:")) c=int(input("Enter no:")) if a>b: if a>c: print(a) else: print(c) else: if b>c: print(b) else: print(c)
a = int(input('Enter no:')) b = int(input('Enter no:')) c = int(input('Enter no:')) if a > b: if a > c: print(a) else: print(c) elif b > c: print(b) else: print(c)
# -*- coding: utf-8 -*- def file_decrypt(data,mode,storetype): return data
def file_decrypt(data, mode, storetype): return data
# not yet finished H, M = input().split() H, M = int(H), int(M) N = int(input()) m = N % 60 H += N // 60 H %= 24 M = m # for _ in range(N): # M += 1 # if M == 60: # M = 0 # H += 1 # if H == 24: # H = 0 print(H, M)
(h, m) = input().split() (h, m) = (int(H), int(M)) n = int(input()) m = N % 60 h += N // 60 h %= 24 m = m print(H, M)
""" 53. Maximum Subarray Easy Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. A subarray is a contiguous part of an array. Example 1: Input: nums = [-2,1,-3,4,-1,2,1,-5,4] Output: 6 Explanation: [4,-1,2,1] has the largest sum = 6. Example 2: Input: nums = [1] Output: 1 Example 3: Input: nums = [5,4,-1,7,8] Output: 23 Constraints: 1 <= nums.length <= 105 -104 <= nums[i] <= 104 Follow up: If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle. """ # V0 # IDEA : DP # DP EQUATION : # -> dp[i+1] = dp[i] + s[i+1] (if dp[i] >= 0 ) # -> dp[i+1] = s[i] (if dp[i] < 0 ) class Solution(object): def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 dp = [nums[0] for i in range(len(nums))] max_result = nums[0] # if start from nums[0], then must get smaller if there is minus number; will get larger if interger for i in range(1, len(nums)): if dp[i-1] < 0: dp[i] = nums[i] else: dp[i] = dp[i-1] + nums[i] max_result = max(max_result, dp[i]) return max_result # V0' # IDEA : DP class Solution(object): def maxSubArray(self, nums): cumsum = nums[0] max_ = cumsum if not nums: return 0 for i in range(1, len(nums)): if cumsum < 0: cumsum = 0 cumsum += nums[i] max_ = max(max_, cumsum) return max_ # V0' # IDEA : BRUTE FORCE (TLE) class Solution(object): def maxSubArray(self, nums): # edge case if len(nums) == 1: return nums[0] if not nums: return 0 res = -float('inf') for i in range(len(nums)): tmp = [] for j in range(i, len(nums)): tmp.append(nums[j]) res = max(res, sum(tmp)) return res # V1'' # https://blog.csdn.net/qqxx6661/article/details/78167981 # IDEA : DP # DP EQUATION : # -> dp[i+1] = dp[i] + s[i+1] (if dp[i] >= 0 ) # -> dp[i+1] = s[i] (if dp[i] < 0 ) class Solution(object): def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 current = nums[0] m = current for i in range(1, len(nums)): if current < 0: current = 0 current += nums[i] m = max(current, m) return m # V1'' # https://blog.csdn.net/qqxx6661/article/details/78167981 # IDEA : DP # DP STATUS EQUATION : # dp[i] = dp[i-1] + s[i] (dp[i-1] >= 0) # dp[i] = s[i] (dp[i-1] < 0) class Solution(object): def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 dp = [nums[0] for i in range(len(nums))] max_result = nums[0] # if start from nums[0], then must get smaller if there is minus number; will get larger if interger for i in range(1, len(nums)): if dp[i-1] < 0: dp[i] = nums[i] else: dp[i] = dp[i-1] + nums[i] if max_result < dp[i]: max_result = dp[i] return max_result # V1 # https://blog.csdn.net/hyperbolechi/article/details/43038749 # IDEA : BRUTE FORCE class Solution: def maxSubArray(self, arr): maxval=-10000 for i in range(len(arr)): for j in range(i,len(arr)): if maxval<sum(arr[i:j]): print((i,j)) maxval=max(maxval,sum(arr[i:j])) result=arr[i:j] return result # V1 # IDEA : Optimized Brute Force # https://leetcode.com/problems/maximum-subarray/solution/ class Solution: def maxSubArray(self, nums: List[int]) -> int: max_subarray = -math.inf for i in range(len(nums)): current_subarray = 0 for j in range(i, len(nums)): current_subarray += nums[j] max_subarray = max(max_subarray, current_subarray) return max_subarray # V1 # IDEA : Dynamic Programming, Kadane's Algorithm # https://leetcode.com/problems/maximum-subarray/solution/ class Solution: def maxSubArray(self, nums: List[int]) -> int: # Initialize our variables using the first element. current_subarray = max_subarray = nums[0] # Start with the 2nd element since we already used the first one. for num in nums[1:]: # If current_subarray is negative, throw it away. Otherwise, keep adding to it. current_subarray = max(num, current_subarray + num) max_subarray = max(max_subarray, current_subarray) return max_subarray # V1 # IDEA : Divide and Conquer # https://leetcode.com/problems/maximum-subarray/solution/ class Solution: def maxSubArray(self, nums: List[int]) -> int: def findBestSubarray(nums, left, right): # Base case - empty array. if left > right: return -math.inf mid = (left + right) // 2 curr = best_left_sum = best_right_sum = 0 # Iterate from the middle to the beginning. for i in range(mid - 1, left - 1, -1): curr += nums[i] best_left_sum = max(best_left_sum, curr) # Reset curr and iterate from the middle to the end. curr = 0 for i in range(mid + 1, right + 1): curr += nums[i] best_right_sum = max(best_right_sum, curr) # The best_combined_sum uses the middle element and # the best possible sum from each half. best_combined_sum = nums[mid] + best_left_sum + best_right_sum # Find the best subarray possible from both halves. left_half = findBestSubarray(nums, left, mid - 1) right_half = findBestSubarray(nums, mid + 1, right) # The largest of the 3 is the answer for any given input array. return max(best_combined_sum, left_half, right_half) # Our helper function is designed to solve this problem for # any array - so just call it using the entire input! return findBestSubarray(nums, 0, len(nums) - 1) # V2 # Time: O(n) # Space: O(1) class Solution(object): def maxSubArray(self, nums): """ :type nums: List[int] :rtype: int """ max_nums = max(nums) if max_nums < 0: return max_nums global_max, local_max = 0, 0 for x in nums: local_max = max(0, local_max + x) global_max = max(global_max, local_max) return global_max
""" 53. Maximum Subarray Easy Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum. A subarray is a contiguous part of an array. Example 1: Input: nums = [-2,1,-3,4,-1,2,1,-5,4] Output: 6 Explanation: [4,-1,2,1] has the largest sum = 6. Example 2: Input: nums = [1] Output: 1 Example 3: Input: nums = [5,4,-1,7,8] Output: 23 Constraints: 1 <= nums.length <= 105 -104 <= nums[i] <= 104 Follow up: If you have figured out the O(n) solution, try coding another solution using the divide and conquer approach, which is more subtle. """ class Solution(object): def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 dp = [nums[0] for i in range(len(nums))] max_result = nums[0] for i in range(1, len(nums)): if dp[i - 1] < 0: dp[i] = nums[i] else: dp[i] = dp[i - 1] + nums[i] max_result = max(max_result, dp[i]) return max_result class Solution(object): def max_sub_array(self, nums): cumsum = nums[0] max_ = cumsum if not nums: return 0 for i in range(1, len(nums)): if cumsum < 0: cumsum = 0 cumsum += nums[i] max_ = max(max_, cumsum) return max_ class Solution(object): def max_sub_array(self, nums): if len(nums) == 1: return nums[0] if not nums: return 0 res = -float('inf') for i in range(len(nums)): tmp = [] for j in range(i, len(nums)): tmp.append(nums[j]) res = max(res, sum(tmp)) return res class Solution(object): def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 current = nums[0] m = current for i in range(1, len(nums)): if current < 0: current = 0 current += nums[i] m = max(current, m) return m class Solution(object): def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ if not nums: return 0 dp = [nums[0] for i in range(len(nums))] max_result = nums[0] for i in range(1, len(nums)): if dp[i - 1] < 0: dp[i] = nums[i] else: dp[i] = dp[i - 1] + nums[i] if max_result < dp[i]: max_result = dp[i] return max_result class Solution: def max_sub_array(self, arr): maxval = -10000 for i in range(len(arr)): for j in range(i, len(arr)): if maxval < sum(arr[i:j]): print((i, j)) maxval = max(maxval, sum(arr[i:j])) result = arr[i:j] return result class Solution: def max_sub_array(self, nums: List[int]) -> int: max_subarray = -math.inf for i in range(len(nums)): current_subarray = 0 for j in range(i, len(nums)): current_subarray += nums[j] max_subarray = max(max_subarray, current_subarray) return max_subarray class Solution: def max_sub_array(self, nums: List[int]) -> int: current_subarray = max_subarray = nums[0] for num in nums[1:]: current_subarray = max(num, current_subarray + num) max_subarray = max(max_subarray, current_subarray) return max_subarray class Solution: def max_sub_array(self, nums: List[int]) -> int: def find_best_subarray(nums, left, right): if left > right: return -math.inf mid = (left + right) // 2 curr = best_left_sum = best_right_sum = 0 for i in range(mid - 1, left - 1, -1): curr += nums[i] best_left_sum = max(best_left_sum, curr) curr = 0 for i in range(mid + 1, right + 1): curr += nums[i] best_right_sum = max(best_right_sum, curr) best_combined_sum = nums[mid] + best_left_sum + best_right_sum left_half = find_best_subarray(nums, left, mid - 1) right_half = find_best_subarray(nums, mid + 1, right) return max(best_combined_sum, left_half, right_half) return find_best_subarray(nums, 0, len(nums) - 1) class Solution(object): def max_sub_array(self, nums): """ :type nums: List[int] :rtype: int """ max_nums = max(nums) if max_nums < 0: return max_nums (global_max, local_max) = (0, 0) for x in nums: local_max = max(0, local_max + x) global_max = max(global_max, local_max) return global_max
#!/usr/bin/env python3 def part_one(): result = str(1113122113) for i in range(40): result = say(result) return len(result) def part_two(): result = str(1113122113) for i in range(50): result = say(result) return len(result) def say(input): """ >>> say(1) 11 >>> say(11) 21 >>> say(21) 1211 >>> say(1211) 111221 >>> say(111221) 312211 """ result = "" current_number = input[0] count = 1 for d in input[1:]: if current_number == d: count += 1 else: result += str(count) result += current_number current_number = d count = 1 result += str(count) result += current_number return result if __name__ == "__main__": # import doctest # doctest.testmod() print(part_one()) print(part_two())
def part_one(): result = str(1113122113) for i in range(40): result = say(result) return len(result) def part_two(): result = str(1113122113) for i in range(50): result = say(result) return len(result) def say(input): """ >>> say(1) 11 >>> say(11) 21 >>> say(21) 1211 >>> say(1211) 111221 >>> say(111221) 312211 """ result = '' current_number = input[0] count = 1 for d in input[1:]: if current_number == d: count += 1 else: result += str(count) result += current_number current_number = d count = 1 result += str(count) result += current_number return result if __name__ == '__main__': print(part_one()) print(part_two())
""" The problem is that we want to reverse a T[] array in O(N) linear time complexity and we want the algorithm to be in-place as well! For example: input is [1,2,3,4,5] then the output is [5,4,3,2,1] """ arr = [1, 2, 3, 4, 5, 6] for i in range(len(arr) // 2): arr[i], arr[len(arr)-1-i] = arr[len(arr)-1-i], arr[i] print(arr)
""" The problem is that we want to reverse a T[] array in O(N) linear time complexity and we want the algorithm to be in-place as well! For example: input is [1,2,3,4,5] then the output is [5,4,3,2,1] """ arr = [1, 2, 3, 4, 5, 6] for i in range(len(arr) // 2): (arr[i], arr[len(arr) - 1 - i]) = (arr[len(arr) - 1 - i], arr[i]) print(arr)
""" Class: Create peripheral objects whenever a new device is found Methods: Send connection request to given device, disconnect from given device, handle discovery of advertisments List all available characteristics (services that contain more characteristics) """
""" Class: Create peripheral objects whenever a new device is found Methods: Send connection request to given device, disconnect from given device, handle discovery of advertisments List all available characteristics (services that contain more characteristics) """
def starify_pval(pval): if pval > 0.05: return "" else: if pval <= 0.001: return "***" if pval <= 0.01: return "**" if pval <= 0.05: return "*"
def starify_pval(pval): if pval > 0.05: return '' else: if pval <= 0.001: return '***' if pval <= 0.01: return '**' if pval <= 0.05: return '*'
codes = { "reset": "\u001b[0m", "black": "\u001b[30m", "red": "\u001b[31m", "green": "\u001b[32m", "light_yellow": "\u001b[93m", "yellow": "\u001b[33m", "yellow_background": "\u001b[43m", "blue": "\u001b[34m", "purple": "\u001b[35m", "cyan": "\u001b[36m", "white": "\u001b[37m", "bold": "\u001b[1m", "unbold": "\u001b[21m", "underline": "\u001b[4m", "stop_underline": "\u001b[24m", "blink": "\u001b[5m" } def formatter(msg, pre): post = codes["reset"] return u"{pre}{msg}{post}".format(**{ 'pre': pre, 'msg': msg, 'post': post }) def rojo(msg): return formatter(msg, codes["red"]) def verde(msg): return formatter(msg, codes["green"]) def azul(msg): return formatter(msg, codes["blue"]) def amarillo(msg): return formatter(msg, codes["yellow"])
codes = {'reset': '\x1b[0m', 'black': '\x1b[30m', 'red': '\x1b[31m', 'green': '\x1b[32m', 'light_yellow': '\x1b[93m', 'yellow': '\x1b[33m', 'yellow_background': '\x1b[43m', 'blue': '\x1b[34m', 'purple': '\x1b[35m', 'cyan': '\x1b[36m', 'white': '\x1b[37m', 'bold': '\x1b[1m', 'unbold': '\x1b[21m', 'underline': '\x1b[4m', 'stop_underline': '\x1b[24m', 'blink': '\x1b[5m'} def formatter(msg, pre): post = codes['reset'] return u'{pre}{msg}{post}'.format(**{'pre': pre, 'msg': msg, 'post': post}) def rojo(msg): return formatter(msg, codes['red']) def verde(msg): return formatter(msg, codes['green']) def azul(msg): return formatter(msg, codes['blue']) def amarillo(msg): return formatter(msg, codes['yellow'])
################################################################################ # Copyright: Tobias Weber 2020 # # Apache 2.0 License # # This file contains code related to all breadp module # ################################################################################ class ChecksNotRunException(Exception): pass
class Checksnotrunexception(Exception): pass
# # PySNMP MIB module LIGO-GENERIC-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/LIGO-GENERIC-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 19:56: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) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "ValueRangeConstraint") InetAddressType, InetAddress = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressType", "InetAddress") ligoMgmt, = mibBuilder.importSymbols("LIGOWAVE-MIB", "ligoMgmt") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") sysLocation, = mibBuilder.importSymbols("SNMPv2-MIB", "sysLocation") NotificationType, ModuleIdentity, Integer32, Counter32, Gauge32, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Counter64, TimeTicks, iso, IpAddress, Unsigned32, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "ModuleIdentity", "Integer32", "Counter32", "Gauge32", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Counter64", "TimeTicks", "iso", "IpAddress", "Unsigned32", "MibIdentifier") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") ligoGenericMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 32750, 3, 1)) ligoGenericMIB.setRevisions(('2016-01-15 00:00', '2009-02-13 00:00',)) if mibBuilder.loadTexts: ligoGenericMIB.setLastUpdated('201601150000Z') if mibBuilder.loadTexts: ligoGenericMIB.setOrganization('LigoWave') ligoGenericMIBObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1)) ligoGenericNotifs = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0)) ligoGenericInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1)) ligoPingHostsTable = MibTable((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2), ) if mibBuilder.loadTexts: ligoPingHostsTable.setStatus('current') ligoPingHostsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1), ).setIndexNames((0, "LIGO-GENERIC-MIB", "ligoPingAddrType"), (0, "LIGO-GENERIC-MIB", "ligoPingAddr")) if mibBuilder.loadTexts: ligoPingHostsEntry.setStatus('current') ligoPingAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 1), InetAddressType()) if mibBuilder.loadTexts: ligoPingAddrType.setStatus('current') ligoPingAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 2), InetAddress()) if mibBuilder.loadTexts: ligoPingAddr.setStatus('current') ligoPingTime = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 3), Integer32()).setUnits('ms').setMaxAccess("readonly") if mibBuilder.loadTexts: ligoPingTime.setStatus('current') ligoPingHost = MibTableColumn((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 4), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: ligoPingHost.setStatus('current') ligoPowerLoss = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 1)).setObjects(("SNMPv2-MIB", "sysLocation")) if mibBuilder.loadTexts: ligoPowerLoss.setStatus('current') ligoAdministrativeReboot = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 2)).setObjects(("SNMPv2-MIB", "sysLocation")) if mibBuilder.loadTexts: ligoAdministrativeReboot.setStatus('current') ligoHeartbeat = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 3)).setObjects(("SNMPv2-MIB", "sysLocation")) if mibBuilder.loadTexts: ligoHeartbeat.setStatus('current') ligoHighPing = NotificationType((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 4)).setObjects(("SNMPv2-MIB", "sysLocation"), ("LIGO-GENERIC-MIB", "ligoPingTime")) if mibBuilder.loadTexts: ligoHighPing.setStatus('current') mibBuilder.exportSymbols("LIGO-GENERIC-MIB", ligoGenericMIB=ligoGenericMIB, ligoGenericNotifs=ligoGenericNotifs, ligoPingHost=ligoPingHost, ligoPowerLoss=ligoPowerLoss, ligoGenericMIBObjects=ligoGenericMIBObjects, ligoPingHostsTable=ligoPingHostsTable, ligoAdministrativeReboot=ligoAdministrativeReboot, ligoPingAddrType=ligoPingAddrType, ligoGenericInfo=ligoGenericInfo, ligoPingHostsEntry=ligoPingHostsEntry, ligoHighPing=ligoHighPing, ligoPingTime=ligoPingTime, PYSNMP_MODULE_ID=ligoGenericMIB, ligoPingAddr=ligoPingAddr, ligoHeartbeat=ligoHeartbeat)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_union, constraints_intersection, value_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ValueRangeConstraint') (inet_address_type, inet_address) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressType', 'InetAddress') (ligo_mgmt,) = mibBuilder.importSymbols('LIGOWAVE-MIB', 'ligoMgmt') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (sys_location,) = mibBuilder.importSymbols('SNMPv2-MIB', 'sysLocation') (notification_type, module_identity, integer32, counter32, gauge32, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, counter64, time_ticks, iso, ip_address, unsigned32, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'ModuleIdentity', 'Integer32', 'Counter32', 'Gauge32', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'Counter64', 'TimeTicks', 'iso', 'IpAddress', 'Unsigned32', 'MibIdentifier') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') ligo_generic_mib = module_identity((1, 3, 6, 1, 4, 1, 32750, 3, 1)) ligoGenericMIB.setRevisions(('2016-01-15 00:00', '2009-02-13 00:00')) if mibBuilder.loadTexts: ligoGenericMIB.setLastUpdated('201601150000Z') if mibBuilder.loadTexts: ligoGenericMIB.setOrganization('LigoWave') ligo_generic_mib_objects = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1)) ligo_generic_notifs = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0)) ligo_generic_info = mib_identifier((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1)) ligo_ping_hosts_table = mib_table((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2)) if mibBuilder.loadTexts: ligoPingHostsTable.setStatus('current') ligo_ping_hosts_entry = mib_table_row((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1)).setIndexNames((0, 'LIGO-GENERIC-MIB', 'ligoPingAddrType'), (0, 'LIGO-GENERIC-MIB', 'ligoPingAddr')) if mibBuilder.loadTexts: ligoPingHostsEntry.setStatus('current') ligo_ping_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 1), inet_address_type()) if mibBuilder.loadTexts: ligoPingAddrType.setStatus('current') ligo_ping_addr = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 2), inet_address()) if mibBuilder.loadTexts: ligoPingAddr.setStatus('current') ligo_ping_time = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 3), integer32()).setUnits('ms').setMaxAccess('readonly') if mibBuilder.loadTexts: ligoPingTime.setStatus('current') ligo_ping_host = mib_table_column((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 1, 2, 1, 4), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: ligoPingHost.setStatus('current') ligo_power_loss = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 1)).setObjects(('SNMPv2-MIB', 'sysLocation')) if mibBuilder.loadTexts: ligoPowerLoss.setStatus('current') ligo_administrative_reboot = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 2)).setObjects(('SNMPv2-MIB', 'sysLocation')) if mibBuilder.loadTexts: ligoAdministrativeReboot.setStatus('current') ligo_heartbeat = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 3)).setObjects(('SNMPv2-MIB', 'sysLocation')) if mibBuilder.loadTexts: ligoHeartbeat.setStatus('current') ligo_high_ping = notification_type((1, 3, 6, 1, 4, 1, 32750, 3, 1, 1, 0, 4)).setObjects(('SNMPv2-MIB', 'sysLocation'), ('LIGO-GENERIC-MIB', 'ligoPingTime')) if mibBuilder.loadTexts: ligoHighPing.setStatus('current') mibBuilder.exportSymbols('LIGO-GENERIC-MIB', ligoGenericMIB=ligoGenericMIB, ligoGenericNotifs=ligoGenericNotifs, ligoPingHost=ligoPingHost, ligoPowerLoss=ligoPowerLoss, ligoGenericMIBObjects=ligoGenericMIBObjects, ligoPingHostsTable=ligoPingHostsTable, ligoAdministrativeReboot=ligoAdministrativeReboot, ligoPingAddrType=ligoPingAddrType, ligoGenericInfo=ligoGenericInfo, ligoPingHostsEntry=ligoPingHostsEntry, ligoHighPing=ligoHighPing, ligoPingTime=ligoPingTime, PYSNMP_MODULE_ID=ligoGenericMIB, ligoPingAddr=ligoPingAddr, ligoHeartbeat=ligoHeartbeat)
class Solution: def bitwiseComplement(self, N: int) -> int: if N == 0: return 1 ret = i = 0 while N: ret |= (((N & 1) ^ 1) << i) i += 1 N >>= 1 return ret
class Solution: def bitwise_complement(self, N: int) -> int: if N == 0: return 1 ret = i = 0 while N: ret |= (N & 1 ^ 1) << i i += 1 n >>= 1 return ret
# table definition table = { 'table_name' : 'ap_pmt_batch', 'module_id' : 'ap', 'short_descr' : 'Ap batch of payments', 'long_descr' : 'Ap batch of payments by due date', 'sub_types' : None, 'sub_trans' : None, 'sequence' : None, 'tree_params' : None, 'roll_params' : None, 'indexes' : None, 'ledger_col' : 'ledger_row_id', 'defn_company' : None, 'data_company' : None, 'read_only' : False, } # column definitions cols = [] cols.append ({ 'col_name' : 'row_id', 'data_type' : 'AUTO', 'short_descr': 'Row id', 'long_descr' : 'Row id', 'col_head' : 'Row', 'key_field' : 'Y', 'data_source': 'gen', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : None, 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'created_id', 'data_type' : 'INT', 'short_descr': 'Created id', 'long_descr' : 'Created row id', 'col_head' : 'Created', 'key_field' : 'N', 'data_source': 'gen', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : '0', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'deleted_id', 'data_type' : 'INT', 'short_descr': 'Deleted id', 'long_descr' : 'Deleted row id', 'col_head' : 'Deleted', 'key_field' : 'N', 'data_source': 'gen', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : '0', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'ledger_row_id', 'data_type' : 'INT', 'short_descr': 'Ledger row id', 'long_descr' : 'Ledger row id', 'col_head' : 'Ledger', 'key_field' : 'A', 'data_source': 'ctx', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : '{_param.ap_ledger_id}', 'dflt_rule' : None, 'col_checks' : [ [ 'ledger_id', 'Cannot change ledger id', [ ['check', '', '$value', '=', '_ctx.ledger_row_id', ''], ['or', '', '$module_row_id', '!=', '_ctx.module_row_id', ''], ], ], ], 'fkey' : ['ap_ledger_params', 'row_id', 'ledger_id', 'ledger_id', False, None], 'choices' : None, }) cols.append ({ 'col_name' : 'batch_number', 'data_type' : 'TEXT', 'short_descr': 'Payment batch number', 'long_descr' : 'Payment batch number', 'col_head' : 'Pmt no', 'key_field' : 'A', 'data_source': 'dflt_if', 'condition' : [['where', '', '_ledger.auto_pmt_batch_no', 'is not', '$None', '']], 'allow_null' : True, 'allow_amend': False, 'max_len' : 15, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : None, 'dflt_rule' : ( '<case>' '<on_insert>' '<case>' '<compare test="[[`if`, ``, `_ledger.auto_pmt_batch_no`, `is not`, `$None`, ``]]">' '<auto_gen args="_ledger.auto_batch_pmt_no"/>' '</compare>' '</case>' '</on_insert>' '<default>' '<fld_val name="batch_number"/>' '</default>' '</case>' ), 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'tran_date', 'data_type' : 'DTE', 'short_descr': 'Transaction date', 'long_descr' : 'Transaction date', 'col_head' : 'Date', 'key_field' : 'N', 'data_source': 'input', 'condition' : None, 'allow_null' : False, # 'allow_amend': False, 'allow_amend': [['where', '', 'posted', 'is', '$False', '']], 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : None, 'dflt_rule' : None, 'col_checks' : [ ['per_date', 'Period not open', [ ['check', '', '$value', 'pyfunc', 'custom.date_funcs.check_tran_date,"ap",ledger_row_id', ''], ]], ], 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'text', 'data_type' : 'TEXT', 'short_descr': 'Text', 'long_descr' : 'Line of text to appear on reports', 'col_head' : 'Text', 'key_field' : 'N', 'data_source': 'input', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : 'Payment', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'currency_id', 'data_type' : 'INT', 'short_descr': 'Batch currency', 'long_descr' : 'Currency used for this batch', 'col_head' : 'Currency', 'key_field' : 'N', 'data_source': 'dflt_if', 'condition' : [['where', '', '_ledger.currency_id', 'is not', '$None', '']], 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : '{_ledger.currency_id}', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : ['adm_currencies', 'row_id', 'currency', 'currency', False, 'curr'], 'choices' : None, }) cols.append ({ 'col_name' : 'pmt_cb_ledger_id', 'data_type' : 'INT', 'short_descr': 'Cash book for payments', 'long_descr' : 'Cash book to use for payments', 'col_head' : 'Pmt cb code', 'key_field' : 'N', 'data_source': 'null_if', 'condition' : [ ['where', '', '_ledger.pmt_tran_source', '!=', "'cb'", ''], ], 'allow_null' : True, # null means 'not posted from cash book' 'allow_amend': True, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : None, 'dflt_rule' : ( '<case>' '<compare test="[[`if`, ``, `_ledger.pmt_tran_source`, `=`, `~cb~`, ``]]">' '<fld_val name="_param.cb_ledger_id"/>' '</compare>' '</case>' ), 'col_checks' : [ [ 'pmt_cb_id', 'Cash book id required if payments posted from cashbook', [ ['check', '(', '_ledger.pmt_tran_source', '=', "'cb'", ''], ['and', '', '$value', 'is not', '$None', ')'], ['or', '(', '_ledger.pmt_tran_source', '!=', "'cb'", ''], ['and', '', '$value', 'is', '$None', ')'], ], ], [ 'pmt_curr_id', 'Cash book currency id does not match batch currency id', [ ['check', '', '$value', 'is', '$None', ''], ['or', '', 'pmt_cb_ledger_id>currency_id', '=', 'currency_id', ''], ], ], ], 'fkey' : ['cb_ledger_params', 'row_id', 'pmt_cb_id', 'ledger_id', False, 'cash_books'], 'choices' : None, }) cols.append ({ 'col_name' : 'due_tot', 'data_type' : '$TRN', 'short_descr': 'Due total', 'long_descr' : 'Due total amount - updated from ap_pmt_batch_det', 'col_head' : 'Due amt', 'key_field' : 'N', 'data_source': 'aggr', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 2, 'scale_ptr' : 'currency_id>scale', 'dflt_val' : '0', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'pmt_tot', 'data_type' : '$TRN', 'short_descr': 'Payment total', 'long_descr' : 'Payment total amount - updated from ap_pmt_batch_det', 'col_head' : 'Pmt amt', 'key_field' : 'N', 'data_source': 'aggr', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 2, 'scale_ptr' : 'currency_id>scale', 'dflt_val' : '0', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) cols.append ({ 'col_name' : 'posted', 'data_type' : 'BOOL', 'short_descr': 'Posted?', 'long_descr' : 'Has transaction been posted?', 'col_head' : 'Posted?', 'key_field' : 'N', 'data_source': 'prog', 'condition' : None, 'allow_null' : False, 'allow_amend': False, 'max_len' : 0, 'db_scale' : 0, 'scale_ptr' : None, 'dflt_val' : 'false', 'dflt_rule' : None, 'col_checks' : None, 'fkey' : None, 'choices' : None, }) # virtual column definitions virt = [] virt.append ({ 'col_name' : 'tran_type', 'data_type' : 'TEXT', 'short_descr': 'Transaction type', 'long_descr' : 'Transaction type - used in gui to ask "Post another?"', 'col_head' : 'Tran type', 'sql' : "'ap_pmt'", }) # cursor definitions cursors = [] cursors.append({ 'cursor_name': 'unposted_pmt', 'title': 'Unposted ap payments', 'columns': [ ['tran_number', 100, False, True], ['supp_row_id>party_row_id>party_id', 80, False, True], ['supp_row_id>party_row_id>display_name', 160, True, True], ['tran_date', 80, False, True], ['pmt_amt', 100, False, True], ], 'filter': [ ['where', '', 'posted', '=', "'0'", ''], ], 'sequence': [['tran_number', False]], 'formview_name': 'ap_payment', }) # actions actions = [] actions.append([ 'on_setup', '<case>' '<compare test="[[\'if\', \'\', \'_ctx.module_id\', \'=\', \'~ap~\', \'\']]">' '<case>' '<compare test="[[\'if\', \'\', \'_ledger.pmt_tran_source\', \'=\', \'~na~\', \'\']]">' '<aib_error head="Payment param" body="No payment transactions allowed"/>' '</compare>' '</case>' '</compare>' '</case>' ]) actions.append([ 'upd_checks', [ [ 'recheck_date', 'Period is closed', [ ['check', '', '$exists', 'is', '$True', ''], ['or', '', 'tran_date', 'pyfunc', 'custom.date_funcs.check_tran_date,"ap",ledger_row_id', ''], ], ], ], ])
table = {'table_name': 'ap_pmt_batch', 'module_id': 'ap', 'short_descr': 'Ap batch of payments', 'long_descr': 'Ap batch of payments by due date', 'sub_types': None, 'sub_trans': None, 'sequence': None, 'tree_params': None, 'roll_params': None, 'indexes': None, 'ledger_col': 'ledger_row_id', 'defn_company': None, 'data_company': None, 'read_only': False} cols = [] cols.append({'col_name': 'row_id', 'data_type': 'AUTO', 'short_descr': 'Row id', 'long_descr': 'Row id', 'col_head': 'Row', 'key_field': 'Y', 'data_source': 'gen', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': None, 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'created_id', 'data_type': 'INT', 'short_descr': 'Created id', 'long_descr': 'Created row id', 'col_head': 'Created', 'key_field': 'N', 'data_source': 'gen', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': '0', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'deleted_id', 'data_type': 'INT', 'short_descr': 'Deleted id', 'long_descr': 'Deleted row id', 'col_head': 'Deleted', 'key_field': 'N', 'data_source': 'gen', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': '0', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'ledger_row_id', 'data_type': 'INT', 'short_descr': 'Ledger row id', 'long_descr': 'Ledger row id', 'col_head': 'Ledger', 'key_field': 'A', 'data_source': 'ctx', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': '{_param.ap_ledger_id}', 'dflt_rule': None, 'col_checks': [['ledger_id', 'Cannot change ledger id', [['check', '', '$value', '=', '_ctx.ledger_row_id', ''], ['or', '', '$module_row_id', '!=', '_ctx.module_row_id', '']]]], 'fkey': ['ap_ledger_params', 'row_id', 'ledger_id', 'ledger_id', False, None], 'choices': None}) cols.append({'col_name': 'batch_number', 'data_type': 'TEXT', 'short_descr': 'Payment batch number', 'long_descr': 'Payment batch number', 'col_head': 'Pmt no', 'key_field': 'A', 'data_source': 'dflt_if', 'condition': [['where', '', '_ledger.auto_pmt_batch_no', 'is not', '$None', '']], 'allow_null': True, 'allow_amend': False, 'max_len': 15, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': None, 'dflt_rule': '<case><on_insert><case><compare test="[[`if`, ``, `_ledger.auto_pmt_batch_no`, `is not`, `$None`, ``]]"><auto_gen args="_ledger.auto_batch_pmt_no"/></compare></case></on_insert><default><fld_val name="batch_number"/></default></case>', 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'tran_date', 'data_type': 'DTE', 'short_descr': 'Transaction date', 'long_descr': 'Transaction date', 'col_head': 'Date', 'key_field': 'N', 'data_source': 'input', 'condition': None, 'allow_null': False, 'allow_amend': [['where', '', 'posted', 'is', '$False', '']], 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': None, 'dflt_rule': None, 'col_checks': [['per_date', 'Period not open', [['check', '', '$value', 'pyfunc', 'custom.date_funcs.check_tran_date,"ap",ledger_row_id', '']]]], 'fkey': None, 'choices': None}) cols.append({'col_name': 'text', 'data_type': 'TEXT', 'short_descr': 'Text', 'long_descr': 'Line of text to appear on reports', 'col_head': 'Text', 'key_field': 'N', 'data_source': 'input', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': 'Payment', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'currency_id', 'data_type': 'INT', 'short_descr': 'Batch currency', 'long_descr': 'Currency used for this batch', 'col_head': 'Currency', 'key_field': 'N', 'data_source': 'dflt_if', 'condition': [['where', '', '_ledger.currency_id', 'is not', '$None', '']], 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': '{_ledger.currency_id}', 'dflt_rule': None, 'col_checks': None, 'fkey': ['adm_currencies', 'row_id', 'currency', 'currency', False, 'curr'], 'choices': None}) cols.append({'col_name': 'pmt_cb_ledger_id', 'data_type': 'INT', 'short_descr': 'Cash book for payments', 'long_descr': 'Cash book to use for payments', 'col_head': 'Pmt cb code', 'key_field': 'N', 'data_source': 'null_if', 'condition': [['where', '', '_ledger.pmt_tran_source', '!=', "'cb'", '']], 'allow_null': True, 'allow_amend': True, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': None, 'dflt_rule': '<case><compare test="[[`if`, ``, `_ledger.pmt_tran_source`, `=`, `~cb~`, ``]]"><fld_val name="_param.cb_ledger_id"/></compare></case>', 'col_checks': [['pmt_cb_id', 'Cash book id required if payments posted from cashbook', [['check', '(', '_ledger.pmt_tran_source', '=', "'cb'", ''], ['and', '', '$value', 'is not', '$None', ')'], ['or', '(', '_ledger.pmt_tran_source', '!=', "'cb'", ''], ['and', '', '$value', 'is', '$None', ')']]], ['pmt_curr_id', 'Cash book currency id does not match batch currency id', [['check', '', '$value', 'is', '$None', ''], ['or', '', 'pmt_cb_ledger_id>currency_id', '=', 'currency_id', '']]]], 'fkey': ['cb_ledger_params', 'row_id', 'pmt_cb_id', 'ledger_id', False, 'cash_books'], 'choices': None}) cols.append({'col_name': 'due_tot', 'data_type': '$TRN', 'short_descr': 'Due total', 'long_descr': 'Due total amount - updated from ap_pmt_batch_det', 'col_head': 'Due amt', 'key_field': 'N', 'data_source': 'aggr', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 2, 'scale_ptr': 'currency_id>scale', 'dflt_val': '0', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'pmt_tot', 'data_type': '$TRN', 'short_descr': 'Payment total', 'long_descr': 'Payment total amount - updated from ap_pmt_batch_det', 'col_head': 'Pmt amt', 'key_field': 'N', 'data_source': 'aggr', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 2, 'scale_ptr': 'currency_id>scale', 'dflt_val': '0', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) cols.append({'col_name': 'posted', 'data_type': 'BOOL', 'short_descr': 'Posted?', 'long_descr': 'Has transaction been posted?', 'col_head': 'Posted?', 'key_field': 'N', 'data_source': 'prog', 'condition': None, 'allow_null': False, 'allow_amend': False, 'max_len': 0, 'db_scale': 0, 'scale_ptr': None, 'dflt_val': 'false', 'dflt_rule': None, 'col_checks': None, 'fkey': None, 'choices': None}) virt = [] virt.append({'col_name': 'tran_type', 'data_type': 'TEXT', 'short_descr': 'Transaction type', 'long_descr': 'Transaction type - used in gui to ask "Post another?"', 'col_head': 'Tran type', 'sql': "'ap_pmt'"}) cursors = [] cursors.append({'cursor_name': 'unposted_pmt', 'title': 'Unposted ap payments', 'columns': [['tran_number', 100, False, True], ['supp_row_id>party_row_id>party_id', 80, False, True], ['supp_row_id>party_row_id>display_name', 160, True, True], ['tran_date', 80, False, True], ['pmt_amt', 100, False, True]], 'filter': [['where', '', 'posted', '=', "'0'", '']], 'sequence': [['tran_number', False]], 'formview_name': 'ap_payment'}) actions = [] actions.append(['on_setup', '<case><compare test="[[\'if\', \'\', \'_ctx.module_id\', \'=\', \'~ap~\', \'\']]"><case><compare test="[[\'if\', \'\', \'_ledger.pmt_tran_source\', \'=\', \'~na~\', \'\']]"><aib_error head="Payment param" body="No payment transactions allowed"/></compare></case></compare></case>']) actions.append(['upd_checks', [['recheck_date', 'Period is closed', [['check', '', '$exists', 'is', '$True', ''], ['or', '', 'tran_date', 'pyfunc', 'custom.date_funcs.check_tran_date,"ap",ledger_row_id', '']]]]])
# Given a binary tree, return all root-to-leaf paths. # # Note: A leaf is a node with no children. # # Example: # # Input: # # 1 # / \ # 2 3 # \ # 5 # # Output: ["1->2->5", "1->3"] # # Explanation: All root-to-leaf paths are: 1->2->5, 1->3 # Definition for a binary tree node. class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None def binary_tree_paths(root_node: TreeNode) -> [str]: paths = [] if not root_node: return paths return get_path(root_node, '', paths) def get_path(node: TreeNode, path: str, paths: [str]) -> [str]: new_paths = list(paths) if not node.left and not node.right: new_paths.append(path + str(node.val)) return new_paths if node.left: new_paths += get_path(node.left, path + str(node.val) + '->', paths) if node.right: new_paths += get_path(node.right, path + str(node.val) + '->', paths) return new_paths
class Treenode: def __init__(self, x): self.val = x self.left = None self.right = None def binary_tree_paths(root_node: TreeNode) -> [str]: paths = [] if not root_node: return paths return get_path(root_node, '', paths) def get_path(node: TreeNode, path: str, paths: [str]) -> [str]: new_paths = list(paths) if not node.left and (not node.right): new_paths.append(path + str(node.val)) return new_paths if node.left: new_paths += get_path(node.left, path + str(node.val) + '->', paths) if node.right: new_paths += get_path(node.right, path + str(node.val) + '->', paths) return new_paths
""" This is a dedicated editor for specifying camera set rigs. It allows the artist to preset a multi-rig type. They can then use the create menus for quickly creating complicated rigs. """ class BaseUI: """ Each region of the editor UI is abstracted into a UI class that contains all of the widgets for that objects and relavant callbacks. This base class should not be instanced as this is only a container for common code. """ def __init__(self, parent): """ Class initialization. We simply hold onto the parent layout. """ pass def control(self): """ Return the master control for this UI. """ pass def parent(self): """ Return the parent instace of this UI. This can be None. """ pass def setControl(self, control): """ Set the pointer to the control handle for this UI. This is the main control that parents or children can reference for UI updates. """ pass class NewCameraSetUI(BaseUI): """ UI for adding 'new' camera set. """ def __init__(self, parent): """ Class constructor """ pass def buildLayout(self): """ Construct the UI for this class. """ pass def name(self): """ Name of this UI component. """ pass def newTemplate(self, *args): """ Create a new template and adding the template to the UI layout for user manipulation. """ pass def rebuild(self): """ Rebuild the UI. We find the parent class and tell it to kickstart the rebuild. """ pass def resetSettings(self, *args): """ Reset to the default settings and rebuild the UI. """ pass def resetUI(self): """ Tells all ui templates to reset their ui handles. This is done because this UI templates hold onto some local data that must be cleared out before rebuilding """ pass def saveSettings(self, *args): """ Call the template manager to store its current settings """ pass class NamingTemplateUI(BaseUI): """ This class encapsulates all of the UI around multi rig naming templates. """ def __init__(self, parent, mgr, template): """ Class initializer. """ pass def addLayer(self, *args): """ Add a new layer to this object. """ pass def autoCreateCkboxChange(self, args, layer='0'): """ Called when the check box is changed. """ pass def buildLayout(self): """ Build a new multi-rig template UI. """ pass def cameraSetNameChanged(self, arg): pass def createIt(self, *args): """ Function called when the user clicks the 'Create' button. This will force the creation of a new rig. """ pass def deleteLayer(self, args, layer='0'): """ Called when the delete layer button is clicked. """ pass def layerCameraChanged(self, args, layer='0'): """ Called when the option menu group changes. """ pass def layerPrefixChanged(self, args, layer='0'): """ Called when the prefix changes for a layer. """ pass def layoutForLayer(self, layer): """ Build the UI for the specified layer. We need to access the UI data later in callbacks. So we store the data inside a dictionary for reference layer. """ pass def multiRigNameChanged(self, ui): """ Called when the user changes the name of this multi-rig using the supplied text box. """ pass def namingPrefixChanged(self, arg): """ Called when the users changes the prefix name used for the multi-rig. """ pass def removeDef(self, *args): """ Remove this object from the list. """ pass def resetUI(self): pass class CameraSetEditor(BaseUI): """ Main class for the camera set editor. """ def __init__(self, parent='None'): """ Class constructor. """ pass def buildLayout(self): """ Build the main layout for the class. This will kickstart all UI creation for the class. You should have a window instance created for the layouts to parent under. """ pass def create(self): """ Create a new instance of the window. If there is already a instance then show it instead of creating a new instance. """ pass def name(self): """ Return the name for this editor. """ pass def rebuild(self): """ Force the rebuild of the UI. This happens when users create new templates. """ pass def createIt(): """ Create a new window instance of the Camera Set Editor. """ pass gEditorWindowInstance = None
""" This is a dedicated editor for specifying camera set rigs. It allows the artist to preset a multi-rig type. They can then use the create menus for quickly creating complicated rigs. """ class Baseui: """ Each region of the editor UI is abstracted into a UI class that contains all of the widgets for that objects and relavant callbacks. This base class should not be instanced as this is only a container for common code. """ def __init__(self, parent): """ Class initialization. We simply hold onto the parent layout. """ pass def control(self): """ Return the master control for this UI. """ pass def parent(self): """ Return the parent instace of this UI. This can be None. """ pass def set_control(self, control): """ Set the pointer to the control handle for this UI. This is the main control that parents or children can reference for UI updates. """ pass class Newcamerasetui(BaseUI): """ UI for adding 'new' camera set. """ def __init__(self, parent): """ Class constructor """ pass def build_layout(self): """ Construct the UI for this class. """ pass def name(self): """ Name of this UI component. """ pass def new_template(self, *args): """ Create a new template and adding the template to the UI layout for user manipulation. """ pass def rebuild(self): """ Rebuild the UI. We find the parent class and tell it to kickstart the rebuild. """ pass def reset_settings(self, *args): """ Reset to the default settings and rebuild the UI. """ pass def reset_ui(self): """ Tells all ui templates to reset their ui handles. This is done because this UI templates hold onto some local data that must be cleared out before rebuilding """ pass def save_settings(self, *args): """ Call the template manager to store its current settings """ pass class Namingtemplateui(BaseUI): """ This class encapsulates all of the UI around multi rig naming templates. """ def __init__(self, parent, mgr, template): """ Class initializer. """ pass def add_layer(self, *args): """ Add a new layer to this object. """ pass def auto_create_ckbox_change(self, args, layer='0'): """ Called when the check box is changed. """ pass def build_layout(self): """ Build a new multi-rig template UI. """ pass def camera_set_name_changed(self, arg): pass def create_it(self, *args): """ Function called when the user clicks the 'Create' button. This will force the creation of a new rig. """ pass def delete_layer(self, args, layer='0'): """ Called when the delete layer button is clicked. """ pass def layer_camera_changed(self, args, layer='0'): """ Called when the option menu group changes. """ pass def layer_prefix_changed(self, args, layer='0'): """ Called when the prefix changes for a layer. """ pass def layout_for_layer(self, layer): """ Build the UI for the specified layer. We need to access the UI data later in callbacks. So we store the data inside a dictionary for reference layer. """ pass def multi_rig_name_changed(self, ui): """ Called when the user changes the name of this multi-rig using the supplied text box. """ pass def naming_prefix_changed(self, arg): """ Called when the users changes the prefix name used for the multi-rig. """ pass def remove_def(self, *args): """ Remove this object from the list. """ pass def reset_ui(self): pass class Cameraseteditor(BaseUI): """ Main class for the camera set editor. """ def __init__(self, parent='None'): """ Class constructor. """ pass def build_layout(self): """ Build the main layout for the class. This will kickstart all UI creation for the class. You should have a window instance created for the layouts to parent under. """ pass def create(self): """ Create a new instance of the window. If there is already a instance then show it instead of creating a new instance. """ pass def name(self): """ Return the name for this editor. """ pass def rebuild(self): """ Force the rebuild of the UI. This happens when users create new templates. """ pass def create_it(): """ Create a new window instance of the Camera Set Editor. """ pass g_editor_window_instance = None
a=input() b=a[::-1] if a==b: print("yes") else: print("no")
a = input() b = a[::-1] if a == b: print('yes') else: print('no')
def getBMR(weightLBS, heightINCHES, age): weightKG = weightLBS*.453592 heightCM = heightINCHES*2.54 BMR = 10*weightKG+.25*heightCM-5*age+5 return BMR
def get_bmr(weightLBS, heightINCHES, age): weight_kg = weightLBS * 0.453592 height_cm = heightINCHES * 2.54 bmr = 10 * weightKG + 0.25 * heightCM - 5 * age + 5 return BMR
class SocialErrorMessages: """ Create SocialErrorMessages object """ def __init__(self, base_url: str): self._full_messages = { "email facebook error": f"""<p>We can't get your email. Please, check <a href=\"https://facebook.com/settings\">your facebook settings</a>. Make sure you have email there.</p> <p><a href=\"{base_url}/login\">Back</p> """, "email exists": f"""<p>Email already exists.</p> <p><a href=\"{base_url}/login\">Back</p> """, "ban": f"""<p>User has been banned.</p> <p><a href=\"{base_url}/login\">Back</p>""", } self._server_error = "Unknown error" def get_error_message(self, msg: str) -> str: return self._full_messages.get(msg) or self._server_error def get_error_message(msg: str, base_url: str) -> str: error_messages = SocialErrorMessages(base_url) return error_messages.get_error_message(msg)
class Socialerrormessages: """ Create SocialErrorMessages object """ def __init__(self, base_url: str): self._full_messages = {'email facebook error': f'''<p>We can't get your email. Please, check <a href="https://facebook.com/settings">your facebook settings</a>. Make sure you have email there.</p>\n <p><a href="{base_url}/login">Back</p>\n ''', 'email exists': f'<p>Email already exists.</p>\n <p><a href="{base_url}/login">Back</p>\n ', 'ban': f'<p>User has been banned.</p>\n <p><a href="{base_url}/login">Back</p>'} self._server_error = 'Unknown error' def get_error_message(self, msg: str) -> str: return self._full_messages.get(msg) or self._server_error def get_error_message(msg: str, base_url: str) -> str: error_messages = social_error_messages(base_url) return error_messages.get_error_message(msg)
n = int(input("Please Enter a value for N:\n")) count = 0 sum = 0 while count <= n : sum = sum+count count +=1 print("Sum of N natural numbers: " + str(sum))
n = int(input('Please Enter a value for N:\n')) count = 0 sum = 0 while count <= n: sum = sum + count count += 1 print('Sum of N natural numbers: ' + str(sum))
# -*- coding: utf-8 -*- """ Created on Wed Oct 21 16:50:47 2020 @author: ucobiz """ inputObj = open("newfile.txt") outputObj = open("output-newfile.txt", "w") # convert the sentence into UPPERCASE for sentence in inputObj: newSentenceUpper = sentence.upper() outputObj.writelines(newSentenceUpper) inputObj.close() outputObj.close()
""" Created on Wed Oct 21 16:50:47 2020 @author: ucobiz """ input_obj = open('newfile.txt') output_obj = open('output-newfile.txt', 'w') for sentence in inputObj: new_sentence_upper = sentence.upper() outputObj.writelines(newSentenceUpper) inputObj.close() outputObj.close()
# subsets 78 # ttungl@gmail.com # Given a set of distinct integers, nums, return all possible subsets (the power set). # Note: The solution set must not contain duplicate subsets. # For example, # If nums = [1,2,3], a solution is: # [ # [3], # [1], # [2], # [1,2,3], # [1,3], # [2,3], # [1,2], # [] # ] class Solution(object): def subsets(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ ####### # sol 1: iterative # runtime: 42ms res = [[]] for i in nums: res += [j + [i] for j in res] return res ####### # sol 2: DFS recursively # runtime: 42ms def DFS(nums, index, path, res): res.append(path) [DFS(nums, i + 1, path + [nums[i]], res) for i in range(index, len(nums))] res = [] DFS(nums, 0, [], res) return res
class Solution(object): def subsets(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ res = [[]] for i in nums: res += [j + [i] for j in res] return res def dfs(nums, index, path, res): res.append(path) [dfs(nums, i + 1, path + [nums[i]], res) for i in range(index, len(nums))] res = [] dfs(nums, 0, [], res) return res
# integer = int(input("Please fill number:")) integer = 12 result = tuple() for i in range(0,integer,2 ): result = result + (i,) print(result)
integer = 12 result = tuple() for i in range(0, integer, 2): result = result + (i,) print(result)
APIS = { 'apis', 'keyvaluemaps', 'targetservers', 'caches', 'developers', 'apiproducts', 'apps', 'userroles', } class Struct: def __init__(self, **entries): self.__dict__.update(entries) def __repr__(self): return f"{self.__dict__}" def empty_snapshot(): return Struct( apis={}, keyvaluemaps={}, targetservers={}, caches={}, developers=[], apps={}, apiproducts=[], userroles=[], )
apis = {'apis', 'keyvaluemaps', 'targetservers', 'caches', 'developers', 'apiproducts', 'apps', 'userroles'} class Struct: def __init__(self, **entries): self.__dict__.update(entries) def __repr__(self): return f'{self.__dict__}' def empty_snapshot(): return struct(apis={}, keyvaluemaps={}, targetservers={}, caches={}, developers=[], apps={}, apiproducts=[], userroles=[])
# Database # https://docs.djangoproject.com/en/1.8/ref/settings/#databases GDAL_LIBRARY_PATH = "/Applications/Postgres.app/Contents/Versions/9.4/lib/libgdal.dylib" GEOS_LIBRARY_PATH = "/Applications/Postgres.app/Contents/Versions/9.4/lib/libgeos_c.dylib" DATABASES = { 'default': { 'ENGINE': 'django.contrib.gis.db.backends.postgis', 'NAME': 'tor_nodes_map', 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': '', } } # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True
gdal_library_path = '/Applications/Postgres.app/Contents/Versions/9.4/lib/libgdal.dylib' geos_library_path = '/Applications/Postgres.app/Contents/Versions/9.4/lib/libgeos_c.dylib' databases = {'default': {'ENGINE': 'django.contrib.gis.db.backends.postgis', 'NAME': 'tor_nodes_map', 'USER': '', 'PASSWORD': '', 'HOST': '', 'PORT': ''}} debug = True
INTERACTIVE_TEXT_BUTTON_ACTION = "doTextButtonAction" INTERACTIVE_IMAGE_BUTTON_ACTION = "doImageButtonAction" INTERACTIVE_BUTTON_PARAMETER_KEY = "param_key" def _respons_text_card(type,title,text): return { 'actionResponse': {'type': type}, "cards": [ { 'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png','imageStyle': 'IMAGE'} }, { "sections": [ { "widgets": [ {"textParagraph": {"text": text}} ] }] } ] } def _respons_textButton_card(type,title,text, url): return { 'actionResponse': {'type': type}, "cards": [ { 'header': {'title': title, 'subtitle': 'City of Edmonton chatbot','imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png','imageStyle': 'IMAGE'} }, { "sections": [ { "widgets": [ {"buttons": [{"textButton": {"text": text,"onClick": {"openLink": {"url": url}}}}]} ] }] } ] } def _respons_text_with_bottom_link_card(type,title,text,buttonText,buttonUrl): return { 'actionResponse': {'type': type}, "cards": [ { 'header': {'title': title, 'subtitle': 'City of Edmonton chatbot','imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png','imageStyle': 'IMAGE'} }, { "sections": [ { "widgets": [ {"textParagraph": {"text": text}}, {'buttons': [{'textButton': {'text': buttonText, 'onClick': {'openLink': {'url': buttonUrl}}}}]} ] }] } ] } def _text_with_bottom_link_card(title,text,buttonText,buttonUrl): return { "cards": [ { 'header': {'title': title, 'subtitle': 'City of Edmonton chatbot','imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png','imageStyle': 'IMAGE'} }, { "sections": [ { "widgets": [ {"textParagraph": {"text": text}}, {'buttons': [{'textButton': {'text': buttonText, 'onClick': {'openLink': {'url': buttonUrl}}}}]} ] }] } ] } def _text_card_with_image(headertitle, headerimage,text, widgetimage): return { 'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot','imageUrl': headerimage,'imageStyle': 'IMAGE'}}, {'sections':[{ 'widgets': [ {'textParagraph': {'text': text}}, {'image': {'imageUrl': widgetimage}} ] } ] } ] } def _text_card_with_image_with_two_buttons(headertitle, headerimage,text, widgetimage, button1text, button2text, button1value, button2value): return { 'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot','imageUrl': headerimage,'imageStyle': 'IMAGE'}}, {'sections':[{ 'widgets': [ {'image': {'imageUrl': widgetimage}}, {'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': button1text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button2value}]}}}}]} ] } ] } ] } def _text_card_with_image_with_three_buttons(headertitle, headerimage,text, widgetimage, button1text, button2text,button3text, button1value, button2value, button3value): return { 'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot','imageUrl': headerimage,'imageStyle': 'IMAGE'}}, {'sections':[{ 'widgets': [ {'image': {'imageUrl': widgetimage}}, {'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': button1text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button2value}]}}}}]}, {'buttons': [{'textButton': {'text': button3text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button3value}]}}}}]} ] } ] } ] } def _text_card_with_two_buttons(headertitle, headerimage,text1,text2, button1text, button2text, button1value, button2value): return { 'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot','imageUrl': headerimage,'imageStyle': 'IMAGE'}}, {'sections':[{ 'widgets': [ {'textParagraph': {'text': text1}}, {'textParagraph': {'text': text2}}, {'buttons': [{'textButton': {'text': button1text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text,'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION,'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY,'value': button2value}]}}}}]} ] } ] } ] } def _text_card(title,text): return { "cards": [ { 'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png','imageStyle': 'IMAGE'} }, { "sections": [ { "widgets": [ {"textParagraph": {"text": text}} ] }] } ] } def create_cards(cards_order): INTERACTIVE_TEXT_BUTTON_ACTION = "doTextButtonAction" INTERACTIVE_IMAGE_BUTTON_ACTION = "doImageButtonAction" INTERACTIVE_BUTTON_PARAMETER_KEY = "param_key" BOT_HEADER = 'Card Bot Python' response = dict() cards = list() widgets = list() header = None words = cards_order.lower().split() for word in words: if word == 'header': header = { 'header': { 'title': BOT_HEADER, 'subtitle': 'Card header', 'imageUrl': 'https://goo.gl/5obRKj', 'imageStyle': 'IMAGE' } } elif word == 'textparagraph': widgets.append({ 'textParagraph' : { 'text': '<b>This</b> is a <i>text paragraph</i>.' } }) elif word == 'keyvalue': widgets.append({ 'keyValue': { 'topLabel': 'KeyValue Widget', 'content': 'This is a KeyValue widget', 'bottomLabel': 'The bottom label', 'icon': 'STAR' } }) elif word == 'interactivetextbutton': widgets.append({ 'buttons': [ { 'textButton': { 'text': 'INTERACTIVE BUTTON', 'onClick': { 'action': { 'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{ 'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': event_message }] } } } } ] }) elif word == 'interactiveimagebutton': widgets.append({ 'buttons': [ { 'imageButton': { 'icon': 'EVENT_SEAT', 'onClick': { 'action': { 'actionMethodName': INTERACTIVE_IMAGE_BUTTON_ACTION, 'parameters': [{ 'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': event_message }] } } } } ] }) elif word == 'textbutton': widgets.append({ 'buttons': [ { 'textButton': { 'text': 'TEXT BUTTON', 'onClick': { 'openLink': { 'url': 'https://developers.google.com', } } } } ] }) elif word == 'imagebutton': widgets.append({ 'buttons': [ { 'imageButton': { 'icon': 'EVENT_SEAT', 'onClick': { 'openLink': { 'url': 'https://developers.google.com', } } } } ] }) elif word == 'image': widgets.append({ 'image': { 'imageUrl': 'https://goo.gl/Bpa3Y5', 'onClick': { 'openLink': { 'url': 'https://developers.google.com' } } } }) if header != None: cards.append(header) cards.append({ 'sections': [{ 'widgets': widgets }]}) response['cards'] = cards return respons
interactive_text_button_action = 'doTextButtonAction' interactive_image_button_action = 'doImageButtonAction' interactive_button_parameter_key = 'param_key' def _respons_text_card(type, title, text): return {'actionResponse': {'type': type}, 'cards': [{'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png', 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text}}]}]}]} def _respons_text_button_card(type, title, text, url): return {'actionResponse': {'type': type}, 'cards': [{'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png', 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'buttons': [{'textButton': {'text': text, 'onClick': {'openLink': {'url': url}}}}]}]}]}]} def _respons_text_with_bottom_link_card(type, title, text, buttonText, buttonUrl): return {'actionResponse': {'type': type}, 'cards': [{'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png', 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': buttonText, 'onClick': {'openLink': {'url': buttonUrl}}}}]}]}]}]} def _text_with_bottom_link_card(title, text, buttonText, buttonUrl): return {'cards': [{'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png', 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': buttonText, 'onClick': {'openLink': {'url': buttonUrl}}}}]}]}]}]} def _text_card_with_image(headertitle, headerimage, text, widgetimage): return {'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': headerimage, 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text}}, {'image': {'imageUrl': widgetimage}}]}]}]} def _text_card_with_image_with_two_buttons(headertitle, headerimage, text, widgetimage, button1text, button2text, button1value, button2value): return {'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': headerimage, 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'image': {'imageUrl': widgetimage}}, {'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': button1text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button2value}]}}}}]}]}]}]} def _text_card_with_image_with_three_buttons(headertitle, headerimage, text, widgetimage, button1text, button2text, button3text, button1value, button2value, button3value): return {'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': headerimage, 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'image': {'imageUrl': widgetimage}}, {'textParagraph': {'text': text}}, {'buttons': [{'textButton': {'text': button1text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button2value}]}}}}]}, {'buttons': [{'textButton': {'text': button3text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button3value}]}}}}]}]}]}]} def _text_card_with_two_buttons(headertitle, headerimage, text1, text2, button1text, button2text, button1value, button2value): return {'cards': [{'header': {'title': headertitle, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': headerimage, 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text1}}, {'textParagraph': {'text': text2}}, {'buttons': [{'textButton': {'text': button1text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button1value}]}}}}]}, {'buttons': [{'textButton': {'text': button2text, 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': button2value}]}}}}]}]}]}]} def _text_card(title, text): return {'cards': [{'header': {'title': title, 'subtitle': 'City of Edmonton chatbot', 'imageUrl': 'http://www.gwcl.ca/wp-content/uploads/2014/01/IMG_4371.png', 'imageStyle': 'IMAGE'}}, {'sections': [{'widgets': [{'textParagraph': {'text': text}}]}]}]} def create_cards(cards_order): interactive_text_button_action = 'doTextButtonAction' interactive_image_button_action = 'doImageButtonAction' interactive_button_parameter_key = 'param_key' bot_header = 'Card Bot Python' response = dict() cards = list() widgets = list() header = None words = cards_order.lower().split() for word in words: if word == 'header': header = {'header': {'title': BOT_HEADER, 'subtitle': 'Card header', 'imageUrl': 'https://goo.gl/5obRKj', 'imageStyle': 'IMAGE'}} elif word == 'textparagraph': widgets.append({'textParagraph': {'text': '<b>This</b> is a <i>text paragraph</i>.'}}) elif word == 'keyvalue': widgets.append({'keyValue': {'topLabel': 'KeyValue Widget', 'content': 'This is a KeyValue widget', 'bottomLabel': 'The bottom label', 'icon': 'STAR'}}) elif word == 'interactivetextbutton': widgets.append({'buttons': [{'textButton': {'text': 'INTERACTIVE BUTTON', 'onClick': {'action': {'actionMethodName': INTERACTIVE_TEXT_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': event_message}]}}}}]}) elif word == 'interactiveimagebutton': widgets.append({'buttons': [{'imageButton': {'icon': 'EVENT_SEAT', 'onClick': {'action': {'actionMethodName': INTERACTIVE_IMAGE_BUTTON_ACTION, 'parameters': [{'key': INTERACTIVE_BUTTON_PARAMETER_KEY, 'value': event_message}]}}}}]}) elif word == 'textbutton': widgets.append({'buttons': [{'textButton': {'text': 'TEXT BUTTON', 'onClick': {'openLink': {'url': 'https://developers.google.com'}}}}]}) elif word == 'imagebutton': widgets.append({'buttons': [{'imageButton': {'icon': 'EVENT_SEAT', 'onClick': {'openLink': {'url': 'https://developers.google.com'}}}}]}) elif word == 'image': widgets.append({'image': {'imageUrl': 'https://goo.gl/Bpa3Y5', 'onClick': {'openLink': {'url': 'https://developers.google.com'}}}}) if header != None: cards.append(header) cards.append({'sections': [{'widgets': widgets}]}) response['cards'] = cards return respons
class Solution(object): def moveZeroes(self, nums): """ :type nums: List[int] :rtype: None Do not return anything, modify nums in-place instead. """ l = 0 lis =[] for i in nums: if i != 0: lis.append(i) for i in lis: nums[l]=i l+=1 while l != len(nums): nums[l]=0 l+=1
class Solution(object): def move_zeroes(self, nums): """ :type nums: List[int] :rtype: None Do not return anything, modify nums in-place instead. """ l = 0 lis = [] for i in nums: if i != 0: lis.append(i) for i in lis: nums[l] = i l += 1 while l != len(nums): nums[l] = 0 l += 1
data = ''' Letters : abcdefghijklmnopqurtuvwxyz Capital Letters : ABCDEFGHIJKLMNOPQRSTUVWXYZ Numbers : 1234567890 Words : regular expresion Need to be escaped Meta Characters : . ^ $ * + ? { } [ ] \ | ( ) Websites : qaviton.com yonadavking.com idangay.com Phone Numbers: 321-555-4321 123.555.1234 123*555*1234 800-555-1234 900-555-1234 Names: Mr. Schafer Mr Smith Ms Davis Mrs. Robinson Mr. T E-mails: sonic666@gmail.com theReal.adam.sandler@poki.gi super_mega_guy@sup # what's missing here? D00M2@is.the.best IP-Addresses: print(ip_lookup('ffff 00.30.1.4441 and stay home')) print(ip_lookup('ffff 0000.30.1.41 and stay home')) print(ip_lookup('ffff 300.30.1.44 and stay home')) print(ip_lookup('0000.300.0001.4441 and stay home')) print(ip_lookup('080.30.1.4441')) print(ip_lookup('00.3y0.1.1')) print(ip_lookup('00.30.1.44d41')) print(ip_lookup('00.30.1.4441')) print(ip_lookup('00.30.1.')) print(ip_lookup('00630616441')) print(ip_lookup('0.0.0.0')) print(ip_lookup('67.78.11.24/30')) print(ip_lookup('192.168.0.1')) print(ip_lookup('192.168.0.1.6')) ''' sentences = [ 're is very cool', 'find th7s in me', 'any thing is possible with re', ]
data = "\nLetters : abcdefghijklmnopqurtuvwxyz\nCapital Letters : ABCDEFGHIJKLMNOPQRSTUVWXYZ\nNumbers : 1234567890\nWords : regular expresion \nNeed to be escaped\nMeta Characters : . ^ $ * + ? { } [ ] \\ | ( )\nWebsites : qaviton.com yonadavking.com idangay.com\n\nPhone Numbers:\n 321-555-4321\n 123.555.1234\n 123*555*1234\n 800-555-1234\n 900-555-1234\n\nNames:\n Mr. Schafer\n Mr Smith\n Ms Davis\n Mrs. Robinson\n Mr. T\n\nE-mails:\n sonic666@gmail.com\n theReal.adam.sandler@poki.gi\n super_mega_guy@sup # what's missing here?\n D00M2@is.the.best\n \nIP-Addresses:\n print(ip_lookup('ffff 00.30.1.4441 and stay home'))\n print(ip_lookup('ffff 0000.30.1.41 and stay home'))\n print(ip_lookup('ffff 300.30.1.44 and stay home'))\n print(ip_lookup('0000.300.0001.4441 and stay home'))\n print(ip_lookup('080.30.1.4441'))\n print(ip_lookup('00.3y0.1.1'))\n print(ip_lookup('00.30.1.44d41'))\n print(ip_lookup('00.30.1.4441'))\n print(ip_lookup('00.30.1.'))\n print(ip_lookup('00630616441'))\n print(ip_lookup('0.0.0.0'))\n print(ip_lookup('67.78.11.24/30'))\n print(ip_lookup('192.168.0.1'))\n print(ip_lookup('192.168.0.1.6'))\n" sentences = ['re is very cool', 'find th7s in me', 'any thing is possible with re']
class PipelineNode(object): def __init__(self, module_path, params): self.module_path = module_path self.params = params
class Pipelinenode(object): def __init__(self, module_path, params): self.module_path = module_path self.params = params
script = """ from vapory import * scene = Scene( camera = Camera('location', [0, 2, -3], 'look_at', [0, 1, 2]), objects = [ LightSource([2, 4, -3], 'color', [1, 1, 1]), Background('color', [1, 1, 1]), Sphere([0, 1, 2], 2, Texture(Pigment('color', ([1, 0, 1])))), Box([{0}, -1.5, -0.5], [{1}, 3.5, 5], Texture(Pigment('color', ([1, 0.6, 0.5]))), 'rotate', [0, 30, 0]), ]) scene.render('/data/{2}.png', width=400, height=400, antialiasing=0.001) """ for i in range(1, 41): name = str(i).zfill(2) with open("tmp/"+name+".py", 'w') as f: f.write(script.format(-2+(0.1*i), -1.95+(0.1*i), name))
script = "\nfrom vapory import *\n\nscene = Scene(\n camera = Camera('location', [0, 2, -3], 'look_at', [0, 1, 2]),\n objects = [\n LightSource([2, 4, -3], 'color', [1, 1, 1]),\n Background('color', [1, 1, 1]),\n Sphere([0, 1, 2], 2, Texture(Pigment('color', ([1, 0, 1])))),\n Box([{0}, -1.5, -0.5], [{1}, 3.5, 5], Texture(Pigment('color', ([1, 0.6, 0.5]))), 'rotate', [0, 30, 0]),\n ])\n\nscene.render('/data/{2}.png', width=400, height=400, antialiasing=0.001)\n" for i in range(1, 41): name = str(i).zfill(2) with open('tmp/' + name + '.py', 'w') as f: f.write(script.format(-2 + 0.1 * i, -1.95 + 0.1 * i, name))
if __name__ == "__main__": filename = "ecm_flash_attempt2.in" f = open(filename) arr = [] i = 0 f2 = open(filename + ".dat", "w") for line in f: line = line.strip() pieces = line.split(',') can_data = pieces[3] idh = can_data[0:5].replace(' ', '').strip() idl = can_data[6:11].replace(' ', '').strip() data = can_data[12:].strip() f2.write("IDH: %02X, IDL: %02X, Len: %02X, Data: %s\n" % (int(idh, 16), int(idl, 16), 8, data))
if __name__ == '__main__': filename = 'ecm_flash_attempt2.in' f = open(filename) arr = [] i = 0 f2 = open(filename + '.dat', 'w') for line in f: line = line.strip() pieces = line.split(',') can_data = pieces[3] idh = can_data[0:5].replace(' ', '').strip() idl = can_data[6:11].replace(' ', '').strip() data = can_data[12:].strip() f2.write('IDH: %02X, IDL: %02X, Len: %02X, Data: %s\n' % (int(idh, 16), int(idl, 16), 8, data))
def login(): result = auth_jwt.jwt_token_manager() if result and "token" in result: response.headers["x-gg-userid"] = auth.user_id return result def register(): request.vars.email = request.vars.username request.vars.password = db.auth_user.password.validate(request.vars.password)[0] result = auth.get_or_create_user(request.vars) return response.json(result) def register_credentials(): username = request.vars.username password = request.vars.password registerRequest = { "email":username, "password":password } user = auth.register_bare(**registerRequest) result = {} if user: userId = db(db.auth_user.email == username).select().first().id result = {"id":userId} return response.json(result) def authenticate_credentials(): result = auth_jwt.jwt_token_manager() if result and "token" in result: response.headers["x-gg-userid"] = auth.user_id else: response.headers["x-gg-authreason"] = "authenticate_credentials.FAILED_AUTH" raise HTTP(401,**response.headers) def authenticate_token(): result = auth_jwt.jwt_token_manager() if result and "token" in result: response.headers["x-gg-userid"] = auth.user_id return result else: response.headers["x-gg-authreason"] = "authenticate_credentials.FAILED_TOKEN" raise HTTP(401,**response.headers)
def login(): result = auth_jwt.jwt_token_manager() if result and 'token' in result: response.headers['x-gg-userid'] = auth.user_id return result def register(): request.vars.email = request.vars.username request.vars.password = db.auth_user.password.validate(request.vars.password)[0] result = auth.get_or_create_user(request.vars) return response.json(result) def register_credentials(): username = request.vars.username password = request.vars.password register_request = {'email': username, 'password': password} user = auth.register_bare(**registerRequest) result = {} if user: user_id = db(db.auth_user.email == username).select().first().id result = {'id': userId} return response.json(result) def authenticate_credentials(): result = auth_jwt.jwt_token_manager() if result and 'token' in result: response.headers['x-gg-userid'] = auth.user_id else: response.headers['x-gg-authreason'] = 'authenticate_credentials.FAILED_AUTH' raise http(401, **response.headers) def authenticate_token(): result = auth_jwt.jwt_token_manager() if result and 'token' in result: response.headers['x-gg-userid'] = auth.user_id return result else: response.headers['x-gg-authreason'] = 'authenticate_credentials.FAILED_TOKEN' raise http(401, **response.headers)
class Solution: def largestAltitude(self, gain: List[int]) -> int: max_alt = 0 curr = 0 for alt in gain: curr += alt if max_alt < curr: max_alt = curr return max_alt
class Solution: def largest_altitude(self, gain: List[int]) -> int: max_alt = 0 curr = 0 for alt in gain: curr += alt if max_alt < curr: max_alt = curr return max_alt
fields = 'Incorrect some fields' login = 'Incorrect password or login' location = 'Incorrect location' wrong = 'Something goes wrong. Maybe some fields are incorrect. Please connect with administrations' load = 'not loaded' change = 'Somefing change on site. Please connect with administrations' not_found = 'Article not found'
fields = 'Incorrect some fields' login = 'Incorrect password or login' location = 'Incorrect location' wrong = 'Something goes wrong. Maybe some fields are incorrect. Please connect with administrations' load = 'not loaded' change = 'Somefing change on site. Please connect with administrations' not_found = 'Article not found'
class Color: def __init__(self, red, green, blue): self.red = red self.green = green self.blue = blue def get_color(self): return self.red, self.green, self.blue class BlockColor: darkblue = Color(0, 0, 139) yellow = Color(255, 255, 0) green = Color(0, 128, 0) red = Color(255, 0, 0) pink = Color(255, 20, 174) orange = Color(255, 140, 0) turquoise = Color(135, 206, 250) class ObjectColor: yellow =Color(255, 255, 0) red = Color(255, 0, 0)
class Color: def __init__(self, red, green, blue): self.red = red self.green = green self.blue = blue def get_color(self): return (self.red, self.green, self.blue) class Blockcolor: darkblue = color(0, 0, 139) yellow = color(255, 255, 0) green = color(0, 128, 0) red = color(255, 0, 0) pink = color(255, 20, 174) orange = color(255, 140, 0) turquoise = color(135, 206, 250) class Objectcolor: yellow = color(255, 255, 0) red = color(255, 0, 0)
''' Pattern: Enter a number: 5 E E D E D C E D C B E D C B A E D C B E D C E D E ''' print('Alphabet Pattern: ') number_rows = int(input("Enter a number: ")) for row in range(1,number_rows+1): for column in range(1,row+1): print(chr(65+number_rows-column),end=" ") print() for row in range(1,number_rows+1): for column in range(number_rows-row,0,-1): print(chr(64+column+row),end=" ") print()
""" Pattern: Enter a number: 5 E E D E D C E D C B E D C B A E D C B E D C E D E """ print('Alphabet Pattern: ') number_rows = int(input('Enter a number: ')) for row in range(1, number_rows + 1): for column in range(1, row + 1): print(chr(65 + number_rows - column), end=' ') print() for row in range(1, number_rows + 1): for column in range(number_rows - row, 0, -1): print(chr(64 + column + row), end=' ') print()
# You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is that adjacent houses have security system connected and it will automatically contact the police if two adjacent houses were broken into on the same night. # Given a list of non-negative integers representing the amount of money of each house, determine the maximum amount of money you can rob tonight without alerting the police. # Example 1: # Input: [1,2,3,1] # Output: 4 # Explanation: Rob house 1 (money = 1) and then rob house 3 (money = 3). # Total amount you can rob = 1 + 3 = 4. # Example 2: # Input: [2,7,9,3,1] # Output: 12 # Explanation: Rob house 1 (money = 2), rob house 3 (money = 9) and rob house 5 (money = 1). # Total amount you can rob = 2 + 9 + 1 = 12. class Solution: def rob(self, nums: List[int]) -> int: if len(nums) == 0: return 0 if len(nums) < 3: return max(nums) nums[1] = max(nums[0], nums[1]) for i in range(2, len(nums)): nums[i] = max(nums[i] + nums[i - 2], nums[i - 1]) return nums[-1]
class Solution: def rob(self, nums: List[int]) -> int: if len(nums) == 0: return 0 if len(nums) < 3: return max(nums) nums[1] = max(nums[0], nums[1]) for i in range(2, len(nums)): nums[i] = max(nums[i] + nums[i - 2], nums[i - 1]) return nums[-1]
# python3 def lps(pattern): pattern = '#'+pattern length = len(pattern) table = [0 for i in range(length)] table[1] = 0 for i in range(2, length): j = table[i-1] while pattern[j+1] != pattern[i] and j>0: j = table[j] if pattern[j+1] == pattern[i]: table[i] = j+1 return table if __name__ == '__main__': pattern = input() text = input() table = lps(pattern+'$'+text) for i in range(len(pattern)+2, len(table)): if table[i] == len(pattern): print(i-2*len(pattern)-1, end=" ") print()
def lps(pattern): pattern = '#' + pattern length = len(pattern) table = [0 for i in range(length)] table[1] = 0 for i in range(2, length): j = table[i - 1] while pattern[j + 1] != pattern[i] and j > 0: j = table[j] if pattern[j + 1] == pattern[i]: table[i] = j + 1 return table if __name__ == '__main__': pattern = input() text = input() table = lps(pattern + '$' + text) for i in range(len(pattern) + 2, len(table)): if table[i] == len(pattern): print(i - 2 * len(pattern) - 1, end=' ') print()
"""DLPack is a protocol for sharing arrays between deep learning frameworks.""" load("//third_party:repo.bzl", "tf_http_archive") def repo(): tf_http_archive( name = "dlpack", strip_prefix = "dlpack-3efc489b55385936531a06ff83425b719387ec63", sha256 = "b59586ce69bcf3efdbf3cf4803fadfeaae4948044e2b8d89cf912194cf28f233", urls = [ "https://storage.googleapis.com/mirror.tensorflow.org/github.com/dmlc/dlpack/archive/3efc489b55385936531a06ff83425b719387ec63.tar.gz", "https://github.com/dmlc/dlpack/archive/3efc489b55385936531a06ff83425b719387ec63.tar.gz", ], build_file = "//third_party/dlpack:BUILD.bazel", )
"""DLPack is a protocol for sharing arrays between deep learning frameworks.""" load('//third_party:repo.bzl', 'tf_http_archive') def repo(): tf_http_archive(name='dlpack', strip_prefix='dlpack-3efc489b55385936531a06ff83425b719387ec63', sha256='b59586ce69bcf3efdbf3cf4803fadfeaae4948044e2b8d89cf912194cf28f233', urls=['https://storage.googleapis.com/mirror.tensorflow.org/github.com/dmlc/dlpack/archive/3efc489b55385936531a06ff83425b719387ec63.tar.gz', 'https://github.com/dmlc/dlpack/archive/3efc489b55385936531a06ff83425b719387ec63.tar.gz'], build_file='//third_party/dlpack:BUILD.bazel')
#!/usr/bin/env python # coding: utf-8 # In[6]: def Secant(f,a,b,nMax,epsilon): fa=f(a) fb=f(b) if abs(fa) > abs(fb): atemp = a fatemp = fa a = b b = atemp fa = fb fb = fatemp return None print(0,a,fa) print(1,b,fb) for n in range(2,nMax): if abs(fa) > abs(fb): atemp = a fatemp = fa a = b b = atemp fa = fb fb = fatemp d = (b-a)/(fb-fa) b = a fb = fa d = d*fa if abs(d) < epsilon: print("Convergence") print(n,a,fa) break return None a = a-d fa = f(a) print(n,a,fa) # In[8]: def p(x): return x**5 + x**3 +3 a = -1 b = 1 nMax = 20 epsilon = 1/2 * 10**(-16) Secant(p,a,b,nMax,epsilon) # In[ ]:
def secant(f, a, b, nMax, epsilon): fa = f(a) fb = f(b) if abs(fa) > abs(fb): atemp = a fatemp = fa a = b b = atemp fa = fb fb = fatemp return None print(0, a, fa) print(1, b, fb) for n in range(2, nMax): if abs(fa) > abs(fb): atemp = a fatemp = fa a = b b = atemp fa = fb fb = fatemp d = (b - a) / (fb - fa) b = a fb = fa d = d * fa if abs(d) < epsilon: print('Convergence') print(n, a, fa) break return None a = a - d fa = f(a) print(n, a, fa) def p(x): return x ** 5 + x ** 3 + 3 a = -1 b = 1 n_max = 20 epsilon = 1 / 2 * 10 ** (-16) secant(p, a, b, nMax, epsilon)
#grade of steel a=int(input("Hardness:")) b=float(input("Carbon content:")) c=int(input("Tensile strength:")) if a>50 and b<0.7 and c>5600: print("10") elif a>50 and b<0.7: print("9") elif b<0.7 and c>5600: print("8") elif a>50 and c>5600: print("7") elif a>50 or b<0.7 or c>5600: print("6") else: print("5")
a = int(input('Hardness:')) b = float(input('Carbon content:')) c = int(input('Tensile strength:')) if a > 50 and b < 0.7 and (c > 5600): print('10') elif a > 50 and b < 0.7: print('9') elif b < 0.7 and c > 5600: print('8') elif a > 50 and c > 5600: print('7') elif a > 50 or b < 0.7 or c > 5600: print('6') else: print('5')
def format_inequality_result_string(and_or_expr): result = [] if and_or_expr.__class__.__name__ == 'Or': if not and_or_expr.args: raise ValueError('Recieved empty Or expression. Dafk?') for expr in and_or_expr.args: # TODO: This will fail when dealing with more complex boolean # operations. Revise this method. result.append(expr.args) elif and_or_expr.__class__.__name__ == 'And': result.append(and_or_expr.args) return result
def format_inequality_result_string(and_or_expr): result = [] if and_or_expr.__class__.__name__ == 'Or': if not and_or_expr.args: raise value_error('Recieved empty Or expression. Dafk?') for expr in and_or_expr.args: result.append(expr.args) elif and_or_expr.__class__.__name__ == 'And': result.append(and_or_expr.args) return result
n = int(input()) M=[] m = input().split() for i in range(n -1): for j in range(i+1,n): if int(m[i])<int(m[j]): M.append(m[j]) break if len(M) < i+1: M.append('*') M.append('*') m2 = ' '.join(M) print(m2)
n = int(input()) m = [] m = input().split() for i in range(n - 1): for j in range(i + 1, n): if int(m[i]) < int(m[j]): M.append(m[j]) break if len(M) < i + 1: M.append('*') M.append('*') m2 = ' '.join(M) print(m2)
# Function to calculate the # electricity bill def calculateBill(units): # Condition to find the charges # bar in which the units consumed # is fall if (units <= 150): return units * 5.50; elif (151<=units<=300): return ((150* 5.50) + (units - 150) * 6); elif (301<=units<=500): return ((150 * 5.50) + (150 * 6) + (units - 300) * 6.5); elif (units > 500): return ((150 * 5.50) + (150 * 6) + (150 * 6.5) + (units - 450) * 7); return 0; units=int(input("Enter Units Consumed:=")) print(calculateBill(units),"Rs Only\-")
def calculate_bill(units): if units <= 150: return units * 5.5 elif 151 <= units <= 300: return 150 * 5.5 + (units - 150) * 6 elif 301 <= units <= 500: return 150 * 5.5 + 150 * 6 + (units - 300) * 6.5 elif units > 500: return 150 * 5.5 + 150 * 6 + 150 * 6.5 + (units - 450) * 7 return 0 units = int(input('Enter Units Consumed:=')) print(calculate_bill(units), 'Rs Only\\-')
def compute_list_average(number_list): return sum(number_list) / len(number_list) number_list = [] for i in range(5): number_list.append(float(input("Give a number: "))) print(compute_list_average(number_list))
def compute_list_average(number_list): return sum(number_list) / len(number_list) number_list = [] for i in range(5): number_list.append(float(input('Give a number: '))) print(compute_list_average(number_list))
# -*- coding: utf-8 -*- """ Created on Tue May 5 08:58:36 2020 @author: Shivadhar SIngh """ global_X = 27 def my_function(param1=123, param2="hi mom"): local_X = 654.321 print("\n=== local namespace ===") # line 1 for name,val in list(locals().items()): print("name:", name, "value:", val) print("=======================") print("local_X:", local_X) global_x = 5 print("global_X:", global_X) # line 2 my_function() print(global_X)
""" Created on Tue May 5 08:58:36 2020 @author: Shivadhar SIngh """ global_x = 27 def my_function(param1=123, param2='hi mom'): local_x = 654.321 print('\n=== local namespace ===') for (name, val) in list(locals().items()): print('name:', name, 'value:', val) print('=======================') print('local_X:', local_X) global_x = 5 print('global_X:', global_X) my_function() print(global_X)
############################################################################### # Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # # # Licensed under the Apache License, Version 2.0 (the "License"). # # You may not use this file except in compliance with the License. # A copy of the License is located at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # or in the "license" file accompanying this file. This file is distributed # # on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, express # # or implied. See the License for the specific language governing permissions# # and limitations under the License. # ############################################################################### def transform_params(params_in): """Splits input parameter into parameter key and value. Args: params_in (dict): Python dict of input params e.g. { "principal_role": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } Return: params_out (list): Python list of output params e.g. { "ParameterKey": "principal_role", "ParameterValue": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } """ params_list = [] for key, value in params_in.items(): param = {} param.update({"ParameterKey": key}) param.update({"ParameterValue": value}) params_list.append(param) return params_list def reverse_transform_params(params_in): """Merge input parameter key and value into one-line string Args: params_in (list): Python list of output params e.g. { "ParameterKey": "principal_role", "ParameterValue": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } Return: params_out (dict): Python dict of input params e.g. { "principal_role": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } """ params_out = {} for param in params_in: key = param.get("ParameterKey") value = param.get("ParameterValue") params_out.update({key: value}) return params_out
def transform_params(params_in): """Splits input parameter into parameter key and value. Args: params_in (dict): Python dict of input params e.g. { "principal_role": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } Return: params_out (list): Python list of output params e.g. { "ParameterKey": "principal_role", "ParameterValue": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } """ params_list = [] for (key, value) in params_in.items(): param = {} param.update({'ParameterKey': key}) param.update({'ParameterValue': value}) params_list.append(param) return params_list def reverse_transform_params(params_in): """Merge input parameter key and value into one-line string Args: params_in (list): Python list of output params e.g. { "ParameterKey": "principal_role", "ParameterValue": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } Return: params_out (dict): Python dict of input params e.g. { "principal_role": "$[alfred_ssm_/org/primary/service_catalog/ principal/role_arn]" } """ params_out = {} for param in params_in: key = param.get('ParameterKey') value = param.get('ParameterValue') params_out.update({key: value}) return params_out
a = int(input()) b = int(input()) c = int(input()) if a == b == c: print(3) elif (a == b and a != c) or (a == c and a != b) or (b == c and a != c): print(2) else: print(0)
a = int(input()) b = int(input()) c = int(input()) if a == b == c: print(3) elif a == b and a != c or (a == c and a != b) or (b == c and a != c): print(2) else: print(0)
#triangular star pattern ''' Print the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** ''' rows=int(input()) for i in range(rows): for j in range(i+1): print("*",end="") print()
""" Print the following pattern for the given N number of rows. Pattern for N = 4 * ** *** **** """ rows = int(input()) for i in range(rows): for j in range(i + 1): print('*', end='') print()
class ContestError(Exception): def __init__(self, message: str = 'UGrade Error', *args) -> None: super(ContestError, self).__init__(message, *args) class NoSuchLanguageError(ContestError): def __init__(self, message: str = 'No Such Language') -> None: super(NoSuchLanguageError, self).__init__(message) class NoSuchContestError(ContestError): def __init__(self, message: str = 'No Such Contest') -> None: super(NoSuchContestError, self).__init__(message) class NoSuchUserError(ContestError): def __init__(self, message: str = 'No Such User') -> None: super(NoSuchUserError, self).__init__(message) class UserAlreadySignedUpError(ContestError): def __init__(self, message: str = 'User Already Signed Up') -> None: super(UserAlreadySignedUpError, self).__init__(message) class UsernameAlreadyUsedError(ContestError): def __init__(self, message: str = 'Username Already Used') -> None: super(UsernameAlreadyUsedError, self).__init__(message) class UserAlreadyInvitedError(ContestError): def __init__(self, message: str = 'User Already Invited') -> None: super(UserAlreadyInvitedError, self).__init__(message) class UserHaventSignedUpError(ContestError): def __init__(self, message: str = 'User Haven\'t Signed Up Yet') -> None: super(UserHaventSignedUpError, self).__init__(message) class AuthenticationError(ContestError): def __init__(self, message: str = 'Authentication Error') -> None: super(AuthenticationError, self).__init__(message) class ForbiddenActionError(ContestError): def __init__(self, message: str = 'Forbidden Action') -> None: super(ForbiddenActionError, self).__init__(message) class NoSuchProblemError(ContestError): def __init__(self, message: str = 'No Such Problem') -> None: super(NoSuchProblemError, self).__init__(message) class NoSuchSubmissionError(ContestError): def __init__(self, message: str = 'No Such Submission') -> None: super(NoSuchSubmissionError, self).__init__(message) class ForbiddenLanguageError(ContestError): def __init__(self, message: str = 'Language Is Not Permitted') -> None: super(ForbiddenLanguageError, self).__init__(message)
class Contesterror(Exception): def __init__(self, message: str='UGrade Error', *args) -> None: super(ContestError, self).__init__(message, *args) class Nosuchlanguageerror(ContestError): def __init__(self, message: str='No Such Language') -> None: super(NoSuchLanguageError, self).__init__(message) class Nosuchcontesterror(ContestError): def __init__(self, message: str='No Such Contest') -> None: super(NoSuchContestError, self).__init__(message) class Nosuchusererror(ContestError): def __init__(self, message: str='No Such User') -> None: super(NoSuchUserError, self).__init__(message) class Useralreadysigneduperror(ContestError): def __init__(self, message: str='User Already Signed Up') -> None: super(UserAlreadySignedUpError, self).__init__(message) class Usernamealreadyusederror(ContestError): def __init__(self, message: str='Username Already Used') -> None: super(UsernameAlreadyUsedError, self).__init__(message) class Useralreadyinvitederror(ContestError): def __init__(self, message: str='User Already Invited') -> None: super(UserAlreadyInvitedError, self).__init__(message) class Userhaventsigneduperror(ContestError): def __init__(self, message: str="User Haven't Signed Up Yet") -> None: super(UserHaventSignedUpError, self).__init__(message) class Authenticationerror(ContestError): def __init__(self, message: str='Authentication Error') -> None: super(AuthenticationError, self).__init__(message) class Forbiddenactionerror(ContestError): def __init__(self, message: str='Forbidden Action') -> None: super(ForbiddenActionError, self).__init__(message) class Nosuchproblemerror(ContestError): def __init__(self, message: str='No Such Problem') -> None: super(NoSuchProblemError, self).__init__(message) class Nosuchsubmissionerror(ContestError): def __init__(self, message: str='No Such Submission') -> None: super(NoSuchSubmissionError, self).__init__(message) class Forbiddenlanguageerror(ContestError): def __init__(self, message: str='Language Is Not Permitted') -> None: super(ForbiddenLanguageError, self).__init__(message)
"""Using two methods from Stack, accomplish enqueue and dequeue.""" # from .. stack.stack import Stack # from .. stack.stack import Node class Node(object): """This class is set up to create new Nodes.""" def __init__(self, value, next_node=None): self.value = value self.next_node = next_node def __str__(self): return f'{ self.value }' def __repr__(self): return f'<NODE: { self.value }>' class Stack(object): """To create a node for a stack and other related methods.""" def __init__(self, iterable=None): self.top = None self._size = 0 if iterable is None: iterable = [] if type(iterable) is not list: raise TypeError('Iterable is not a list.') for what in iterable: self.push(what) def __str__(self): output = f'Stack: Value of the top stack is: {self.top.value}' return output def __len__(self): return self._size def __repr__(self): return f'<STACK Top: { self.top }>' def push(self, value): """ """ self.top = Node(value, self.top) self._size += 1 return self def pop(self): """ """ if self.top: old_top = self.top self.top = old_top.next_node old_top.next_node = None self._size -= 1 return old_top else: return f'Input stack cannot be empty.' ################################################ ##### NEW CLASS: ##### ##### ##### ################################################ class PseudoQueue(object): def __init__(self): self.stack_1 = Stack() self.stack_2 = Stack() def enqueue(self, value): self.stack_1.push(value) self.rear = self.stack_1.top def dequeue(self): while self.stack_1.top: self.stack_2.push(self.stack_1.pop().value) popped = self.stack_2.pop() while self.stack_2.top: self.stack_1.push(self.stack_2.pop().value) self.rear = self.stack_1.top return popped ##### TO PRINT : ##### ################################################ new_pseudoqueue = PseudoQueue() new_pseudoqueue.enqueue('apple') new_pseudoqueue.enqueue('banana') new_pseudoqueue.enqueue('cucumber') new_pseudoqueue.dequeue() new_pseudoqueue.dequeue() print(new_pseudoqueue.stack_1.top.value) print(len(new_pseudoqueue.stack_1))
"""Using two methods from Stack, accomplish enqueue and dequeue.""" class Node(object): """This class is set up to create new Nodes.""" def __init__(self, value, next_node=None): self.value = value self.next_node = next_node def __str__(self): return f'{self.value}' def __repr__(self): return f'<NODE: {self.value}>' class Stack(object): """To create a node for a stack and other related methods.""" def __init__(self, iterable=None): self.top = None self._size = 0 if iterable is None: iterable = [] if type(iterable) is not list: raise type_error('Iterable is not a list.') for what in iterable: self.push(what) def __str__(self): output = f'Stack: Value of the top stack is: {self.top.value}' return output def __len__(self): return self._size def __repr__(self): return f'<STACK Top: {self.top}>' def push(self, value): """ """ self.top = node(value, self.top) self._size += 1 return self def pop(self): """ """ if self.top: old_top = self.top self.top = old_top.next_node old_top.next_node = None self._size -= 1 return old_top else: return f'Input stack cannot be empty.' class Pseudoqueue(object): def __init__(self): self.stack_1 = stack() self.stack_2 = stack() def enqueue(self, value): self.stack_1.push(value) self.rear = self.stack_1.top def dequeue(self): while self.stack_1.top: self.stack_2.push(self.stack_1.pop().value) popped = self.stack_2.pop() while self.stack_2.top: self.stack_1.push(self.stack_2.pop().value) self.rear = self.stack_1.top return popped new_pseudoqueue = pseudo_queue() new_pseudoqueue.enqueue('apple') new_pseudoqueue.enqueue('banana') new_pseudoqueue.enqueue('cucumber') new_pseudoqueue.dequeue() new_pseudoqueue.dequeue() print(new_pseudoqueue.stack_1.top.value) print(len(new_pseudoqueue.stack_1))
n = int(input()) if n % 2 == 1 or 6 <= n <= 20: print('Weird') elif 2 <= n <= 5 or n > 20: print('Not Weird')
n = int(input()) if n % 2 == 1 or 6 <= n <= 20: print('Weird') elif 2 <= n <= 5 or n > 20: print('Not Weird')
class Solution: def sumOddLengthSubarrays(self, arr: List[int]) -> int: n = len(arr) k = 1 m = 0 total_sum = 0 while k <= n: for i in range(n - m): total_sum = total_sum + sum(arr[i:i + k]) if k <= n: k += 2 m += 2 return total_sum
class Solution: def sum_odd_length_subarrays(self, arr: List[int]) -> int: n = len(arr) k = 1 m = 0 total_sum = 0 while k <= n: for i in range(n - m): total_sum = total_sum + sum(arr[i:i + k]) if k <= n: k += 2 m += 2 return total_sum
arquivo = open("exercicio_1.txt", "w") arquivo.write("\nTeste 3") arquivo.write("\nTeste 4") arquivo.close() arquivo = open("exercicio_1.txt", "a") arquivo.write("\nTeste 5") arquivo.write("\nTeste 6") arquivo.close() arquivo = open("exercicio_1.txt", "w") arquivo.write("\nTeste 7") arquivo.write("\nTeste 8") arquivo.close()
arquivo = open('exercicio_1.txt', 'w') arquivo.write('\nTeste 3') arquivo.write('\nTeste 4') arquivo.close() arquivo = open('exercicio_1.txt', 'a') arquivo.write('\nTeste 5') arquivo.write('\nTeste 6') arquivo.close() arquivo = open('exercicio_1.txt', 'w') arquivo.write('\nTeste 7') arquivo.write('\nTeste 8') arquivo.close()
# Definition for singly-linked list. # class ListNode: # def __init__(self, val=0, next=None): # self.val = val # self.next = next class Solution: def sortList(self, head: Optional[ListNode]) -> Optional[ListNode]: temp=head dd=[] ## looping through the LInklist and appending the list named as dd while(temp): dd.append(temp.val) temp=temp.next ## Sorting the List in ascedning order dd.sort() temp=head ### now overwriting linklist values with the values of the list named DD for i in dd: temp.val=i temp=temp.next return head
class Solution: def sort_list(self, head: Optional[ListNode]) -> Optional[ListNode]: temp = head dd = [] while temp: dd.append(temp.val) temp = temp.next dd.sort() temp = head for i in dd: temp.val = i temp = temp.next return head
class Report: def __init__(self): self.set_age('') self.set_date('') self.set_cause('') self.set_location('') self.set_remarks('') self.set_source('') def clear(): self.data = [] def empty(self): return (len(self.name) == 0) def get_name(self): return self.name def set_name(self, name): self.name = name def get_age(self): return self.age def set_age(self, age): self.age = age def get_date(self): return self.date def set_date(self, date): self.date = date def get_location(self): return self.location def set_location(self, location): self.location = location def get_cause(self): return self.cause def set_cause(self, cause): self.cause = cause def get_remarks(self): return self.remarks def set_remarks(self, remarks): self.remarks = remarks def get_source(self): return self.source def set_source(self, source): self.source = source
class Report: def __init__(self): self.set_age('') self.set_date('') self.set_cause('') self.set_location('') self.set_remarks('') self.set_source('') def clear(): self.data = [] def empty(self): return len(self.name) == 0 def get_name(self): return self.name def set_name(self, name): self.name = name def get_age(self): return self.age def set_age(self, age): self.age = age def get_date(self): return self.date def set_date(self, date): self.date = date def get_location(self): return self.location def set_location(self, location): self.location = location def get_cause(self): return self.cause def set_cause(self, cause): self.cause = cause def get_remarks(self): return self.remarks def set_remarks(self, remarks): self.remarks = remarks def get_source(self): return self.source def set_source(self, source): self.source = source
# -*- coding: utf-8 -*- class Type(object): """ Class who define a rule. yml files are read from heimdall/conf/rules/type_name.yml and used for Type Object instantiation Keyword Args: :param: name: type's name. :param: id: type's id. :param: desc: type's description. :param: path: type's path to yaml file. :param: rules: list of Rule Objects. :param: all: True if contains all Rule, False otherwise. :type: name: str :type: id: int :type: desc: str :type: path: list of str :type: rules: list of Rule Object :type: all: boolean :return: Type object :rtype: object """ def __init__(self, **kwargs): self.id = kwargs.get('id', 1) self.name = kwargs.get('name', '') self.desc = kwargs.get('desc', '') self.path = kwargs.get('path', '') self.rules = [] # List that contains all rules object in this type self.all = False def __str__(self): return super(Type, self).__str__() def __repr__(self): return super(Type, self).__repr__() def __setattr__(self, name, value): return object.__setattr__(self, name, value) def __getattribute__(self, name): return object.__getattribute__(self, name) def __iter__(self): del self.__dict__['all'] for k, v in self.__dict__.iteritems(): if k == 'rules': v = [] for r in self.rules: v.append(dict(r)) yield (k, v) def get_new_id(self): """ Return a new id available for a rule. :return: Length of list of all Rule Objects in rules attribute. :rtype: int """ return len(self.rules) + 1 def check_id_exist(self, id): """ Check if id exist in list of all Rule Objects. :param id: :type: id: int :return: If id exist return id, return False otherwise. :rtype: bool or int """ exist = False for i in self.rules: if str(i.id) == str(id): exist = i return exist def remove_rule(self, rule): """ Remove a Rule Object from Type. :param: rule: Rule Object that must be removed. :type: rule: Rule Object :return: Updated Type Object :rtype: Type Object """ self.rules.remove(rule) return self def add_rule(self, rule): """ Add a Rule Object to Type. :param: rule: Rule Object that must be added. :type: rule: Rule Object :return: Updated Type Object :rtype: Type Object """ self.rules.append(rule) return self
class Type(object): """ Class who define a rule. yml files are read from heimdall/conf/rules/type_name.yml and used for Type Object instantiation Keyword Args: :param: name: type's name. :param: id: type's id. :param: desc: type's description. :param: path: type's path to yaml file. :param: rules: list of Rule Objects. :param: all: True if contains all Rule, False otherwise. :type: name: str :type: id: int :type: desc: str :type: path: list of str :type: rules: list of Rule Object :type: all: boolean :return: Type object :rtype: object """ def __init__(self, **kwargs): self.id = kwargs.get('id', 1) self.name = kwargs.get('name', '') self.desc = kwargs.get('desc', '') self.path = kwargs.get('path', '') self.rules = [] self.all = False def __str__(self): return super(Type, self).__str__() def __repr__(self): return super(Type, self).__repr__() def __setattr__(self, name, value): return object.__setattr__(self, name, value) def __getattribute__(self, name): return object.__getattribute__(self, name) def __iter__(self): del self.__dict__['all'] for (k, v) in self.__dict__.iteritems(): if k == 'rules': v = [] for r in self.rules: v.append(dict(r)) yield (k, v) def get_new_id(self): """ Return a new id available for a rule. :return: Length of list of all Rule Objects in rules attribute. :rtype: int """ return len(self.rules) + 1 def check_id_exist(self, id): """ Check if id exist in list of all Rule Objects. :param id: :type: id: int :return: If id exist return id, return False otherwise. :rtype: bool or int """ exist = False for i in self.rules: if str(i.id) == str(id): exist = i return exist def remove_rule(self, rule): """ Remove a Rule Object from Type. :param: rule: Rule Object that must be removed. :type: rule: Rule Object :return: Updated Type Object :rtype: Type Object """ self.rules.remove(rule) return self def add_rule(self, rule): """ Add a Rule Object to Type. :param: rule: Rule Object that must be added. :type: rule: Rule Object :return: Updated Type Object :rtype: Type Object """ self.rules.append(rule) return self
class AbstractMiddleware: def send_data(self): pass #def process_middleware_response(self): # pass
class Abstractmiddleware: def send_data(self): pass
# mock.py: module providing mock 10xGenomics data for testing # Copyright (C) University of Manchester 2018 Peter Briggs # ######################################################################## QC_SUMMARY_JSON = """{ "10x_software_version": "cellranger 2.2.0", "PhiX_aligned": null, "PhiX_error_worst_tile": null, "bcl2fastq_args": "bcl2fastq --minimum-trimmed-read-length 8 --mask-short-adapter-reads 8 --create-fastq-for-index-reads --ignore-missing-positions --ignore-missing-filter --ignore-missing-bcls --use-bases-mask=y26,I8,y98 -R /net/lustre/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/primary_data/180926_MN00218_0021_A000H2GYCG --output-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/bcl2fastq --interop-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/BCL2FASTQ_WITH_SAMPLESHEET/fork0/chnk0-u4f20ace4f5/files/interop_path --sample-sheet=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/PREPARE_SAMPLESHEET/fork0/chnk0-u4f20ace4cb/files/samplesheet.csv -p 6 -d 6 -r 6 -w 6", "bcl2fastq_version": "2.17.1.14", "experiment_name": "", "fwhm_A": null, "fwhm_C": null, "fwhm_G": null, "fwhm_T": null, "index1_PhiX_error_by_cycle": null, "index1_mean_phasing": null, "index1_mean_prephasing": null, "index1_q20_fraction": null, "index1_q20_fraction_by_cycle": null, "index1_q30_fraction": null, "index1_q30_fraction_by_cycle": null, "index2_PhiX_error_by_cycle": null, "index2_mean_phasing": null, "index2_mean_prephasing": null, "index2_q20_fraction": null, "index2_q20_fraction_by_cycle": null, "index2_q30_fraction": null, "index2_q30_fraction_by_cycle": null, "intensity_A": null, "intensity_C": null, "intensity_G": null, "intensity_T": null, "lanecount": 1, "mean_cluster_density": null, "mean_cluster_density_pf": null, "num_clusters": null, "percent_pf_clusters": null, "read1_PhiX_error_by_cycle": null, "read1_mean_phasing": null, "read1_mean_prephasing": null, "read1_q20_fraction": null, "read1_q20_fraction_by_cycle": null, "read1_q30_fraction": null, "read1_q30_fraction_by_cycle": null, "read2_PhiX_error_by_cycle": null, "read2_mean_phasing": null, "read2_mean_prephasing": null, "read2_q20_fraction": null, "read2_q20_fraction_by_cycle": null, "read2_q30_fraction": null, "read2_q30_fraction_by_cycle": null, "rta_version": "unknown", "run_id": "180926_MN00218_0021_A000H2GYCG", "sample_qc": { "smpl1": { "1": { "barcode_exact_match_ratio": 0.940013016010283, "barcode_q30_base_ratio": 0.9468684602040338, "bc_on_whitelist": 0.9634447859958355, "gem_count_estimate": 68214, "mean_barcode_qscore": 35.47116735755179, "number_reads": 3388135, "read1_q30_base_ratio": 0.9460734878931605, "read2_q30_base_ratio": 0.7687690301946499 }, "all": { "barcode_exact_match_ratio": 0.940013016010283, "barcode_q30_base_ratio": 0.9468684602040338, "bc_on_whitelist": 0.9634447859958355, "gem_count_estimate": 68214, "mean_barcode_qscore": 35.47116735755179, "number_reads": 3388135, "read1_q30_base_ratio": 0.9460734878931605, "read2_q30_base_ratio": 0.7687690301946499 } }, "smpl2": { "1": { "barcode_exact_match_ratio": 0.9412661883398474, "barcode_q30_base_ratio": 0.9483778169720642, "bc_on_whitelist": 0.9653697937148712, "gem_count_estimate": 21399, "mean_barcode_qscore": 35.50137749763865, "number_reads": 2990424, "read1_q30_base_ratio": 0.9474780353080827, "read2_q30_base_ratio": 0.7802990769663007 }, "all": { "barcode_exact_match_ratio": 0.9412661883398474, "barcode_q30_base_ratio": 0.9483778169720642, "bc_on_whitelist": 0.9653697937148712, "gem_count_estimate": 21399, "mean_barcode_qscore": 35.50137749763865, "number_reads": 2990424, "read1_q30_base_ratio": 0.9474780353080827, "read2_q30_base_ratio": 0.7802990769663007 } } }, "signoise_ratio": null, "start_datetime": "None", "surfacecount": 2, "swathcount": 3, "tilecount": 6, "total_cluster_density": null, "total_cluster_density_pf": null, "yield": null, "yield_pf": null, "yield_pf_q30": null } """ CELLRANGER_QC_SUMMARY = """<html> <head> <title>mkfastq QC report</title> <style type="text/css"> h1 { background-color: #42AEC2; color: white; padding: 5px 10px; } h2 { background-color: #8CC63F; color: white; display: inline-block; padding: 5px 15px; margin: 0; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } h3, h4 { background-color: grey; color: white; display: block; padding: 5px 15px; margin: 0; border-top-left-radius: 20px; border-bottom-right-radius: 20px; } table { margin: 10 10; border: solid 1px grey; background-color: white; } th { background-color: grey; color: white; padding: 2px 5px; } td { text-align: left; vertical-align: top; padding: 2px 5px; border-bottom: solid 1px lightgray; } td.param { background-color: grey; color: white; padding: 2px 5px; font-weight: bold; } p.footer { font-style: italic; font-size: 70%; } table { font-size: 80%; font-family: sans-serif; } td { text-align: right; }</style> </head> <body> <h1>mkfastq QC report</h1> <div id='toc'> <h2>Contents</h2> <ul><li><a href='#General_information'>General information</a></li><li><a href='#Sample_smpl1'>Sample: smpl1</a></li><li><a href='#Sample_smpl2'>Sample: smpl2</a></li></ul> </div> <div id='General_information'> <h2>General information</h2> <table> <tr><th>Parameter</th><th>Value</th></tr> <tr><td>run_id</td><td>180926_MN00218_0021_A000H2GYCG</td></tr> <tr><td>experiment_name</td><td></td></tr> <tr><td>10x_software_version</td><td>cellranger 2.2.0</td></tr> <tr><td>bcl2fastq_version</td><td>2.17.1.14</td></tr> <tr><td>bcl2fastq_args</td><td>bcl2fastq --minimum-trimmed-read-length 8 --mask-short-adapter-reads 8 --create-fastq-for-index-reads --ignore-missing-positions --ignore-missing-filter --ignore-missing-bcls --use-bases-mask=y26,I8,y98 -R /net/lustre/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/primary_data/180926_MN00218_0021_A000H2GYCG --output-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/bcl2fastq --interop-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/BCL2FASTQ_WITH_SAMPLESHEET/fork0/chnk0-u4f20ace4f5/files/interop_path --sample-sheet=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/PREPARE_SAMPLESHEET/fork0/chnk0-u4f20ace4cb/files/samplesheet.csv -p 6 -d 6 -r 6 -w 6</td></tr> <tr><td>rta_version</td><td>unknown</td></tr> </table> </div> <div id='Sample_smpl1'> <h2>Sample: smpl1</h2> <table> <tr><th></th><th>1</th><th>all</th></tr> <tr><td>bc_on_whitelist</td><td>0.966331905673</td><td>0.966331905673</td></tr> <tr><td>barcode_exact_match_ratio</td><td>0.942857435466</td><td>0.942857435466</td></tr> <tr><td>read2_q30_base_ratio</td><td>0.772020178873</td><td>0.772020178873</td></tr> <tr><td>gem_count_estimate</td><td>39745</td><td>39745</td></tr> <tr><td>number_reads</td><td>2831672</td><td>2831672</td></tr> <tr><td>read1_q30_base_ratio</td><td>0.946857262157</td><td>0.946857262157</td></tr> <tr><td>mean_barcode_qscore</td><td>35.4841823647</td><td>35.4841823647</td></tr> <tr><td>barcode_q30_base_ratio</td><td>0.947610600507</td><td>0.947610600507</td></tr> </table> </div> <div id='Sample_smpl2'> <h2>Sample: smpl2</h2> <table> <tr><th></th><th>1</th><th>all</th></tr> <tr><td>bc_on_whitelist</td><td>0.967838002215</td><td>0.967838002215</td></tr> <tr><td>barcode_exact_match_ratio</td><td>0.943587582063</td><td>0.943587582063</td></tr> <tr><td>read2_q30_base_ratio</td><td>0.772472408134</td><td>0.772472408134</td></tr> <tr><td>gem_count_estimate</td><td>13063</td><td>13063</td></tr> <tr><td>number_reads</td><td>2972732</td><td>2972732</td></tr> <tr><td>read1_q30_base_ratio</td><td>0.946434513574</td><td>0.946434513574</td></tr> <tr><td>mean_barcode_qscore</td><td>35.4759437333</td><td>35.4759437333</td></tr> <tr><td>barcode_q30_base_ratio</td><td>0.947180621102</td><td>0.947180621102</td></tr> </table> </div></body> </html> """ METRICS_SUMMARY = """Estimated Number of Cells,Mean Reads per Cell,Median Genes per Cell,Number of Reads,Valid Barcodes,Reads Mapped Confidently to Transcriptome,Reads Mapped Confidently to Exonic Regions,Reads Mapped Confidently to Intronic Regions,Reads Mapped Confidently to Intergenic Regions,Reads Mapped Antisense to Gene,Sequencing Saturation,Q30 Bases in Barcode,Q30 Bases in RNA Read,Q30 Bases in Sample Index,Q30 Bases in UMI,Fraction Reads in Cells,Total Genes Detected,Median UMI Counts per Cell "2,272","107,875","1,282","245,093,084",98.3%,69.6%,71.9%,6.1%,3.2%,4.4%,51.3%,98.5%,79.2%,93.6%,98.5%,12.0%,"16,437","2,934" """ # Cellranger ATAC < 2.0.0 ATAC_SUMMARY = """annotated_cells,bc_q30_bases_fract,cellranger-atac_version,cells_detected,frac_cut_fragments_in_peaks,frac_fragments_nfr,frac_fragments_nfr_or_nuc,frac_fragments_nuc,frac_fragments_overlapping_peaks,frac_fragments_overlapping_targets,frac_mapped_confidently,frac_waste_chimeric,frac_waste_duplicate,frac_waste_lowmapq,frac_waste_mitochondrial,frac_waste_no_barcode,frac_waste_non_cell_barcode,frac_waste_overall_nondup,frac_waste_total,frac_waste_unmapped,median_fragments_per_cell,median_per_cell_unique_fragments_at_30000_RRPC,median_per_cell_unique_fragments_at_50000_RRPC,num_fragments,r1_q30_bases_fract,r2_q30_bases_fract,si_q30_bases_fract,total_usable_fragments,tss_enrichment_score 5682,0.925226023701,1.0.1,6748,0.512279447992,0.392368676637,0.851506103882,0.459137427245,0.556428090013,0.575082094792,0.534945791083,0.00123066129161,0.160515305655,0.0892973647982,0.00899493352094,0.352907229061,0.0135851297269,0.471714266123,0.632229571777,0.00569894772443,16119.5,5769.94794925,8809.29425158,366582587,0.947387774999,0.941378123188,0.962708567847,134818235,6.91438390781 """ # Cellranger ATAC 2.0.0 ATAC_SUMMARY_2_0_0 = """Sample ID,Genome,Pipeline version,Estimated number of cells,Confidently mapped read pairs,Estimated bulk library complexity,Fraction of genome in peaks,Fraction of high-quality fragments in cells,Fraction of high-quality fragments overlapping TSS,Fraction of high-quality fragments overlapping peaks,Fraction of transposition events in peaks in cells,Fragments flanking a single nucleosome,Fragments in nucleosome-free regions,Mean raw read pairs per cell,Median high-quality fragments per cell,Non-nuclear read pairs,Number of peaks,Percent duplicates,Q30 bases in barcode,Q30 bases in read 1,Q30 bases in read 2,Q30 bases in sample index i1,Sequenced read pairs,Sequencing saturation,TSS enrichment score,Unmapped read pairs,Valid barcodes ATAC_1,GRCh38,cellranger-atac-2.0.0,3582,0.9223,467083069.2000,0.0631,0.8358,0.2910,0.4856,0.4571,0.3372,0.5777,111103.6343,51354.5000,0.0034,228838,0.3622,0.9328,0.9640,0.9348,0.9632,397973218,0.4853,6.8333,0.0102,0.9747 """ MULTIOME_SUMMARY = """Sample ID,Pipeline version,Genome,Estimated number of cells,ATAC Confidently mapped read pairs,ATAC Fraction of genome in peaks,ATAC Fraction of high-quality fragments in cells,ATAC Fraction of high-quality fragments overlapping TSS,ATAC Fraction of high-quality fragments overlapping peaks,ATAC Fraction of transposition events in peaks in cells,ATAC Mean raw read pairs per cell,ATAC Median high-quality fragments per cell,ATAC Non-nuclear read pairs,ATAC Number of peaks,ATAC Percent duplicates,ATAC Q30 bases in barcode,ATAC Q30 bases in read 1,ATAC Q30 bases in read 2,ATAC Q30 bases in sample index i1,ATAC Sequenced read pairs,ATAC TSS enrichment score,ATAC Unmapped read pairs,ATAC Valid barcodes,Feature linkages detected,GEX Fraction of transcriptomic reads in cells,GEX Mean raw reads per cell,GEX Median UMI counts per cell,GEX Median genes per cell,GEX Percent duplicates,GEX Q30 bases in UMI,GEX Q30 bases in barcode,GEX Q30 bases in read 2,GEX Q30 bases in sample index i1,GEX Q30 bases in sample index i2,GEX Reads mapped antisense to gene,GEX Reads mapped confidently to exonic regions,GEX Reads mapped confidently to genome,GEX Reads mapped confidently to intergenic regions,GEX Reads mapped confidently to intronic regions,GEX Reads mapped confidently to transcriptome,GEX Reads mapped to genome,GEX Reads with TSO,GEX Sequenced read pairs,GEX Total genes detected,GEX Valid UMIs,GEX Valid barcodes,Linked genes,Linked peaks PB_ATAC_multiome,cellranger-arc-1.0.0,GRCh38,744,0.892,0.02691,0.54188,0.4003,0.59379,0.57403,404636.24194,8079,0.02154,80637,0.942,0.96564,0.96911,0.96414,0.97688,301049364,9.00247,0.01356,0.98281,20374,0.36971,569488.26747,5441,1490,0.9288,0.96798,0.97522,0.887,0.98441,0.97715,0.0497,0.48039,0.76483,0.03809,0.24635,0.67216,0.89641,0.2635,423699271,24699,0.99958,0.96795,3930,14251 """ MULTIOME_SUMMARY_2_0_0 = """Sample ID,Genome,Pipeline version,Estimated number of cells,Feature linkages detected,Linked genes,Linked peaks,ATAC Confidently mapped read pairs,ATAC Fraction of genome in peaks,ATAC Fraction of high-quality fragments in cells,ATAC Fraction of high-quality fragments overlapping TSS,ATAC Fraction of high-quality fragments overlapping peaks,ATAC Fraction of transposition events in peaks in cells,ATAC Mean raw read pairs per cell,ATAC Median high-quality fragments per cell,ATAC Non-nuclear read pairs,ATAC Number of peaks,ATAC Percent duplicates,ATAC Q30 bases in barcode,ATAC Q30 bases in read 1,ATAC Q30 bases in read 2,ATAC Q30 bases in sample index i1,ATAC Sequenced read pairs,ATAC TSS enrichment score,ATAC Unmapped read pairs,ATAC Valid barcodes,GEX Fraction of transcriptomic reads in cells,GEX Mean raw reads per cell,GEX Median UMI counts per cell,GEX Median genes per cell,GEX Percent duplicates,GEX Q30 bases in UMI,GEX Q30 bases in barcode,GEX Q30 bases in read 2,GEX Reads mapped antisense to gene,GEX Reads mapped confidently to exonic regions,GEX Reads mapped confidently to genome,GEX Reads mapped confidently to intergenic regions,GEX Reads mapped confidently to intronic regions,GEX Reads mapped confidently to transcriptome,GEX Reads mapped to genome,GEX Reads with TSO,GEX Sequenced read pairs,GEX Total genes detected,GEX Valid UMIs,GEX Valid barcodes PB_ATAC_multiome,GRCh38,cellranger-arc-2.0.0,785,2,2,2,0.7659,0.0125,0.7934,0.5388,0.5809,0.5591,127.3885,9.0000,0.6139,167,0.0624,0.8433,0.9228,0.9009,0.8869,100000,40.0000,0.0881,0.9838,0.8720,509.5541,161.0000,15.0000,0.3135,0.9698,0.9707,0.9550,0.0241,0.6598,0.8938,0.2190,0.0150,0.6503,0.9612,0.1222,400000,135,1.0000,0.9956 """ CELLPLEX_METRICS_SUMMARY = """Library or Sample,Library Type,Grouped By,Group Name,Metric Name,Metric Value Library,Gene Expression,Fastq ID,JR_10K_1_gex,Number of reads,"384,834,949" Library,Gene Expression,Fastq ID,JR_10K_1_gex,Number of short reads skipped,0 Library,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 RNA read,93.5% Library,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 UMI,94.3% Library,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 barcodes,95.8% Library,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes identified as multiplets,903 (6.65%) Library,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%) Library,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to a sample,11050 (81.32%) Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped antisense,1.29% Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to exonic regions,66.79% Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to genome,94.53% Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to intergenic regions,4.18% Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to intronic regions,23.57% Library,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to transcriptome,64.13% Library,Gene Expression,Physical library ID,JR_10K_gex,Estimated number of cells,"13,588" Library,Gene Expression,Physical library ID,JR_10K_gex,Fraction reads in cells,92.18% Library,Gene Expression,Physical library ID,JR_10K_gex,Mapped to genome,97.28% Library,Gene Expression,Physical library ID,JR_10K_gex,Mean reads per cell,"28,322" Library,Gene Expression,Physical library ID,JR_10K_gex,Number of reads,"384,834,949" Library,Gene Expression,Physical library ID,JR_10K_gex,Number of reads in the library,"384,834,949" Library,Gene Expression,Physical library ID,JR_10K_gex,Sequencing saturation,20.38% Library,Gene Expression,Physical library ID,JR_10K_gex,Valid UMIs,99.96% Library,Gene Expression,Physical library ID,JR_10K_gex,Valid barcodes,98.53% Library,Multiplexing Capture,,,Cell-associated barcodes identified as multiplets,903 (6.65%) Library,Multiplexing Capture,,,Cells assigned to a sample,11050 (81.32%) Library,Multiplexing Capture,,,Estimated number of cell-associated barcodes,"13,588" Library,Multiplexing Capture,,,Median CMO UMIs per cell,"7,963" Library,Multiplexing Capture,,,Number of samples assigned at least one cell,2 Library,Multiplexing Capture,,,Singlet capture ratio,0.87 Library,Multiplexing Capture,CMO Name,CMO301,CMO signal-to-noise ratio,5.09 Library,Multiplexing Capture,CMO Name,CMO301,Cells assigned to CMO,53.17% Library,Multiplexing Capture,CMO Name,CMO301,Fraction reads in cell-associated barcodes,70.78% Library,Multiplexing Capture,CMO Name,CMO302,CMO signal-to-noise ratio,3.57 Library,Multiplexing Capture,CMO Name,CMO302,Cells assigned to CMO,46.83% Library,Multiplexing Capture,CMO Name,CMO302,Fraction reads in cell-associated barcodes,55.19% Library,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Number of reads,"215,531,826" Library,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Number of short reads skipped,0 Library,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 RNA read,96.8% Library,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 UMI,95.5% Library,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 barcodes,95.8% Library,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Number of reads,"538,688" Library,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Number of short reads skipped,0 Library,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 RNA read,97.1% Library,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 UMI,95.9% Library,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 barcodes,95.9% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cell-associated barcodes identified as multiplets,903 (6.65%) Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%) Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cells assigned to a sample,11050 (81.32%) Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Estimated number of cell-associated barcodes,"13,588" Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction CMO reads,98.30% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction CMO reads usable,63.49% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction reads from multiplets,7.07% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction reads in cell-associated barcodes,64.85% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction unrecognized CMO,1.70% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Mean reads per cell-associated barcode,"15,568" Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Median CMO UMIs per cell-associated barcode,"7,735" Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Number of reads,"216,070,514" Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Samples assigned at least one cell,2 Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Valid UMIs,99.99% Library,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Valid barcodes,99.59% Sample,Gene Expression,,,Cells,"5,175" Sample,Gene Expression,,,Confidently mapped antisense,1.38% Sample,Gene Expression,,,Confidently mapped to exonic regions,68.40% Sample,Gene Expression,,,Confidently mapped to genome,95.05% Sample,Gene Expression,,,Confidently mapped to intergenic regions,3.77% Sample,Gene Expression,,,Confidently mapped to intronic regions,22.88% Sample,Gene Expression,,,Confidently mapped to transcriptome,65.67% Sample,Gene Expression,,,Mapped to genome,97.66% Sample,Gene Expression,,,Median UMI counts per cell,"10,515" Sample,Gene Expression,,,Median genes per cell,"3,086" Sample,Gene Expression,,,Median reads per cell,"20,052" Sample,Gene Expression,,,Number of reads assigned to the sample,"114,898,392" Sample,Gene Expression,,,Total genes detected,"21,260" Sample,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes identified as multiplets,903 (6.65%) Sample,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%) Sample,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to other samples,5875 (43.24%) Sample,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to this sample,5175 (38.09%) >>>>>>> tenx_genomics_utils: update MetricsSummary to handle multi-line files, and implement new MultiplexSummary class. """ MULTIOME_LIBRARIES = """#Local sample\tLinked sample PB2_ATAC\tNEXTSEQ_210111/12:PB_GEX/PB2_GEX PB1_ATAC\tNEXTSEQ_210111/12:PB_GEX/PB1_GEX """
qc_summary_json = '{\n "10x_software_version": "cellranger 2.2.0", \n "PhiX_aligned": null, \n "PhiX_error_worst_tile": null, \n "bcl2fastq_args": "bcl2fastq --minimum-trimmed-read-length 8 --mask-short-adapter-reads 8 --create-fastq-for-index-reads --ignore-missing-positions --ignore-missing-filter --ignore-missing-bcls --use-bases-mask=y26,I8,y98 -R /net/lustre/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/primary_data/180926_MN00218_0021_A000H2GYCG --output-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/bcl2fastq --interop-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/BCL2FASTQ_WITH_SAMPLESHEET/fork0/chnk0-u4f20ace4f5/files/interop_path --sample-sheet=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/PREPARE_SAMPLESHEET/fork0/chnk0-u4f20ace4cb/files/samplesheet.csv -p 6 -d 6 -r 6 -w 6", \n "bcl2fastq_version": "2.17.1.14", \n "experiment_name": "", \n "fwhm_A": null, \n "fwhm_C": null, \n "fwhm_G": null, \n "fwhm_T": null, \n "index1_PhiX_error_by_cycle": null, \n "index1_mean_phasing": null, \n "index1_mean_prephasing": null, \n "index1_q20_fraction": null, \n "index1_q20_fraction_by_cycle": null, \n "index1_q30_fraction": null, \n "index1_q30_fraction_by_cycle": null, \n "index2_PhiX_error_by_cycle": null, \n "index2_mean_phasing": null, \n "index2_mean_prephasing": null, \n "index2_q20_fraction": null, \n "index2_q20_fraction_by_cycle": null, \n "index2_q30_fraction": null, \n "index2_q30_fraction_by_cycle": null, \n "intensity_A": null, \n "intensity_C": null, \n "intensity_G": null, \n "intensity_T": null, \n "lanecount": 1, \n "mean_cluster_density": null, \n "mean_cluster_density_pf": null, \n "num_clusters": null, \n "percent_pf_clusters": null, \n "read1_PhiX_error_by_cycle": null, \n "read1_mean_phasing": null, \n "read1_mean_prephasing": null, \n "read1_q20_fraction": null, \n "read1_q20_fraction_by_cycle": null, \n "read1_q30_fraction": null, \n "read1_q30_fraction_by_cycle": null, \n "read2_PhiX_error_by_cycle": null, \n "read2_mean_phasing": null, \n "read2_mean_prephasing": null, \n "read2_q20_fraction": null, \n "read2_q20_fraction_by_cycle": null, \n "read2_q30_fraction": null, \n "read2_q30_fraction_by_cycle": null, \n "rta_version": "unknown", \n "run_id": "180926_MN00218_0021_A000H2GYCG", \n "sample_qc": {\n "smpl1": {\n "1": {\n "barcode_exact_match_ratio": 0.940013016010283, \n "barcode_q30_base_ratio": 0.9468684602040338, \n "bc_on_whitelist": 0.9634447859958355, \n "gem_count_estimate": 68214, \n "mean_barcode_qscore": 35.47116735755179, \n "number_reads": 3388135, \n "read1_q30_base_ratio": 0.9460734878931605, \n "read2_q30_base_ratio": 0.7687690301946499\n }, \n "all": {\n "barcode_exact_match_ratio": 0.940013016010283, \n "barcode_q30_base_ratio": 0.9468684602040338, \n "bc_on_whitelist": 0.9634447859958355, \n "gem_count_estimate": 68214, \n "mean_barcode_qscore": 35.47116735755179, \n "number_reads": 3388135, \n "read1_q30_base_ratio": 0.9460734878931605, \n "read2_q30_base_ratio": 0.7687690301946499\n }\n }, \n "smpl2": {\n "1": {\n "barcode_exact_match_ratio": 0.9412661883398474, \n "barcode_q30_base_ratio": 0.9483778169720642, \n "bc_on_whitelist": 0.9653697937148712, \n "gem_count_estimate": 21399, \n "mean_barcode_qscore": 35.50137749763865, \n "number_reads": 2990424, \n "read1_q30_base_ratio": 0.9474780353080827, \n "read2_q30_base_ratio": 0.7802990769663007\n }, \n "all": {\n "barcode_exact_match_ratio": 0.9412661883398474, \n "barcode_q30_base_ratio": 0.9483778169720642, \n "bc_on_whitelist": 0.9653697937148712, \n "gem_count_estimate": 21399, \n "mean_barcode_qscore": 35.50137749763865, \n "number_reads": 2990424, \n "read1_q30_base_ratio": 0.9474780353080827, \n "read2_q30_base_ratio": 0.7802990769663007\n }\n }\n }, \n "signoise_ratio": null, \n "start_datetime": "None", \n "surfacecount": 2, \n "swathcount": 3, \n "tilecount": 6, \n "total_cluster_density": null, \n "total_cluster_density_pf": null, \n "yield": null, \n "yield_pf": null, \n "yield_pf_q30": null\n}\n' cellranger_qc_summary = '<html>\n<head>\n<title>mkfastq QC report</title>\n<style type="text/css">\n\nh1 { background-color: #42AEC2;\n color: white;\n padding: 5px 10px; }\nh2 { background-color: #8CC63F;\n color: white;\n display: inline-block;\n padding: 5px 15px;\n margin: 0;\n border-top-left-radius: 20px;\n border-bottom-right-radius: 20px; }\nh3, h4 { background-color: grey;\n color: white;\n display: block;\n padding: 5px 15px;\n margin: 0;\n border-top-left-radius: 20px;\n border-bottom-right-radius: 20px; }\ntable { margin: 10 10;\n border: solid 1px grey;\n background-color: white; }\nth { background-color: grey;\n color: white;\n padding: 2px 5px; }\ntd { text-align: left;\n vertical-align: top;\n padding: 2px 5px;\n border-bottom: solid 1px lightgray; }\ntd.param { background-color: grey;\n color: white;\n padding: 2px 5px;\n font-weight: bold; }\np.footer { font-style: italic;\n font-size: 70%; }\n\ntable { font-size: 80%;\n font-family: sans-serif; }\ntd { text-align: right; }</style>\n</head>\n<body>\n<h1>mkfastq QC report</h1>\n<div id=\'toc\'>\n<h2>Contents</h2>\n<ul><li><a href=\'#General_information\'>General information</a></li><li><a href=\'#Sample_smpl1\'>Sample: smpl1</a></li><li><a href=\'#Sample_smpl2\'>Sample: smpl2</a></li></ul>\n</div>\n<div id=\'General_information\'>\n<h2>General information</h2>\n<table>\n<tr><th>Parameter</th><th>Value</th></tr>\n<tr><td>run_id</td><td>180926_MN00218_0021_A000H2GYCG</td></tr>\n<tr><td>experiment_name</td><td></td></tr>\n<tr><td>10x_software_version</td><td>cellranger 2.2.0</td></tr>\n<tr><td>bcl2fastq_version</td><td>2.17.1.14</td></tr>\n<tr><td>bcl2fastq_args</td><td>bcl2fastq --minimum-trimmed-read-length 8 --mask-short-adapter-reads 8 --create-fastq-for-index-reads --ignore-missing-positions --ignore-missing-filter --ignore-missing-bcls --use-bases-mask=y26,I8,y98 -R /net/lustre/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/primary_data/180926_MN00218_0021_A000H2GYCG --output-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/bcl2fastq --interop-dir=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/BCL2FASTQ_WITH_SAMPLESHEET/fork0/chnk0-u4f20ace4f5/files/interop_path --sample-sheet=/scratch/mqbsspbd/180926_MN00218_0021_A000H2GYCG_analysis/000H2GYCG/MAKE_FASTQS_CS/MAKE_FASTQS/PREPARE_SAMPLESHEET/fork0/chnk0-u4f20ace4cb/files/samplesheet.csv -p 6 -d 6 -r 6 -w 6</td></tr>\n<tr><td>rta_version</td><td>unknown</td></tr>\n</table>\n</div>\n<div id=\'Sample_smpl1\'>\n<h2>Sample: smpl1</h2>\n<table>\n<tr><th></th><th>1</th><th>all</th></tr>\n<tr><td>bc_on_whitelist</td><td>0.966331905673</td><td>0.966331905673</td></tr>\n<tr><td>barcode_exact_match_ratio</td><td>0.942857435466</td><td>0.942857435466</td></tr>\n<tr><td>read2_q30_base_ratio</td><td>0.772020178873</td><td>0.772020178873</td></tr>\n<tr><td>gem_count_estimate</td><td>39745</td><td>39745</td></tr>\n<tr><td>number_reads</td><td>2831672</td><td>2831672</td></tr>\n<tr><td>read1_q30_base_ratio</td><td>0.946857262157</td><td>0.946857262157</td></tr>\n<tr><td>mean_barcode_qscore</td><td>35.4841823647</td><td>35.4841823647</td></tr>\n<tr><td>barcode_q30_base_ratio</td><td>0.947610600507</td><td>0.947610600507</td></tr>\n</table>\n</div>\n<div id=\'Sample_smpl2\'>\n<h2>Sample: smpl2</h2>\n<table>\n<tr><th></th><th>1</th><th>all</th></tr>\n<tr><td>bc_on_whitelist</td><td>0.967838002215</td><td>0.967838002215</td></tr>\n<tr><td>barcode_exact_match_ratio</td><td>0.943587582063</td><td>0.943587582063</td></tr>\n<tr><td>read2_q30_base_ratio</td><td>0.772472408134</td><td>0.772472408134</td></tr>\n<tr><td>gem_count_estimate</td><td>13063</td><td>13063</td></tr>\n<tr><td>number_reads</td><td>2972732</td><td>2972732</td></tr>\n<tr><td>read1_q30_base_ratio</td><td>0.946434513574</td><td>0.946434513574</td></tr>\n<tr><td>mean_barcode_qscore</td><td>35.4759437333</td><td>35.4759437333</td></tr>\n<tr><td>barcode_q30_base_ratio</td><td>0.947180621102</td><td>0.947180621102</td></tr>\n</table>\n</div></body>\n</html>\n' metrics_summary = 'Estimated Number of Cells,Mean Reads per Cell,Median Genes per Cell,Number of Reads,Valid Barcodes,Reads Mapped Confidently to Transcriptome,Reads Mapped Confidently to Exonic Regions,Reads Mapped Confidently to Intronic Regions,Reads Mapped Confidently to Intergenic Regions,Reads Mapped Antisense to Gene,Sequencing Saturation,Q30 Bases in Barcode,Q30 Bases in RNA Read,Q30 Bases in Sample Index,Q30 Bases in UMI,Fraction Reads in Cells,Total Genes Detected,Median UMI Counts per Cell\n"2,272","107,875","1,282","245,093,084",98.3%,69.6%,71.9%,6.1%,3.2%,4.4%,51.3%,98.5%,79.2%,93.6%,98.5%,12.0%,"16,437","2,934"\n' atac_summary = 'annotated_cells,bc_q30_bases_fract,cellranger-atac_version,cells_detected,frac_cut_fragments_in_peaks,frac_fragments_nfr,frac_fragments_nfr_or_nuc,frac_fragments_nuc,frac_fragments_overlapping_peaks,frac_fragments_overlapping_targets,frac_mapped_confidently,frac_waste_chimeric,frac_waste_duplicate,frac_waste_lowmapq,frac_waste_mitochondrial,frac_waste_no_barcode,frac_waste_non_cell_barcode,frac_waste_overall_nondup,frac_waste_total,frac_waste_unmapped,median_fragments_per_cell,median_per_cell_unique_fragments_at_30000_RRPC,median_per_cell_unique_fragments_at_50000_RRPC,num_fragments,r1_q30_bases_fract,r2_q30_bases_fract,si_q30_bases_fract,total_usable_fragments,tss_enrichment_score\n5682,0.925226023701,1.0.1,6748,0.512279447992,0.392368676637,0.851506103882,0.459137427245,0.556428090013,0.575082094792,0.534945791083,0.00123066129161,0.160515305655,0.0892973647982,0.00899493352094,0.352907229061,0.0135851297269,0.471714266123,0.632229571777,0.00569894772443,16119.5,5769.94794925,8809.29425158,366582587,0.947387774999,0.941378123188,0.962708567847,134818235,6.91438390781\n' atac_summary_2_0_0 = 'Sample ID,Genome,Pipeline version,Estimated number of cells,Confidently mapped read pairs,Estimated bulk library complexity,Fraction of genome in peaks,Fraction of high-quality fragments in cells,Fraction of high-quality fragments overlapping TSS,Fraction of high-quality fragments overlapping peaks,Fraction of transposition events in peaks in cells,Fragments flanking a single nucleosome,Fragments in nucleosome-free regions,Mean raw read pairs per cell,Median high-quality fragments per cell,Non-nuclear read pairs,Number of peaks,Percent duplicates,Q30 bases in barcode,Q30 bases in read 1,Q30 bases in read 2,Q30 bases in sample index i1,Sequenced read pairs,Sequencing saturation,TSS enrichment score,Unmapped read pairs,Valid barcodes\nATAC_1,GRCh38,cellranger-atac-2.0.0,3582,0.9223,467083069.2000,0.0631,0.8358,0.2910,0.4856,0.4571,0.3372,0.5777,111103.6343,51354.5000,0.0034,228838,0.3622,0.9328,0.9640,0.9348,0.9632,397973218,0.4853,6.8333,0.0102,0.9747\n' multiome_summary = 'Sample ID,Pipeline version,Genome,Estimated number of cells,ATAC Confidently mapped read pairs,ATAC Fraction of genome in peaks,ATAC Fraction of high-quality fragments in cells,ATAC Fraction of high-quality fragments overlapping TSS,ATAC Fraction of high-quality fragments overlapping peaks,ATAC Fraction of transposition events in peaks in cells,ATAC Mean raw read pairs per cell,ATAC Median high-quality fragments per cell,ATAC Non-nuclear read pairs,ATAC Number of peaks,ATAC Percent duplicates,ATAC Q30 bases in barcode,ATAC Q30 bases in read 1,ATAC Q30 bases in read 2,ATAC Q30 bases in sample index i1,ATAC Sequenced read pairs,ATAC TSS enrichment score,ATAC Unmapped read pairs,ATAC Valid barcodes,Feature linkages detected,GEX Fraction of transcriptomic reads in cells,GEX Mean raw reads per cell,GEX Median UMI counts per cell,GEX Median genes per cell,GEX Percent duplicates,GEX Q30 bases in UMI,GEX Q30 bases in barcode,GEX Q30 bases in read 2,GEX Q30 bases in sample index i1,GEX Q30 bases in sample index i2,GEX Reads mapped antisense to gene,GEX Reads mapped confidently to exonic regions,GEX Reads mapped confidently to genome,GEX Reads mapped confidently to intergenic regions,GEX Reads mapped confidently to intronic regions,GEX Reads mapped confidently to transcriptome,GEX Reads mapped to genome,GEX Reads with TSO,GEX Sequenced read pairs,GEX Total genes detected,GEX Valid UMIs,GEX Valid barcodes,Linked genes,Linked peaks\nPB_ATAC_multiome,cellranger-arc-1.0.0,GRCh38,744,0.892,0.02691,0.54188,0.4003,0.59379,0.57403,404636.24194,8079,0.02154,80637,0.942,0.96564,0.96911,0.96414,0.97688,301049364,9.00247,0.01356,0.98281,20374,0.36971,569488.26747,5441,1490,0.9288,0.96798,0.97522,0.887,0.98441,0.97715,0.0497,0.48039,0.76483,0.03809,0.24635,0.67216,0.89641,0.2635,423699271,24699,0.99958,0.96795,3930,14251\n' multiome_summary_2_0_0 = 'Sample ID,Genome,Pipeline version,Estimated number of cells,Feature linkages detected,Linked genes,Linked peaks,ATAC Confidently mapped read pairs,ATAC Fraction of genome in peaks,ATAC Fraction of high-quality fragments in cells,ATAC Fraction of high-quality fragments overlapping TSS,ATAC Fraction of high-quality fragments overlapping peaks,ATAC Fraction of transposition events in peaks in cells,ATAC Mean raw read pairs per cell,ATAC Median high-quality fragments per cell,ATAC Non-nuclear read pairs,ATAC Number of peaks,ATAC Percent duplicates,ATAC Q30 bases in barcode,ATAC Q30 bases in read 1,ATAC Q30 bases in read 2,ATAC Q30 bases in sample index i1,ATAC Sequenced read pairs,ATAC TSS enrichment score,ATAC Unmapped read pairs,ATAC Valid barcodes,GEX Fraction of transcriptomic reads in cells,GEX Mean raw reads per cell,GEX Median UMI counts per cell,GEX Median genes per cell,GEX Percent duplicates,GEX Q30 bases in UMI,GEX Q30 bases in barcode,GEX Q30 bases in read 2,GEX Reads mapped antisense to gene,GEX Reads mapped confidently to exonic regions,GEX Reads mapped confidently to genome,GEX Reads mapped confidently to intergenic regions,GEX Reads mapped confidently to intronic regions,GEX Reads mapped confidently to transcriptome,GEX Reads mapped to genome,GEX Reads with TSO,GEX Sequenced read pairs,GEX Total genes detected,GEX Valid UMIs,GEX Valid barcodes\nPB_ATAC_multiome,GRCh38,cellranger-arc-2.0.0,785,2,2,2,0.7659,0.0125,0.7934,0.5388,0.5809,0.5591,127.3885,9.0000,0.6139,167,0.0624,0.8433,0.9228,0.9009,0.8869,100000,40.0000,0.0881,0.9838,0.8720,509.5541,161.0000,15.0000,0.3135,0.9698,0.9707,0.9550,0.0241,0.6598,0.8938,0.2190,0.0150,0.6503,0.9612,0.1222,400000,135,1.0000,0.9956\n' cellplex_metrics_summary = 'Library or Sample,Library Type,Grouped By,Group Name,Metric Name,Metric Value\nLibrary,Gene Expression,Fastq ID,JR_10K_1_gex,Number of reads,"384,834,949"\nLibrary,Gene Expression,Fastq ID,JR_10K_1_gex,Number of short reads skipped,0\nLibrary,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 RNA read,93.5%\nLibrary,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 UMI,94.3%\nLibrary,Gene Expression,Fastq ID,JR_10K_1_gex,Q30 barcodes,95.8%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes identified as multiplets,903 (6.65%)\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%)\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to a sample,11050 (81.32%)\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped antisense,1.29%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to exonic regions,66.79%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to genome,94.53%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to intergenic regions,4.18%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to intronic regions,23.57%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Confidently mapped to transcriptome,64.13%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Estimated number of cells,"13,588"\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Fraction reads in cells,92.18%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Mapped to genome,97.28%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Mean reads per cell,"28,322"\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Number of reads,"384,834,949"\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Number of reads in the library,"384,834,949"\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Sequencing saturation,20.38%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Valid UMIs,99.96%\nLibrary,Gene Expression,Physical library ID,JR_10K_gex,Valid barcodes,98.53%\nLibrary,Multiplexing Capture,,,Cell-associated barcodes identified as multiplets,903 (6.65%)\nLibrary,Multiplexing Capture,,,Cells assigned to a sample,11050 (81.32%)\nLibrary,Multiplexing Capture,,,Estimated number of cell-associated barcodes,"13,588"\nLibrary,Multiplexing Capture,,,Median CMO UMIs per cell,"7,963"\nLibrary,Multiplexing Capture,,,Number of samples assigned at least one cell,2\nLibrary,Multiplexing Capture,,,Singlet capture ratio,0.87\nLibrary,Multiplexing Capture,CMO Name,CMO301,CMO signal-to-noise ratio,5.09\nLibrary,Multiplexing Capture,CMO Name,CMO301,Cells assigned to CMO,53.17%\nLibrary,Multiplexing Capture,CMO Name,CMO301,Fraction reads in cell-associated barcodes,70.78%\nLibrary,Multiplexing Capture,CMO Name,CMO302,CMO signal-to-noise ratio,3.57\nLibrary,Multiplexing Capture,CMO Name,CMO302,Cells assigned to CMO,46.83%\nLibrary,Multiplexing Capture,CMO Name,CMO302,Fraction reads in cell-associated barcodes,55.19%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Number of reads,"215,531,826"\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Number of short reads skipped,0\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 RNA read,96.8%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 UMI,95.5%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_1_multiplex,Q30 barcodes,95.8%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Number of reads,"538,688"\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Number of short reads skipped,0\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 RNA read,97.1%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 UMI,95.9%\nLibrary,Multiplexing Capture,Fastq ID,JR_10K_2_multiplex,Q30 barcodes,95.9%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cell-associated barcodes identified as multiplets,903 (6.65%)\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%)\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Cells assigned to a sample,11050 (81.32%)\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Estimated number of cell-associated barcodes,"13,588"\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction CMO reads,98.30%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction CMO reads usable,63.49%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction reads from multiplets,7.07%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction reads in cell-associated barcodes,64.85%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Fraction unrecognized CMO,1.70%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Mean reads per cell-associated barcode,"15,568"\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Median CMO UMIs per cell-associated barcode,"7,735"\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Number of reads,"216,070,514"\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Samples assigned at least one cell,2\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Valid UMIs,99.99%\nLibrary,Multiplexing Capture,Physical library ID,JR_10K_multiplex,Valid barcodes,99.59%\nSample,Gene Expression,,,Cells,"5,175"\nSample,Gene Expression,,,Confidently mapped antisense,1.38%\nSample,Gene Expression,,,Confidently mapped to exonic regions,68.40%\nSample,Gene Expression,,,Confidently mapped to genome,95.05%\nSample,Gene Expression,,,Confidently mapped to intergenic regions,3.77%\nSample,Gene Expression,,,Confidently mapped to intronic regions,22.88%\nSample,Gene Expression,,,Confidently mapped to transcriptome,65.67%\nSample,Gene Expression,,,Mapped to genome,97.66%\nSample,Gene Expression,,,Median UMI counts per cell,"10,515"\nSample,Gene Expression,,,Median genes per cell,"3,086"\nSample,Gene Expression,,,Median reads per cell,"20,052"\nSample,Gene Expression,,,Number of reads assigned to the sample,"114,898,392"\nSample,Gene Expression,,,Total genes detected,"21,260"\nSample,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes identified as multiplets,903 (6.65%)\nSample,Gene Expression,Physical library ID,JR_10K_gex,Cell-associated barcodes not assigned any CMOs,1635 (12.03%)\nSample,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to other samples,5875 (43.24%)\nSample,Gene Expression,Physical library ID,JR_10K_gex,Cells assigned to this sample,5175 (38.09%)\n>>>>>>> tenx_genomics_utils: update MetricsSummary to handle multi-line files, and implement new MultiplexSummary class.\n' multiome_libraries = '#Local sample\tLinked sample\nPB2_ATAC\tNEXTSEQ_210111/12:PB_GEX/PB2_GEX\nPB1_ATAC\tNEXTSEQ_210111/12:PB_GEX/PB1_GEX\n'
# Lab 3: String Data Type # Exercise 1: The String Data Type myString="This is a string." print(myString) print(type(myString)) print(myString + " is of data type " + str(type(myString))) # Exercise 2: String Concatenation firstString="water" secondString="fall" thirdString= firstString + secondString print(thirdString) # Exercise 3: Input String name = input("What is your name? ") print(name) # Excercise 4: Format Output String color = input("What is your favorite color? ") animal = input("What is your favorite animal? ") print("{}, you like a {} {}!".format(name,color,animal))
my_string = 'This is a string.' print(myString) print(type(myString)) print(myString + ' is of data type ' + str(type(myString))) first_string = 'water' second_string = 'fall' third_string = firstString + secondString print(thirdString) name = input('What is your name? ') print(name) color = input('What is your favorite color? ') animal = input('What is your favorite animal? ') print('{}, you like a {} {}!'.format(name, color, animal))
"""this module produces a SyntaxError at execution time""" __revision__ = None def run(): """simple function""" if True: continue else: break if __name__ == '__main__': run()
"""this module produces a SyntaxError at execution time""" __revision__ = None def run(): """simple function""" if True: continue else: break if __name__ == '__main__': run()
def filter_child_dictionary(dictionary, key, value): newdict = {} for child_name in dictionary: child = dictionary[child_name] if not key in child: continue if str(child[key]) != str(value): continue newdict[child_name] = child return newdict def filter_child_attr(dictionary, key, available): newdict = {} for child_name in dictionary: child = dictionary[child_name] keyfound = key in child if keyfound == available: newdict[child_name] = child return newdict def filter_child_attr_exists(dictionary, key): return filter_child_attr(dictionary, key, True) def filter_child_attr_exists_not(dictionary, key): return filter_child_attr(dictionary, key, False) class FilterModule(object): def filters(self): return { 'filter_child_dictionary': filter_child_dictionary, 'filter_child_attr_exists': filter_child_attr_exists, 'filter_child_attr_exists_not': filter_child_attr_exists_not }
def filter_child_dictionary(dictionary, key, value): newdict = {} for child_name in dictionary: child = dictionary[child_name] if not key in child: continue if str(child[key]) != str(value): continue newdict[child_name] = child return newdict def filter_child_attr(dictionary, key, available): newdict = {} for child_name in dictionary: child = dictionary[child_name] keyfound = key in child if keyfound == available: newdict[child_name] = child return newdict def filter_child_attr_exists(dictionary, key): return filter_child_attr(dictionary, key, True) def filter_child_attr_exists_not(dictionary, key): return filter_child_attr(dictionary, key, False) class Filtermodule(object): def filters(self): return {'filter_child_dictionary': filter_child_dictionary, 'filter_child_attr_exists': filter_child_attr_exists, 'filter_child_attr_exists_not': filter_child_attr_exists_not}
""" Merged String Checker http://www.codewars.com/kata/54c9fcad28ec4c6e680011aa/train/python """ def is_merge(s, part1, part2): result = list(s) def findall(part): pointer = 0 for c in part: found = False for i in range(pointer, len(result)): if result[i] == c: pointer = i + 1 found = True break if not found: return False return True def removechar(part): for c in part: if c in result: result.remove(c) else: return False return True return findall(part1) and findall(part2) and removechar(part1 + part2) and len(result) == 0
""" Merged String Checker http://www.codewars.com/kata/54c9fcad28ec4c6e680011aa/train/python """ def is_merge(s, part1, part2): result = list(s) def findall(part): pointer = 0 for c in part: found = False for i in range(pointer, len(result)): if result[i] == c: pointer = i + 1 found = True break if not found: return False return True def removechar(part): for c in part: if c in result: result.remove(c) else: return False return True return findall(part1) and findall(part2) and removechar(part1 + part2) and (len(result) == 0)
# x = 0x0a # y = 0x02 # z = x & y # print(f'Hex: x = {x:02X}, y = {y:02X}, z = {z:02X}') # print(f'Bin: x = {x:08b}, y = {y:08b}, z = {z:08b}') x = 0x0a y = 0x05 z = x ^ y print(f'Hex: x = {x:02X}, y = {y:02X}, z = {z:02X}') print(f'Bin: x = {x:08b}, y = {y:08b}, z = {z:08b}') # x = 0x0a # y = 0x02 # z = x | y # print(f'Hex: x = {x:02X}, y = {y:02X}, z = {z:02X}') # print(f'Bin: x = {x:08b}, y = {y:08b}, z = {z:08b}')
x = 10 y = 5 z = x ^ y print(f'Hex: x = {x:02X}, y = {y:02X}, z = {z:02X}') print(f'Bin: x = {x:08b}, y = {y:08b}, z = {z:08b}')
"""Top-level package for Python Boilerplate.""" __author__ = """Evgeny Skosarev""" __email__ = 'skosarew@mail.ru' __version__ = '0.1.0'
"""Top-level package for Python Boilerplate.""" __author__ = 'Evgeny Skosarev' __email__ = 'skosarew@mail.ru' __version__ = '0.1.0'
## Script (Python) "getFotos" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters= ##title= root = context.portal_url.getPortalObject().getPhysicalPath()[1] path = '/' + root + '/multimidia/fotos' fotos = context.portal_catalog.searchResults(Type="Image", path=path) return fotos
root = context.portal_url.getPortalObject().getPhysicalPath()[1] path = '/' + root + '/multimidia/fotos' fotos = context.portal_catalog.searchResults(Type='Image', path=path) return fotos
# Exercise 8.5 def rotate_char(c, n): """Rotate a single character n places in the alphabet n is an integer """ # alpha_number and new_alpha_number will represent the # place in the alphabet (as distinct from the ASCII code) # So alpha_number('a')==0 # alpha_base is the ASCII code for the first letter of the # alphabet (different for upper and lower case) if c.islower(): alpha_base = ord('a') elif c.isupper(): alpha_base = ord('A') else: # Don't rotate character if it's not a letter return c # Position in alphabet, starting with a=0 alpha_number = ord(c) - alpha_base # New position in alphabet after shifting # The % 26 at the end is for modulo 26, so if we shift it # past z (or a to the left) it'll wrap around new_alpha_number = (alpha_number + n) % 26 # Add the new position in the alphabet to the base ASCII code for # 'a' or 'A' to get the new ASCII code, and use chr() to convert # that code back to a letter return chr(alpha_base + new_alpha_number) def rotate_word(s, n): """Rotate each character in s, n places in the alphabet. e.g. rotate('ab',2) returns 'cd' s: string n: integer to shift (cast to integer in case float is received) """ n=int(n) # Make sure n is integer # We'll build up the encoded version letter by letter, so # start with the empty string s_rot = '' for c in s: # ord(c) gives us the ASCII code for the character c # Adding n to that number gives the s_rot += rotate_char(c, n) return s_rot
def rotate_char(c, n): """Rotate a single character n places in the alphabet n is an integer """ if c.islower(): alpha_base = ord('a') elif c.isupper(): alpha_base = ord('A') else: return c alpha_number = ord(c) - alpha_base new_alpha_number = (alpha_number + n) % 26 return chr(alpha_base + new_alpha_number) def rotate_word(s, n): """Rotate each character in s, n places in the alphabet. e.g. rotate('ab',2) returns 'cd' s: string n: integer to shift (cast to integer in case float is received) """ n = int(n) s_rot = '' for c in s: s_rot += rotate_char(c, n) return s_rot
selfish_mining_strategy = \ [ [ # irrelevant ['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['w', '*', 'a', '*', '*', '*', '*', '*', '*', '*'], ['w', 'w', '*', 'a', '*', '*', '*', '*', '*', '*'], ['w', 'w', 'w', '*', 'a', '*', '*', '*', '*', '*'], ['w', 'w', 'w', 'w', '*', 'a', '*', '*', '*', '*'], ['w', 'w', 'w', 'w', 'w', '*', 'a', '*', '*', '*'], ['w', 'w', 'w', 'w', 'w', 'w', '*', 'a', '*', '*'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', '*', 'a', '*'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*', 'a'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*'] ], [ # relevant ['*', 'a', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'm', 'a', '*', '*', '*', '*', '*', '*', '*'], ['*', 'o', 'm', 'a', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'o', 'm', 'a', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'o', 'm', 'a', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'o', 'm', 'a', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'o', 'm', 'a', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'o', 'm', 'a', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'o', 'm', 'a'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'o', 'm'] ], [ # match ['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*'] ] ]
selfish_mining_strategy = [[['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['w', '*', 'a', '*', '*', '*', '*', '*', '*', '*'], ['w', 'w', '*', 'a', '*', '*', '*', '*', '*', '*'], ['w', 'w', 'w', '*', 'a', '*', '*', '*', '*', '*'], ['w', 'w', 'w', 'w', '*', 'a', '*', '*', '*', '*'], ['w', 'w', 'w', 'w', 'w', '*', 'a', '*', '*', '*'], ['w', 'w', 'w', 'w', 'w', 'w', '*', 'a', '*', '*'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', '*', 'a', '*'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*', 'a'], ['w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*']], [['*', 'a', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'm', 'a', '*', '*', '*', '*', '*', '*', '*'], ['*', 'o', 'm', 'a', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'o', 'm', 'a', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'o', 'm', 'a', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'o', 'm', 'a', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'o', 'm', 'a', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'o', 'm', 'a', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'o', 'm', 'a'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'o', 'm']], [['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', '*', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', '*', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', '*', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', '*', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', '*', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', '*', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', '*', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*', '*'], ['*', 'w', 'w', 'w', 'w', 'w', 'w', 'w', 'w', '*']]]
'''An example of an internal module within the package Although the intenals are not explicity exposed, they are still available via import mhlib mhlib.eg.MhEg().runMhEg() import mhlib.l2.l2 mhlib.l2.l2.L2EG_VAR '''
"""An example of an internal module within the package Although the intenals are not explicity exposed, they are still available via import mhlib mhlib.eg.MhEg().runMhEg() import mhlib.l2.l2 mhlib.l2.l2.L2EG_VAR """
# argparse TRAIN_ARGS = [ '-i', 'flowers', '-o', 'checkpoints', '-a', 'resnet101', '--input_size', '2048', '--output_size', '102', '--hidden_layers', '1024', '512', '--learning_rate', '0.001', '--epochs', '3', '--gpu' ] PREDICT_ARGS = [ '--input_img', 'flowers/test/1/image_06743.jpg', '--checkpoint', 'checkpoints/checkpoint.pth', '--top_k', '3', '--category_names', 'cat_to_name.json', '--gpu' ] # torchvision transforms NORMALIZE = [0.485, 0.456, 0.406] STD = [0.229, 0.224, 0.225] RESIZE = 255 CROP = 224
train_args = ['-i', 'flowers', '-o', 'checkpoints', '-a', 'resnet101', '--input_size', '2048', '--output_size', '102', '--hidden_layers', '1024', '512', '--learning_rate', '0.001', '--epochs', '3', '--gpu'] predict_args = ['--input_img', 'flowers/test/1/image_06743.jpg', '--checkpoint', 'checkpoints/checkpoint.pth', '--top_k', '3', '--category_names', 'cat_to_name.json', '--gpu'] normalize = [0.485, 0.456, 0.406] std = [0.229, 0.224, 0.225] resize = 255 crop = 224
""" the file was left blank with much intent and purpose Poetry needs it """
""" the file was left blank with much intent and purpose Poetry needs it """
def ResponseModel(data,message): return { "data":[data], "code":200, "message":message } def ResponseCreateModel(message): return { "data": 1, "code":201, "message":message } def ErrorResponseModel(error,code,message): return { "error":error, "code":code, "message":message }
def response_model(data, message): return {'data': [data], 'code': 200, 'message': message} def response_create_model(message): return {'data': 1, 'code': 201, 'message': message} def error_response_model(error, code, message): return {'error': error, 'code': code, 'message': message}
__author__ = 'davidl' class BaseMonitorDriver(object): def notify(self,fixture_id, info): print (info) def notify_blocking_request(self,fixture_id, info): print (info) return True
__author__ = 'davidl' class Basemonitordriver(object): def notify(self, fixture_id, info): print(info) def notify_blocking_request(self, fixture_id, info): print(info) return True
new_list = [] people = ['agnes', 'andrew','jane','peter'] for person in people: if person[0] == 'a': new_list.append(person) print(new_list)
new_list = [] people = ['agnes', 'andrew', 'jane', 'peter'] for person in people: if person[0] == 'a': new_list.append(person) print(new_list)
""" This file contains a function used to assign the correct type on a user entered equation. """ def type_check(some_input, memory): """ Assign the correct type on a user entered equation to avoid accomodate a failure to input numbers in an equation. :param some_input: an element from the user input list. :param memory: user answer stored for future use """ try: some_input = float(some_input) return some_input except ValueError: some_input = str(some_input) return some_input
""" This file contains a function used to assign the correct type on a user entered equation. """ def type_check(some_input, memory): """ Assign the correct type on a user entered equation to avoid accomodate a failure to input numbers in an equation. :param some_input: an element from the user input list. :param memory: user answer stored for future use """ try: some_input = float(some_input) return some_input except ValueError: some_input = str(some_input) return some_input
# -*- coding: utf-8 -*- #from gluon import * #from s3 import * # ============================================================================= class Daily(): """ Daily Maintenance Tasks """ def __call__(self): # @ToDo: cleanup scheduler logs return # END =========================================================================
class Daily: """ Daily Maintenance Tasks """ def __call__(self): return
#------------------------------------------------------------------------------ # Copyright (c) 2007 by Enthought, Inc. # All rights reserved. #------------------------------------------------------------------------------ """ Plug-ins for the Envisage application framework. Part of the EnvisagePlugins project of the Enthought Tool Suite. """
""" Plug-ins for the Envisage application framework. Part of the EnvisagePlugins project of the Enthought Tool Suite. """
try: num1 = int(input("TELL ME YOUR AGE\n")) num2 = int(input("TELL ME YOUR name\n")) print(num1 + num2) # print(num2) except Exception as dfdfe: print(dfdfe) print("HELLO\n")
try: num1 = int(input('TELL ME YOUR AGE\n')) num2 = int(input('TELL ME YOUR name\n')) print(num1 + num2) except Exception as dfdfe: print(dfdfe) print('HELLO\n')
# # PySNMP MIB module DFRAP-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/DFRAP-MIB # Produced by pysmi-0.3.4 at Wed May 1 12:42:12 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # OctetString, ObjectIdentifier, Integer = mibBuilder.importSymbols("ASN1", "OctetString", "ObjectIdentifier", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsIntersection, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsIntersection", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") NotificationType, TimeTicks, Counter32, Integer32, ObjectIdentity, MibIdentifier, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, Unsigned32, internet, Gauge32, Counter64, NotificationType, IpAddress, iso, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "TimeTicks", "Counter32", "Integer32", "ObjectIdentity", "MibIdentifier", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Unsigned32", "internet", "Gauge32", "Counter64", "NotificationType", "IpAddress", "iso", "Bits") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") private = MibIdentifier((1, 3, 6, 1, 4)) enterprises = MibIdentifier((1, 3, 6, 1, 4, 1)) sync = MibIdentifier((1, 3, 6, 1, 4, 1, 485)) dfrap = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6)) dfrapSystem = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 1)) dfrapSysTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 1, 1)) dfrapSysType = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysType.setDescription('A textual description of the system model identifier. for example: SYNC-DFRAP') dfrapSysSoftRev = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysSoftRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSoftRev.setDescription('Displays the Software Revision installed in this node.') dfrapSysHardRev = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysHardRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysHardRev.setDescription('Displays the Hardware Revision of the node.') dfrapSysNumT1Installed = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumT1Installed.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumT1Installed.setDescription('The number of T1 ports that are installed.') dfrapSysNumDdsInstalled = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumDdsInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDdsInstalled.setDescription('The number of DDS ports that are installed.') dfrapSysNumDteInstalled = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumDteInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDteInstalled.setDescription('The number of DTE ports that are installed.') dfrapSysNumMaintInstalled = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumMaintInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumMaintInstalled.setDescription('The number of Async Maintenance/Console ports that are installed.') dfrapSysName = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapSysName.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysName.setDescription('The user supplied name of the node. This object does not affect operation, but may be useful for network management.') dfrapSysSerialNo = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 12))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysSerialNo.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSerialNo.setDescription('The serial number of the board.') dfrapSysResetNode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(321))).clone(namedValues=NamedValues(("reset-node", 321)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapSysResetNode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysResetNode.setDescription('Command to reset the node. NODE WILL BE OFF-LINE AND USER DATA WILL BE INTERRUPTED FOR APPROXIMATELY 15 SECONDS. Full network recovery may take longer. ') dfrapSysAmtMemoryInstalled = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysAmtMemoryInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysAmtMemoryInstalled.setDescription('The amount of memory (RAM) installed (in megabytes).') dfrapSysLocation = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapSysLocation.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLocation.setDescription('The user supplied location of the node. This object does not affect operation, but may be useful for network management.') dfrapSysContact = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 13), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapSysContact.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysContact.setDescription('The user supplied contact information for the node. This object does not affect operation, but may be useful for network management.') dfrapSysPrompt = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 15), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapSysPrompt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysPrompt.setDescription('Configurable Command Line Interface (CLI) prompt. CLI is the User Interface protocol used for directly attached VT100 terminal access as well as Remote access via Telnet.') dfrapSysBootRev = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 16), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysBootRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysBootRev.setDescription('Displays the bootblock Software Revision installed in this node.') dfrapSysFeatureTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 1, 2)) dfrapSysSLIPSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysSLIPSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSLIPSupported.setDescription('Shows whether the unit has SLIP (Serial Line IP) capability. SLIP is a method for out-of-band management that connects through the asynchronous terminal port.') dfrapSysPPPSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysPPPSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysPPPSupported.setDescription('Shows whether the unit has PPP (Point to Point protocol) capability. PPP is a method for out-of-band management that connects through the asynchronous terminal port.') dfrapSysRDOSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysRDOSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysRDOSupported.setDescription('Shows whether the unit has Remote Dial Out capability.') dfrapSysETHSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysETHSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysETHSupported.setDescription('Shows whether the unit has direct Ethernet capability.') dfrapSysTKRSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysTKRSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysTKRSupported.setDescription('Shows whether the unit has direct Token Ring capability.') dfrapSysExtTimSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysExtTimSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysExtTimSupported.setDescription('Shows whether the unit has External Timing capability. This is the ability to derive WAN timing from the DTE port.') dfrapSysBRISupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysBRISupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysBRISupported.setDescription('Shows whether the unit has BRI (ISDN Basic Rate) capability.') dfrapSysSelDTESupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysSelDTESupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSelDTESupported.setDescription('Shows whether the unit has a Selectable DTE interface. This being the ability to select amongst various electrical interface formats (V.35, RS449, RS232, etc.) via software.') dfrapSysMLSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 10))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysMLSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysMLSupported.setDescription('Shows whether the unit supports MLs (out-of-band management links). N/A to frame relay networks.') dfrapSysNumDlcisSupported = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumDlcisSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDlcisSupported.setDescription('Shows how many DLCIs can be monitored for frame-based statistics. The unit will pass an unlimited number of DLCIs but will only collect statistics on this number (first come first served).') dfrapSysLTFNumDlcis = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysLTFNumDlcis.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLTFNumDlcis.setDescription('Shows how many DLCIs can be specified in the Long Term Statistics Filter.') dfrapSysLTFNumProtocols = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysLTFNumProtocols.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLTFNumProtocols.setDescription('Shows how many protocols can be specified in the Long Term Statistics Filter.') dfrapSysNumUserProtocols = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumUserProtocols.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumUserProtocols.setDescription('Shows how many protocols can be defined by the user. The user configures TCP/UDP ports which can be monitored as protocols. They are available for short term or long term statistics monitoring.') dfrapSysNumSnmpMgrs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumSnmpMgrs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumSnmpMgrs.setDescription('Shows how many SNMP managers can be programmed in the table dfrapCfgSnmpMngrTable. These managers are sent TRAPs.') dfrapSysNumDlciNames = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapSysNumDlciNames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDlciNames.setDescription('Shows how many DLCI names can be defined by the user in the table dfrapCfgFrPerfDlciNamesTable.') dfrapConfiguration = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2)) dfrapCfgMgmtTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1)) dfrapCfgIpTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1)) dfrapCfgIpMyIP = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 1), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpMyIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMyIP.setDescription('The IP address for this node.') dfrapCfgIpPeerIP = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpPeerIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpPeerIP.setDescription('This parameter is not used internally by the unit. It is intended to identify either the device directly connected to the SLIP port or, in Frame Relay applications, the address of the primary network management station.') dfrapCfgIpMask = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 3), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpMask.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMask.setDescription('The IP Subnet Mask (eg 255.255.255.0). This parameter should be consisent with the IP subnet address setting of the external internetworking equipment (router/frad).') dfrapCfgIpMaxMTU = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1500))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpMaxMTU.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMaxMTU.setDescription('The Maximum Transmission Unit is the size of the largest IP packet supported (including header). This value should be set to the lowest value supported by any equipment in the transmission path. For Frame Relay management the typical value is 1500. For SLIP management the typical value is 1006.') dfrapCfgIpChannel = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("slip-port", 2), ("in-band-dlci", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgIpChannel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpChannel.setDescription('This is the method by which IP traffic is being carried. Either via the SLIP port or a DLCI. This reflects how your Management scheme is configured (read only).') dfrapCfgIpTelnetEnable = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable-telnet", 1), ("disable-telnet", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpTelnetEnable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpTelnetEnable.setDescription('Enables/Disables the telnet feature. (1) enable-telnet (2) disable-telnet') dfrapCfgIpTelnetAutoLogOut = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 5, 10, 30, 60))).clone(namedValues=NamedValues(("autologout-at-15-minutes", 1), ("disable-autologout", 2), ("autologout-at-3-minutes", 3), ("autologout-at-5-minutes", 5), ("autologout-at-10-minutes", 10), ("autologout-at-30-minutes", 30), ("autologout-at-60-minutes", 60)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgIpTelnetAutoLogOut.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpTelnetAutoLogOut.setDescription('If Telnet Auto logout is enabled the unit will automatically disconnect from a Telnet session after a period of inactivity (absence of key strokes from remote terminal). (2) disables this feature (1) auto logout after 15 minutes inactivity (3) auto logout after 3 minutes inactivity (5) auto logout after 5 minutes inactivity (10) auto logout after 10 minutes inactivity (30) auto logout after 30 minutes inactivity (60) auto logout after 60 minutes inactivity') dfrapCfgTftpTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2)) dfrapCfgTftpInitiate = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgTftpInitiate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpInitiate.setDescription('Setting this object to a value that matches the TFTP Password will command the unit to attempt a TFTP file transfer. A TFTP profile including host ip address, dlci value, interface, and file name must first be configured.') dfrapCfgTftpIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpIpAddress.setDescription('The IP address of the TFTP host with which the unit will attempt to establish a TFTP session when initiated.') dfrapCfgTftpFilename = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 80))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpFilename.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpFilename.setDescription('The name of the file located on the TFTP host that will be transferred to the unit. Typically this is a product-specific software image that will be programmed into unit FLASH. The unit provides several levels of checking to verify the validity and integrity of this file. Note - depending upon the host, this file name may be case sensitive.') dfrapCfgTftpInterface = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("dte-interface", 1), ("dds-interface", 2), ("slip-interface", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpInterface.setDescription('The physical interface out which the TFTP host is located. This parameter is only required for Piggyback and Bi-directional in-band frame relay managed applications. With Local and Remote in-band and SLIP-based applications the interface is known and Sets to this will be ignored.') dfrapCfgTftpDlci = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 63487))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpDlci.setDescription('The local DLCI value on which the TFTP host can be reached. This DLCI should be active prior to initiating the TFTP session. This parameter is only required for Piggyback in-band frame relay managed applications. With Private management (Local, Remote or Bi-directional in-band applications) the DLCI is known and will be reported here (Sets will be ignored). In SLIP-based applications the DLCI value is not applicable and a value of -1 is reported (Sets will be ignored).') dfrapCfgTftpStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=NamedValues(("inactive", 1), ("requested", 2), ("transferring", 3), ("programming", 4), ("transfer-aborted", 5), ("host-no-reply", 6), ("file-not-found", 7), ("invalid-file", 8), ("corrupt-file", 9), ("successful", 10)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpStatus.setDescription('The status of current or most recent TFTP operation. (1) TFTP inactive, sets to this value will abort the session (2) TFTP requested (3) TFTP transferring (4) TFTP programming FLASH - unit will reset (5) TFTP fail: session aborted by user or error condition (6) TFTP fail: host no reply - verify TFTP profile and host (7) TFTP fail: file not found - verify file name and location (8) TFTP fail: invalid file - file rejected by unit as inappropriate (9) TFTP fail: corrupt file - session terminated due to checksum error (10) TFTP transfer successful and file has been verified') dfrapCfgTftpNumBytes = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgTftpNumBytes.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpNumBytes.setDescription("The number of Bytes from the ROM image that have been TFTP'd to the unit") dfrapCfgSnmpTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3)) dfrapCfgSnmpFrTrap = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpFrTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpFrTrap.setDescription('Controls whether or not the Frame Relay DLCI status change traps are issued. These traps are dfrapDLCIActiveTrap and dfrapDLCIInactiveTrap. When dfrapCfgSnmpFrTrap is enabled (1), a trap will be sent each time an individual DLCI changes status between active and inactive. When dfrapCfgSnmpFrTrap is disabled (2), the traps are not sent.') dfrapCfgSnmpTrapMuting = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10080))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpTrapMuting.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpTrapMuting.setDescription('Controls whether Traps are Sent or Muted. If traps are Muted then a single trap (#75) will be periodically issued by the unit at the programmed frequency. If Muting is Disabled then the full set of Trap events are reported accordingly. (0) Disable Trap Muting (30-10080) Trap Muting frequency in minutes.') dfrapCfgSnmpUtilTrapEnable = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpUtilTrapEnable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpUtilTrapEnable.setDescription('Enables or disables the sending of per-DLCI utilization traps. (1) enable utilization traps (2) disable utilization traps ') dfrapCfgSnmpMgrClearN = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 7), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgSnmpMgrClearN.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrClearN.setDescription(' Deletes the number of entries in the dfrapCfgSnmpMgrTable indicated by the value. If the value is a positive number the entries will be deleted starting from the first entry. If the value is negative the entries will be deleted starting from the last entry. ') dfrapCfgSnmpMgrTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2), ) if mibBuilder.loadTexts: dfrapCfgSnmpMgrTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrTable.setDescription("The table of SNMP manager profiles to which traps are sent. In all managed modes an SNMP trap mangager's ip address is required as a minimum. Additionally for Piggyback managed units the DLCI and interface must also be configured appropriately. For Local, Remote and SLIP-based management, the DLCI and interface are implied and need not be configured as part of this profile.") dfrapCfgSnmpMgrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgSnmpMgrIndex")) if mibBuilder.loadTexts: dfrapCfgSnmpMgrEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrEntry.setDescription('The SNMP trap manager profiles to which the unit sends TRAPs.') dfrapCfgSnmpMgrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgSnmpMgrIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIndex.setDescription('The index to the list of SNMP managers receiving TRAPs.') dfrapCfgSnmpMgrIP = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 2), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpMgrIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIP.setDescription("The IP address of a SNMP manager to receive this node's TRAPs. Setting this value to 0.0.0.0 will disable the issuance of traps to the indexed manager.") dfrapCfgSnmpMgrInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("dte-interface", 1), ("dds-interface", 2), ("slip-interface", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpMgrInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrInterface.setDescription('The interface out which the indexed trap manager can be reached. This entry is required in Piggyback and Bi-directional in-band managed applications. In Local, Remote and SLIP-based applications, the interface is known and this parameter is ignored. When the node is configured for SLIP, a GET on this MIB object will return slip-interface(3) and a SET of this MIB object to slip-interface(3) is allowed but unnecessary. When the node is not configured for SLIP, this MIB object can be SET to dte-interface(1) or dds-interface(2); slip-interface(3) would be rejected.') dfrapCfgSnmpMgrDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 4), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSnmpMgrDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrDlci.setDescription('The DLCI out which the indexed trap manager can be reached. This entry is required in Piggyback in-band managed applications. In Private in-band applications the DLCI is known and Sets to this parameter will be ignored. In SLIP mode the DLCI is not applicable, Sets will be ignored and a -1 will be returned as the DLCI value.') dfrapCfgCommTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4)) dfrapCfgCommMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("vt100", 1), ("slip", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommMode.setDescription("The protocol running on the Maintenance/Comm port (console). Setting this to SLIP mode will automatically disable in-band management if it's enabled. (1) VT100 for directly attached async terminal (2) SLIP - Serial Line IP out-of-band management") dfrapCfgCommBaud = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 4, 5, 6))).clone(namedValues=NamedValues(("baud-2400", 2), ("baud-9600", 4), ("baud-19200", 5), ("baud-38400", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommBaud.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommBaud.setDescription('Asynchronous baud rate for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (2) baud-2400 (4) baud-9600 (5) baud-19200 (6) baud-38400') dfrapCfgCommDataBits = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("databits-7", 1), ("databits-8", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommDataBits.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommDataBits.setDescription('Asynchronous data format for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) 7 databits per character (2) 8 databits per character') dfrapCfgCommStopBits = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("stopbits-1", 1), ("stopbits-1-5", 2), ("stopbits-2", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommStopBits.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommStopBits.setDescription('Asynchronous intercharacter protocol for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) 1 stopbit (2) 1.5 stopbits (3) 3 stopbits') dfrapCfgCommParity = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("no-parity", 1), ("odd-parity", 2), ("even-parity", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommParity.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommParity.setDescription('Asynchronous parity checking protocol for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) no parity (2) odd-parity (3) even-parity') dfrapCfgCommFlowCtrl = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("no-flow-control", 1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCommFlowCtrl.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommFlowCtrl.setDescription('Flow Control for the Maintenance/Comm port (Console). (1) no flow control supported.') dfrapCfgFrDLCITable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5)) dfrapCfgFrDLCIMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("inactive", 1), ("local", 2), ("remote", 3), ("bidirectional", 4), ("piggyback", 5), ("fixed-dce", 6)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrDLCIMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIMode.setDescription('In-band Frame Relay management mode. A variety of options exist which are differentiated by how PVCs can be provisioned to manage the unit and the resulting impact to the logical processing of Link Management Protocol messages (LMI spoofing and sourcing). The unit is designed to support these management modes even in non-provisioned or failed frame relay networks. This setting also has implications upon how networking protocols such as ARP and InARP are handled by the unit. (1) inactive: in-band management is not enabled (2) local DLCI mode: in-band managed using a private dedicated DLCI accessible via the DTE port only. A DLCI value is configured which, through LMI spoofing, will only be visible to the DTE equipment and need not be provisioned on the WAN. All traffic on this DLCI will be terminated by the unit. (3) remote DLCI mode: in-band managed using a private dedicated DLCI accessible via the WAN port only. A DLCI value is configured which, through LMI spoofing, will only be visible from the WAN side and will not be seen by any DTE equipment. All traffic on this DLCI will be terminated by the unit. (4) bidirectional mode: in-band managed using a private dedicated DLCI accessible through either port. A DLCI value is configured which is expected to be fully provisioned in the frame relay network but dedicated to the management function of this particular unit. All traffic on this DLCI will be terminated by the unit. (5) piggyback mode: in-band managed using any DLCI on any interface. A DLCI value is defined that becomes the default DLCI that will be maintained by the unit during network or LMI failure conditions. The unit will terminate and respond accordingly to management and networking data while transparently passing on user data. (6) fixed DCE mode: special mode of operation to support frame relay applications that do not include a switch (frame relay DCE). The unit will independently respond to LMI requests on each interface and will provision the configured DLCI to each Frame Relay DTE device. Except for this, the unit behaves like piggyback.') dfrapCfgFrDLCIValue = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 63487))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrDLCIValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIValue.setDescription('If in-band management is being used this DLCI value should be defined. In all modes of in-band management with the LMI Sourcing feature enabled the unit may provision this DLCI during LMI failure to facilitate management access. In Private modes (Local, Remote, and Bidirectional) this is the dedicated DLCI for management data and address resolution protocols - all other traffic on this DLCI will be discarded. In Piggyback mode this DLCI is treated like all others except during LMI failure sourcing when it may be provisioned by the unit. In Piggyback mode if InARP is enabled on a single DLCI then this value defines that DLCI.') dfrapCfgFrDLCIEncap = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("rfc1490", 1), ("rfc1490snap", 2), ("auto", 3), ("cisco", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrDLCIEncap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIEncap.setDescription('This is the protocol used for enacapsulating and formatting ip data for Frame Relay transmission. This setting is specific to management data to and from the unit. (1)RFC1490 - per IETF standard with Network Level Protocol ID (NLPID) set for IP encapsulation. (2)RFC1490 SNAP/IP - per IETF standard with NLPID set for Sub-Network Access Protocol (SNAP). (3)auto - adjusts to either of these encapsulation techniques as required. (4)Cisco - proprietary encapsulation (4-byte header).') dfrapCfgFrDLCIMgmtDE = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("no-DE-bit-0", 1), ("yes-DE-bit-1", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrDLCIMgmtDE.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIMgmtDE.setDescription('Provides user control over the state of the Frame Relay Discard Eligibility bit of all management frames generated by the unit. Frames marked DE=1 are more likely to be dropped in a congested Frame Relay network than those that are DE=0. Heavily congested circumstances can cause both to be dropped. Additionally, frames marked DE=0 may get re-marked to DE=1 by intervening equipment. (1) DE bit cleared to 0: frame is not discard eligible (2) DE bit set to 1: frame is discard eligible') dfrapCfgAppTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 2)) dfrapCfgAppClockSource = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("internal", 1), ("network", 2), ("dte", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppClockSource.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppClockSource.setDescription('Timing source for transmission of data towards the WAN and for the generation of DTE clocking. There should be only one source per end-to-end WAN link. Unit is typically network timed in a point-to-network application. (1) internal: derive timing from a high-stability on-board crystal oscillator. (2) network: or Loop timing, derive timing from the signal received at the WAN interface (3) dte: derive timing from the clock presented by the DTE equipment on the Terminal Timing(TT)/Transmit Clock External (TCE) leads. This setting expects the DTE timing mode to be Loop 1 and the DTE device to be generating a clock at the DTE data rate.') dfrapCfgAppCircuitId = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 29))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppCircuitId.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppCircuitId.setDescription('Alphanumeric circuit identifier may be provided by the service provider for reference or assigned arbitrarily per user requirements.') dfrapCfgAppType = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dedicated", 1), ("frame-relay", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppType.setDescription('This unit provides many features specifically adapted to Frame Relay transmission links; this includes diagnostic utilities, statistical analysis, protocol trends, quality of service reporting, and in-band SNMP management. If the unit will be operating in a Frame Relay network the Application Type must be set to Frame Relay to enable these features. To operate in a non-Frame Relay network or to bypass this feature set the unit may be placed in Dedicated mode and will emulate a more familiar DSU/CSU. Note - changing this value will automatically change the Application Format setting and vice versa. (1) dedicated: protocol-independent transparent DSU/CSU (2) Frame Relay: Frame and protocol aware DSU/CSU') dfrapCfgAppFormat = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cbo", 1), ("hdlc", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppFormat.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppFormat.setDescription('Refer to Application Type. Frame Relay is based upon HDLC framing. To operate in a Frame Relay application the Format must be set for HDLC. To operate in a protocol-independent application the Format must be set for Constant Bit Operation (CBO). Note - changing this value will automatically change the Application Type setting and vice versa (1) CBO: protocol-independent transparent DSU/CSU (2) HDLC: Frame and protocol aware DSU/CSU') dfrapCfgAppLpbkTimeout = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1440))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppLpbkTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppLpbkTimeout.setDescription('The length of time a service-impacting loopback or diagnostic utility may run before automatically returning to normal operation. This setting will override any alternatively timed tests (such as VBERT). (0) Loopbak Timeout Disabled (1-1440) Loopback Timeout') dfrapCfgAppPerfBuffLimit = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 512))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgAppPerfBuffLimit.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppPerfBuffLimit.setDescription('This value controls the throttling mechanism used to determine the optimum level of statistical processing versus managability of the unit. The lower the value (1 - 128), the unit becomes more responsive to management commands during very heavy utilization at the possible expense of statistical accuracy. The larger the value (129 - 512), the more accurate the DFRAP performs statistical analysis of the frames but management may seem slow or unresponsive during periods of very heavy link utilization. NOTE: A value of 0 disables statistical processing entirely.') dfrapCfgDdsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 3)) dfrapCfgDdsLoopRate = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("fifty-six", 1), ("sixty-four", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDdsLoopRate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDdsLoopRate.setDescription('Provisioned DDS WAN data rate. This unit conforms to either 56K DDS service or 64K (72K with framing) DDS service. (1) 56Kbps DDS (2) 64Kbs DDS (72K loop rate)') dfrapCfgDdsBPVThresholding = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("thresholding-at-10E-4", 1), ("disable-thresholding", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDdsBPVThresholding.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDdsBPVThresholding.setDescription('The unit may be configured to issue traps in response to Bipolar Violations (BPVs) received from the WAN. If enabled the unit will issue a trap when more than 5 BPVs are detected in a one-second interval and a follow-up trap when the BPV threshold is no longer exceeded. BPVs that are part of network control codes do not contribute to this feature. (1) BPV Trap Threshold is 10e-4 (2) Disable BPV Traps') dfrapCfgDteTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 4)) dfrapCfgDteIntfType = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4))).clone(namedValues=NamedValues(("intf-v35", 3), ("intf-rs449", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgDteIntfType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteIntfType.setDescription('The electrical interface for the DTE port (3) V.35 interface (4) RS-449 interface') dfrapCfgDteClockMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("clock-normal", 1), ("clock-invert", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteClockMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteClockMode.setDescription('This selection controls how the unit internally latches the transmit data from the DTE. Normal will sample data with the rising edge of the selected TX Clock, Invert will sample data with the falling edge of the selected TX Clock. The TX Clock is selected using CfgDteTiming. This clock invertion is most useful when loop-2 timing is used - particularly at higher rates and with long cable runs. Only in rare circumstances will clock-invert be used with loop-1 timing. If the DTE Interface TX statistics are indicating excessive crc errors or aborts then changing this setting may have some benefit. (1) normal (2) invert') dfrapCfgDteTiming = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("loop-1", 1), ("loop-2", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteTiming.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteTiming.setDescription('Serial DTE Transmit Timing mode. Loop-1 (1) uses the clock returned from the DTE (TT/TCE) to sample tx data, Loop-2 (2) uses the clock (ST/TC) generated by the node to sample tx data. Loop-1 is the preferred mode. Loop-2 timing could experience data errors at high rates or due to long DTE cable runs - may need to Invert the clock (see CfgDteClockMode). (1) Loop 1: external clock returned from DTE with data (2) Loop 2: internal clock used to sample incoming data') dfrapCfgDteRts = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("internal-held-active", 1), ("external-from-dte", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteRts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteRts.setDescription("Controls the reporting of the status of the DTE's Request to Send (RTS) control signal, specifically the generation of traps in response to control signal state changes. If Internally Held Active, the unit will ignore the actual status and always report this signal Active. If External, the unit will reflect the status as driven by the DTE; as such, Traps will be generated due to change of state (these may be useful fora network manager's assessment of interface status. (1) Internally Held Active (2) Externally Presented from DTE") dfrapCfgDteDtr = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("internal-held-active", 1), ("external-from-dte", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteDtr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDtr.setDescription("Controls the reporting of the status of the DTE's Data Terminal Ready (DTR) control signal, specifically the generation of traps in response to control signal state changes. If Internally Held Active, the unit will ignore the actual status and always report this signal Active. If External, the unit will reflect the status as driven by the DTE; as such, Traps will be generated due to change of state (these may be useful fora network manager's assessment of interface status. (1) Internally Held Active (2) Externally Presented from DTE") dfrapCfgDteDcdOutput = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("signal-off", 1), ("signal-on", 2), ("follow-carrier", 3), ("follow-test", 4), ("follow-rts", 5), ("follow-carrier-rts", 6), ("follow-sync-rts", 7), ("follow-lmi-carr-rts", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteDcdOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDcdOutput.setDescription('Specifies the behavior of the Data Carrier Detect (DCD) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrapCfgDteDsrOutput = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("signal-off", 1), ("signal-on", 2), ("follow-carrier", 3), ("follow-test", 4), ("follow-rts", 5), ("follow-carrier-rts", 6), ("follow-sync-rts", 7), ("follow-lmi-carr-rts", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteDsrOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDsrOutput.setDescription('Specifies the behavior of the Data Set Ready (DSR) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrapCfgDteCtsOutput = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("signal-off", 1), ("signal-on", 2), ("follow-carrier", 3), ("follow-test", 4), ("follow-rts", 5), ("follow-carrier-rts", 6), ("follow-sync-rts", 7), ("follow-lmi-carr-rts", 8)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgDteCtsOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteCtsOutput.setDescription('Specifies the behavior of the Clear to Send (CTS) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrapCfgFrTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 5)) dfrapCfgFrAddrLen = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("twobytes", 1), ("threebytes", 2), ("fourbytes", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrAddrLen.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrLen.setDescription('Shows the size that DLCI address field. This setting must correspond to the Frame Relay transmission format; typically Two bytes. (1) two byte DLCI address field (2) three byte DLCI address field (3) four byte DLCI address field') dfrapCfgFrCrcMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("discard", 1), ("passthru", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrCrcMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrCrcMode.setDescription('This defines the manner in which the unit handles HDLC protocol errors (crc errors) in a Frame Relay application. If Discard is selected the unit will respond to an errored frame by aborting the frame if transmission has begun; or simply discarding it if transmission has not begun. If Passthru is selected the unit transmit the entire frame but will place an incorrect crc in it to preserve the error indication. (1) discard (2) pasthru') dfrapCfgFrLmiType = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("annexd", 1), ("annexa", 2), ("type1", 3), ("autosense", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrLmiType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiType.setDescription('The LMI type used in a Frame Relay application. This setting must match the attached Frame Relay device configuration. Annex-A and Annex-D use DLCI 0, and Type 1 uses DLCI 1023. Type 1 is alternatively referred to as Cisco, Group of four, or simply LMI. Annex-D may be referred to as ANSI T1.617. Annex-A may be referred to as ITU or CCITT Q.933. Auto-sense will either use the most recently detected LMI type or, in the absence of any LMI, will attempt to instigate LMI communications using each protocol. (1) Annex-A: conforms to ITU (CCITT) Q.933 annex A (2) Annex-D: conforms to ANSI T1.617 annex D (3) Type 1: conforms to the original LMI as developed by the Group of Four (4) Auto-sense: unit will attempt to detect and synchronize to the LMI type of the attached equipment.') dfrapCfgFrLmiInactivityTimeout = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrLmiInactivityTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiInactivityTimeout.setDescription('Timer used by the unit to determine that an attached device is not participating in the LMI protocol and that the unit should attempt to source LMI. This timer also controls the length of time that the LMI sourcing state machine remains in a particular state as it attempts to locate an LMI peer. (0) LMI Sourcing disabled (2-255) LMI Inactivity timeout') dfrapCfgFrLmiKeepaliveTimeout = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrLmiKeepaliveTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiKeepaliveTimeout.setDescription('Timer used by the unit to determine the frequency at which Status Enquiries are issued during LMI sourcing states where the unit is emulating a Frame Relay DTE device. (2-255) length of time between sending enquiries (in seconds)') dfrapCfgFrAddrResMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inactive", 1), ("arp", 2), ("inarp", 3), ("both", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrAddrResMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResMode.setDescription("The ip-based Address Resolution protocol supported in the application. With ARP, requests are received and replies are generated accordingly. With InARP, requests are received and replies are generated; additionally, InARP requests are issued by the unit at the frequency defined by the InARP timer. Address Resolution will circumvent the need for static routes and automatically log an associated dynamic entry into the routing tables. (1) inactive: no address resolution support (2) ARP: only provide ARP responses. ARP is useful when the router knows the unit's ip address but doesn't know the DLCI. (3) InARP: provide both InARP responses and InARP requests. InARP is useful when the router knows the DLCI but not the ip address. (4) Both ARP and InARP.") dfrapCfgFrAddrResDlcis = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("single", 1), ("multiple", 2), ("ddsmulti", 3), ("dtemulti", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrAddrResDlcis.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResDlcis.setDescription('Address Resolution Dlcis determines which dlcis will support address resolution. In Private management modes (Local, Remote, Bidirectional), address resolution runs on the single defined management DLCI only (regardless of this setting). In Piggyback management the user has options based upon two models: Single, where the address resolution protocols run only upon the defined managment DLCI and Multiple, where its supported on all active DLCIs recognized by the unit. (1) Single - address resolution on the defined default DLCI on both ports (2) Multiple - address resolution on all active DLCIs on both ports (3) DDSMulti - Single on DTE and Multiple on DDS (4) DTEMulti - Single on DDS and Multiple on DTE') dfrapCfgFrAddrResInarpTimer = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 86400))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrAddrResInarpTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResInarpTimer.setDescription('If the unit is configured to support the InARP address resolution protocol, this is the frequency of INARP requests that the unit will generate. (5-86400) - InARP Request Timer in seconds') dfrapCfgFrLmiFullStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrLmiFullStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiFullStatus.setDescription("Timer used by the unit to determine if an LMI Full Status Report is missing. In the absence of a Full Status report for the duration defined by this timer, the unit will declared all DLCI's status INACTIVE and begin logging down time. Data passage is not interfered with. (0) Full Status Timer is disabled (20-3600) Full Status Report Timeout in seconds.") dfrapCfgVnipTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 6)) dfrapCfgVnipMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inactive", 1), ("dte", 2), ("dds", 3), ("both", 4)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgVnipMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipMode.setDescription("This setting configures the unit for VNIP topology support on a per-interface basis. Establishing a VNIP topology is a fundamental prerequisite to applying the VNIP feature set which includes PVC-based delay measurement, diagnostics, and congestion monitoring. With VNIP enabled on an interface the unit will attempt to locate VNIP peers out that port. As peers are discovered and logged the unit will report the topology it has learned on its opposite interface. If VNIP is inactive on one interface it will not engage in any VNIP dialog; however it will continue to listen for topology messages on the inactive interface and will reflect these messages out the opposite interface if VNIP is enabled. With VNIP inactive on both interfaces the unit will transparently pass all VNIP messages. The topology database includes ip addresses, DLCI values, and the number of VNIP hops in between. (1) Topology Inactive: VNIP messages pass through unit (2) Topology Enabled on DTE only: unit logs VNIP peers seen out the DTE interface. Unit listens for topology reports from the WAN but doesn't generate any towards the WAN. Will report learned WAN topology towards the DTE. (3) Topology Enabled on WAN only: unit logs VNIP peers seen out the WAN interface. Unit listens for topology reports from the DTE but doesn't generate any towards the DTE. Will report learned DTE topology towards the WAN. (4) Topolgy Enabled on Both DTE and WAN: Unit logs VNIP peers seen out both interfaces and generates DTE topolgy reports towards the WAN and vice versa.") dfrapCfgVnipInitTimer = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 86400))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgVnipInitTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipInitTimer.setDescription('VNIP peer to peer communications are initiated following the detection of a VNIP Hello message. The unit will periodically issue this message out interfaces that have VNIP enabled until a Hello response is received. Following the reception of the Hello response, the unit will stop issuing Hello messahges on that DLCI/interface and generate periodic topology reports at the VNIP Keep Alive frequency. The unit will generate periodic Hello messages, at the InitTimer frequency if no Hello responses are ever detected or a topology message not been detected within the time period defined by the VNIP Inactivity timer. (5-86400) VNIP Hello frequency (in seconds)') dfrapCfgVnipKeepAliveTimer = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 86400))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgVnipKeepAliveTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipKeepAliveTimer.setDescription("This is the frequency that topology reports are issued out any interface that has VNIP enabled. Once a Hello exchange occurs, the unit will periodically issue a VNIP message which reflects the topology it has learned on the opposite interface. This Keep Alive timer must be less than any peer unit's Inactivity timer. (5-86400) VNIP Topology Update frequency (in seconds)") dfrapCfgVnipInactivityTimer = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(5, 86400))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgVnipInactivityTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipInactivityTimer.setDescription('The length of time to wait before dropping a VNIP peer from the database and attempting tp reestablish communications by issuing the VNIP Hello message. If this timer expires then the entire topology database is reset. The Inactivity timers of any unit participating in a VNIP topology must be greater than the highest Keep Alive timer in the topology. (5- 86400) VNIP Hello frequency (in seconds)') dfrapCfgVnipTransitDelayFrequency = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(15, 86400))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgVnipTransitDelayFrequency.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipTransitDelayFrequency.setDescription('Transit Delay measurements may be enabled between any DLCI peers that have been logged through the topology protocol. Delay messages are issued at this frequency and results are recorded. Transit delay measures the round-trip network delay between two VNIP peers (internal unit latencies are not part of the measurement). Traps may be optionally generated if a delay threshold is exceeded. (15-86400): Transit Delay message frequency (in seconds)') dfrapCfgTransitDelayTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20), ) if mibBuilder.loadTexts: dfrapCfgTransitDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayTable.setDescription("The table defining the transit delay measurement profile for each of the learned VNIP peers. As peers are located and logged into the topology database, a default transit delay profile is assumed. The default is to enable transit delay to all hops located out the interface. A DLCI's transit delay profile cannot be modified unless the DLCI has been discovered through the VNIP topology protocol.") dfrapCfgTransitDelayEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgTransitDelayInterface"), (0, "DFRAP-MIB", "dfrapCfgTransitDelayDlciValue")) if mibBuilder.loadTexts: dfrapCfgTransitDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayEntry.setDescription("A VNIP Transit Delay configuration entry for a particular DLCI on a particular interface. A DLCI's transit delay profile cannot be modified unless the DLCI has been discovered through the VNIP topology protocol") dfrapCfgTransitDelayInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte-interface", 1), ("dds-interface", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTransitDelayInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayInterface.setDescription('This is the interface being configured for VNIP Transit Delay. If topology is enabled, each interface will contain a database of VNIP peers organized by DLCI value and Number of Hops. (1) DTE Interface (2) DDS Interface') dfrapCfgTransitDelayDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTransitDelayDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayDlciValue.setDescription('This is the DLCI being configured for VNIP Transit Delay. If topology is enabled, each interface will contain a database of VNIP peers organized by DLCI value and Number of Hops.') dfrapCfgTransitDelayNumHops = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTransitDelayNumHops.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayNumHops.setDescription('VNIP topolgy may include multiple units on a given DLCI/interface. The topology logs the number of intermediate VNIP peers between units (Hops). This setting determines which peers on a DLCI are participating in delay measurements. (0) All hops (1-254) individually addressable delay measurement between any two peers. (255) Furthest hop only') dfrapCfgTransitDelayRcvSummaryCancel = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable-rsc", 1), ("disable-rsc", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTransitDelayRcvSummaryCancel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayRcvSummaryCancel.setDescription("Controls the Receive Summary Cancellation feature of VNIP Transit Delay on this interface/DLCI. Every Transit Delay measurement exchange includes a follow-up message from the initiator with the delay results. If RSC is enabled, a unit will log results based upon this summary message and will not issue its next scheduled delay measurement. With RSC disabled, the unit will not use the summary message and will always issue its regularly scheduled message based on the delay frequency timer. The purpose of this feature is to reduce traffic introduced by VNIP. In a typical peer-to-peer transit delay measurement where both ends are concurrently conducting transit delay measurements it's recommended that one end have RSC enabled and one end disabled.") dfrapCfgTransitDelayThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 86400000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTransitDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayThreshold.setDescription('Specifies a transit delay threshold for this DLCI/interface. When the transit delay exceeds the threshold, a TRAP is sent. The threshold may be set from one millisecond to 24 hours. A value of 0 will prevent a TRAP from being sent. (0): Transit delay threshold trap disabled for this DLCI/interface (1-86400000): delay threshhold. Any delay measurements exceeding this result will generate a trap.') dfrapCfgTDDeleteTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21), ) if mibBuilder.loadTexts: dfrapCfgTDDeleteTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteTable.setDescription('The table allows the user to disable transit delay measurements for a specific DLCI on a particular interface.') dfrapCfgTDDeleteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgTDDeleteInterface")) if mibBuilder.loadTexts: dfrapCfgTDDeleteEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteEntry.setDescription('Disables VNIP Transit Delay for a particular interface and DLCI.') dfrapCfgTDDeleteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte-interface", 1), ("dds-interface", 2)))) if mibBuilder.loadTexts: dfrapCfgTDDeleteInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteInterface.setDescription('Transit delay can be disabled for a given DLCI on either interface. This indexes the interface. Setting this index and the associated DLCI index will disable transit delay on that combination.') dfrapCfgTDDeleteDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1, 2), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgTDDeleteDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteDlciValue.setDescription('Transit delay can be disabled for a given DLCI on either interface. This indexes the DLCI. Setting this index and the associated interface index will disable transit delay on that combination.') dfrapCfgTransitDelayTableClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-table", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgTransitDelayTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayTableClear.setDescription(' The dfrapCfgTransitDelayTable is cleared. (1) clear the table ') dfrapCfgFrPerf = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 7)) dfrapCfgFrPerfDlciNamesTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1), ) if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTable.setDescription('This table allows the user to configure DLCI specific parameters such as Names, CIR, and EIR. Additionally, any DLCIs configured with these parameters will be added into the Short Term statistics database next time its cleared.') dfrapCfgFrPerfDlciNamesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgFrPerfDlciNamesDlciValue")) if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEntry.setDescription('A table entry indexed by DLCI, containing a DLCI, a DLCI name, a CIR, and how the CIR value was obtained.') dfrapCfgFrPerfDlciNamesDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 1), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciValue.setDescription("A DLCI selected for customized configuration and to be added to short term statistics collection (if it wasn't already there).") dfrapCfgFrPerfDlciNamesDlciName = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciName.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciName.setDescription('A user-specifiable name for an individual DLCI.') dfrapCfgFrPerfDlciNamesCirValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirValue.setDescription('The CIR value for an individual DLCI. This value is used in the calculation utilization as a percentage of CIR. If the CIR is reported in the LMI message then the reported value will override this configured entry. In the absence of LMI CIR and a configured CIR, the unit will assume that teh CIR is the DTE Line Rate.') dfrapCfgFrPerfDlciNamesCirType = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cir-acquired-from-lmi", 1), ("cir-configured-by-user", 2), ("cir-is-datarate", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirType.setDescription('The source of the CIR value for this DLCI. If CIR for a DLCI is part of the LMI message then this LMI supplied CIR will override any defined CIR. If CIR is not part of LMI and has not been explicitly defined by the user it will default to the DTE Line Rate. (1) CIR reported in LMI Full Status message (2) CIR configured by user (3) CIR defaulted to DTE Line Rate') dfrapCfgFrPerfDlciNamesUtilThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesUtilThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesUtilThreshold.setDescription("The threshold for generating a utilization threshold trap as a percentage of the CIR. If the utilization percentage is above this threshold for more than dfrapCfgFrPerfDlciUtilThreshold number of dfrapCfgFrPerfTimersSTInterval's a dfrapPvc(Rx/Tx)UtilizationExceeded trap will be issued. If the If the utilization percentage falls below this threshold for more than dfrapCfgFrPerfDlciUtilThreshold number of dfrapCfgFrPerfTimersSTInterval's a dfrapPvc(Rx/Tx)UtilizationExceeded trap will be issued.") dfrapCfgFrPerfDlciNamesEirValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 6), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEirValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEirValue.setDescription('The EIR value for an individual DLCI. In the absence of a configured EIR, the unit will assume that the EIR is the DTE Line Rate.') dfrapCfgFrPerfDlciNamesDelete = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 2), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDelete.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDelete.setDescription('Setting this object with a specific DLCI value will remove the DLCI form the DLCI-specific parameters database.') dfrapCfgFrPerfTimers = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3)) dfrapCfgFrPerfTimersSTInterval = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(3, 60))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfTimersSTInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersSTInterval.setDescription('Short term statistics maintain cumulative counts, and counts for the current and previous short term windows. This value is the window size for the short term statistics intervals. (3-60): short term statistics collection interval') dfrapCfgFrPerfTimersLTInterval = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 3600))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfTimersLTInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersLTInterval.setDescription('Long term statistics maintain 96 contiguous intervals of configurable protocol per DLCI statistics. This value is the window size of each interval. Adjusting this value will change the overall length of time that the 96 intervals will span. (4-3600): long term statsistics collection interval') dfrapCfgFrPerfUserProtocolsTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4), ) if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTable.setDescription('This table allows the user to select TCP/UDP ports for statistics collection. Tx and Rx byte counts will collected on the specified ports. These ports are selectable as protocols in the long term statistics filter and are displayed with the other protocols in the short term statistics.') dfrapCfgFrPerfUserProtocolsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgFrPerfUserProtocolsIndex")) if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsEntry.setDescription('An index and TCP/UDP port number pair.') dfrapCfgFrPerfUserProtocolsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsIndex.setDescription('An index. Beginning with index 1, the range is defined in SysNumUserProtocols') dfrapCfgFrPerfUserProtocolsPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsPortNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsPortNum.setDescription('Tx and Rx byte counts will be collected on the user-specifiable TCP/UDP port number. (0) port not defined (1-65535): IP TCP/UDP protocol port number.') dfrapCfgFrPerfLTDlciFilterTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5), ) if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTable.setDescription('Long term statistics can only be collected on a limited number of DLCIs. The value of SysLTFNumDlcis defines the maximum number of DLCIs that can be included in the Long Term Statistics. Once one or more DLCIs are added to Long Term Stats, the user may assign a set of protocols that will be monitored across all of the Long Term DLCIs.') dfrapCfgFrPerfLTDlciFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgFrPerfLTDlciFilterIndex")) if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterEntry.setDescription('An index and DLCI number pair.') dfrapCfgFrPerfLTDlciFilterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterIndex.setDescription('An index. Beginning with index 1, the maximum is defined by the value of SysLTFNumDlcis.') dfrapCfgFrPerfLTDlciFilterDlciNum = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterDlciNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterDlciNum.setDescription('Setting a DLCI value here will add that DLCI into the Long term statistics database (associated with its index) and it will be monitored for the protocol activity defined in the Long Term Protocol filter.') dfrapCfgFrPerfLTProtocolFilterTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6), ) if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTable.setDescription('Long term statistics can only be collected on a limited number of protocols. The maximum number of Long Term Protoocls are defined by SysLTFNumProtocols. This table allows the user to configure those protocols.') dfrapCfgFrPerfLTProtocolFilterEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapCfgFrPerfLTProtocolFilterIndex")) if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterEntry.setDescription('An index and protocol pair.') dfrapCfgFrPerfLTProtocolFilterIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterIndex.setDescription('An index. Beginning with index 1, the maximum is defined by the value of SysLTFNumProtocols.') dfrapCfgFrPerfLTProtocolFilterProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, -1))).clone(namedValues=NamedValues(("ip-tx-bc", 1), ("ip-rx-bc", 2), ("tcp-ip-tx-bc", 3), ("tcp-ip-rx-bc", 4), ("ftp-tcp-ip-tx-bc", 5), ("ftp-tcp-ip-rx-bc", 6), ("telnet-tcp-ip-tx-bc", 7), ("telnet-tcp-ip-rx-bc", 8), ("smtp-tcp-ip-tx-bc", 9), ("smtp-tcp-ip-rx-bc", 10), ("tftp-tcp-ip-tx-bc", 11), ("tftp-tcp-ip-rx-bc", 12), ("http-tcp-ip-tx-bc", 13), ("http-tcp-ip-rx-bc", 14), ("netbios-ssn-tcp-ip-tx-bc", 15), ("netbios-ssn-tcp-ip-rx-bc", 16), ("snmp-tcp-ip-tx-bc", 17), ("snmp-tcp-ip-rx-bc", 18), ("snmptrap-tcp-ip-tx-bc", 19), ("snmptrap-tcp-ip-rx-bc", 20), ("udp-ip-tx-bc", 21), ("udp-ip-rx-bc", 22), ("ftp-udp-ip-tx-bc", 23), ("ftp-udp-ip-rx-bc", 24), ("telnet-udp-ip-tx-bc", 25), ("telnet-udp-ip-rx-bc", 26), ("smtp-udp-ip-tx-bc", 27), ("smtp-udp-ip-rx-bc", 28), ("tftp-udp-ip-tx-bc", 29), ("tftp-udp-ip-rx-bc", 30), ("http-udp-ip-tx-bc", 31), ("http-udp-ip-rx-bc", 32), ("netbios-dgm-udp-ip-tx-bc", 33), ("netbios-dgm-udp-ip-rx-bc", 34), ("snmp-udp-ip-tx-bc", 35), ("snmp-udp-ip-rx-bc", 36), ("snmptrap-udp-ip-tx-bc", 37), ("snmptrap-udp-ip-rx-bc", 38), ("rip-udp-ip-tx-bc", 39), ("rip-udp-ip-rx-bc", 40), ("icmp-ip-tx-bc", 41), ("icmp-ip-rx-bc", 42), ("echorep-icmp-ip-tx-bc", 43), ("echorep-icmp-ip-rx-bc", 44), ("dest-unr-icmp-ip-tx-bc", 45), ("dest-unr-icmp-ip-rx-bc", 46), ("src-quench-icmp-ip-tx-bc", 47), ("src-quench-icmp-ip-rx-bc", 48), ("redirect-icmp-ip-tx-bc", 49), ("redirect-icmp-ip-rx-bc", 50), ("echoreq-icmp-ip-tx-bc", 51), ("echoreq-icmp-ip-rx-bc", 52), ("time-excd-icmp-ip-tx-bc", 53), ("time-excd-icmp-ip-rx-bc", 54), ("param-prob-icmp-ip-tx-bc", 55), ("param-prob-icmp-ip-rx-bc", 56), ("timestamp-req-icmp-ip-tx-bc", 57), ("timestamp-req-icmp-ip-rx-bc", 58), ("timestamp-rep-icmp-ip-tx-bc", 59), ("timestamp-rep-icmp-ip-rx-bc", 60), ("addr-mask-req-icmp-ip-tx-bc", 61), ("addr-mask-req-icmp-ip-rx-bc", 62), ("addr-mask-rep-icmp-ip-tx-bc", 63), ("addr-mask-rep-icmp-ip-rx-bc", 64), ("pkt-too-big-icmp-ip-tx-bc", 65), ("pkt-too-big-icmp-ip-rx-bc", 66), ("gp-mem-query-icmp-ip-tx-bc", 67), ("gp-mem-query-icmp-ip-rx-bc", 68), ("gp-mem-report-icmp-ip-tx-bc", 69), ("gp-mem-report-icmp-ip-rx-bc", 70), ("gp-mem-reduct-icmp-ip-tx-bc", 71), ("gp-mem-reduct-icmp-ip-rx-bc", 72), ("ospf-ip-tx-bc", 73), ("ospf-ip-rx-bc", 74), ("other-ip-tx-bc", 75), ("other-ip-rx-bc", 76), ("ipx-tx-bc", 77), ("ipx-rx-bc", 78), ("spx-ipx-tx-bc", 79), ("spx-ipx-rx-bc", 80), ("ncp-ipx-tx-bc", 81), ("ncp-ipx-rx-bc", 82), ("sap-ipx-tx-bc", 83), ("sap-ipx-rx-bc", 84), ("rip-ipx-tx-bc", 85), ("rip-ipx-rx-bc", 86), ("netbios-ipx-tx-bc", 87), ("netbios-ipx-rx-bc", 88), ("other-ipx-tx-bc", 89), ("other-ipx-rx-bc", 90), ("arp-tx-bc", 91), ("arp-rx-bc", 92), ("arp-req-tx-bc", 93), ("arp-req-rx-bc", 94), ("arp-rep-tx-bc", 95), ("arp-rep-rx-bc", 96), ("rarp-req-tx-bc", 97), ("rarp-req-rx-bc", 98), ("rarp-rep-tx-bc", 99), ("rarp-rep-rx-bc", 100), ("inarp-req-tx-bc", 101), ("inarp-req-rx-bc", 102), ("inarp-rep-tx-bc", 103), ("inarp-rep-rx-bc", 104), ("sna-tx-bc", 105), ("sna-rx-bc", 106), ("sna-subarea-tx-bc", 107), ("sna-subarea-rx-bc", 108), ("sna-periph-tx-bc", 109), ("sna-periph-rx-bc", 110), ("sna-appn-tx-bc", 111), ("sna-appn-rx-bc", 112), ("sna-netbios-tx-bc", 113), ("sna-netbios-rx-bc", 114), ("cisco-tx-bc", 115), ("cisco-rx-bc", 116), ("other-tx-bc", 117), ("other-rx-bc", 118), ("user-defined-1-tx-bc", 119), ("user-defined-1-rx-bc", 120), ("user-defined-2-tx-bc", 121), ("user-defined-2-rx-bc", 122), ("user-defined-3-tx-bc", 123), ("user-defined-3-rx-bc", 124), ("user-defined-4-tx-bc", 125), ("user-defined-4-rx-bc", 126), ("thru-byte-tx-bc", 127), ("thru-byte-rx-bc", 128), ("thru-frame-tx-c", 129), ("thru-frame-rx-c", 130), ("thru-fecn-tx-c", 131), ("thru-fecn-rx-c", 132), ("thru-becn-tx-c", 133), ("thru-becn-rx-c", 134), ("thru-de-tx-c", 135), ("thru-de-rx-c", 136), ("cir-percent-range1-tx-bc", 137), ("cir-percent-range1-rx-bc", 138), ("cir-percent-range2-tx-bc", 139), ("cir-percent-range2-rx-bc", 140), ("cir-percent-range3-tx-bc", 141), ("cir-percent-range3-rx-bc", 142), ("cir-percent-range4-tx-bc", 143), ("cir-percent-range4-rx-bc", 144), ("cir-percent-range5-tx-bc", 145), ("cir-percent-range5-rx-bc", 146), ("cir-percent-range6-tx-bc", 147), ("cir-percent-range6-rx-bc", 148), ("cir-percent-range7-tx-bc", 149), ("cir-percent-range7-rx-bc", 150), ("cir-percent-range8-tx-bc", 151), ("cir-percent-range8-rx-bc", 152), ("lmi-tx-bc", 153), ("lmi-rx-bc", 154), ("lmi-livo-enq-tx-bc", 155), ("lmi-livo-enq-rx-bc", 156), ("lmi-livo-stat-tx-bc", 157), ("lmi-livo-stat-rx-bc", 158), ("lmi-full-enq-tx-bc", 159), ("lmi-full-enq-rx-bc", 160), ("lmi-full-stat-tx-bc", 161), ("lmi-full-stat-rx-bc", 162), ("lmi-other-tx-bc", 163), ("lmi-other-rx-bc", 164), ("total-uptime", 165), ("total-downtime", 166), ("igrp-tx-bc", 167), ("igrp-rx-bc", 168), ("vnip-tx-bc", 169), ("vnip-rx-bc", 170), ("annex-g-tx-bc", 171), ("annex-g-rx-bc", 172), ("delete-entry", -1)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterProtocol.setDescription('Long term statistics will be collected on the user-specifiable protocol. Setting a -1 remove the indexed protocol from the filter.') dfrapCfgFrPerfDlciDefaultUtilThreshold = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciDefaultUtilThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciDefaultUtilThreshold.setDescription('The default threshold for generating a utilization threshold trap as a percentage of the CIR. This value is used for dfrapCfgFrPerfDlciNamesUtilThreshold when a DLCI is first discovered. ') dfrapCfgFrPerfDlciUtilDuration = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciUtilDuration.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciUtilDuration.setDescription("The number of Short Term Intervals that a DLCI's utilization as a percentage of CIR must be above or below the value of dfrapCfgFrPerfDlciUtilThreshold before a dfrapPvc(Rx/Tx)UtilizationExceededTrap or dfrapPvc(Rx/Tx)UtilizationClearedTrap is issued. ") dfrapCfgFrPerfDlciNamesTableClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("clear-table", 1), ("clear-table-keep-stats", 2)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTableClear.setDescription("Clears the smperCfgFrPerfDlciNamesTable (1) clear the table or (2) clear the table but don't remove the dlcis from the short term statistics.") dfrapCfgFrPerfUserProtocolsTableClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-table", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTableClear.setDescription(' Clears the dfrapCfgFrPerfUserProtocolsTable (1) clear the table ') dfrapCfgFrPerfLTDlciFilterTableClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-table", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTableClear.setDescription(' Clears the dfrapCfgFrPerfLTDlciFilterTable (1) clear the table ') dfrapCfgFrPerfLTProtocolFilterTableClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-table", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTableClear.setDescription(' Clears the dfrapCfgFrPerfLTProtocolFilterTable (1) clear the table ') dfrapCfgFrPerfUnprovDlcisDelete = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("delete-unprov", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgFrPerfUnprovDlcisDelete.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUnprovDlcisDelete.setDescription('Delete all unprovisioned and Not-In-LMI dlcis (1) delete all unprovisioned ') dfrapCfgSecurityTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 8)) dfrapCfgTelnetCliLcdPassword = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTelnetCliLcdPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTelnetCliLcdPassword.setDescription('The password needed to start a CLI (Command Line Interface), Telnet or LCD session.') dfrapCfgTftpPassword = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgTftpPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpPassword.setDescription('The password needed to initiate a TFTP download.') dfrapCfgCliPassword = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgCliPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCliPassword.setDescription('OBSOLETE: The Telnet, CLI and LCD passwords are one and the same. Use the above CfgTelnetCliLcdPassword to log into the CLI (Command Line Interface).') dfrapCfgLcdPassword = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgLcdPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLcdPassword.setDescription('OBSOLETE: The Telnet, CLI and LCD passwords are one and the same. Use the above CfgTelnetCliLcdPassword to log into the LCD Interface.') dfrapCfgGetCommunityString = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgGetCommunityString.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgGetCommunityString.setDescription('The community string for doing SNMP GETs. The unit will respond to GETs that use either this string or the SET community string. All others will be rejected and a trap will be generated. String is case sensitive.') dfrapCfgSetCommunityString = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgSetCommunityString.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSetCommunityString.setDescription('The community string for doing SNMP SETs. The unit will reject SETs with any other coimmunity string and will generate a trap. String is case sensitive.') dfrapCfgLock = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 600))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgLock.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLock.setDescription(' Request to start configuration download and lock out any other means of configuring the unit. The integer passed in represents the time out period in seconds between sets. A set to this object will fail if the unit is already in a configuration locked state.') dfrapCfgLockID = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 13), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgLockID.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLockID.setDescription(' Returns the IP Address of the management station currently in control of configuration. A unit that is not in a configuration locked state will return 0.0.0.0') dfrapCfgID = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 14), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapCfgID.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgID.setDescription(' A read of this object returns the Current Configuration ID string. A write sets the Configuration ID string. The string contains a starting character to indicate the last configuration source C = Envisage N = CLI/TELNET L = LCD S= other SNMP management station and a unique 7 integer value to differentiate configurations between common sources. A value of *STARTUP indicates the configuration has been defaulted. A write will only be accepted from the management station that has successfully obtained the configuration lock') dfrapCfgStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("in-progress", 1), ("success", 2), ("datarate-density-conflict", 3), ("bandwidth-allocation-error", 4), ("general-error", 5), ("timeout", 6), ("aborted-by-user", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgStatus.setDescription(' The status of a configuration install is reported here. On startup, a status of success will be reported. (1) The configuration has been locked and an update or unlock command has not been received. (2) An update command has been received and the configuration has been validated as consistent; . (3) An update command has been received but the DTE port datarate is not compatible with the density. (4) An update command has been received but the number of channels to be allocated will not fit in the available channels. (5) An update command has been received but there is an error in the configuration that is not a datarate-density-conflict or bandwidth-allocation-error. (6) The time between consecutive set requests exceeded the timeout sent with the dfrapCfgLock command. (7) The user sent a dfrapCfgUnlock command before a dfrapCfgUpdate command. This usually means that one of the sets in the configuration failed. ') dfrapCfgUnlock = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("un-lock", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgUnlock.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgUnlock.setDescription(' The management station sets this variable to complete the configuration install process. Un-lock (1) notifies the agent to remove the lock on configuring the unit without updating the configuration.') dfrapCfgUpdate = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("update", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapCfgUpdate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgUpdate.setDescription(' The management station sets this variable to complete the configuration install process. Update (1) notifies the agent to start the update process within the unit.') dfrapDiagnostics = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 3)) dfrapDiagUnitTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 1)) dfrapDiagUnitLocLoop = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable-loopback-mode", 1), ("disable-loopback-mode", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagUnitLocLoop.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitLocLoop.setDescription('Controls a bi-directional unit loopback. Data is received from either interface, processed, and transmitted back towards the same interface. When configured for Frame Relay operation the unit will preserve the LMI path during this loopback. In Frame Relay mode, only valid frames are looped back (pseudorandom test patterns will be dropped). (1) enable unit loopback') dfrapDiagUnitReset = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("reset-unit", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapDiagUnitReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitReset.setDescription('Enables the operator to remotely reset the unit. Using this command will cause the unit to terminate all its connections and drop data. (1): reset unit') dfrapDiagUnitTimeRemaining = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 3), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagUnitTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrapDiagDdsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 2)) dfrapDiagDdsLclLpbk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable-loopback-mode", 1), ("disable-loopback-mode", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagDdsLclLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsLclLpbk.setDescription('Controls local network loopback. All data received from the WAN, regardless of format or content, is transmitted back out (line interface loopback) while still being sent to the DTE. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback. (1) enable DDS line loopback (2) disable DDS line loopback') dfrapDiagDdsRmtLpbk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("no-loop-from-remote", 1), ("simplex-current-loop", 2), ("non-latching-loop", 3), ("latching-loopback", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagDdsRmtLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsRmtLpbk.setDescription('Enables the operator to examine (ONLY) the status of network loopbacks placed by external equipment, such as your local CO. Any of these conditions will result in a DDS line loopback. (1) no remote loop up command (2) simplex current reversal loopback command (3) non-latching loopback command (4) latching loopback comamnd') dfrapDiagDdsTimeRemaining = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagDdsTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrapDiagDteTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 3)) dfrapDiagDteLclLpbk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enable-loopback-mode", 1), ("disable-loopback-mode", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagDteLclLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteLclLpbk.setDescription('Controls a bi-directional DTE loopback. All data received at the DTE interface is looped back regardless of format or content (line loopback). All data received at the WAN interface is looped back regardless of format or content (line loopback). When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback. (1) enable DTE loopback (2) disable DTE loopback') dfrapDiagDteV54Lpbk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v54-received", 1), ("v54-not-received", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagDteV54Lpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteV54Lpbk.setDescription('This selection displays the status of the DTE Channel V.54 Loopback for the channel. This loopback is initiated by the remote node, causing this unit to enter a Local DTE loopback condition. (1) V54 loopback pattern received from WAN (2) V54 loopback pattern not received from WAN') dfrapDiagDteRmtV54Lpbk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(3, 4))).clone(namedValues=NamedValues(("transmit-code-enable", 3), ("transmit-code-disable", 4)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapDiagDteRmtV54Lpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteRmtV54Lpbk.setDescription('This selection controls the DTE Channel V.54 Remote Loopback. Transmit-code-enable (3) will cause the node to transmit a V.54 code to the remote node which will then enter a Local DTE Loopback state. transmit-code-disable (4) will transmit the loopdown code and cause the remote unit to remove the Local DTE Loopback path. (1) send remote V54 loop up command (2) send remote V54 loop down command') dfrapDiagDteTimeRemaining = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 13), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagDteTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrapDiagBertTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 5)) dfrapDiagBertState = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 5))).clone(namedValues=NamedValues(("start-test", 1), ("stop-test", 3), ("inject-error", 4), ("clear-error", 5)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapDiagBertState.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertState.setDescription(' The unit is capable of sending a pseudorandom test pattern (511 or QRSS) out the WAN and monitoring the WAN received data for the same pattern. This test may be ineffective in certain frame relay applications as pseudorandom data lacks appropriate framing. Refer to VLOOP and VBERT for PVC-based error-rate testing in a live frame relay network. (1) Start a BERT test (2) Stop a BERT test (4) Inject a single bit error into the outgoing pattern (5) Clear current BERT results') dfrapDiagBertStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("bert-off", 1), ("bert-out-of-sync", 2), ("bert-in-sync", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagBertStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertStatus.setDescription('Displays the current BERT test sync status. (1) BERT is not running (2) BERT is running but is not in sync (3) BERT is running and has detected a received BERT') dfrapDiagBertErrors = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagBertErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertErrors.setDescription('Displays the number of errors detected in Bert Test.') dfrapDiagBertErrSec = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagBertErrSec.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertErrSec.setDescription('Displays the number of seconds containing 1 or more errors in BERT Test.') dfrapDiagBertTimeElaps = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 5), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagBertTimeElaps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertTimeElaps.setDescription('Elapsed time since BERT test was started or last cleared.') dfrapDiagBertResyncs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagBertResyncs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertResyncs.setDescription('Displays the number of times BERT test has synched up on the pattern. The BERT will attempt to resynchronize in response to excessive errors. A running count here indicates that a clean BERT is not being received.') dfrapDiagBertPattern = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("five11-pattern", 1), ("qrss", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagBertPattern.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertPattern.setDescription('The type of pseudorandom BERT pattern used. (1) 511: 9-bit pseudorandom pattern (2) QRSS: 20-bit pseudorandom pattern with no more than 14 consecutive zeros') dfrapDiagVnipTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 3, 6), ) if mibBuilder.loadTexts: dfrapDiagVnipTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipTable.setDescription(' Table of Diagnostics performed with the VNIP protocol') dfrapDiagVnipEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapDiagVnipInterface"), (0, "DFRAP-MIB", "dfrapDiagVnipIndex")) if mibBuilder.loadTexts: dfrapDiagVnipEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipEntry.setDescription('VNIP VLOOP and VBERT diagnostic profile. Initiating these tests require an established and stable VNIP topology on an interface. Once the topology is in place, the user can execute a PVC-based diagnostic between this unit and any indexed entry in the topology table. The index into the topology table for a particular interface is required.') dfrapDiagVnipInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte-interface", 1), ("t1-interface", 2)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVnipInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipInterface.setDescription('The interface out which a PVC-based VNIP diagnostic will be run. This must be an interface with a valid and stable VNIP topology for a VNIP Diagnostic.') dfrapDiagVnipIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 2), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVnipIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipIndex.setDescription('The index to the external VNIP peer as presented by the VNIP topology database for the given interface. Refer to VnipTopologyTable to determine the index of the remote peer.') dfrapDiagVnipDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagVnipDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipDlci.setDescription('This is the DLCI value for the given interface/index combination. This comes from the VniptTopologyTable.') dfrapDiagVnipIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDiagVnipIpAddr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipIpAddr.setDescription('This is the ip address for the given interface/index combination. This comes from the VniptTopologyTable.') dfrapDiagVLOOP = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("start-test", 1), ("stop-test", 2)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapDiagVLOOP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVLOOP.setDescription('Controls execution of the Vnip Logical Loopback (VLOOP) test. VLOOP is designed as an intrusive test and customer data on the DLCI-under-test will be discarded. The VLOOP test includes a timed VBERT test and is run using the profile configured within this table. (1) start VLOOP test (2) stop VLOOP test (override VBERT test duration)') dfrapDiagVBERT = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("start", 1), ("stop", 2)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapDiagVBERT.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERT.setDescription('Controls execution of the Vnip Virtual Bit Eror Rate (VBERT) test. VBERT is designed to be a non-intrusive test and will attempt to statistically multiplex VBERT test data and customer data on the DLCI-under-test. However, VBERT data is given priority over customer data when the selected VBERT volume causes internal congestion. The test is run using the profile configured within this table. (1) start test (2) stop test (override VBERT test duration)') dfrapDiagVBERTRate = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8000, 64000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVBERTRate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTRate.setDescription('Specifies the throughput bit rate applied by VBERT or VLOOP to the DLCI-under-test. Any rate up to the DTE line rate may be selected. Note that selecting rates that approach line rate will impact neighboring DLCIs. (8000-64000): VBERT/VLOOP data rate (in bits per second).') dfrapDiagVBERTSize = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(64, 128, 256, 512, 1024, 2048))).clone(namedValues=NamedValues(("sixty-four-byte", 64), ("one-twenty-eight-byte", 128), ("two-fifty-six-byte", 256), ("five-hundred-twelve-byte", 512), ("thousand-twenty-four-byte", 1024), ("two-thous-forty-eight-byte", 2048)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVBERTSize.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTSize.setDescription('Specifies the size of framed data that will be used during the VBERT test, measures in Bytes. (64) 64-byte frames (128) 128-byte frames (256) 256-byte frames (512) 512-byte frames (1024) 1024-byte frames (2048) 2048-byte frames') dfrapDiagVBERTPktPercent = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("zero-percent", 1), ("twentyFive-percent", 2), ("fifty-percent", 3), ("seventyFive-percent", 4), ("oneHundred-percent", 5)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVBERTPktPercent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTPktPercent.setDescription('Specifies percentage of VBERT packets that will have the Frame Relay Discard Eligibility bit set. Frames with this bit set may be more likley to get dropped in a congested network. (1) 0% of the test frames are marked discard eligible (2) 25% of the test frames are marked discard eligible (3) 50% of the test frames are marked discard eligible (4) 75% of the test frames are marked discard eligible (5) 100% of the test frames are marked discard eligible') dfrapDiagVBERTTestPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 1440))).setMaxAccess("readwrite") if mibBuilder.loadTexts: dfrapDiagVBERTTestPeriod.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTTestPeriod.setDescription("Specifies the duration of a VBERT test. Note that VBERT is subjected to the unit's Loopback Timer and will be terminated by whichever timer expires first. (10-1440): VBERT time duration in seconds") dfrapStatus = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 4)) dfrapVnipTopologyTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 4, 2), ) if mibBuilder.loadTexts: dfrapVnipTopologyTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyTable.setDescription('VNIP topology is a feature that, for each interface, maps all compatible VNIP peers, their DLCI value, ip address and relative location. The topology is a fundamental prerequisite to applying the VNIP feature set which includes PVC-based delay measurement, diagnostics, and congestion monitoring. With VNIP enabled on an interface the unit will attempt to locate VNIP peers out that port. As peers are discovered and logged the unit will report the topology it has learned on its opposite interface. If VNIP is inactive on one interface it will not engage in any VNIP dialog; however it will continue to listen for topology messages on the inactive interface and will reflect these messages out the opposite interface if VNIP is enabled. With VNIP inactive on both interfaces the unit will transparently pass all VNIP messages. The topology database includes the interface, local DLCI value, remote peer DLCI value, remote peer ip address, and the number of VNIP hops in between. This table also reports the status of other VNIP features as well.') dfrapVnipTopologyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapVnipTopologyInterface"), (0, "DFRAP-MIB", "dfrapVnipTopologyIndex")) if mibBuilder.loadTexts: dfrapVnipTopologyEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyEntry.setDescription('The DLCI, IP address, and number of hops for a particular node, discovered via VNIP off of an interface. The entry may also have transit delay measurements and VBERT diagnostic status to report as well.') dfrapVnipTopologyInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte-interface", 1), ("dds-interface", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyInterface.setDescription('The interface off of which the peer was discovered. Topology is discovered by sending VNIP messages out each interface. Units discovered via a particular interface are kept in a list associated with that interface. (1) VNIP peers and status out DTE interface (2) VNIP peers and status out WAN interface') dfrapVnipTopologyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyIndex.setDescription('The number of this discovered peer in the list of nodes for this interface. For each interface, the nodes are numbered 1 through n. This index is required when disabling or enabling VBERT/VLOOP to a particular peer.') dfrapVnipTopologyDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyDlci.setDescription('The DLCI of the discovered neighboring peer. This may be different from the local DLCI.') dfrapVnipTopologyIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 4), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyIpAddr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyIpAddr.setDescription('The IP address for the discovered peer.') dfrapVnipTopologyNumHops = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyNumHops.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyNumHops.setDescription('The discovered peer is this number of hops away. Each hop is a VNIP peer.') dfrapVnipTopologyLocalDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopologyLocalDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyLocalDlci.setDescription('The DLCI from this unit over which the remote peer was discovered.') dfrapVnipTopoTDNumSamples = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoTDNumSamples.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDNumSamples.setDescription('The number of transit delay samples collected.') dfrapVnipTopoTDAvgDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoTDAvgDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDAvgDelay.setDescription('The average transit delay between this unit and the remote peer (in milliseconds).') dfrapVnipTopoTDMaxDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoTDMaxDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDMaxDelay.setDescription('The maximum transit delay between this unit and the remote peer (in milliseconds).') dfrapVnipTopoTDMinDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoTDMinDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDMinDelay.setDescription('The minimum transit delay between this node and the remote peer (in milliseconds).') dfrapVnipTopoTDLastDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoTDLastDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDLastDelay.setDescription('The most recent transit delay measured between this node and the remote peer (in milliseconds).') dfrapVnipTopoVLOOPStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("loopback-enable", 1), ("loopback-disable", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVLOOPStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVLOOPStatus.setDescription('This selection displays the status of the VNIP PVC Loopback for this entry. This loopback is initiated by the remote node through the VLOOP utility, causing this node to loop data back to the remote node.') dfrapVnipTopoVBERTStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("off", 1), ("testing", 2), ("test-failed", 3), ("test-completed", 4), ("in-test", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBERTStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBERTStatus.setDescription('Displays the current status of the VBERT/VLOOP test. (1) Off: no test has run or the entry has been cleared (2) Testing: the entry is generating VBERT test frames (3) Test Failed: the request for a test on this entry failed (4) Test Completed: a test has run and is finished results are complete (5) In Test: the entry is on the receiving end of VBERT packets') dfrapVnipTopoVBertTxDESetFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDESetFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDESetFrames.setDescription('Displays the number of Frames transmitted during VBERT/VLOOP Test that had the Discard Eligibility indicator bit set.') dfrapVnipTopoVBertRxDESetFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDESetFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDESetFrames.setDescription('Displays the number of Frames received during VBERT/VLOOP Test that had the Discard Eligibility indicator bit set.') dfrapVnipTopoVBertTxDEClrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDEClrFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDEClrFrames.setDescription('Displays the number of Frames transmitted during VBERT/VLOOP Test that had the Discard Eligibility indicator bit cleared.') dfrapVnipTopoVBertRxDEClrFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDEClrFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDEClrFrames.setDescription('Displays the number of Frames received during VBERT/VLOOP Test that had the Discard Eligibility indicator bit cleared.') dfrapVnipTopoVBertTransitDelayMax = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayMax.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayMax.setDescription('The maximum transit delay between this node and the remote peer during the VBERT/VLOOP test.') dfrapVnipTopoVBertTransitDelayAvg = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayAvg.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayAvg.setDescription('The average transit delay between this node and the remote peer during the VBERT/VLOOP test.') dfrapVnipTopoVBertTimeElapse = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 23), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertTimeElapse.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTimeElapse.setDescription('Elapsed time since VBERT/VLOOP test was started or cleared.') dfrapVnipTopoVBertPerUtilCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 24), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilCIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilCIR.setDescription(' The calculated percent of CIR utilization during a VBERT test, this value is only valid after a test is complete not during.') dfrapVnipTopoVBertPerUtilEIR = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 25), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilEIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilEIR.setDescription(' The calculated percent of EIR utilization during a VBERT test, this value is only valid after a test is complete not during.') dfrapVnipTransitDelayClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-transit-delay", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapVnipTransitDelayClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTransitDelayClear.setDescription('Allows the user to clear all the VNIP Transit Delay data collected in the VNIP topology database. (1) Clear entire Transit Delay results database') dfrapLmiSourcing = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("initializing", 1), ("passthrough", 2), ("status-enqs-to-dte", 3), ("status-enqs-to-dds", 4), ("status-rspns-to-dte", 5), ("status-rspns-to-dds", 6), ("disabled", 7), ("status-rspns-both", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapLmiSourcing.setStatus('mandatory') if mibBuilder.loadTexts: dfrapLmiSourcing.setDescription('If configured for Frame Relay with a non-zero LMI inactivity timer the unit will monitor the status of LMI and, if proper messaging is not detected, will attempt to emulate either Frame Relay DTE or DCE devices in attempt to restore LMI to any attached equipment and provide managed access for diagnostic purposes. Typically frads/routers are Frame Relay DTE while switches are Frame Relay DCE but this model may vary. In the absence of full-duplex LMI, the unit will cycle through various states in attempt to adapt to an LMI partner. The unit will try each state for the duration of the LMI Inactivity timer and then advance to the next one if satisfactory handshaking is not established. While in any of these states if full-duplex LMI handshaking does appear, the unit will immediately revert to the passthrough state. (1) initializing (2) Passthrough: not sourcing any LMI messages. (3) Status Enquiries out DTE interface: unit is emulating a Frame Relay DTE device out the its (physical) DTE interface. (4) Status Enquiries out WAN interface: unit is emulating a Frame Relay DTE device out the its WAN interface. (5) Status Responses out the DTE interface: unit is emulating a Frame Relay DCE device out the its (physical) DTE interface (provisioning the single default management DLCI). (6) Status Responses out the WAN interface: unit is emulating a Frame Relay DCE device out the its WAN interface (provisioning the single default management DLCI). (7) Disabled - LMI Inactivity timer is zero or unit not configured for a Frame Relay application. (8) Status Responses out both DTE and WAN interfaces: unit is configured for Fixed DCE mode of management and emulates a Frame Relay DCE independently on both ports (provisioning the single default management DLCI).') dfrapVBertClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-vbert", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapVBertClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVBertClear.setDescription('Allows the user to clear all the VBERT data collected in the VNIP topology database as long as the entry is not in a test status. (1) Clear all VBERT/VLOOP status information') dfrapStatusMgmtTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 3)) dfrapStatusMgmtChannel = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("slip", 2), ("private-dlci", 3), ("piggyback-dlci", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusMgmtChannel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtChannel.setDescription("This is the method in which the unit is configured for SNMP management access. (1) None: SNMP management disabled (2) SLIP: out-of-band management via asynchronous Serial Line IP (3) Private DLCI: in-band management using a private DLCI that is dedicated solely to this unit's management. (4) Piggyback DLCI: in-band management using any DLCI optionally multiplexing both management and user data.") dfrapStatusMgmtInterface = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("comm", 1), ("local-dte", 2), ("remote-wan", 3), ("local-and-remote", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusMgmtInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtInterface.setDescription('This is the port(s) on which the management traffic will appear. (1) Async Maintenance(Comm)/Console port - SLIP mode (2) Local DTE interface: unit is configured for Private Local DLCI mode (3) Remote WAN Interface: unit is confiogured for Private Remote DLCI mode (4) DTE and WAN Interfaces: unit is configured for either Piggyback Bidirectional mode.') dfrapStatusMgmtInterfaceStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("active", 1), ("inactive", 2), ("alarm", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusMgmtInterfaceStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtInterfaceStatus.setDescription('This is the status of the port(s) on which the management traffic will appear. (1) Active: port is configured and status is okay (2) Inactive: port is declared out of service (3) Alarm: port is experiencing an alarm condition that may interefere with management access ') dfrapStatusMgmtDefaultDLCINo = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCINo.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCINo.setDescription('This is the DLCI for the PVC that is defined for the Management port. All traffic using this DLCI in the Frame Replay packet will be destined for the InBand Management task.') dfrapStatusMgmtDefaultDLCIStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("na", 1), ("dlci-active", 2), ("dlci-inactive", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCIStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCIStatus.setDescription('This is the status of the default management DLCI. (1) not applicable: SLIP mode or management is disabled (2) DLCI Active: default DLCI is active in the LMI full status response. (3) DLCI Inactive: default DLCI is not active in the LMI full status response.') dfrapStatusLmiAutosense = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("disabled", 1), ("searching", 2), ("learned-annex-d", 3), ("learned-annex-a", 4), ("learned-type1", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusLmiAutosense.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusLmiAutosense.setDescription("This indicates the current status of LMI Auto Sensing if it's enabled. (1) Disabled: LMI is configured as Type 1, Annex-D, or Annex-A (2) Searching: unit is attempting to determine the LMI type of the attached equipment by issuing LMI messages of each LMI type and searching for responses. (3) Learned Annex-D: unit has successfully detected Annex-D LMI (ANSI T1.617 Annex D) (4) Learned Annex-A: unit has successfully detected Annex-A LMI (ITU/CCITT Q.933 Annex A) (5) Learned Type 1: unit has successfully detected Type 1 LMI (Cisco, Group of four, LMI)") dfrapStatusDteTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 7)) dfrapStatusDteMode = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("no-connections", 1), ("active", 2), ("test", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteMode.setDescription('Status of the DTE port. (1) No-connections: indicates the port is not completely to pass data to/from the WAN. (2) Active: port is configured and ready to pass data. (3) Test: diagnostic condition in process.') dfrapStatusDteRts = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteRts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteRts.setDescription('Status of the Request to Send (RTS) signal from the DTE port. (1) RTS Active (2) RTS Inactive') dfrapStatusDteDtr = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteDtr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDtr.setDescription('Status of the Data Terminal Ready (DTR) signal from the DTE port. (1) DTR Active (2) DTR Inactive') dfrapStatusDteDcd = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteDcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDcd.setDescription('Status of the Data Carrier Detect (DCD) signal driven by this unit towards the DTE port (1) DCD Active (2) DCD Inactive') dfrapStatusDteDsr = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteDsr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDsr.setDescription('Status of the Data Set Ready (DSR) signal driven by this unit towards the DTE port. (1) DSR Active (2) DSR Inactive') dfrapStatusDteCts = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteCts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteCts.setDescription('Status of the Clear to Send (CTS) signal driven by this unit towards the DTE port (1) CTS Active (2) CTS Inactive') dfrapStatusDdsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 8)) dfrapStatusDdsLineStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 8, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("in-sync", 1), ("out-of-service", 2), ("out-of-frame", 3), ("bpv-threshold-failure", 4), ("loss-of-signal", 5), ("simplex-current-loopback", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDdsLineStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsLineStatus.setDescription('The Current status of the physical interface. Your network carrier can send Out-of-Service or Maintenance Mode codes. (1) in sync (2) out of service (3) out of frame (4) bipolar violations (5) loss of signal (6) simplex current loopback') dfrapStatusDdsLoopLength = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 8, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("loss-40-50db", 1), ("loss-39-44db", 2), ("loss-33-38db", 3), ("loss-27-32db", 4), ("loss-21-26db", 5), ("loss-15-20db", 6), ("loss-8-14db", 7), ("loss-1-7db", 8), ("loss-0db", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDdsLoopLength.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsLoopLength.setDescription('The estimated line attenuation (signal loss) on the DDS channel. Actual cable length can be estimated with the assumption that a good quality data grade cable is used. Use of lower quality cabling will produce greater line attenuation on shorter cable runs. (1) est. between 40 and 50dB line loss, equivalent to roughly 8 to 9 Kilometers of nominal cable length. (2) est. between 39 and 44dB line loss, equivalent to roughly 7 to 8 Kilometers of nominal cable length. (3) est. between 33 and 38dB line loss, equivalent to roughly 6 to 7 Kilometers of nominal cable length. (4) est. between 27 and 22dB line loss, equivalent to roughly 5 to 6 Kilometers of nominal cable length. (5) est. between 21 and 26dB line loss, equivalent to roughly 4 to 5 Kilometers of nominal cable length. (6) est. between 15 and 20dB line loss, equivalent to roughly 3 to 4 Kilometers of nominal cable length (7) est. between 8 and 14dB line loss, equivalent to roughly 2 to 3 Kilometers of nominal cable length (8) est. between 1 and 7dB line loss, equivalent to roughly .5 to 2 Kilometers of nominal cable length (9) est. 0dB line loss, equivalent to less than 1Km nominal cable length') dfrapStatusLedTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 4)) dfrapStatusDteModeLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("offLED-DTE-inactive", 1), ("greenLED-normal", 2), ("yellowLED-test-mode", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteModeLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteModeLED.setDescription('Status of the DTE Mode LED. (1) DTE Mode LED off: Missing control signals (2) DTE Mode LED green: Normal (3) DTE Mode LED yellow: Test Mode') dfrapStatusDteStatusLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2))).clone(namedValues=NamedValues(("greenLED-active", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteStatusLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteStatusLED.setDescription('Status of the DTE Status LED. (1) DTE Status LED green: normal') dfrapStatusDteTxLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("offLED-inactive", 1), ("greenLED-tx-data-transmitting", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteTxLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteTxLED.setDescription('Status of the DTE Tx Data LED. In Frame Relay mode, this LED is ON (green) when the DTE is not sending HDLC Flags and is OFF when HDLC flags are being transmit. In CBO mode, the LED is ON (green) for a SPACE and OFF for a MARK. (1) DTE Transmit LED OFF: inactive (HDLC flags or CBO marks) (2) DTE Transmit LED ON: active (HDLC frames or CBO spaces)') dfrapStatusDteRxLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("offLED-inactive", 1), ("greenLED-rx-data-receiving", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDteRxLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteRxLED.setDescription('Status of the DTE Rx Data LED. In Frame Relay mode, this LED is ON (green) when the WAN is receiving HDLC Flags and is OFF when HDLC flags are being received. In CBO mode, the LED is ON (green) for a SPACE and OFF for a MARK. (1) DTE Receive LED OFF: inactive (HDLC flags or CBO marks) (2) DTE Receive LED ON: active (HDLC frames or CBO spaces)') dfrapStatusDdsModeLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("greenLED-normal", 2), ("yellowLED-test-mode", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDdsModeLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsModeLED.setDescription('Status of the DDS Mode LED. (1) DDS Mode LED is green: normal data mode (2) DDS Mode LED is yellow: test mode') dfrapStatusDdsStatusLED = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("offLED-DDS-no-signal", 1), ("greenLED-normal", 2), ("yellowLED-remote-alarm", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusDdsStatusLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsStatusLED.setDescription('Status of the DDS Status LED. (1) DDS Status LED is OFF: no signal received from WAN (2) DDS Status LED is green: normal (3) DDS Status LED is yellow: remote alarm') dfrapStatusAllLEDs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapStatusAllLEDs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusAllLEDs.setDescription("Status of all six DFRAP LEDs, encoded in a string. 'F' off '5' green '0' yellow 'A' red '7' blinking green and off '3' blinking yellow and off 'B' blinking red and off '4' blinking green and yellow '6' blinking green and red '8' blinking yellow and red Positionally, the 6 letters are DTE Mode, DTE status, Dte Tx, Dte Rx, DDS Mode, and DDS Status. For example, '555550' would mean: DTE in normal mode, active status, transmitting and receiving and DDS normal with remote alarm.") dfrapPerformance = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5)) dfrapPerfMgmtIp = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2)) dfrapPerfMgmtIpIFStatsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1)) dfrapPerfMgmtIpIFInOctets = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInOctets.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInOctets.setDescription('The count of all management octets received. Same as ifInOctets in mib-2.') dfrapPerfMgmtIpIFInErrors = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInErrors.setDescription('The count of management packets received that could not be delivered because of errors. Same as ifInErrors in mib-2.') dfrapPerfMgmtIpIFOutOctets = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOutOctets.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOutOctets.setDescription('The count of all management octets transmitted. Same as ifOutOctets in mib-2.') dfrapPerfMgmtIpIFOperStatus = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOperStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOperStatus.setDescription('The current operational state. Same as ifOperStatus in mib-2. (1) link up (2) link down (30 test') dfrapPerfMgmtIpIPStatsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2)) dfrapPerfMgmtIpIPInRcv = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInRcv.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInRcv.setDescription('The count of all management datagrams received. Same as ipInReceives in mib-2.') dfrapPerfMgmtIpIPInHdrErr = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInHdrErr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInHdrErr.setDescription('The count of management datagrams received that were discarded because of errors in their IP headers. Same as ipInHdrErrors in mib-2.') dfrapPerfMgmtIpIPInAddrErr = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInAddrErr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInAddrErr.setDescription('The count of management datagrams received that were discarded because unexpected or invalid IP addresses in their IP headers. Same as ipInAddrErrors in mib-2.') dfrapPerfMgmtIpIPInProtUnk = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInProtUnk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInProtUnk.setDescription('The count of management datagrams received that were discarded because of unsupported protocols. Same as ipInUnknownProtos in mib-2.') dfrapPerfMgmtIpIPInDscrd = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDscrd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDscrd.setDescription('The count of management datagrams received that were discarded for reasons other than a problem with the datagram. Same as ipInDiscards in mib-2.') dfrapPerfMgmtIpIPInDlvrs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDlvrs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDlvrs.setDescription('The count of management datagrams received that were delivered to IP client-protocols. Same as ipInDelivers in mib-2.') dfrapPerfMgmtIpIPOutRqst = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutRqst.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutRqst.setDescription('The count of all outgoing management datagrams originating in this node. Same as ipOutRequests in mib-2.') dfrapPerfMgmtIpIPOutDscrd = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutDscrd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutDscrd.setDescription('The count of outgoing management datagrams that were discarded for reasons other than a problem with the datagram. Same as ipOutDiscards in mib-2.') dfrapPerfMgmtIpIPOutNoRt = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutNoRt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutNoRt.setDescription('The count of outgoing management datagrams that were discarded because no route could be found for transmission. Same as ipOutNoRoutes in mib-2.') dfrapPerfMgmtIpICMPStatsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3)) dfrapPerfMgmtIpICMPInMsgs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInMsgs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInMsgs.setDescription('The count of all management ICMP messages received. Same as icmpInMsgs in mib-2.') dfrapPerfMgmtIpICMPInErrors = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInErrors.setDescription('The count of management ICMP messages received with errors. Same as icmpInErrors in mib-2.') dfrapPerfMgmtIpICMPInDestUnreachs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInDestUnreachs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInDestUnreachs.setDescription('The count of management ICMP Destination Unreachable messages received. Same as icmpInDestUnreachs in mib-2.') dfrapPerfMgmtIpICMPInTimeExcds = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInTimeExcds.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInTimeExcds.setDescription('The count of management ICMP Time Exceeded messages received. Same as icmpInTimeExcds in mib-2.') dfrapPerfMgmtIpICMPInParmProbs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInParmProbs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInParmProbs.setDescription('The count of management ICMP Parameter Problem messages received. Same as icmpInParmProbs in mib-2.') dfrapPerfMgmtIpICMPInRedirects = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInRedirects.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInRedirects.setDescription('The count of management ICMP Redirect messages received. Same as icmpInRedirects in mib-2.') dfrapPerfMgmtIpICMPInEchos = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchos.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchos.setDescription('The count of management ICMP Echo messages received. Same as icmpInEchos in mib-2.') dfrapPerfMgmtIpICMPInEchoReps = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchoReps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchoReps.setDescription('The count of management ICMP Echo Reply messages received. Same as icmpInEchoReps in mib-2.') dfrapPerfMgmtIpICMPOutMsgs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutMsgs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutMsgs.setDescription('The count of all outgoing management ICMP messages originating in this node. Same as icmpOutMsgs in mib-2.') dfrapPerfMgmtIpICMPOutErrors = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutErrors.setDescription('The count of outgoing management ICMP messages not transmitted due problems found by the ICMP layer. which this entity did Same as icmpOutErrors in mib-2.') dfrapPerfMgmtIpICMPOutDestUnreachs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutDestUnreachs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutDestUnreachs.setDescription('The count of outgoing management ICMP Destination Unreachable messages. Same as icmpOutDestUnreachs in mib-2.') dfrapPerfMgmtIpICMPOutParmProbs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutParmProbs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutParmProbs.setDescription('The count of outgoing management ICMP Parameter Problem messages. Same as icmpOutParmProbs in mib-2.') dfrapPerfMgmtIpICMPOutRedirects = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutRedirects.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutRedirects.setDescription('The count of outgoing management ICMP Redirect messages. Same as icmpOutRedirects in mib-2.') dfrapPerfMgmtIpICMPOutEchos = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchos.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchos.setDescription('The count of management outgoing ICMP Echo messages. Same as icmpOutEchos in mib-2.') dfrapPerfMgmtIpICMPOutEchoReps = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchoReps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchoReps.setDescription('The count of management outgoing ICMP Echo Reply messages. Same as icmpOutEchoReps in mib-2.') dfrapPerfMgmtIpUDPStatsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4)) dfrapPerfMgmtIpUDPInDatagrams = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPInDatagrams.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPInDatagrams.setDescription('The count of all management UDP datagrams received. Same as udpInDatagrams in mib-2.') dfrapPerfMgmtIpUDPOutDatagrams = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPOutDatagrams.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPOutDatagrams.setDescription('The count of all management UDP datagrams sent. Same as udpOutDatagrams in mib-2.') dfrapPerfMgmtIpUDPNoPorts = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPNoPorts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPNoPorts.setDescription('The count of all management UDP datagrams received with no application at the destination port. Same as udpNoPorts in mib-2.') dfrapPerfMgmtIpTCPStatsTable = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5)) dfrapPerfMgmtIpTCPActiveOpens = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPActiveOpens.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPActiveOpens.setDescription('The count of the times management TCP connections have made a direct state transition from CLOSED to SYN-SENT. Same as tcpActiveOpens in mib-2.') dfrapPerfMgmtIpTCPPassiveOpens = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPPassiveOpens.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPPassiveOpens.setDescription('The count of the times management TCP connections have made a direct state transition from CLOSED to SYN-RCVD. Same as tcpPassiveOpens in mib-2.') dfrapPerfMgmtIpTCPAttemptFails = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPAttemptFails.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPAttemptFails.setDescription('The count of the times management TCP connections have made a direct state transition from SYN-SENT or SYN-RCVD to CLOSED state, plus the count of the times TCP connections have made a direct state transition from SYN-RCVD to LISTEN. Same as tcpAttemptFails in mib-2.') dfrapPerfMgmtIpTCPCurrEstab = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPCurrEstab.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPCurrEstab.setDescription('The count of the management TCP connections in state ESTABLISHED or CLOSE-WAIT. Same as tcpCurrEstab in mib-2.') dfrapPerfMgmtIpTCPInSegs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPInSegs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPInSegs.setDescription('The count of all the management segments received. Same as tcpInSegs in mib-2.') dfrapPerfMgmtIpTCPOutSegs = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPOutSegs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPOutSegs.setDescription('The count of all the management segments sent. Same as tcpOutSegs in mib-2.') dfrapPerfThruput = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 3)) class Index(Integer32): pass dfrapPerfThruputPerIntfTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1), ) if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTable.setDescription('The throughput per interface table. These values are accumulated across all DLCIs.') dfrapPerfThruputPerIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfThruputPerIntfIndex")) if mibBuilder.loadTexts: dfrapPerfThruputPerIntfEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfEntry.setDescription('An entry in the throughput per interface table.') dfrapPerfThruputPerIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte", 1), ("dds", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfIndex.setDescription('Interface for which the statistics apply. (1) DTE interface (2) DDS interface') dfrapPerfThruputPerIntfRxByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxByteCnt.setDescription('The number of framed bytes that have been received on this interface.') dfrapPerfThruputPerIntfTxByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxByteCnt.setDescription('The number of framed bytes that have been transmit on this interface.') dfrapPerfThruputPerIntfRxFrameCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxFrameCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxFrameCnt.setDescription('The number of frames that have been received on this interface.') dfrapPerfThruputPerIntfTxFrameCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxFrameCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxFrameCnt.setDescription('The number of frames that have been transmit on this interface.') dfrapPerfThruputPerIntfRxCrcErrCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxCrcErrCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxCrcErrCnt.setDescription('The number of frames with CRC errors received on this interface.') dfrapPerfThruputPerIntfRxAbortCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxAbortCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxAbortCnt.setDescription('The number of aborted frames received on this interface.') dfrapPerfThruputPerIntfRxBpvCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxBpvCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxBpvCnt.setDescription('The number of BPV errors received on this interface.') dfrapPerfThruputPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2), ) if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTable.setDescription('Layer 2 statistics on a per-DLCI basis. Transmit direction is from DTE to WAN and receive direction is from the WAN towards the DTE.') dfrapPerfThruputPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfThruputPerDlciIndex"), (0, "DFRAP-MIB", "dfrapPerfThruputPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEntry.setDescription('The Statistics for a particular Data Link Connection Management Interface (DLCI).') dfrapPerfThruputPerDlciIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 1), Index()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciIndex.setDescription('This value must be in the range 1-3. Other than that, this value is ignored as all three will return the same result.') dfrapPerfThruputPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrapPerfThruputPerDlciCreateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCreateTime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCreateTime.setDescription('The amount of time elapsed since this DLCI was first detected through traffic sensing or in an LMI message (in seconds).') dfrapPerfThruputPerDlciChangeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciChangeTime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciChangeTime.setDescription('The amount of elapsed time since this DLCI last changed state from active to inactive or vice versa (in seconds).') dfrapPerfThruputPerDlciRxByte = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxByte.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxByte.setDescription('The number of bytes that have been received from the WAN towards the DTE on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciTxByte = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxByte.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxByte.setDescription('The number of bytes that have been transmit from the DTE towards the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciRxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFrame.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFrame.setDescription('The number of frames that have been received from the WAN towards to the DTE on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciTxFrame = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxFrame.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxFrame.setDescription('The number of frames that have been transmit from the DTE towards the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciRxFecn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFecn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFecn.setDescription('The number frames received from the WAN towards the DTE that have had the Forward Explict Congestion Notification (FECN) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciRxBecn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxBecn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxBecn.setDescription('The number frames received from the WAN towards the DTE that have had the Backward Explict Congestion Notification (BECN) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciRxDe = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxDe.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxDe.setDescription('The number frames received from the WAN towards the DTE that have had the Discard Eligibility (DE) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciTxDe = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxDe.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxDe.setDescription('The number frames transmit towards the WAN from the DTE that have had the Discard Eligibility (DE) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciRxThruput = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxThruput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxThruput.setDescription('The number of bits/sec received from the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciTxThruput = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxThruput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxThruput.setDescription('The number of bits/sec transmit to the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrapPerfThruputPerDlciCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCIR.setDescription('The Committed Information Rate (CIR) for this DLCI. This can come form one of three sources: From the LMI Full Status Response, configured by the user, or the DTE line rate (default).') dfrapPerfThruputPerDlciCirType = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cir-acquired-from-lmi", 1), ("cir-configured-by-user", 2), ("cir-is-dte-datarate", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCirType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCirType.setDescription('The source of the CIR value for this DLCI. (1) CIR acquired from LMI message. Will override user configured CIR. This feature is not supported by all Frame Relay DCE (switches). (2) CIR configured by user. (3) CIR is DTE Line Rate. Default if CIR is not set by one of the other methods.') dfrapPerfThruputPerDlciUptime = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciUptime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciUptime.setDescription('The total amount of time that the DLCI has been up as reproted by the LMI Full Status Response (in seconds).') dfrapPerfThruputPerDlciDowntime = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciDowntime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciDowntime.setDescription("The total amount of time that the DLCI has been declared down (in seconds). A DLCI is Down if it's explicitly declared Inactive through LMI or if it's missing from the LMI Full Status message or if there is no Full Status message at all.") dfrapPerfThruputPerDlciPvcState = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("pvc-active", 1), ("pvc-inactive", 2), ("pvc-unprovisioned", 3), ("pvc-not-in-lmi", 4), ("pvc-lmi-timeout", 5), ("pvc-undetermined", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciPvcState.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciPvcState.setDescription('The current state of the DLCI: (1) DLCI marked active in last full status LMI (2) DLCI in last full status LMI but not marked active (3) DLCI has never been seen in a full status LMI (4) DLCI was seen at least once in a full status LMI but was not in the last full status LMI (5) the full status LMI has timed out; all previously active or inactive DLCIs are changed to this state (6) DLCI was detected in the traffic stream and a full status LMI has not been received so the state cannot be determined yet. ') dfrapPerfThruputPerDlciOutageCount = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciOutageCount.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciOutageCount.setDescription('The number of times the smperPerfThruputPerDlciPvcState transitions from pvc-active or pvc-undetermined to one of the other (inactive) states. ') dfrapPerfThruputPerDlciAvailability = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 21), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciAvailability.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciAvailability.setDescription('The measure of the percentage time the DLCI is available: UpTime/CreateTime or zero if CreateTime = 0. (in 1/1000 per cent; i.e. availability = 1000 converts to 1%). ') dfrapPerfThruputPerDlciMTBSO = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 22), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTBSO.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTBSO.setDescription('Mean Time Between Service Outages: UpTime/OutageCount or zero if OutageCount = 0 (in seconds). ') dfrapPerfThruputPerDlciMTTSR = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 23), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTTSR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTTSR.setDescription('Mean Time to ServiceRestoral: DownTime/OutageCount or zero if OutageCount = 0 (in seconds). ') dfrapPerfThruputPerDlciEncapType = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("encap-na", 1), ("encap-1490", 2), ("encap-cisco", 3), ("encap-annex-g", 4), ("encap-other", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEncapType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEncapType.setDescription('The encapsulation protocol seen in the last frame analyzed on this DLCI: (1) DLCI is the LMI DLCI or no frames have been analyzed (2) The encapsulation is per rfc1490 (3) The encapsulation is per Cisco proprietary (4) The encapsulation is per Annex-G (X.25 over frame relay) (5) The encapsulation is not one of the above. ') dfrapPerfThruputPerDlciRxUtilizationStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("clear", 1), ("over-threshold", 2), ("alarm", 3), ("alarm-under-threshold", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxUtilizationStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxUtilizationStatus.setDescription(' The status of the per-DLCI utilization alarm in the receive direction. (1) there is no alarm condition; utilization is under the configured CIR percentage threshold; if traps are enabled and the alarm had been previously triggered, a utilization alarm clear trap will be sent. (2) the utilization has been over the configured CIR percentage threshold for less than the configured duration. (3) the utilization has been over the configured CIR percentage threshold for more than the configured duration; if traps are enabled a utilization exceeded trap will be sent. (4) the utilization has been under the configured CIR percentage threshold for less than the configured duration. ') dfrapPerfThruputPerDlciTxUtilizationStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("clear", 1), ("over-threshold", 2), ("alarm", 3), ("alarm-under-threshold", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxUtilizationStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxUtilizationStatus.setDescription(' The status of the per-DLCI utilization alarm in the transmit direction. (1) there is no alarm condition; utilization is under the configured CIR percentage threshold; if traps are enabled and the alarm had been previously triggered, a utilization alarm clear trap will be sent. (2) the utilization has been over the configured CIR percentage threshold for less than the configured duration. (3) the utilization has been over the configured CIR percentage threshold for more than the configured duration; if traps are enabled a utilization exceeded trap will be sent. (4) the utilization has been under the configured CIR percentage threshold for less than the configured duration. ') dfrapPerfThruputPerDlciEIR = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 27), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEIR.setDescription('The Excess Information Rate. This is defined to be the maximum rate traffic is (supposed to be) allowed to burst to.') dfrapPerfThruputCommands = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3)) dfrapPerfThruputCmdClearDteStats = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDteStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDteStats.setDescription('Allows the user to zero out all the interface statistics in the DTE portion of the ThruputPerIntf statistics table. (1) Clear DTE interface statistics command.') dfrapPerfThruputCmdClearDdsStats = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDdsStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDdsStats.setDescription('Allows the user to zero out all the interface statistics in the DDS portion of the ThruputPerIntf statistics table. (1) Clear WAN interface statistics command.') dfrapPerfThruputCmdClearAllIntfStats = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllIntfStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllIntfStats.setDescription('Allows the user to zero out all the statistics in the ThruputPerIntf statistics table.') dfrapPerfThruputCmdClearDlciStats = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDlciStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDlciStats.setDescription('Allows the user to zero out all the per-DLCI statistics in the ThruputPerDlci statistics table and the the short term statistics tables. (1) Clear layer 2 per-DLCI statistics command.') dfrapPerfThruputCmdClearAllStats = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllStats.setDescription('Allows the user to zero out all the statistics in the ThruputPerIntf and ThruputPerDlci statistics tables and in the short term statistics tables. (1) Clear all interface and layer 2 per-DLCI statistics.') dfrapPerfThruputCmdRemoveStsDlci = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 6), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdRemoveStsDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdRemoveStsDlci.setDescription('Allows the user to remove a Dlci from the short term statistics tables.') dfrapPerfThruputCmdReplaceDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7), ) if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciTable.setDescription('Allows the user to replace one DLCI in the short-term statistics table with another one.') dfrapPerfThruputCmdReplaceDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfThruputCmdReplaceDlciValue")) if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciEntry.setDescription('Allows the user to replace one DLCI in the short-term statistics table with another one.') dfrapPerfThruputCmdReplaceDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciValue.setDescription('A Dlci that is in the short-term stats table. Index by this Dlci value to identify the statistics entry to be replaced.') dfrapPerfThruputCmdReplaceDlciNewValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1, 2), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciNewValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciNewValue.setDescription('A Dlci that is to replace another in the short-term stats table. Index by this Dlci value to identify the statistics entry to do the replacing.') dfrapPerfThruputCmdAvailabilityStsDlciReset = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 8), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciReset.setDescription('Allows the user to reset the availability statistics of an individual Dlci within the short-term stats table.') dfrapPerfThruputCmdAvailabilityStsDlciResetAll = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 9), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciResetAll.setDescription("Allows the user to reset the availability statistics of all Dlci's within the short-term stats table.") dfrapPerfThruputCmdCountsStsDlciReset = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 10), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciReset.setDescription('Allows the user to reset the count statistics of an individual Dlci within the short-term stats table.') dfrapPerfThruputCmdCountsStsDlciResetAll = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 11), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciResetAll.setDescription("Allows the user to reset the count statistics of all Dlci's within the short-term stats table.") dfrapPerfThruputCmdAllStsDlciReset = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 12), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciReset.setDescription('Allows the user to reset both the count and availability statistics of an individual Dlci within the short-term stats table.') dfrapPerfThruputCmdAllStsDlciResetAll = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 13), Integer32()).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciResetAll.setDescription("Allows the user to reset both the count and the availability statistics of all Dlci's within the short-term stats table.") dfrapPerfNetworkShortTerm = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 4)) dfrapPerfNetwProtoPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1), ) if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTable.setDescription('The Short Term Statistics on the Network Layer protocol for each DLCI. These are protocol-based per-DLCI statistics. The Short Term model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval).') dfrapPerfNetwProtoPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfNetwProtoPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfNetwProtoPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciEntry.setDescription('The Network Layer Short Term Statistics for a particular DLCI. This table organizes statistics by high-layer network protocol.') dfrapPerfNetwProtoPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfNetwProtoPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfNetwProtoPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxTotal.setDescription('The total number of received Network Layer bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxTotal.setDescription('The total number of transmitted Network Layer bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxIp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIp.setDescription('The number of received IP bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxIp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIp.setDescription('The number of transmitted IP bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxIpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIpx.setDescription('The number of received IPX bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxIpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIpx.setDescription('The number of transmitted IPX bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxSna = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxSna.setDescription('The number of received SNA bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxSna = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxSna.setDescription('The number of transmitted SNA bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxArp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxArp.setDescription('The number of received ARP bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxArp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxArp.setDescription('The number of transmitted ARP bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxCisco = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxCisco.setDescription('The number of received Cisco protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxCisco = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxCisco.setDescription('The number of transmitted Cisco protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols that are not counted elsewhere in this table.') dfrapPerfNetwProtoPerDlciTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols that are not counted elsewhere in this table.') dfrapPerfNetwProtoPerDlciRxVnip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxVnip.setDescription('The number of received VNIP protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxVnip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxVnip.setDescription('The number of transmitted VNIP protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciRxAnnexG = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxAnnexG.setDescription('The number of received Annex G protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoPerDlciTxAnnexG = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxAnnexG.setDescription('The number of transmitted Annex G protocol bytes that have been counted on this DLCI.') dfrapPerfNetwProtoTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2), ) if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTable.setDescription('The Short Term Statistics on Network Layer protocols summed across all DLCIs.') dfrapPerfNetwProtoTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfNetwProtoTotalInterval")) if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalEntry.setDescription('The Network Layer Short Term Statistics across all DLCIs.') dfrapPerfNetwProtoTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfNetwProtoTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxTotal.setDescription('The total number of received Network Layer bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxTotal.setDescription('The total number of transmitted Network Layer bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxIp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIp.setDescription('The number of received IP bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxIp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIp.setDescription('The number of transmitted IP bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxIpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIpx.setDescription('The number of received IPX bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxIpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIpx.setDescription('The number of transmitted IPX bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxSna = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxSna.setDescription('The number of received SNA bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxSna = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxSna.setDescription('The number of transmitted SNA bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxArp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxArp.setDescription('The number of received ARP bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxArp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxArp.setDescription('The number of transmitted ARP bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxCisco = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxCisco.setDescription('The number of received Cisco protocol bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxCisco = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxCisco.setDescription('The number of transmitted Cisco protocol bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols that are not counted elsewhere in this table.') dfrapPerfNetwProtoTotalTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols that are not counted elsewhere in this table.') dfrapPerfNetwProtoTotalRxVnip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxVnip.setDescription('The number of received VNIP protocol bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxVnip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxVnip.setDescription('The number of transmitted VNIP protocol bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalRxAnnexG = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxAnnexG.setDescription('The number of received Annex G protocol bytes that have been counted across all DLCIs.') dfrapPerfNetwProtoTotalTxAnnexG = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxAnnexG.setDescription('The number of transmitted Annex G protocol bytes that have been counted across all DLCIs.') dfrapPerfIpPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3), ) if mibBuilder.loadTexts: dfrapPerfIpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTable.setDescription('The Short Term Statistics on the IP protocol for each DLCI.') dfrapPerfIpPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIpPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfIpPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfIpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciEntry.setDescription('The IP Short Term Statistics for a particular DLCI.') dfrapPerfIpPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIpPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfIpPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTotal.setDescription('The total number of received IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTotal.setDescription('The total number of transmitted IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciRxTcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTcp.setDescription('The number of received TCP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciTxTcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTcp.setDescription('The number of transmitted TCP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciRxUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxUdp.setDescription('The number of received UDP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciTxUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxUdp.setDescription('The number of transmitted UDP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciRxIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIcmp.setDescription('The number of received ICMP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciTxIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIcmp.setDescription('The number of transmitted ICMP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over IP that are not counted elsewhere in this table.') dfrapPerfIpPerDlciTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over IP that are not counted elsewhere in this table.') dfrapPerfIpPerDlciRxIgrp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIgrp.setDescription('The number of received IGRP over IP bytes that have been counted on this DLCI.') dfrapPerfIpPerDlciTxIgrp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIgrp.setDescription('The number of transmitted IGRP over IP bytes that have been counted on this DLCI.') dfrapPerfIpTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4), ) if mibBuilder.loadTexts: dfrapPerfIpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTable.setDescription('The Short Term Statistics on the IP protocol for each DLCI.') dfrapPerfIpTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIpTotalInterval")) if mibBuilder.loadTexts: dfrapPerfIpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalEntry.setDescription('The IP Short Term Statistics across all DLCIs.') dfrapPerfIpTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIpTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTotal.setDescription('The total number of received IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTotal.setDescription('The total number of transmitted IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalRxTcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTcp.setDescription('The number of received TCP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalTxTcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTcp.setDescription('The number of transmitted TCP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalRxUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxUdp.setDescription('The number of received UDP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalTxUdp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxUdp.setDescription('The number of transmitted UDP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalRxIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIcmp.setDescription('The number of received ICMP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalTxIcmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIcmp.setDescription('The number of transmitted ICMP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over IP that are not counted elsewhere in this table.') dfrapPerfIpTotalTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over IP that are not counted elsewhere in this table.') dfrapPerfIpTotalRxIgrp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalRxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIgrp.setDescription('The number of received IGRP over IP bytes that have been counted across all DLCIs.') dfrapPerfIpTotalTxIgrp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpTotalTxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIgrp.setDescription('The number of transmitted IGRP over IP bytes that have been counted across all DLCIs.') dfrapPerfIcmpPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5), ) if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTable.setDescription('Short Term Statistics on the ICMP protocol for each DLCI.') dfrapPerfIcmpPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIcmpPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfIcmpPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciEntry.setDescription('The ICMP Short Term Statistics for a particular DLCI.') dfrapPerfIcmpPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIcmpPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrapPerfIcmpPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTotal.setDescription('The total number of ICMP bytes that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTotal.setDescription('The total number of ICMP bytes that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxEchoRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxEchoRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxDestUnr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxDestUnr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxEchoReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxEchoReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxTimeExcd = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxTimeExcd = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxParamProb = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxParamProb = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxTimestpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxTimestpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxTimestpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxTimestpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxAddrMaskReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxAddrMaskReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxAddrMaskRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 25), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxAddrMaskRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 26), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxPktTooBig = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 27), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxPktTooBig = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 28), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxGmQuery = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 29), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxGmQuery = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 30), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxGmReport = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 31), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxGmReport = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted on this DLCI.') dfrapPerfIcmpPerDlciRxGmReduct = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 33), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted on this DLCI.') dfrapPerfIcmpPerDlciTxGmReduct = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 34), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted on this DLCI.') dfrapPerfIcmpTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6), ) if mibBuilder.loadTexts: dfrapPerfIcmpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTable.setDescription('Short Term Statistics on the ICMP protocol across all DLCIs.') dfrapPerfIcmpTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIcmpTotalInterval")) if mibBuilder.loadTexts: dfrapPerfIcmpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalEntry.setDescription('The ICMP Short Term Statistics across all DLCIs.') dfrapPerfIcmpTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIcmpTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTotal.setDescription('The total number of ICMP bytes that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTotal.setDescription('The total number of ICMP bytes that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxEchoRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxEchoRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxDestUnr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxDestUnr = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxSrcQuench = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxRedirect = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxEchoReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxEchoReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxTimeExcd = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxTimeExcd = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxParamProb = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxParamProb = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxTimestpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxTimestpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxTimestpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxTimestpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxAddrMaskReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxAddrMaskReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxAddrMaskRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 25), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxAddrMaskRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 26), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxPktTooBig = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 27), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxPktTooBig = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 28), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxGmQuery = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 29), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxGmQuery = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 30), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxGmReport = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 31), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxGmReport = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 32), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted across all DLCIs.') dfrapPerfIcmpTotalRxGmReduct = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 33), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted across all DLCIs.') dfrapPerfIcmpTotalTxGmReduct = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 34), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted across all DLCIs.') dfrapPerfApplicationPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7), ) if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTable.setDescription('The Short Term Statistics on the Application protocol for each DLCI.') dfrapPerfApplicationPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfApplicationPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfApplicationPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciEntry.setDescription('The Application Short Term Statistics for a particular DLCI.') dfrapPerfApplicationPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfApplicationPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfApplicationPerDlciRxSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmp.setDescription('The number of received SNMP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmp.setDescription('The number of transmitted SNMP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxSnmpTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmpTrap.setDescription('The number of received SNMP TRAP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxSnmpTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmpTrap.setDescription('The number of transmitted SNMP TRAP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxHttp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxHttp.setDescription('The number of received HTTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxHttp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxHttp.setDescription('The number of transmitted HTTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxTelnet = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTelnet.setDescription('The number of received Telnet bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxTelnet = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTelnet.setDescription('The number of transmitted Telnet bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxSmtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSmtp.setDescription('The number of received SMTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxSmtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSmtp.setDescription('The number of transmitted SMTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxFtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxFtp.setDescription('The number of received FTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxFtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxFtp.setDescription('The number of transmitted FTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxTftp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTftp.setDescription('The number of received TFTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxTftp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTftp.setDescription('The number of transmitted TFTP bytes that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxCustom1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom1.setDescription('The number of received bytes of User Defined Protocol #1 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxCustom1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom1.setDescription('The number of transmitted bytes of User Defined Protocol #1 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxCustom2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom2.setDescription('The number of received bytes of User Defined Protocol #2 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxCustom2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom2.setDescription('The number of transmitted bytes of User Defined Protocol #2 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxCustom3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom3.setDescription('The number of received bytes of User Defined Protocol #3 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxCustom3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom3.setDescription('The number of transmitted bytes of User Defined Protocol #3 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciRxCustom4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom4.setDescription('The number of received bytes of User Defined Protocol #4 that have been counted on this DLCI.') dfrapPerfApplicationPerDlciTxCustom4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom4.setDescription('The number of transmitted bytes of User Defined Protocol #4 that have been counted on this DLCI.') dfrapPerfApplicationTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8), ) if mibBuilder.loadTexts: dfrapPerfApplicationTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTable.setDescription('The Short Term Statistics on the Application protocol across all DLCIs.') dfrapPerfApplicationTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfApplicationTotalInterval")) if mibBuilder.loadTexts: dfrapPerfApplicationTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalEntry.setDescription('The Application Short Term Statistics across all DLCIs..') dfrapPerfApplicationTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfApplicationTotalRxSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmp.setDescription('The number of received SNMP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxSnmp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmp.setDescription('The number of transmitted SNMP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxSnmpTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmpTrap.setDescription('The number of received SNMP TRAP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxSnmpTrap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmpTrap.setDescription('The number of transmitted SNMP TRAP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxHttp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxHttp.setDescription('The number of received HTTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxHttp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxHttp.setDescription('The number of transmitted HTTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxTelnet = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTelnet.setDescription('The number of received Telnet bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxTelnet = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTelnet.setDescription('The number of transmitted Telnet bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxSmtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSmtp.setDescription('The number of received SMTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxSmtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSmtp.setDescription('The number of transmitted SMTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxFtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxFtp.setDescription('The number of received FTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxFtp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxFtp.setDescription('The number of transmitted FTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxTftp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTftp.setDescription('The number of received TFTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxTftp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTftp.setDescription('The number of transmitted TFTP bytes that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxCustom1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom1.setDescription('The number of received bytes of User Defined Protocol #1 that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxCustom1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom1.setDescription('The number of transmitted bytes of User Defined Protocol #1 that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxCustom2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 19), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom2.setDescription('The number of received bytes of User Defined Protocol #2 that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxCustom2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 20), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom2.setDescription('The number of transmitted bytes of User Defined Protocol #2 that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxCustom3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 21), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom3.setDescription('The number of received bytes of User Defined Protocol #3 that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxCustom3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 22), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom3.setDescription('The number of transmitted bytes of User Defined Protocol #3 that have been counted across all DLCIs.') dfrapPerfApplicationTotalRxCustom4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 23), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom4.setDescription('The number of received bytes of User Defined Protocol #4 that have been counted across all DLCIs.') dfrapPerfApplicationTotalTxCustom4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 24), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom4.setDescription('The number of transmitted bytes of User Defined Protocol #4 that have been counted across all DLCIs.') dfrapPerfRoutingPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9), ) if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTable.setDescription('The Short Term Statistics on the Routing protocol for each DLCI.') dfrapPerfRoutingPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfRoutingPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfRoutingPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciEntry.setDescription('The Routing Short Term Statistics for a particular DLCI.') dfrapPerfRoutingPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfRoutingPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfRoutingPerDlciRxOspf = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxOspf.setDescription('The number of received OSPF bytes that have been counted on this DLCI.') dfrapPerfRoutingPerDlciTxOspf = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxOspf.setDescription('The number of transmitted OSPF bytes that have been counted on this DLCI.') dfrapPerfRoutingPerDlciRxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxRip.setDescription('The number of received RIP bytes that have been counted on this DLCI.') dfrapPerfRoutingPerDlciTxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxRip.setDescription('The number of transmitted RIP bytes that have been counted on this DLCI.') dfrapPerfRoutingPerDlciRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxNetbios.setDescription('The number of received Netbios bytes that have been counted on this DLCI.') dfrapPerfRoutingPerDlciTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxNetbios.setDescription('The number of transmitted Netbios bytes that have been counted on this DLCI.') dfrapPerfRoutingTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10), ) if mibBuilder.loadTexts: dfrapPerfRoutingTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTable.setDescription('The Short Term Statistics on the Routing protocol across all DLCIs.') dfrapPerfRoutingTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfRoutingTotalInterval")) if mibBuilder.loadTexts: dfrapPerfRoutingTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalEntry.setDescription('The Routing Short Term Statistics across all DLCIs.') dfrapPerfRoutingTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfRoutingTotalRxOspf = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxOspf.setDescription('The number of received OSPF bytes that have been counted across all DLCIs.') dfrapPerfRoutingTotalTxOspf = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxOspf.setDescription('The number of transmitted OSPF bytes that have been counted across all DLCIs.') dfrapPerfRoutingTotalRxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxRip.setDescription('The number of received RIP bytes that have been counted across all DLCIs.') dfrapPerfRoutingTotalTxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxRip.setDescription('The number of transmitted RIP bytes that have been counted across all DLCIs.') dfrapPerfRoutingTotalRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxNetbios.setDescription('The number of received Netbios bytes that have been counted across all DLCIs.') dfrapPerfRoutingTotalTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxNetbios.setDescription('The number of transmitted Netbios bytes that have been counted across all DLCIs.') dfrapPerfIpxPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11), ) if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTable.setDescription('Short Term Statistics on the IPX protocol for each DLCI.') dfrapPerfIpxPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIpxPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfIpxPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfIpxPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciEntry.setDescription('The IPX Short Term Statistics for a particular DLCI.') dfrapPerfIpxPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIpxPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrapPerfIpxPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxTotal.setDescription('The total number of IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxTotal.setDescription('The total number of IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxSpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSpx.setDescription('The number of SPX over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxSpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSpx.setDescription('The number of SPX over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxNcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNcp.setDescription('The number of NCP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxNcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNcp.setDescription('The number of NCP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSap.setDescription('The number of SAP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSap.setDescription('The number of SAP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxRip.setDescription('The number of RIP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxRip.setDescription('The number of RIP over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted on this DLCI.') dfrapPerfIpxPerDlciRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over IPX that are not counted elsewhere in this table.') dfrapPerfIpxPerDlciTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over IPX that are not counted elsewhere in this table.') dfrapPerfIpxTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12), ) if mibBuilder.loadTexts: dfrapPerfIpxTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTable.setDescription('Short Term Statistics on the IPX protocol across all DLCIs.') dfrapPerfIpxTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfIpxTotalInterval")) if mibBuilder.loadTexts: dfrapPerfIpxTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalEntry.setDescription('The IPX Short Term Statistics across all DLCIs.') dfrapPerfIpxTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfIpxTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxTotal.setDescription('The total number of IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxTotal.setDescription('The total number of IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxSpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSpx.setDescription('The number of SPX over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxSpx = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSpx.setDescription('The number of SPX over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxNcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNcp.setDescription('The number of NCP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxNcp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNcp.setDescription('The number of NCP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSap.setDescription('The number of SAP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxSap = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSap.setDescription('The number of SAP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxRip.setDescription('The number of RIP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxRip = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxRip.setDescription('The number of RIP over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted across all DLCIs.') dfrapPerfIpxTotalRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over IPX that are not counted elsewhere in this table.') dfrapPerfIpxTotalTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfIpxTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over IPX that are not counted elsewhere in this table.') dfrapPerfSnaPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13), ) if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTable.setDescription('Short Term Statistics on the SNA protocol for each DLCI.') dfrapPerfSnaPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfSnaPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfSnaPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfSnaPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciEntry.setDescription('The SNA Short Term Statistics for a particular DLCI.') dfrapPerfSnaPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfSnaPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrapPerfSnaPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxTotal.setDescription('The total number of SNA bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxTotal.setDescription('The total number of SNA bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciRxSubarea = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxSubarea.setDescription('The number of SNA Subarea bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciTxSubarea = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxSubarea.setDescription('The number of SNA Subarea bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciRxPeriph = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxPeriph.setDescription('The number of SNA Periph bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciTxPeriph = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxPeriph.setDescription('The number of SNA Periph bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciRxAppn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxAppn.setDescription('The number of SNA Appn bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciTxAppn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxAppn.setDescription('The number of SNA Appn bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxNetbios.setDescription('The number of SNA Netbios bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxNetbios.setDescription('The number of SNA Netbios bytes that have been counted on this DLCI.') dfrapPerfSnaPerDlciRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over SNA that are not counted elsewhere in this table.') dfrapPerfSnaPerDlciTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over SNA that are not counted elsewhere in this table.') dfrapPerfSnaTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14), ) if mibBuilder.loadTexts: dfrapPerfSnaTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTable.setDescription('Short Term Statistics on the SNA protocol across all DLCIs.') dfrapPerfSnaTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfSnaTotalInterval")) if mibBuilder.loadTexts: dfrapPerfSnaTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalEntry.setDescription('The SNA Short Term Statistics across all DLCIs.') dfrapPerfSnaTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfSnaTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxTotal.setDescription('The total number of SNA bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxTotal.setDescription('The total number of SNA bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalRxSubarea = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxSubarea.setDescription('The number of SNA Subarea bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalTxSubarea = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxSubarea.setDescription('The number of SNA Subarea bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalRxPeriph = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxPeriph.setDescription('The number of SNA Periph bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalTxPeriph = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxPeriph.setDescription('The number of SNA Periph bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalRxAppn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxAppn.setDescription('The number of SNA Appn bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalTxAppn = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxAppn.setDescription('The number of SNA Appn bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalRxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxNetbios.setDescription('The number of SNA Netbios bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalTxNetbios = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxNetbios.setDescription('The number of SNA Netbios bytes that have been counted across all DLCIs.') dfrapPerfSnaTotalRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over SNA that are not counted elsewhere in this table.') dfrapPerfSnaTotalTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfSnaTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over SNA that are not counted elsewhere in this table.') dfrapPerfArpPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15), ) if mibBuilder.loadTexts: dfrapPerfArpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTable.setDescription('Short Term Statistics on the ARP protocol for each DLCI.') dfrapPerfArpPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfArpPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfArpPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfArpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciEntry.setDescription('The ARP Short Term Statistics for a particular DLCI.') dfrapPerfArpPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfArpPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrapPerfArpPerDlciRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxTotal.setDescription('The total number of ARP bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxTotal.setDescription('The total number of ARP bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxArpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpReq.setDescription('The number of ARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxArpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpReq.setDescription('The number of ARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxArpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpRep.setDescription('The number of ARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxArpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpRep.setDescription('The number of ARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxRarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpReq.setDescription('The number of RARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxRarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpReq.setDescription('The number of RARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxRarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpRep.setDescription('The number of RARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxRarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpRep.setDescription('The number of RARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxInarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpReq.setDescription('The number of INARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxInarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpReq.setDescription('The number of INARP request bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxInarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpRep.setDescription('The number of INARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciTxInarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpRep.setDescription('The number of INARP reply bytes that have been counted on this DLCI.') dfrapPerfArpPerDlciRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxOther.setDescription('The number of received bytes on this DLCI from ARP message types that are not counted elsewhere in this table.') dfrapPerfArpPerDlciTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from ARP message types that are not counted elsewhere in this table.') dfrapPerfArpTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16), ) if mibBuilder.loadTexts: dfrapPerfArpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTable.setDescription('Short Term Statistics on the ARP protocol across all DLCIs.') dfrapPerfArpTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfArpTotalInterval")) if mibBuilder.loadTexts: dfrapPerfArpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalEntry.setDescription('The ARP Short Term Statistics across all DLCIs.') dfrapPerfArpTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfArpTotalRxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxTotal.setDescription('The total number of ARP bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxTotal = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxTotal.setDescription('The total number of ARP bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxArpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpReq.setDescription('The number of ARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxArpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpReq.setDescription('The number of ARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxArpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpRep.setDescription('The number of ARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxArpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpRep.setDescription('The number of ARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxRarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpReq.setDescription('The number of RARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxRarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpReq.setDescription('The number of RARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxRarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpRep.setDescription('The number of RARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxRarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpRep.setDescription('The number of RARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxInarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpReq.setDescription('The number of INARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxInarpReq = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpReq.setDescription('The number of INARP request bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxInarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpRep.setDescription('The number of INARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalTxInarpRep = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 16), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpRep.setDescription('The number of INARP reply bytes that have been counted across all DLCIs.') dfrapPerfArpTotalRxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxOther.setDescription('The number of received bytes across all DLCIs from ARP message types that are not counted elsewhere in this table.') dfrapPerfArpTotalTxOther = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 18), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfArpTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from ARP message types that are not counted elsewhere in this table.') dfrapPerfLmiPerDlciTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17), ) if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTable.setDescription('Short Term Statistics on LMI protocol for each DLCI.') dfrapPerfLmiPerDlciEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfLmiPerDlciInterval"), (0, "DFRAP-MIB", "dfrapPerfLmiPerDlciValue")) if mibBuilder.loadTexts: dfrapPerfLmiPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciEntry.setDescription('The LMI Short Term Statistics for a particular DLCI.') dfrapPerfLmiPerDlciInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfLmiPerDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfLmiPerDlciRxTotalByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxTotalByteCnt.setDescription('The total number of received LMI bytes counted on this DLCI.') dfrapPerfLmiPerDlciTxTotalByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxTotalByteCnt.setDescription('The total number of transmitted LMI bytes counted on this DLCI.') dfrapPerfLmiPerDlciRxLivoEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoEnqByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrapPerfLmiPerDlciTxLivoEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoEnqByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrapPerfLmiPerDlciRxLivoStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoStatByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrapPerfLmiPerDlciTxLivoStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoStatByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrapPerfLmiPerDlciRxFullEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullEnqByteCnt.setDescription('The number of bytes received in Full Status enquiries on this DLCI.') dfrapPerfLmiPerDlciTxFullEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullEnqByteCnt.setDescription('The number of bytes transmitted in Full Status enquiries on this DLCI.') dfrapPerfLmiPerDlciRxFullStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullStatByteCnt.setDescription('The number of bytes received in Full Status messages on this DLCI.') dfrapPerfLmiPerDlciTxFullStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullStatByteCnt.setDescription('The number of bytes transmitted in Full Status messages on this DLCI.') dfrapPerfLmiPerDlciRxOtherByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxOtherByteCnt.setDescription('The number of received bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrapPerfLmiPerDlciTxOtherByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxOtherByteCnt.setDescription('The number of transmitted bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrapPerfLmiTotalTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18), ) if mibBuilder.loadTexts: dfrapPerfLmiTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTable.setDescription('Short Term Statistics on LMI protocol across all DLCIs.') dfrapPerfLmiTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfLmiTotalInterval")) if mibBuilder.loadTexts: dfrapPerfLmiTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalEntry.setDescription('The LMI Short Term Statistics across all DLCIs.') dfrapPerfLmiTotalInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfLmiTotalDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalDlciValue.setDescription('OBSOLETE.') dfrapPerfLmiTotalRxTotalByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxTotalByteCnt.setDescription('The total number of received LMI bytes counted on this DLCI.') dfrapPerfLmiTotalTxTotalByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxTotalByteCnt.setDescription('The total number of transmitted LMI bytes counted on this DLCI.') dfrapPerfLmiTotalRxLivoEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoEnqByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrapPerfLmiTotalTxLivoEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoEnqByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrapPerfLmiTotalRxLivoStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoStatByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrapPerfLmiTotalTxLivoStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoStatByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrapPerfLmiTotalRxFullEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullEnqByteCnt.setDescription('The number of bytes received in Full Status enquiries on this DLCI.') dfrapPerfLmiTotalTxFullEnqByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullEnqByteCnt.setDescription('The number of bytes transmitted in Full Status enquiries on this DLCI.') dfrapPerfLmiTotalRxFullStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullStatByteCnt.setDescription('The number of bytes received in Full Status messages on this DLCI.') dfrapPerfLmiTotalTxFullStatByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullStatByteCnt.setDescription('The number of bytes transmitted in Full Status messages on this DLCI.') dfrapPerfLmiTotalRxOtherByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalRxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxOtherByteCnt.setDescription('The number of received bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrapPerfLmiTotalTxOtherByteCnt = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfLmiTotalTxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxOtherByteCnt.setDescription('The number of transmitted bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrapPerfNetworkLongTerm = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 5)) dfrapPerfNetwLongTermTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1), ) if mibBuilder.loadTexts: dfrapPerfNetwLongTermTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermTable.setDescription('Long Term Statistics by DLCI, protocol, and interval. LT statistics are collected on a configurable set of DLCIs and protocols. There are 96 intervals maintained each with a duration defined by the Long Term Timer. Interval 96 is the current window and Interval 1 is furthest back in time (96xLT Timer seconds ago). (CfgFrPerfTimersLTInterval).') dfrapPerfNetwLongTermEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfNetwLongTermDlci"), (0, "DFRAP-MIB", "dfrapPerfNetwLongTermProtocol"), (0, "DFRAP-MIB", "dfrapPerfNetwLongTermInterval")) if mibBuilder.loadTexts: dfrapPerfNetwLongTermEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermEntry.setDescription('The Long Term Statistic for a particular DLCI, protocol and interval.') dfrapPerfNetwLongTermDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermDlci.setDescription('The DLCI monitored for the statistics. The Long Term DLCI filter must first be configured (CfgFrPerfLTDlciFilterEntry).') dfrapPerfNetwLongTermProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 21, 22, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172))).clone(namedValues=NamedValues(("ip-tx-bc", 1), ("ip-rx-bc", 2), ("tcp-ip-tx-bc", 3), ("tcp-ip-rx-bc", 4), ("ftp-tcp-ip-tx-bc", 5), ("ftp-tcp-ip-rx-bc", 6), ("telnet-tcp-ip-tx-bc", 7), ("telnet-tcp-ip-rx-bc", 8), ("smtp-tcp-ip-tx-bc", 9), ("smtp-tcp-ip-rx-bc", 10), ("http-tcp-ip-tx-bc", 13), ("http-tcp-ip-rx-bc", 14), ("netbios-ssn-tcp-ip-tx-bc", 15), ("netbios-ssn-tcp-ip-rx-bc", 16), ("udp-ip-tx-bc", 21), ("udp-ip-rx-bc", 22), ("tftp-udp-ip-tx-bc", 29), ("tftp-udp-ip-rx-bc", 30), ("netbios-dgm-udp-ip-tx-bc", 33), ("netbios-dgm-udp-ip-rx-bc", 34), ("snmp-udp-ip-tx-bc", 35), ("snmp-udp-ip-rx-bc", 36), ("snmptrap-udp-ip-tx-bc", 37), ("snmptrap-udp-ip-rx-bc", 38), ("rip-udp-ip-tx-bc", 39), ("rip-udp-ip-rx-bc", 40), ("icmp-ip-tx-bc", 41), ("icmp-ip-rx-bc", 42), ("echorep-icmp-ip-tx-bc", 43), ("echorep-icmp-ip-rx-bc", 44), ("dest-unr-icmp-ip-tx-bc", 45), ("dest-unr-icmp-ip-rx-bc", 46), ("src-quench-icmp-ip-tx-bc", 47), ("src-quench-icmp-ip-rx-bc", 48), ("redirect-icmp-ip-tx-bc", 49), ("redirect-icmp-ip-rx-bc", 50), ("echoreq-icmp-ip-tx-bc", 51), ("echoreq-icmp-ip-rx-bc", 52), ("time-excd-icmp-ip-tx-bc", 53), ("time-excd-icmp-ip-rx-bc", 54), ("param-prob-icmp-ip-tx-bc", 55), ("param-prob-icmp-ip-rx-bc", 56), ("timestamp-req-icmp-ip-tx-bc", 57), ("timestamp-req-icmp-ip-rx-bc", 58), ("timestamp-rep-icmp-ip-tx-bc", 59), ("timestamp-rep-icmp-ip-rx-bc", 60), ("addr-mask-req-icmp-ip-tx-bc", 61), ("addr-mask-req-icmp-ip-rx-bc", 62), ("addr-mask-rep-icmp-ip-tx-bc", 63), ("addr-mask-rep-icmp-ip-rx-bc", 64), ("pkt-too-big-icmp-ip-tx-bc", 65), ("pkt-too-big-icmp-ip-rx-bc", 66), ("gp-mem-query-icmp-ip-tx-bc", 67), ("gp-mem-query-icmp-ip-rx-bc", 68), ("gp-mem-report-icmp-ip-tx-bc", 69), ("gp-mem-report-icmp-ip-rx-bc", 70), ("gp-mem-reduct-icmp-ip-tx-bc", 71), ("gp-mem-reduct-icmp-ip-rx-bc", 72), ("ospf-ip-tx-bc", 73), ("ospf-ip-rx-bc", 74), ("other-ip-tx-bc", 75), ("other-ip-rx-bc", 76), ("ipx-tx-bc", 77), ("ipx-rx-bc", 78), ("spx-ipx-tx-bc", 79), ("spx-ipx-rx-bc", 80), ("ncp-ipx-tx-bc", 81), ("ncp-ipx-rx-bc", 82), ("sap-ipx-tx-bc", 83), ("sap-ipx-rx-bc", 84), ("rip-ipx-tx-bc", 85), ("rip-ipx-rx-bc", 86), ("netbios-ipx-tx-bc", 87), ("netbios-ipx-rx-bc", 88), ("other-ipx-tx-bc", 89), ("other-ipx-rx-bc", 90), ("arp-tx-bc", 91), ("arp-rx-bc", 92), ("arp-req-tx-bc", 93), ("arp-req-rx-bc", 94), ("arp-rep-tx-bc", 95), ("arp-rep-rx-bc", 96), ("rarp-req-tx-bc", 97), ("rarp-req-rx-bc", 98), ("rarp-rep-tx-bc", 99), ("rarp-rep-rx-bc", 100), ("inarp-req-tx-bc", 101), ("inarp-req-rx-bc", 102), ("inarp-rep-tx-bc", 103), ("inarp-rep-rx-bc", 104), ("sna-tx-bc", 105), ("sna-rx-bc", 106), ("sna-subarea-tx-bc", 107), ("sna-subarea-rx-bc", 108), ("sna-periph-tx-bc", 109), ("sna-periph-rx-bc", 110), ("sna-appn-tx-bc", 111), ("sna-appn-rx-bc", 112), ("sna-netbios-tx-bc", 113), ("sna-netbios-rx-bc", 114), ("cisco-tx-bc", 115), ("cisco-rx-bc", 116), ("other-tx-bc", 117), ("other-rx-bc", 118), ("user-defined-1-tx-bc", 119), ("user-defined-1-rx-bc", 120), ("user-defined-2-tx-bc", 121), ("user-defined-2-rx-bc", 122), ("user-defined-3-tx-bc", 123), ("user-defined-3-rx-bc", 124), ("user-defined-4-tx-bc", 125), ("user-defined-4-rx-bc", 126), ("thru-byte-tx-bc", 127), ("thru-byte-rx-bc", 128), ("thru-frame-tx-c", 129), ("thru-frame-rx-c", 130), ("thru-fecn-tx-c", 131), ("thru-fecn-rx-c", 132), ("thru-becn-tx-c", 133), ("thru-becn-rx-c", 134), ("thru-de-tx-c", 135), ("thru-de-rx-c", 136), ("cir-percent-range1-tx-bc", 137), ("cir-percent-range1-rx-bc", 138), ("cir-percent-range2-tx-bc", 139), ("cir-percent-range2-rx-bc", 140), ("cir-percent-range3-tx-bc", 141), ("cir-percent-range3-rx-bc", 142), ("cir-percent-range4-tx-bc", 143), ("cir-percent-range4-rx-bc", 144), ("cir-percent-range5-tx-bc", 145), ("cir-percent-range5-rx-bc", 146), ("cir-percent-range6-tx-bc", 147), ("cir-percent-range6-rx-bc", 148), ("cir-percent-range7-tx-bc", 149), ("cir-percent-range7-rx-bc", 150), ("cir-percent-range8-tx-bc", 151), ("cir-percent-range8-rx-bc", 152), ("lmi-tx-bc", 153), ("lmi-rx-bc", 154), ("lmi-livo-enq-tx-bc", 155), ("lmi-livo-enq-rx-bc", 156), ("lmi-livo-stat-tx-bc", 157), ("lmi-livo-stat-rx-bc", 158), ("lmi-full-enq-tx-bc", 159), ("lmi-full-enq-rx-bc", 160), ("lmi-full-stat-tx-bc", 161), ("lmi-full-stat-rx-bc", 162), ("lmi-other-tx-bc", 163), ("lmi-other-rx-bc", 164), ("total-uptime", 165), ("total-downtime", 166), ("igrp-tx-bc", 167), ("igrp-rx-bc", 168), ("vnip-tx-bc", 169), ("vnip-rx-bc", 170), ("annex-g-tx-bc", 171), ("annex-g-rx-bc", 172)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermProtocol.setDescription('The type of protocol monitored for the statistics.') dfrapPerfNetwLongTermInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermInterval.setDescription('The time interval in which the value was collected. Long Term statistis are maintained for 96 intervals with the interval duration defined by (CfgFrPerfTimersLTInterval).') dfrapPerfNetwLongTermValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermValue.setDescription('The statistic collected for the given DLCI and protocol and within the given time interval.') dfrapPerfNetwLongTermAltTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2), ) if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltTable.setDescription('This is an alternative method to access the database of long term statistics. The statistics are indexed by DLCI and protocol and are returned in an OCTETSTRING.') dfrapPerfNetwLongTermAltEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfNetwLongTermAltDlci"), (0, "DFRAP-MIB", "dfrapPerfNetwLongTermAltProtocol")) if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltEntry.setDescription('The Long Term Statistic for a particular DLCI and protocol.') dfrapPerfNetwLongTermAltDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltDlci.setDescription('The DLCI monitored for the statistics.') dfrapPerfNetwLongTermAltProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 21, 22, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172))).clone(namedValues=NamedValues(("ip-tx-bc", 1), ("ip-rx-bc", 2), ("tcp-ip-tx-bc", 3), ("tcp-ip-rx-bc", 4), ("ftp-tcp-ip-tx-bc", 5), ("ftp-tcp-ip-rx-bc", 6), ("telnet-tcp-ip-tx-bc", 7), ("telnet-tcp-ip-rx-bc", 8), ("smtp-tcp-ip-tx-bc", 9), ("smtp-tcp-ip-rx-bc", 10), ("http-tcp-ip-tx-bc", 13), ("http-tcp-ip-rx-bc", 14), ("netbios-ssn-tcp-ip-tx-bc", 15), ("netbios-ssn-tcp-ip-rx-bc", 16), ("udp-ip-tx-bc", 21), ("udp-ip-rx-bc", 22), ("tftp-udp-ip-tx-bc", 29), ("tftp-udp-ip-rx-bc", 30), ("netbios-dgm-udp-ip-tx-bc", 33), ("netbios-dgm-udp-ip-rx-bc", 34), ("snmp-udp-ip-tx-bc", 35), ("snmp-udp-ip-rx-bc", 36), ("snmptrap-udp-ip-tx-bc", 37), ("snmptrap-udp-ip-rx-bc", 38), ("rip-udp-ip-tx-bc", 39), ("rip-udp-ip-rx-bc", 40), ("icmp-ip-tx-bc", 41), ("icmp-ip-rx-bc", 42), ("echorep-icmp-ip-tx-bc", 43), ("echorep-icmp-ip-rx-bc", 44), ("dest-unr-icmp-ip-tx-bc", 45), ("dest-unr-icmp-ip-rx-bc", 46), ("src-quench-icmp-ip-tx-bc", 47), ("src-quench-icmp-ip-rx-bc", 48), ("redirect-icmp-ip-tx-bc", 49), ("redirect-icmp-ip-rx-bc", 50), ("echoreq-icmp-ip-tx-bc", 51), ("echoreq-icmp-ip-rx-bc", 52), ("time-excd-icmp-ip-tx-bc", 53), ("time-excd-icmp-ip-rx-bc", 54), ("param-prob-icmp-ip-tx-bc", 55), ("param-prob-icmp-ip-rx-bc", 56), ("timestamp-req-icmp-ip-tx-bc", 57), ("timestamp-req-icmp-ip-rx-bc", 58), ("timestamp-rep-icmp-ip-tx-bc", 59), ("timestamp-rep-icmp-ip-rx-bc", 60), ("addr-mask-req-icmp-ip-tx-bc", 61), ("addr-mask-req-icmp-ip-rx-bc", 62), ("addr-mask-rep-icmp-ip-tx-bc", 63), ("addr-mask-rep-icmp-ip-rx-bc", 64), ("pkt-too-big-icmp-ip-tx-bc", 65), ("pkt-too-big-icmp-ip-rx-bc", 66), ("gp-mem-query-icmp-ip-tx-bc", 67), ("gp-mem-query-icmp-ip-rx-bc", 68), ("gp-mem-report-icmp-ip-tx-bc", 69), ("gp-mem-report-icmp-ip-rx-bc", 70), ("gp-mem-reduct-icmp-ip-tx-bc", 71), ("gp-mem-reduct-icmp-ip-rx-bc", 72), ("ospf-ip-tx-bc", 73), ("ospf-ip-rx-bc", 74), ("other-ip-tx-bc", 75), ("other-ip-rx-bc", 76), ("ipx-tx-bc", 77), ("ipx-rx-bc", 78), ("spx-ipx-tx-bc", 79), ("spx-ipx-rx-bc", 80), ("ncp-ipx-tx-bc", 81), ("ncp-ipx-rx-bc", 82), ("sap-ipx-tx-bc", 83), ("sap-ipx-rx-bc", 84), ("rip-ipx-tx-bc", 85), ("rip-ipx-rx-bc", 86), ("netbios-ipx-tx-bc", 87), ("netbios-ipx-rx-bc", 88), ("other-ipx-tx-bc", 89), ("other-ipx-rx-bc", 90), ("arp-tx-bc", 91), ("arp-rx-bc", 92), ("arp-req-tx-bc", 93), ("arp-req-rx-bc", 94), ("arp-rep-tx-bc", 95), ("arp-rep-rx-bc", 96), ("rarp-req-tx-bc", 97), ("rarp-req-rx-bc", 98), ("rarp-rep-tx-bc", 99), ("rarp-rep-rx-bc", 100), ("inarp-req-tx-bc", 101), ("inarp-req-rx-bc", 102), ("inarp-rep-tx-bc", 103), ("inarp-rep-rx-bc", 104), ("sna-tx-bc", 105), ("sna-rx-bc", 106), ("sna-subarea-tx-bc", 107), ("sna-subarea-rx-bc", 108), ("sna-periph-tx-bc", 109), ("sna-periph-rx-bc", 110), ("sna-appn-tx-bc", 111), ("sna-appn-rx-bc", 112), ("sna-netbios-tx-bc", 113), ("sna-netbios-rx-bc", 114), ("cisco-tx-bc", 115), ("cisco-rx-bc", 116), ("other-tx-bc", 117), ("other-rx-bc", 118), ("user-defined-1-tx-bc", 119), ("user-defined-1-rx-bc", 120), ("user-defined-2-tx-bc", 121), ("user-defined-2-rx-bc", 122), ("user-defined-3-tx-bc", 123), ("user-defined-3-rx-bc", 124), ("user-defined-4-tx-bc", 125), ("user-defined-4-rx-bc", 126), ("thru-byte-tx-bc", 127), ("thru-byte-rx-bc", 128), ("thru-frame-tx-c", 129), ("thru-frame-rx-c", 130), ("thru-fecn-tx-c", 131), ("thru-fecn-rx-c", 132), ("thru-becn-tx-c", 133), ("thru-becn-rx-c", 134), ("thru-de-tx-c", 135), ("thru-de-rx-c", 136), ("cir-percent-range1-tx-bc", 137), ("cir-percent-range1-rx-bc", 138), ("cir-percent-range2-tx-bc", 139), ("cir-percent-range2-rx-bc", 140), ("cir-percent-range3-tx-bc", 141), ("cir-percent-range3-rx-bc", 142), ("cir-percent-range4-tx-bc", 143), ("cir-percent-range4-rx-bc", 144), ("cir-percent-range5-tx-bc", 145), ("cir-percent-range5-rx-bc", 146), ("cir-percent-range6-tx-bc", 147), ("cir-percent-range6-rx-bc", 148), ("cir-percent-range7-tx-bc", 149), ("cir-percent-range7-rx-bc", 150), ("cir-percent-range8-tx-bc", 151), ("cir-percent-range8-rx-bc", 152), ("lmi-tx-bc", 153), ("lmi-rx-bc", 154), ("lmi-livo-enq-tx-bc", 155), ("lmi-livo-enq-rx-bc", 156), ("lmi-livo-stat-tx-bc", 157), ("lmi-livo-stat-rx-bc", 158), ("lmi-full-enq-tx-bc", 159), ("lmi-full-enq-rx-bc", 160), ("lmi-full-stat-tx-bc", 161), ("lmi-full-stat-rx-bc", 162), ("lmi-other-tx-bc", 163), ("lmi-other-rx-bc", 164), ("total-uptime", 165), ("total-downtime", 166), ("igrp-tx-bc", 167), ("igrp-rx-bc", 168), ("vnip-tx-bc", 169), ("vnip-rx-bc", 170), ("annex-g-tx-bc", 171), ("annex-g-rx-bc", 172)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltProtocol.setDescription('The protocol monitored for the statistics.') dfrapPerfNetwLongTermAltArray = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 3), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltArray.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltArray.setDescription('The statistic collected for the given DLCI and protocol.') dfrapPerfNetworkLongTermCommands = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 3)) dfrapPerfNetworkLongTermCmdClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear-statistics", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapPerfNetworkLongTermCmdClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetworkLongTermCmdClear.setDescription('Allows the user to zero out all the statistics in the long term statistics tables. (1) Clear all Long Term statistics') dfrapPerfCirPercentUtilization = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 6)) dfrapPerfCirPercentUtilizationTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1), ) if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationTable.setDescription('Short Term Statistics on the percentage of CIR used on each DLCI. Each short term statistics interval, the count of bytes transmitted and received is used to calculate the percentage of CIR used. The byte count is then added to the appropriate bucket for the CIR percentage range.') dfrapPerfCirPercentUtilizationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfCirPercentUtilizationInterval"), (0, "DFRAP-MIB", "dfrapPerfCirPercentUtilizationDlciValue")) if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationEntry.setDescription('The CIR Percentage Statistics for a particular DLCI. These calculations are done at the completion of each Short Term interval.') dfrapPerfCirPercentUtilizationInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("current-interval", 1), ("previous-interval", 2), ("cumulative-counts", 3)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrapPerfCirPercentUtilizationDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfCirRxPercentUtilizationRange1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 21), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange1.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 1 (0% of CIR).') dfrapPerfCirRxPercentUtilizationRange2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 22), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange2.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 2 (1-10% of CIR).') dfrapPerfCirRxPercentUtilizationRange3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 23), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange3.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 3 (11-20% of CIR).') dfrapPerfCirRxPercentUtilizationRange4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 24), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange4.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 4 (21-50% of CIR).') dfrapPerfCirRxPercentUtilizationRange5 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 25), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange5.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange5.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 5 (51-80% of CIR).') dfrapPerfCirRxPercentUtilizationRange6 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 26), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange6.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange6.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 6 (81-100% of CIR).') dfrapPerfCirRxPercentUtilizationRange7 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 27), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange7.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange7.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 7 (101-150% of CIR).') dfrapPerfCirRxPercentUtilizationRange8 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 28), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange8.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange8.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 8 (> 150% of CIR).') dfrapPerfCirTxPercentUtilizationRange1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 41), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange1.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 1 (0% of CIR).') dfrapPerfCirTxPercentUtilizationRange2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 42), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange2.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 2 (1-10% of CIR).') dfrapPerfCirTxPercentUtilizationRange3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 43), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange3.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 3 (11-20% of CIR).') dfrapPerfCirTxPercentUtilizationRange4 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 44), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange4.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 4 (21-50% of CIR).') dfrapPerfCirTxPercentUtilizationRange5 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 45), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange5.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange5.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 5 (51-80% of CIR).') dfrapPerfCirTxPercentUtilizationRange6 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 46), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange6.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange6.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 6 (81-100% o0f CIR).') dfrapPerfCirTxPercentUtilizationRange7 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 47), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange7.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange7.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 7 (101-150% of CIR).') dfrapPerfCirTxPercentUtilizationRange8 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 48), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange8.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange8.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 8 (> 150% of CIR).') dfrapPerfCurrentPerDlciUtilizationTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2), ) if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationTable.setDescription('The current measurement of utilization as a percentage of CIR on each DLCI. Each short term statistics interval, the count of bytes transmitted and received is used to calculate the percentage of CIR used.') dfrapPerfCurrentPerDlciUtilizationEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapPerfCurrentPerDlciUtilizationDlciValue")) if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationEntry.setDescription('The utilization statistics for a particular DLCI.') dfrapPerfCurrentPerDlciUtilizationDlciValue = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrapPerfCurrentPerDlciRxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciRxUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciRxUtilization.setDescription('The receive direction utilization as a percentage of CIR.') dfrapPerfCurrentPerDlciTxUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciTxUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciTxUtilization.setDescription('The transmit direction utilization as a percentage of CIR.') dfrapPerfCurrentPerDlciAggregateUtilization = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciAggregateUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciAggregateUtilization.setDescription('The aggregate utilization, the average of the receive and transmit utilization as a percentage of CIR.') dfrapPerfCurrentUnitUtilization = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3)) dfrapPerfCurrentDteUtilization = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentDteUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentDteUtilization.setDescription('The DTE interface utilization as a percentage of line rate.') dfrapPerfCurrentWanUtilization = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentWanUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentWanUtilization.setDescription('The WAN interface utilization as a percentage of line rate.') dfrapPerfCurrentAggregateUtilization = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPerfCurrentAggregateUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentAggregateUtilization.setDescription('The aggregate utilization of the unit, the average of the DTE and WAN interface utilizations as a percentage of line rate.') dfrapEventTrapLog = MibIdentifier((1, 3, 6, 1, 4, 1, 485, 6, 10)) dfrapEventTrapLogTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 10, 1), ) if mibBuilder.loadTexts: dfrapEventTrapLogTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogTable.setDescription('This table contains the Event/Trap log. The entries are indexed by sequence number.') dfrapEventTrapLogEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapEventTrapLogSeqNum")) if mibBuilder.loadTexts: dfrapEventTrapLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogEntry.setDescription('The event record for a particular event.') dfrapEventTrapLogSeqNum = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogSeqNum.setDescription('The sequence number associated with an event record.') dfrapEventTrapLogGenericEvent = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogGenericEvent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogGenericEvent.setDescription('The SNMP generic trap or event number.') dfrapEventTrapLogSpecificEvent = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogSpecificEvent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogSpecificEvent.setDescription('The SNMP specific trap or event sub-identifier number.') dfrapEventTrapLogTimeStamp = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 4), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogTimeStamp.setDescription('The SNMP trap timestamp.') dfrapEventTrapLogVarBind1 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogVarBind1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind1.setDescription('Variable Binding 1 for this SNMP Trap event.') dfrapEventTrapLogVarBind2 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogVarBind2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind2.setDescription('Variable Binding 2 for this SNMP Trap event.') dfrapEventTrapLogVarBind3 = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventTrapLogVarBind3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind3.setDescription('Variable Binding 3 for this SNMP Trap event.') dfrapEventLogAltTable = MibTable((1, 3, 6, 1, 4, 1, 485, 6, 10, 2), ) if mibBuilder.loadTexts: dfrapEventLogAltTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltTable.setDescription("This is an alternative method to access the database of the Event/Trap Log. The database is indexed by Sequence Number and Event/Trap log's are returned in an OCTETSTRING.") dfrapEventLogAltEntry = MibTableRow((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1), ).setIndexNames((0, "DFRAP-MIB", "dfrapEventLogAltSeqNum")) if mibBuilder.loadTexts: dfrapEventLogAltEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltEntry.setDescription('The Event/Trap Log for a particular sequence number.') dfrapEventLogAltSeqNum = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventLogAltSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltSeqNum.setDescription('The Sequence Number monitored for the Event Log') dfrapEventLogAltArray = MibTableColumn((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1, 2), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventLogAltArray.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltArray.setDescription('The Event / Trap log for the given sequence number.') dfrapEventLogCurrentSeqNum = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 3), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapEventLogCurrentSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogCurrentSeqNum.setDescription('The current index into the Event Log Table.') dfrapEventLogFreeze = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("freeze", 1), ("un-freeze", 2)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapEventLogFreeze.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogFreeze.setDescription('This freezes the Event/Trap Log. freeze(1) will prevent Events / Traps from being entered into the database, un-freeze(2) will allow Events / Traps to be logged into the database. An event will be logged indicating a set of this entry') dfrapEventLogClear = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("clear", 1)))).setMaxAccess("writeonly") if mibBuilder.loadTexts: dfrapEventLogClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogClear.setDescription('This clears the Event/Trap Log.') dfrapAlarmType = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 14, 15, 16, 17, 18, 19, 26, 27, 28, 29, 30, 31, 32, 33, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 90, 91, 92, 93, 94, 95, 96, 97, 138, 139, 140, 141, 142, 257, 258, 259, 260, 261, 262, 263, 264, 265))).clone(namedValues=NamedValues(("bad-config-in-set", 1), ("config-local-update", 2), ("local-unit-loopback-enabled", 14), ("local-unit-loopback-disabled", 15), ("local-unit-loopback-failure", 16), ("local-dte-loopback-enabled", 17), ("local-dte-loopback-disabled", 18), ("local-dte-loopback-failure", 19), ("local-network-loopback-enabled", 26), ("local-network-loopback-disabled", 27), ("local-network-loopback-failure", 28), ("v54-loop-up-initiated", 29), ("v54-loop-down-completed", 30), ("v54-loopback-enabled-by-remote", 31), ("v54-loopback-disabled-by-remote", 32), ("v54-loopback-failure", 33), ("bert-test-pattern-initiated", 44), ("bert-test-pattern-completed", 45), ("bert-test-pattern-failure", 46), ("dlci-active", 47), ("dlci-inactive", 48), ("dlci-td-threshold", 49), ("lmi-sourcing-change-passthru", 50), ("lmi-sourcing-change-user-dte", 51), ("lmi-sourcing-change-net-dte", 52), ("lmi-sourcing-change-user-net", 53), ("lmi-sourcing-change-net-net", 54), ("dte-signal-rts-on", 55), ("dte-signal-rts-off", 56), ("dte-signal-dtr-on", 57), ("dte-signal-dtr-off", 58), ("lmi-non-incr-seq-num-dte", 59), ("lmi-non-incr-seq-num-net", 60), ("lmi-seq-num-mismatch-dte", 61), ("lmi-seq-num-mismatch-net", 62), ("line-failure", 63), ("line-in-service", 64), ("connected", 65), ("connect-failure", 66), ("incoming-call", 67), ("disconnected", 68), ("bpv-threshold-exceeded", 69), ("bpv-threshold-acceptable", 70), ("remote-network-simplex-loopback-enabled", 71), ("remote-network-simplex-loopback-disabled", 72), ("remote-network-non-latching-loopback-enabled", 73), ("remote-network-non-latching-loopback-disabled", 74), ("trap-muting-active", 75), ("trap-muting-inactive", 76), ("vloop-loop-up", 90), ("vloop-loop-down", 91), ("vloop-up-via-remote", 92), ("vloop-down-via-remote", 93), ("vloop-failed", 94), ("vbert-started", 95), ("vbert-stopped", 96), ("vbert-request-failed", 97), ("pvc-rx-utilization-exceeded", 138), ("pvc-tx-utilization-exceeded", 139), ("pvc-rx-utilization-cleared", 140), ("pvc-tx-utilization-cleared", 141), ("config-install-success", 142), ("tftp-requested", 257), ("tftp-transferring", 258), ("tftp-programming", 259), ("tftp-aborted", 260), ("tftp-success", 261), ("tftp-host-unreachable", 262), ("tftp-no-file", 263), ("tftp-invalid-file", 264), ("tftp-corrupt-file", 265)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapAlarmType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapAlarmType.setDescription('The alarm type of the most recent TRAP generated.') dfrapDLCINum = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapDLCINum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDLCINum.setDescription('The DLCI number for the most recent DLCI TRAP generated.') dfrapInterface = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("dte", 1), ("dds", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapInterface.setDescription('The interface most recently reported in a TRAP.') dfrapIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 9), IpAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapIpAddress.setDescription('The IP address most recently reported in a TRAP.') dfrapPercentUtilization = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapPercentUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPercentUtilization.setDescription('The percent utilization for a DLCI most recently reported in a TRAP.') dfrapUtilizationThreshold = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapUtilizationThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapUtilizationThreshold.setDescription('The percent utilization threshold for a DLCI most recently reported in a TRAP.') dfrapCfgLockIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 485, 6, 13), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: dfrapCfgLockIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLockIpAddress.setDescription('The IP address of the management station locking the configuration most recently reported in a TRAP.') dfrapTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,0)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTrap.setDescription('A dfrapTrap trap signifies that the sending node had its `dfrapAlarmType` variable modified.') dfrapBadConfigTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,1)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBadConfigTrap.setDescription('Unit has received a configuration update request through SNMP but the request was rejected due to an incorrect or inappropriate parameter.') dfrapLocalConfigTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,2)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalConfigTrap.setDescription('Unit configuration has been updated locally (console port or front panel keypad) or remotely (telnet)') dfrapLocalUnitLoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,14)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackEnabledTrap.setDescription('Unit is in a bi-directional unit loopback. Data is received from either interface, processed, and transmitted back towards the same interface. When configured for Frame Relay operation the unit will preserve the LMI path during this loopback. In Frame Relay mode, only valid frames are looped back (pseudorandom test patterns will be dropped).') dfrapLocalUnitLoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,15)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackDisabledTrap.setDescription('Bi-directional unit loopback path is removed.') dfrapLocalUnitLoopbackFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,16)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackFailedTrap.setDescription('Bi-directional unit loopback request has been rejected by the unit. Typically, this is due to the presence of another loopback condition.') dfrapLocalDteLoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,17)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalDteLoopbackEnabledTrap.setDescription('Unit is in a bi-directional DTE loopback. All data received at the DTE interface is looped back regardless of format or content (line loopback). All data received at the WAN interface is looped back regardless of format or content (line loopback) When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrapLocalDteLoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,18)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalDteLoopbackDisabledTrap.setDescription('Bi-directional DTE loopback path is removed.') dfrapLocalDteLoopbackFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,19)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalDteLoopbackFailedTrap.setDescription('Bi-directional DTE loopback request has been rejected by the unit. Typically, this is due to the presence of another loopback condition.') dfrapLocalNetLoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,26)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalNetLoopbackEnabledTrap.setDescription('Unit is in local network loopback. All data received from the WAN, regardless of format or content, is transmitted back out (line interface loopback) while still being sent to the DTE. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrapLocalNetLoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,27)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalNetLoopbackDisabledTrap.setDescription('Local network loopback path is removed.') dfrapLocalNetLoopbackFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,28)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLocalNetLoopbackFailedTrap.setDescription('Local network loopback request is rejected. Typically, this is due to the presence of another loopback condition.') dfrapV54LoopUpInitiatedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,29)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapV54LoopUpInitiatedTrap.setDescription('Unit has sent the standard V54 loop up pattern out the WAN at the DTE rate. A compatible piece of equipment can sense this pattern and enter a loopback state - typically putting up a bi-directional DTE loopback path. After sending the V54 loop up pattern, the (local) unit returns to normal operation, expecting a loopback condition at the remote device.') dfrapV54LoopDownCompletedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,30)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapV54LoopDownCompletedTrap.setDescription('Unit has sent the standard V54 loop down pattern out the WAN at the DTE rate. A compatible piece of equipment can sense this pattern remove the loopback state that is entered after receiving a loop up pattern - typically a bi-directional DTE loopback path. After sending the V54 loop down pattern, the unit returns to normal operation.') dfrapV54LoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,31)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapV54LoopbackEnabledTrap.setDescription('Unit has received a V54 loop up pattern from a compatible piece of equipment. A bi-directional DTE loopback is activated. All data received at the DTE interface is looped back regardless of format or content. All data received at the WAN interface is looped back regardless of format or content. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrapV54LoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,32)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapV54LoopbackDisabledTrap.setDescription('Unit has received a V54 loop down pattern from a compatible piece of equipment. The bi-directional local DTE loopback is removed') dfrapV54LoopbackFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,33)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapV54LoopbackFailedTrap.setDescription('Unit has rejected the request to send a V54 loop up. Typically, this is due to the presence of another loopback condition.') dfrapBertInitiatedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,44)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBertInitiatedTrap.setDescription('Unit is sending a pseudorandom test pattern (511 or QRSS) out the WAN and monitoring the WAN received data for the same pattern. This test may be ineffective in certain frame relay applications as pseudorandom data lacks appropriate framing.') dfrapBertCompletedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,45)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBertCompletedTrap.setDescription('Unit has stopped sending a pseudorandom test pattern out the WAN.') dfrapBertFailedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,46)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBertFailedTrap.setDescription('Unit has rejected the request to enter a BERT test state. Typically, this is due to the presence of another diagnostic condition.') dfrapDLCIActiveTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,47)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum")) if mibBuilder.loadTexts: dfrapDLCIActiveTrap.setDescription('Unit is reporting this DLCI as active and provisioned. An active DLCI is one that is explicitly declared ACTIVE in an LMI Full Status Response (typically coming from a frame relay switch).') dfrapDLCIInactiveTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,48)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum")) if mibBuilder.loadTexts: dfrapDLCIInactiveTrap.setDescription("Unit is reporting this DLCI as inactive. An inactive DLCI is determined inactive one of two ways: it is either explicitly declared inactive in an LMI Full Status Response (typically coming from a frame relay switch) or a Full Status Response is not seen causing a Full Status Timer expiry. Having the unit's full status timer too low could result in the unit falsely declaring DLCIs inactive (then active again). This does not interfere with any data activity on the DLCI but could result in excessive traps.") dfrapDLCITDThresholdTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,49)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapIpAddress")) if mibBuilder.loadTexts: dfrapDLCITDThresholdTrap.setDescription('VNIP has measured a round-trip transit delay on this PVC to this peer which exceeds the user-defined threshold.') dfrapLmiSourcingChangePassthruTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,50)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSourcingChangePassthruTrap.setDescription('Unit is not sourcing any LMI messages. If this state persists then LMI is up and the proper handshaking is occurring independent of the unit. This may also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrapLmiSourcingChangeUserDteTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,51)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSourcingChangeUserDteTrap.setDescription('Unit is acting as a source of LMI Status Requests (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the DTE interface is configured as a Frame Relay DCE but a companion Frame Relay DTE device is not seen out the WAN. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrapLmiSourcingChangeNetDteTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,52)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSourcingChangeNetDteTrap.setDescription('Unit is acting as a source of LMI Status Responses (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the DTE interface is configured as a Frame Relay DTE but a companion Frame Relay DCE device is not seen out the WAN. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of external equipment.') dfrapLmiSourcingChangeUserDdsTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,53)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSourcingChangeUserDdsTrap.setDescription('Unit is acting as a source of LMI Status Requests (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the WAN interface is configured as a Frame Relay DCE but a companion Frame Relay DTE device is not seen out the DTE interface. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrapLmiSourcingChangeNetDdsTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,54)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSourcingChangeNetDdsTrap.setDescription('Unit is acting as a source of LMI Status Responses (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the WAN interface is configured as a Frame Relay DTE but a companion Frame Relay DCE device is not seen out the DTE interface. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrapDteSignalRtsOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,55)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapDteSignalRtsOnTrap.setDescription("Unit's DTE Request to Send (RTS) interface control signal is now active (on). This signal is presented by the external DTE device.") dfrapDteSignalRtsOffTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,56)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapDteSignalRtsOffTrap.setDescription("Unit's DTE Request to Send (RTS) interface control signal is now inactive (off). This signal is presented by the external DTE device.") dfrapDteSignalDtrOnTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,57)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapDteSignalDtrOnTrap.setDescription("Unit's DTE Data Terminal Ready (DTR) interface control signal is now active (on). This signal is presented by the external DTE device.") dfrapDteSignalDtrOffTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,58)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapDteSignalDtrOffTrap.setDescription("Unit's DTE Data Terminal Ready (DTR) interface control signal is now inactive (off). This signal is presented by the external DTE device.") dfrapNonIncrLmiSeqNumDteTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,59)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapNonIncrLmiSeqNumDteTrap.setDescription("Unit has detected a non-incrementing LMI sequence number from the DTE. A Status Enquiry or Status Response message has been seen at the DTE interface. The Link Integrity information element's Send Sequence Number was not incremented or was incremented more than once since the last Send Sequence Number seen from the DTE interface.") dfrapNonIncrLmiSeqNumDdsTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,60)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapNonIncrLmiSeqNumDdsTrap.setDescription("Unit has detected a non-incrementing LMI sequence number from the WAN. A Status Enquiry or Status Response message has been seen at the WAN interface. The Link Integrity information element's Send Sequence Number was not incremented or was incremented more than once since the last Send Sequence Number seen from the WAN interface.") dfrapLmiSeqNumMismatchDteTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,61)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSeqNumMismatchDteTrap.setDescription("Unit has detected an LMI sequence number mismatch from the DTE. A Status Enquiry or Status Response message has been seen at the DTE interface. The Link Inetgrity information element's Receive Sequence Number was not the most recent Send Sequence number sent from the WAN interface") dfrapLmiSeqNumMismatchDdsTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,62)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLmiSeqNumMismatchDdsTrap.setDescription("Unit has detected an LMI sequence number mismatch from the WAN. A Status Enquiry or Status Response message has been seen at the WAN interface. The Link Integrity information element's Receive Sequence Number was not the most recent Send Sequence number sent from the DTE interface.") dfrapLineFailureTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,63)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLineFailureTrap.setDescription('The unit is reporting error conditions that inditate that the WAN connection is not fully functional.') dfrapLineInServiceTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,64)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapLineInServiceTrap.setDescription('The unit is reporting that its WAN link has transitioned from a failure state to one which is functioning normally.') dfrapBPVThresholdExceededTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,69)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBPVThresholdExceededTrap.setDescription('The unit may be configured to issue this alarm in response to line code violations being received from the service provider. If more than 5 violations are detected within a one-second interval, this trap is generated. Network control codes which include bipolar violations are not considered errors and will not contribute to this trap. If this condition persists then contact your WAN service provider.') dfrapBPVThresholdAcceptableTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,70)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapBPVThresholdAcceptableTrap.setDescription('This trap is to announce that the bipolar violation threshold of at least 5 per second is no longer being exceeded.') dfrapSimplexCurrentLoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,71)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapSimplexCurrentLoopbackEnabledTrap.setDescription('The unit has received a DDS-standard simplex current reversal from the WAN. In response, a Network Line Loopback path will be initiated for the duration of the current reversal.') dfrapSimplexCurrentLoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,72)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapSimplexCurrentLoopbackDisabledTrap.setDescription('The unit has ceased receiving a simplex current reversal from the WAN. In response, the Network Line Loopback path will be removed.') dfrapNonLatchingLoopbackEnabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,73)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapNonLatchingLoopbackEnabledTrap.setDescription('The unit has received a DDS-standard in-band loopback command. In response, a Network Line Loopback path will be initiated and maintained as long as the appropriate command is recognized.') dfrapNonLatchingLoopbackDisabledTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,74)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapNonLatchingLoopbackDisabledTrap.setDescription('The unit has ceased receiving a DDS-standard in-band loopback command. In response, a Network Line Loopback path will be removed.') dfrapTrapMutingActive = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,75)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTrapMutingActive.setDescription('Trap generation is muted. This trap will be issued at the configured trap muting frequency. No other traps will be issued.') dfrapTrapMutingInactive = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,76)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTrapMutingInactive.setDescription('Trap generation is re-enabled (muting disabled).') dfrapVloopUp = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,90)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVloopUp.setDescription('A Vnip PVC loopback (VLOOP) request has been sent to a remote device on this DLCI out this interface. The remote unit should respond by looping all data received on this PVC back towards the unit that initiated this request. A PVC running VLOOP will not be running any user data.') dfrapVloopDown = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,91)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVloopDown.setDescription('A Vnip PVC loopback (VLOOP) disable request has been sent to a remote device on this DLCI out this interface. The remote unit should respond by tearing down the logical loop on this DLCI.') dfrapVloopUpViaRemote = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,92)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVloopUpViaRemote.setDescription('A Vnip PVC loopback (VLOOP) request has been received from a remote device on this DLCI on this interface. The unit will respond by looping all data received on this PVC back out the interface towards the unit that initiated the request.') dfrapVloopDownViaRemote = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,93)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVloopDownViaRemote.setDescription('A request to disable a Vnip PVC loopback (VLOOP) on this unit with the indicated DLCI and Interface has been received. Usually this disable request is from the remote device that requested the VLOOP, however the request may also be due to a local event such as expiration of a locally configured loopback timeout. The unit will respond by tearing down the logical loop on this DLCI.') dfrapVloopRequestFailed = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,94)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVloopRequestFailed.setDescription('The request for a PVC loopback (VLOOP) has been rejected or did not complete.') dfrapVbertStarted = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,95)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVbertStarted.setDescription('A Vnip PVC error rate test (VBERT) has been started on this DLCI out this interface to a remote device. The VBERT test data will be statistically multiplexed in with user data, management data, and networking data. The destination peer will echo this test data back to the source producing a full-duplex volume-based timed test.') dfrapVbertStopped = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,96)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVbertStopped.setDescription('A Vnip PVC BERT (VBERT) has been stopped on this DLCI on this interface to a remote device.') dfrapVbertRequestFailed = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,97)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapInterface")) if mibBuilder.loadTexts: dfrapVbertRequestFailed.setDescription('The request for a PVC BERT (VBERT) on this DLCI on this interface has been rejected.') dfrapPvcRxUtilizationExceededTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,138)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapPercentUtilization"), ("DFRAP-MIB", "dfrapUtilizationThreshold")) if mibBuilder.loadTexts: dfrapPvcRxUtilizationExceededTrap.setDescription('Percent utilization threshold was exceeded for the defined number of Short Term Intervals in the reception direction on this DLCI. ') dfrapPvcTxUtilizationExceededTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,139)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapPercentUtilization"), ("DFRAP-MIB", "dfrapUtilizationThreshold")) if mibBuilder.loadTexts: dfrapPvcTxUtilizationExceededTrap.setDescription('Percent utilization threshold was exceeded for the defined number of Short Term Intervals in the transmission direction on this DLCI. ') dfrapPvcRxUtilizationClearedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,140)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapPercentUtilization"), ("DFRAP-MIB", "dfrapUtilizationThreshold")) if mibBuilder.loadTexts: dfrapPvcRxUtilizationClearedTrap.setDescription('Percent utilization was below the threshold for the defined number of Short Term Intervals in the reception direction on this DLCI. ') dfrapPvcTxUtilizationClearedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,141)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapDLCINum"), ("DFRAP-MIB", "dfrapPercentUtilization"), ("DFRAP-MIB", "dfrapUtilizationThreshold")) if mibBuilder.loadTexts: dfrapPvcTxUtilizationClearedTrap.setDescription('Percent utilization was below the threshold for the defined number of Short Term Intervals in the transmission direction on this DLCI. ') dfrapConfigInstallSuccess = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,142)).setObjects(("DFRAP-MIB", "dfrapAlarmType"), ("DFRAP-MIB", "dfrapCfgLockIpAddress")) if mibBuilder.loadTexts: dfrapConfigInstallSuccess.setDescription(' The configuration install process has successfully completed. ') dfrapTftpRequestedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,257)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpRequestedTrap.setDescription("Unit has received a TFTP download request. TFTP is the preferred method for upgrading a unit's software image.") dfrapTftpTransferringTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,258)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpTransferringTrap.setDescription('Unit has established a TFTP session, found the file, and begun the transfer. The file must still be qualified as appropriate for this unit.') dfrapTftpProgrammingTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,259)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpProgrammingTrap.setDescription('Unit has completed the TFTP transfer of a new software image which will next be programmed into non-volatile flash memory') dfrapTftpAbortedTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,260)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpAbortedTrap.setDescription("Unit's TFTP session was established but the transfer was aborted by user intervention or an unrecoverable TFTP protocol error") dfrapTftpSuccessTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,261)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpSuccessTrap.setDescription("Unit's TFTP download completed successfully. Flash devices will be programmed with a new image. Unit will stop passing data during the programming phase (less than a minute) and, upon completion, will reset and return to full operation using the new image") dfrapTftpHostUnreachableTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,262)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpHostUnreachableTrap.setDescription('Unit could not establish a TFTP session with the designated server. Verify that the correct TFTP ip address, TFTP DLCI and TFTP interface are configured on the unit and also verify the TFTP server configuration') dfrapTftpNoFileTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,263)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpNoFileTrap.setDescription('Unit could not locate the designated file on the TFTP server. Verify the correct TFTP filename is configured on the unit and verify the location of this file on the server (file name may be case sensitive)') dfrapTftpInvalidFileTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,264)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpInvalidFileTrap.setDescription('Unit had established a TFTP session and began transfer of the designated file. The unit aborted the transfer after determining that the specified file is not appropriate for this product (failed header verification)') dfrapTftpCorruptFileTrap = NotificationType((1, 3, 6, 1, 4, 1, 485, 6) + (0,265)).setObjects(("DFRAP-MIB", "dfrapAlarmType")) if mibBuilder.loadTexts: dfrapTftpCorruptFileTrap.setDescription('Unit transferred the designated file but aborted the operation due to a checksum error within the downloaded s-record file') mibBuilder.exportSymbols("DFRAP-MIB", dfrapV54LoopbackDisabledTrap=dfrapV54LoopbackDisabledTrap, dfrapPerfRoutingTotalEntry=dfrapPerfRoutingTotalEntry, dfrapPerfSnaPerDlciTxAppn=dfrapPerfSnaPerDlciTxAppn, dfrapVnipTopoVBertPerUtilEIR=dfrapVnipTopoVBertPerUtilEIR, dfrapLocalNetLoopbackDisabledTrap=dfrapLocalNetLoopbackDisabledTrap, dfrapPerfCirRxPercentUtilizationRange6=dfrapPerfCirRxPercentUtilizationRange6, dfrapPerfRoutingTotalTxRip=dfrapPerfRoutingTotalTxRip, dfrapSysName=dfrapSysName, dfrapVnipTopoTDLastDelay=dfrapVnipTopoTDLastDelay, dfrapPerfCirTxPercentUtilizationRange4=dfrapPerfCirTxPercentUtilizationRange4, dfrapVnipTopoVBERTStatus=dfrapVnipTopoVBERTStatus, dfrapPerfIpxPerDlciTxTotal=dfrapPerfIpxPerDlciTxTotal, dfrapVnipTopoVLOOPStatus=dfrapVnipTopoVLOOPStatus, dfrapPerfLmiPerDlciEntry=dfrapPerfLmiPerDlciEntry, dfrapPerfLmiPerDlciTxOtherByteCnt=dfrapPerfLmiPerDlciTxOtherByteCnt, dfrapPerfIpxTotalInterval=dfrapPerfIpxTotalInterval, dfrapPerfRoutingTotalTable=dfrapPerfRoutingTotalTable, dfrapCfgFrLmiInactivityTimeout=dfrapCfgFrLmiInactivityTimeout, dfrapLocalUnitLoopbackFailedTrap=dfrapLocalUnitLoopbackFailedTrap, dfrapPerfArpTotalEntry=dfrapPerfArpTotalEntry, dfrapCfgIpTelnetAutoLogOut=dfrapCfgIpTelnetAutoLogOut, dfrapTftpRequestedTrap=dfrapTftpRequestedTrap, dfrapPerfApplicationTotalTxSnmp=dfrapPerfApplicationTotalTxSnmp, dfrapCfgDteClockMode=dfrapCfgDteClockMode, dfrapDiagDdsTimeRemaining=dfrapDiagDdsTimeRemaining, dfrapPerfApplicationPerDlciEntry=dfrapPerfApplicationPerDlciEntry, dfrapPerfMgmtIpICMPInTimeExcds=dfrapPerfMgmtIpICMPInTimeExcds, dfrapCfgIpPeerIP=dfrapCfgIpPeerIP, dfrapPerfIpxTotalTxOther=dfrapPerfIpxTotalTxOther, dfrapPerfIcmpPerDlciValue=dfrapPerfIcmpPerDlciValue, dfrapStatusLedTable=dfrapStatusLedTable, dfrapPerfIcmpPerDlciTxTimestpReq=dfrapPerfIcmpPerDlciTxTimestpReq, dfrapPerfArpPerDlciRxInarpReq=dfrapPerfArpPerDlciRxInarpReq, dfrapBadConfigTrap=dfrapBadConfigTrap, dfrapSysTKRSupported=dfrapSysTKRSupported, dfrapCfgLcdPassword=dfrapCfgLcdPassword, dfrapPerfThruputCmdRemoveStsDlci=dfrapPerfThruputCmdRemoveStsDlci, dfrapStatusDdsStatusLED=dfrapStatusDdsStatusLED, dfrapPerfIcmpTotalEntry=dfrapPerfIcmpTotalEntry, dfrapPerfIpxPerDlciRxTotal=dfrapPerfIpxPerDlciRxTotal, dfrapDiagBertTable=dfrapDiagBertTable, dfrapPerfThruputPerDlciTxByte=dfrapPerfThruputPerDlciTxByte, dfrapStatusDteRts=dfrapStatusDteRts, dfrapPerfNetwProtoTotalRxIp=dfrapPerfNetwProtoTotalRxIp, dfrapPerfIpTotalTxTotal=dfrapPerfIpTotalTxTotal, dfrapLmiSeqNumMismatchDdsTrap=dfrapLmiSeqNumMismatchDdsTrap, dfrapLmiSourcing=dfrapLmiSourcing, dfrapPerfArpTotalTxRarpReq=dfrapPerfArpTotalTxRarpReq, dfrapPerfSnaPerDlciInterval=dfrapPerfSnaPerDlciInterval, dfrapSysLTFNumDlcis=dfrapSysLTFNumDlcis, dfrapCfgTransitDelayTable=dfrapCfgTransitDelayTable, dfrapPerfApplicationTotalTxCustom4=dfrapPerfApplicationTotalTxCustom4, dfrapCfgUnlock=dfrapCfgUnlock, dfrapPerfIcmpTotalTxPktTooBig=dfrapPerfIcmpTotalTxPktTooBig, dfrapCfgSnmpMgrInterface=dfrapCfgSnmpMgrInterface, dfrapPerfIpTotalTxIcmp=dfrapPerfIpTotalTxIcmp, dfrapSysFeatureTable=dfrapSysFeatureTable, dfrapPerfCurrentPerDlciUtilizationEntry=dfrapPerfCurrentPerDlciUtilizationEntry, dfrapPerfNetwProtoPerDlciTxIp=dfrapPerfNetwProtoPerDlciTxIp, dfrapPerfMgmtIpICMPInParmProbs=dfrapPerfMgmtIpICMPInParmProbs, dfrapPerfThruputPerDlciUptime=dfrapPerfThruputPerDlciUptime, dfrapPerfIcmpTotalTxDestUnr=dfrapPerfIcmpTotalTxDestUnr, dfrapTftpNoFileTrap=dfrapTftpNoFileTrap, dfrap=dfrap, dfrapPerfMgmtIpIPStatsTable=dfrapPerfMgmtIpIPStatsTable, dfrapPerfThruputPerDlciRxBecn=dfrapPerfThruputPerDlciRxBecn, dfrapPerfSnaPerDlciTxOther=dfrapPerfSnaPerDlciTxOther, dfrapPerfThruputPerDlciChangeTime=dfrapPerfThruputPerDlciChangeTime, dfrapPerfSnaTotalRxOther=dfrapPerfSnaTotalRxOther, dfrapCfgFrPerfDlciNamesCirValue=dfrapCfgFrPerfDlciNamesCirValue, dfrapVnipTopoVBertTimeElapse=dfrapVnipTopoVBertTimeElapse, dfrapPerfThruputPerIntfEntry=dfrapPerfThruputPerIntfEntry, dfrapPerfIpTotalTxUdp=dfrapPerfIpTotalTxUdp, dfrapPerfIcmpPerDlciRxTimeExcd=dfrapPerfIcmpPerDlciRxTimeExcd, dfrapPerfLmiTotalTxOtherByteCnt=dfrapPerfLmiTotalTxOtherByteCnt, dfrapEventTrapLogGenericEvent=dfrapEventTrapLogGenericEvent, dfrapLmiSourcingChangeUserDteTrap=dfrapLmiSourcingChangeUserDteTrap, dfrapCfgGetCommunityString=dfrapCfgGetCommunityString, dfrapCfgVnipMode=dfrapCfgVnipMode, dfrapIpAddress=dfrapIpAddress, dfrapCfgSnmpTrapMuting=dfrapCfgSnmpTrapMuting, dfrapDiagVnipIpAddr=dfrapDiagVnipIpAddr, dfrapPerfIpTotalRxTotal=dfrapPerfIpTotalRxTotal, dfrapCfgMgmtTable=dfrapCfgMgmtTable, dfrapEventLogAltEntry=dfrapEventLogAltEntry, dfrapPerfNetwProtoPerDlciRxVnip=dfrapPerfNetwProtoPerDlciRxVnip, dfrapPerfIpTotalRxIgrp=dfrapPerfIpTotalRxIgrp, dfrapDiagDteLclLpbk=dfrapDiagDteLclLpbk, dfrapPerfNetwProtoPerDlciValue=dfrapPerfNetwProtoPerDlciValue, dfrapPerfIcmpPerDlciRxDestUnr=dfrapPerfIcmpPerDlciRxDestUnr, dfrapDiagDteTimeRemaining=dfrapDiagDteTimeRemaining, dfrapCfgSnmpUtilTrapEnable=dfrapCfgSnmpUtilTrapEnable, dfrapCfgCommDataBits=dfrapCfgCommDataBits, dfrapPerfNetwProtoPerDlciTxCisco=dfrapPerfNetwProtoPerDlciTxCisco, dfrapCfgFrPerfLTDlciFilterEntry=dfrapCfgFrPerfLTDlciFilterEntry, dfrapPerfIpxPerDlciRxOther=dfrapPerfIpxPerDlciRxOther, dfrapPerfIcmpPerDlciTxEchoReq=dfrapPerfIcmpPerDlciTxEchoReq, dfrapPerfNetwLongTermAltArray=dfrapPerfNetwLongTermAltArray, dfrapPerfSnaTotalTxNetbios=dfrapPerfSnaTotalTxNetbios, dfrapPerfCirTxPercentUtilizationRange2=dfrapPerfCirTxPercentUtilizationRange2, dfrapCfgFrPerf=dfrapCfgFrPerf, dfrapPerfIcmpTotalTxEchoRep=dfrapPerfIcmpTotalTxEchoRep, dfrapPerfNetwProtoTotalTxSna=dfrapPerfNetwProtoTotalTxSna, dfrapStatusDteTxLED=dfrapStatusDteTxLED, dfrapPerfIcmpTotalRxAddrMaskReq=dfrapPerfIcmpTotalRxAddrMaskReq, dfrapSysSerialNo=dfrapSysSerialNo, dfrapPerfIpxPerDlciTable=dfrapPerfIpxPerDlciTable, dfrapPerfThruputCmdReplaceDlciNewValue=dfrapPerfThruputCmdReplaceDlciNewValue, dfrapPerfApplicationTotalTxTftp=dfrapPerfApplicationTotalTxTftp, dfrapPerfNetwProtoPerDlciTxArp=dfrapPerfNetwProtoPerDlciTxArp, dfrapPerfLmiPerDlciValue=dfrapPerfLmiPerDlciValue, dfrapPerfCirTxPercentUtilizationRange8=dfrapPerfCirTxPercentUtilizationRange8, dfrapCfgTransitDelayThreshold=dfrapCfgTransitDelayThreshold, dfrapPerfSnaTotalTxOther=dfrapPerfSnaTotalTxOther, dfrapAlarmType=dfrapAlarmType, dfrapCfgFrPerfTimersSTInterval=dfrapCfgFrPerfTimersSTInterval, dfrapPerfNetwProtoPerDlciTxIpx=dfrapPerfNetwProtoPerDlciTxIpx, dfrapVloopUp=dfrapVloopUp, dfrapPerfApplicationPerDlciTxSmtp=dfrapPerfApplicationPerDlciTxSmtp, dfrapSimplexCurrentLoopbackDisabledTrap=dfrapSimplexCurrentLoopbackDisabledTrap, dfrapPerfRoutingTotalRxNetbios=dfrapPerfRoutingTotalRxNetbios, dfrapPerfLmiTotalTxLivoStatByteCnt=dfrapPerfLmiTotalTxLivoStatByteCnt, dfrapPerfIpxPerDlciRxSap=dfrapPerfIpxPerDlciRxSap, dfrapPerfApplicationPerDlciRxFtp=dfrapPerfApplicationPerDlciRxFtp, dfrapPerfNetwProtoPerDlciRxTotal=dfrapPerfNetwProtoPerDlciRxTotal, dfrapPerfMgmtIpIPOutDscrd=dfrapPerfMgmtIpIPOutDscrd, dfrapPerfIpxTotalTxTotal=dfrapPerfIpxTotalTxTotal, dfrapDiagUnitTimeRemaining=dfrapDiagUnitTimeRemaining, dfrapPerfApplicationPerDlciTxTelnet=dfrapPerfApplicationPerDlciTxTelnet, dfrapCfgTransitDelayNumHops=dfrapCfgTransitDelayNumHops, dfrapPerfArpPerDlciTxArpReq=dfrapPerfArpPerDlciTxArpReq, dfrapCfgFrPerfDlciNamesTableClear=dfrapCfgFrPerfDlciNamesTableClear, dfrapDiagnostics=dfrapDiagnostics, dfrapCfgAppFormat=dfrapCfgAppFormat, dfrapPerfIcmpTotalRxTimestpReq=dfrapPerfIcmpTotalRxTimestpReq, dfrapSysSoftRev=dfrapSysSoftRev, dfrapPerfArpPerDlciValue=dfrapPerfArpPerDlciValue, dfrapPerfArpPerDlciTxRarpRep=dfrapPerfArpPerDlciTxRarpRep, dfrapPerfNetwProtoPerDlciRxCisco=dfrapPerfNetwProtoPerDlciRxCisco, dfrapPerfIcmpTotalRxEchoReq=dfrapPerfIcmpTotalRxEchoReq, dfrapPerfNetwProtoPerDlciRxOther=dfrapPerfNetwProtoPerDlciRxOther, dfrapVnipTopoVBertTxDESetFrames=dfrapVnipTopoVBertTxDESetFrames, dfrapStatusMgmtDefaultDLCIStatus=dfrapStatusMgmtDefaultDLCIStatus, dfrapPerfLmiTotalTxFullEnqByteCnt=dfrapPerfLmiTotalTxFullEnqByteCnt, dfrapPerfThruputPerDlciEIR=dfrapPerfThruputPerDlciEIR, dfrapPerfArpTotalTxRarpRep=dfrapPerfArpTotalTxRarpRep, dfrapPerfArpTotalInterval=dfrapPerfArpTotalInterval, dfrapPerfNetwLongTermAltTable=dfrapPerfNetwLongTermAltTable, dfrapSysHardRev=dfrapSysHardRev, dfrapPerfCirPercentUtilizationDlciValue=dfrapPerfCirPercentUtilizationDlciValue, dfrapPerfNetwProtoPerDlciTxOther=dfrapPerfNetwProtoPerDlciTxOther, dfrapDLCINum=dfrapDLCINum, dfrapSysNumDteInstalled=dfrapSysNumDteInstalled, dfrapPerfLmiPerDlciRxLivoStatByteCnt=dfrapPerfLmiPerDlciRxLivoStatByteCnt, dfrapCfgSnmpTable=dfrapCfgSnmpTable, dfrapPerfCirRxPercentUtilizationRange7=dfrapPerfCirRxPercentUtilizationRange7, dfrapCfgCommBaud=dfrapCfgCommBaud, dfrapVnipTopologyNumHops=dfrapVnipTopologyNumHops, dfrapPerfSnaPerDlciRxPeriph=dfrapPerfSnaPerDlciRxPeriph, dfrapCfgFrLmiType=dfrapCfgFrLmiType, dfrapPerfIpxPerDlciRxSpx=dfrapPerfIpxPerDlciRxSpx, dfrapPerfMgmtIpICMPInMsgs=dfrapPerfMgmtIpICMPInMsgs, dfrapCfgTransitDelayInterface=dfrapCfgTransitDelayInterface, dfrapPerfNetwProtoPerDlciRxIp=dfrapPerfNetwProtoPerDlciRxIp, dfrapPerfIcmpTotalRxDestUnr=dfrapPerfIcmpTotalRxDestUnr, dfrapPerfNetwLongTermDlci=dfrapPerfNetwLongTermDlci, dfrapPerfThruputCmdCountsStsDlciResetAll=dfrapPerfThruputCmdCountsStsDlciResetAll, dfrapVnipTopologyTable=dfrapVnipTopologyTable, dfrapPerfThruputCmdReplaceDlciEntry=dfrapPerfThruputCmdReplaceDlciEntry, dfrapTftpCorruptFileTrap=dfrapTftpCorruptFileTrap, dfrapDiagVLOOP=dfrapDiagVLOOP, dfrapDiagBertErrSec=dfrapDiagBertErrSec, dfrapSysLocation=dfrapSysLocation, dfrapPerfThruputPerDlciRxDe=dfrapPerfThruputPerDlciRxDe, dfrapPerfRoutingPerDlciTxNetbios=dfrapPerfRoutingPerDlciTxNetbios, dfrapPerfCurrentDteUtilization=dfrapPerfCurrentDteUtilization, dfrapCfgSnmpMgrClearN=dfrapCfgSnmpMgrClearN, dfrapPerfMgmtIpIFInErrors=dfrapPerfMgmtIpIFInErrors, dfrapPvcRxUtilizationClearedTrap=dfrapPvcRxUtilizationClearedTrap, dfrapPerfThruputPerDlciIndex=dfrapPerfThruputPerDlciIndex, dfrapV54LoopUpInitiatedTrap=dfrapV54LoopUpInitiatedTrap, dfrapPerfIcmpPerDlciTxDestUnr=dfrapPerfIcmpPerDlciTxDestUnr, dfrapPerfNetwProtoPerDlciTable=dfrapPerfNetwProtoPerDlciTable, dfrapPerformance=dfrapPerformance, dfrapPerfArpPerDlciRxArpReq=dfrapPerfArpPerDlciRxArpReq, dfrapPerfArpPerDlciRxRarpRep=dfrapPerfArpPerDlciRxRarpRep, dfrapPerfLmiTotalRxLivoStatByteCnt=dfrapPerfLmiTotalRxLivoStatByteCnt, dfrapPerfApplicationPerDlciTable=dfrapPerfApplicationPerDlciTable, dfrapPerfIpTotalRxOther=dfrapPerfIpTotalRxOther, dfrapPerfThruputCmdReplaceDlciValue=dfrapPerfThruputCmdReplaceDlciValue, dfrapSysNumDlcisSupported=dfrapSysNumDlcisSupported, dfrapPerfIcmpTotalRxTimeExcd=dfrapPerfIcmpTotalRxTimeExcd, dfrapPerfIpxPerDlciRxNetbios=dfrapPerfIpxPerDlciRxNetbios, dfrapStatusDteMode=dfrapStatusDteMode, dfrapPerfLmiPerDlciRxLivoEnqByteCnt=dfrapPerfLmiPerDlciRxLivoEnqByteCnt, dfrapLocalDteLoopbackFailedTrap=dfrapLocalDteLoopbackFailedTrap, dfrapPerfApplicationPerDlciInterval=dfrapPerfApplicationPerDlciInterval, dfrapCfgDteTable=dfrapCfgDteTable, dfrapPerfMgmtIpUDPInDatagrams=dfrapPerfMgmtIpUDPInDatagrams, dfrapPerfThruputPerIntfRxFrameCnt=dfrapPerfThruputPerIntfRxFrameCnt, dfrapPerfArpPerDlciRxOther=dfrapPerfArpPerDlciRxOther, dfrapCfgSnmpMgrTable=dfrapCfgSnmpMgrTable, dfrapSysPrompt=dfrapSysPrompt, dfrapPerfSnaPerDlciRxOther=dfrapPerfSnaPerDlciRxOther, dfrapVnipTopoVBertRxDESetFrames=dfrapVnipTopoVBertRxDESetFrames, dfrapPerfIcmpPerDlciRxEchoRep=dfrapPerfIcmpPerDlciRxEchoRep, dfrapPerfLmiPerDlciTxLivoStatByteCnt=dfrapPerfLmiPerDlciTxLivoStatByteCnt, dfrapUtilizationThreshold=dfrapUtilizationThreshold, dfrapPerfMgmtIpTCPAttemptFails=dfrapPerfMgmtIpTCPAttemptFails, dfrapPerfSnaTotalTxSubarea=dfrapPerfSnaTotalTxSubarea, dfrapNonLatchingLoopbackDisabledTrap=dfrapNonLatchingLoopbackDisabledTrap, dfrapPerfLmiTotalRxFullStatByteCnt=dfrapPerfLmiTotalRxFullStatByteCnt, dfrapPerfMgmtIpIPOutNoRt=dfrapPerfMgmtIpIPOutNoRt, dfrapDiagBertState=dfrapDiagBertState, dfrapEventTrapLogTimeStamp=dfrapEventTrapLogTimeStamp, dfrapEventLogFreeze=dfrapEventLogFreeze, dfrapEventTrapLogSpecificEvent=dfrapEventTrapLogSpecificEvent, dfrapPerfNetwProtoTotalRxOther=dfrapPerfNetwProtoTotalRxOther, dfrapPerfCirRxPercentUtilizationRange1=dfrapPerfCirRxPercentUtilizationRange1, dfrapCfgFrAddrResInarpTimer=dfrapCfgFrAddrResInarpTimer, dfrapPerfIpxPerDlciTxRip=dfrapPerfIpxPerDlciTxRip, dfrapCfgVnipInitTimer=dfrapCfgVnipInitTimer, dfrapSysNumDlciNames=dfrapSysNumDlciNames, dfrapPerfIpxPerDlciTxSap=dfrapPerfIpxPerDlciTxSap, dfrapPerfNetwProtoPerDlciRxSna=dfrapPerfNetwProtoPerDlciRxSna, dfrapCfgFrAddrLen=dfrapCfgFrAddrLen, dfrapDiagUnitReset=dfrapDiagUnitReset, dfrapPerfThruputPerIntfRxCrcErrCnt=dfrapPerfThruputPerIntfRxCrcErrCnt, dfrapPerfMgmtIpICMPInEchos=dfrapPerfMgmtIpICMPInEchos, dfrapPerfSnaPerDlciRxNetbios=dfrapPerfSnaPerDlciRxNetbios, dfrapPerfLmiPerDlciTable=dfrapPerfLmiPerDlciTable, dfrapDiagVnipIndex=dfrapDiagVnipIndex, dfrapPerfRoutingTotalRxRip=dfrapPerfRoutingTotalRxRip, dfrapPerfArpPerDlciInterval=dfrapPerfArpPerDlciInterval, dfrapDiagVBERTPktPercent=dfrapDiagVBERTPktPercent, dfrapPerfNetwProtoPerDlciRxAnnexG=dfrapPerfNetwProtoPerDlciRxAnnexG, dfrapSysNumDdsInstalled=dfrapSysNumDdsInstalled, dfrapPerfIpTotalEntry=dfrapPerfIpTotalEntry, dfrapPerfThruputPerIntfRxByteCnt=dfrapPerfThruputPerIntfRxByteCnt, dfrapVbertStopped=dfrapVbertStopped, dfrapPerfSnaPerDlciTxTotal=dfrapPerfSnaPerDlciTxTotal, dfrapPerfRoutingPerDlciEntry=dfrapPerfRoutingPerDlciEntry, dfrapPerfIpxTotalRxRip=dfrapPerfIpxTotalRxRip, dfrapPerfIcmpTotalRxTotal=dfrapPerfIcmpTotalRxTotal, dfrapPerfNetwProtoTotalTable=dfrapPerfNetwProtoTotalTable, dfrapVnipTopologyEntry=dfrapVnipTopologyEntry, dfrapPerfIpxPerDlciValue=dfrapPerfIpxPerDlciValue, dfrapCfgFrLmiFullStatus=dfrapCfgFrLmiFullStatus, dfrapPerfApplicationTotalEntry=dfrapPerfApplicationTotalEntry, dfrapPerfNetwProtoTotalRxSna=dfrapPerfNetwProtoTotalRxSna, dfrapPerfIcmpTotalRxRedirect=dfrapPerfIcmpTotalRxRedirect, dfrapPerfThruputPerIntfIndex=dfrapPerfThruputPerIntfIndex, dfrapPerfLmiPerDlciTxTotalByteCnt=dfrapPerfLmiPerDlciTxTotalByteCnt, dfrapCfgTransitDelayDlciValue=dfrapCfgTransitDelayDlciValue) mibBuilder.exportSymbols("DFRAP-MIB", dfrapLocalNetLoopbackFailedTrap=dfrapLocalNetLoopbackFailedTrap, dfrapPerfIcmpTotalRxGmReport=dfrapPerfIcmpTotalRxGmReport, dfrapPerfApplicationTotalTable=dfrapPerfApplicationTotalTable, dfrapPerfSnaTotalRxAppn=dfrapPerfSnaTotalRxAppn, dfrapDiagVnipTable=dfrapDiagVnipTable, dfrapPerfIcmpPerDlciTxTimeExcd=dfrapPerfIcmpPerDlciTxTimeExcd, dfrapPerfThruputCmdClearDdsStats=dfrapPerfThruputCmdClearDdsStats, dfrapPerfIcmpPerDlciTxGmQuery=dfrapPerfIcmpPerDlciTxGmQuery, dfrapPerfThruputPerDlciEncapType=dfrapPerfThruputPerDlciEncapType, dfrapDiagBertTimeElaps=dfrapDiagBertTimeElaps, dfrapPerfThruputPerDlciCirType=dfrapPerfThruputPerDlciCirType, dfrapPerfIpxTotalRxSap=dfrapPerfIpxTotalRxSap, dfrapPerfCirTxPercentUtilizationRange1=dfrapPerfCirTxPercentUtilizationRange1, dfrapPerfIcmpPerDlciInterval=dfrapPerfIcmpPerDlciInterval, dfrapPerfNetwLongTermValue=dfrapPerfNetwLongTermValue, dfrapPerfArpTotalRxRarpReq=dfrapPerfArpTotalRxRarpReq, dfrapPerfIcmpTotalTxGmReport=dfrapPerfIcmpTotalTxGmReport, dfrapPerfArpPerDlciRxArpRep=dfrapPerfArpPerDlciRxArpRep, dfrapSysLTFNumProtocols=dfrapSysLTFNumProtocols, dfrapCfgID=dfrapCfgID, dfrapCfgTftpFilename=dfrapCfgTftpFilename, dfrapCfgSnmpFrTrap=dfrapCfgSnmpFrTrap, dfrapCfgFrDLCIMode=dfrapCfgFrDLCIMode, dfrapPerfIpPerDlciRxIcmp=dfrapPerfIpPerDlciRxIcmp, dfrapPerfThruputCmdClearDteStats=dfrapPerfThruputCmdClearDteStats, dfrapCfgFrPerfDlciNamesCirType=dfrapCfgFrPerfDlciNamesCirType, dfrapPerfSnaTotalEntry=dfrapPerfSnaTotalEntry, dfrapPerfSnaTotalRxSubarea=dfrapPerfSnaTotalRxSubarea, dfrapPvcTxUtilizationExceededTrap=dfrapPvcTxUtilizationExceededTrap, dfrapTftpInvalidFileTrap=dfrapTftpInvalidFileTrap, dfrapPerfApplicationTotalTxCustom3=dfrapPerfApplicationTotalTxCustom3, dfrapVnipTopoVBertTxDEClrFrames=dfrapVnipTopoVBertTxDEClrFrames, dfrapPerfSnaPerDlciRxAppn=dfrapPerfSnaPerDlciRxAppn, dfrapPerfNetwProtoPerDlciInterval=dfrapPerfNetwProtoPerDlciInterval, dfrapCfgTransitDelayEntry=dfrapCfgTransitDelayEntry, dfrapPerfNetwProtoTotalRxVnip=dfrapPerfNetwProtoTotalRxVnip, dfrapPerfIpTotalRxUdp=dfrapPerfIpTotalRxUdp, dfrapPerfLmiPerDlciRxTotalByteCnt=dfrapPerfLmiPerDlciRxTotalByteCnt, dfrapPerfApplicationTotalTxTelnet=dfrapPerfApplicationTotalTxTelnet, dfrapCfgDteCtsOutput=dfrapCfgDteCtsOutput, dfrapPerfNetwLongTermInterval=dfrapPerfNetwLongTermInterval, dfrapPerfThruputPerDlciDowntime=dfrapPerfThruputPerDlciDowntime, dfrapSysNumSnmpMgrs=dfrapSysNumSnmpMgrs, dfrapBertCompletedTrap=dfrapBertCompletedTrap, dfrapPerfMgmtIpICMPOutMsgs=dfrapPerfMgmtIpICMPOutMsgs, dfrapDiagVBERT=dfrapDiagVBERT, dfrapPerfSnaPerDlciValue=dfrapPerfSnaPerDlciValue, dfrapPerfLmiPerDlciTxFullStatByteCnt=dfrapPerfLmiPerDlciTxFullStatByteCnt, dfrapPerfArpPerDlciRxRarpReq=dfrapPerfArpPerDlciRxRarpReq, dfrapEventTrapLogSeqNum=dfrapEventTrapLogSeqNum, dfrapPerfIpxPerDlciTxSpx=dfrapPerfIpxPerDlciTxSpx, dfrapPerfIpxPerDlciTxNcp=dfrapPerfIpxPerDlciTxNcp, dfrapCfgTelnetCliLcdPassword=dfrapCfgTelnetCliLcdPassword, dfrapPerfIcmpPerDlciTxGmReport=dfrapPerfIcmpPerDlciTxGmReport, dfrapPerfNetwLongTermAltProtocol=dfrapPerfNetwLongTermAltProtocol, dfrapPerfMgmtIpICMPStatsTable=dfrapPerfMgmtIpICMPStatsTable, dfrapPerfIcmpPerDlciTxRedirect=dfrapPerfIcmpPerDlciTxRedirect, dfrapSysTable=dfrapSysTable, dfrapPerfMgmtIpIFInOctets=dfrapPerfMgmtIpIFInOctets, dfrapCfgDteRts=dfrapCfgDteRts, dfrapCfgFrCrcMode=dfrapCfgFrCrcMode, dfrapVloopDownViaRemote=dfrapVloopDownViaRemote, dfrapDiagVBERTSize=dfrapDiagVBERTSize, dfrapPerfIcmpPerDlciTxGmReduct=dfrapPerfIcmpPerDlciTxGmReduct, dfrapPerfIcmpPerDlciTxTimestpRep=dfrapPerfIcmpPerDlciTxTimestpRep, dfrapCfgTDDeleteTable=dfrapCfgTDDeleteTable, dfrapV54LoopbackEnabledTrap=dfrapV54LoopbackEnabledTrap, dfrapStatusMgmtInterface=dfrapStatusMgmtInterface, dfrapPerfIpPerDlciInterval=dfrapPerfIpPerDlciInterval, dfrapDiagBertPattern=dfrapDiagBertPattern, dfrapPerfThruputPerDlciOutageCount=dfrapPerfThruputPerDlciOutageCount, dfrapTftpSuccessTrap=dfrapTftpSuccessTrap, enterprises=enterprises, dfrapDiagDteTable=dfrapDiagDteTable, dfrapVnipTopologyDlci=dfrapVnipTopologyDlci, dfrapPerfSnaTotalTxPeriph=dfrapPerfSnaTotalTxPeriph, dfrapPerfIcmpTotalRxEchoRep=dfrapPerfIcmpTotalRxEchoRep, dfrapLmiSeqNumMismatchDteTrap=dfrapLmiSeqNumMismatchDteTrap, dfrapPerfLmiTotalDlciValue=dfrapPerfLmiTotalDlciValue, dfrapPerfApplicationPerDlciTxCustom1=dfrapPerfApplicationPerDlciTxCustom1, dfrapVbertStarted=dfrapVbertStarted, dfrapPvcTxUtilizationClearedTrap=dfrapPvcTxUtilizationClearedTrap, dfrapPerfSnaTotalInterval=dfrapPerfSnaTotalInterval, dfrapCfgIpChannel=dfrapCfgIpChannel, dfrapPerfCurrentPerDlciAggregateUtilization=dfrapPerfCurrentPerDlciAggregateUtilization, dfrapStatusDteCts=dfrapStatusDteCts, dfrapCfgFrPerfLTProtocolFilterTableClear=dfrapCfgFrPerfLTProtocolFilterTableClear, dfrapCfgFrPerfLTDlciFilterIndex=dfrapCfgFrPerfLTDlciFilterIndex, dfrapSysPPPSupported=dfrapSysPPPSupported, dfrapPerfApplicationTotalRxSnmp=dfrapPerfApplicationTotalRxSnmp, dfrapCfgFrPerfTimersLTInterval=dfrapCfgFrPerfTimersLTInterval, dfrapPerfApplicationPerDlciTxTftp=dfrapPerfApplicationPerDlciTxTftp, dfrapLmiSourcingChangeUserDdsTrap=dfrapLmiSourcingChangeUserDdsTrap, dfrapPerfArpTotalTxInarpRep=dfrapPerfArpTotalTxInarpRep, dfrapPerfArpTotalRxArpReq=dfrapPerfArpTotalRxArpReq, dfrapLocalDteLoopbackEnabledTrap=dfrapLocalDteLoopbackEnabledTrap, dfrapCfgDteDcdOutput=dfrapCfgDteDcdOutput, dfrapCfgCommTable=dfrapCfgCommTable, dfrapPerfApplicationPerDlciRxCustom1=dfrapPerfApplicationPerDlciRxCustom1, dfrapPerfArpPerDlciRxInarpRep=dfrapPerfArpPerDlciRxInarpRep, dfrapPerfNetworkShortTerm=dfrapPerfNetworkShortTerm, dfrapPerfIcmpTotalRxTimestpRep=dfrapPerfIcmpTotalRxTimestpRep, dfrapPerfLmiPerDlciTxLivoEnqByteCnt=dfrapPerfLmiPerDlciTxLivoEnqByteCnt, dfrapPerfMgmtIpIFStatsTable=dfrapPerfMgmtIpIFStatsTable, dfrapPerfThruputPerDlciRxFrame=dfrapPerfThruputPerDlciRxFrame, dfrapVloopRequestFailed=dfrapVloopRequestFailed, dfrapPerfIpxTotalRxTotal=dfrapPerfIpxTotalRxTotal, dfrapPerfNetwProtoTotalTxIpx=dfrapPerfNetwProtoTotalTxIpx, dfrapCfgDdsBPVThresholding=dfrapCfgDdsBPVThresholding, dfrapPerfThruputPerIntfRxAbortCnt=dfrapPerfThruputPerIntfRxAbortCnt, dfrapVnipTopoVBertPerUtilCIR=dfrapVnipTopoVBertPerUtilCIR, dfrapPerfThruputPerDlciPvcState=dfrapPerfThruputPerDlciPvcState, dfrapVnipTopoVBertTransitDelayAvg=dfrapVnipTopoVBertTransitDelayAvg, dfrapPerfIcmpPerDlciRxParamProb=dfrapPerfIcmpPerDlciRxParamProb, dfrapLocalConfigTrap=dfrapLocalConfigTrap, dfrapVBertClear=dfrapVBertClear, dfrapPerfThruputPerDlciTxDe=dfrapPerfThruputPerDlciTxDe, dfrapPerfIcmpTotalTxParamProb=dfrapPerfIcmpTotalTxParamProb, dfrapPerfNetwLongTermEntry=dfrapPerfNetwLongTermEntry, dfrapPerfNetwProtoTotalTxCisco=dfrapPerfNetwProtoTotalTxCisco, dfrapPerfIcmpTotalTxTimestpReq=dfrapPerfIcmpTotalTxTimestpReq, dfrapTrap=dfrapTrap, dfrapPerfRoutingPerDlciTable=dfrapPerfRoutingPerDlciTable, dfrapPerfLmiPerDlciRxFullEnqByteCnt=dfrapPerfLmiPerDlciRxFullEnqByteCnt, dfrapCfgStatus=dfrapCfgStatus, dfrapPerfCurrentAggregateUtilization=dfrapPerfCurrentAggregateUtilization, dfrapPerfLmiTotalRxLivoEnqByteCnt=dfrapPerfLmiTotalRxLivoEnqByteCnt, dfrapLmiSourcingChangePassthruTrap=dfrapLmiSourcingChangePassthruTrap, dfrapPerfIcmpPerDlciTxAddrMaskRep=dfrapPerfIcmpPerDlciTxAddrMaskRep, dfrapDiagVnipInterface=dfrapDiagVnipInterface, dfrapPerfIcmpPerDlciRxEchoReq=dfrapPerfIcmpPerDlciRxEchoReq, dfrapCfgTftpTable=dfrapCfgTftpTable, dfrapCfgFrPerfUserProtocolsEntry=dfrapCfgFrPerfUserProtocolsEntry, dfrapPerfApplicationPerDlciRxCustom4=dfrapPerfApplicationPerDlciRxCustom4, dfrapPerfApplicationTotalInterval=dfrapPerfApplicationTotalInterval, dfrapCfgLockIpAddress=dfrapCfgLockIpAddress, dfrapEventLogAltTable=dfrapEventLogAltTable, dfrapPerfArpTotalRxTotal=dfrapPerfArpTotalRxTotal, dfrapLocalUnitLoopbackDisabledTrap=dfrapLocalUnitLoopbackDisabledTrap, dfrapPerfLmiPerDlciRxFullStatByteCnt=dfrapPerfLmiPerDlciRxFullStatByteCnt, dfrapPerfApplicationTotalRxSnmpTrap=dfrapPerfApplicationTotalRxSnmpTrap, dfrapCfgSnmpMgrDlci=dfrapCfgSnmpMgrDlci, dfrapPerfThruputPerDlciRxUtilizationStatus=dfrapPerfThruputPerDlciRxUtilizationStatus, dfrapPerfMgmtIpICMPOutErrors=dfrapPerfMgmtIpICMPOutErrors, dfrapPerfMgmtIpICMPInDestUnreachs=dfrapPerfMgmtIpICMPInDestUnreachs, dfrapCfgTDDeleteDlciValue=dfrapCfgTDDeleteDlciValue, dfrapDiagVnipEntry=dfrapDiagVnipEntry, dfrapPerfCirTxPercentUtilizationRange6=dfrapPerfCirTxPercentUtilizationRange6, dfrapCfgFrPerfLTProtocolFilterProtocol=dfrapCfgFrPerfLTProtocolFilterProtocol, dfrapPerfRoutingPerDlciTxRip=dfrapPerfRoutingPerDlciTxRip, dfrapPerfCirRxPercentUtilizationRange8=dfrapPerfCirRxPercentUtilizationRange8, dfrapEventLogAltArray=dfrapEventLogAltArray, dfrapSysSelDTESupported=dfrapSysSelDTESupported, dfrapPerfThruputCmdClearDlciStats=dfrapPerfThruputCmdClearDlciStats, dfrapPerfArpTotalTxArpRep=dfrapPerfArpTotalTxArpRep, dfrapPerfArpTotalRxInarpReq=dfrapPerfArpTotalRxInarpReq, dfrapPerfLmiTotalRxOtherByteCnt=dfrapPerfLmiTotalRxOtherByteCnt, dfrapBertFailedTrap=dfrapBertFailedTrap, dfrapPerfApplicationTotalRxTelnet=dfrapPerfApplicationTotalRxTelnet, dfrapPerfIpxPerDlciRxRip=dfrapPerfIpxPerDlciRxRip, dfrapPerfIpPerDlciTxTcp=dfrapPerfIpPerDlciTxTcp, dfrapPerfArpTotalRxRarpRep=dfrapPerfArpTotalRxRarpRep, dfrapPerfArpPerDlciEntry=dfrapPerfArpPerDlciEntry, dfrapCfgFrDLCIValue=dfrapCfgFrDLCIValue, dfrapPerfIcmpPerDlciTxAddrMaskReq=dfrapPerfIcmpPerDlciTxAddrMaskReq, dfrapPerfMgmtIpICMPInErrors=dfrapPerfMgmtIpICMPInErrors, dfrapCfgFrPerfDlciNamesUtilThreshold=dfrapCfgFrPerfDlciNamesUtilThreshold, private=private, dfrapPerfThruputCmdClearAllIntfStats=dfrapPerfThruputCmdClearAllIntfStats, dfrapPerfApplicationTotalTxFtp=dfrapPerfApplicationTotalTxFtp, dfrapPerfIpxPerDlciTxNetbios=dfrapPerfIpxPerDlciTxNetbios, dfrapPerfLmiTotalRxFullEnqByteCnt=dfrapPerfLmiTotalRxFullEnqByteCnt, dfrapPerfArpPerDlciTxOther=dfrapPerfArpPerDlciTxOther, dfrapPerfNetwProtoPerDlciTxTotal=dfrapPerfNetwProtoPerDlciTxTotal, dfrapPerfThruputPerIntfRxBpvCnt=dfrapPerfThruputPerIntfRxBpvCnt, dfrapPerfThruputPerDlciMTTSR=dfrapPerfThruputPerDlciMTTSR, dfrapPerfRoutingPerDlciRxOspf=dfrapPerfRoutingPerDlciRxOspf, dfrapPerfSnaPerDlciTxPeriph=dfrapPerfSnaPerDlciTxPeriph, dfrapSysContact=dfrapSysContact, dfrapStatusDteDsr=dfrapStatusDteDsr, dfrapPerfMgmtIpICMPOutRedirects=dfrapPerfMgmtIpICMPOutRedirects, dfrapPerfSnaPerDlciTxNetbios=dfrapPerfSnaPerDlciTxNetbios, dfrapStatusDteDtr=dfrapStatusDteDtr, dfrapPerfApplicationPerDlciRxCustom2=dfrapPerfApplicationPerDlciRxCustom2, dfrapPerfThruputPerDlciAvailability=dfrapPerfThruputPerDlciAvailability, dfrapStatusLmiAutosense=dfrapStatusLmiAutosense, dfrapCfgIpTelnetEnable=dfrapCfgIpTelnetEnable, dfrapDteSignalDtrOnTrap=dfrapDteSignalDtrOnTrap, dfrapSysAmtMemoryInstalled=dfrapSysAmtMemoryInstalled, dfrapPerfIcmpPerDlciRxTimestpReq=dfrapPerfIcmpPerDlciRxTimestpReq, dfrapCfgTftpNumBytes=dfrapCfgTftpNumBytes, dfrapPerfIpPerDlciTable=dfrapPerfIpPerDlciTable, dfrapPerfIpxTotalTxNcp=dfrapPerfIpxTotalTxNcp, dfrapCfgDteTiming=dfrapCfgDteTiming, dfrapCfgFrPerfLTProtocolFilterEntry=dfrapCfgFrPerfLTProtocolFilterEntry, dfrapCfgFrPerfDlciDefaultUtilThreshold=dfrapCfgFrPerfDlciDefaultUtilThreshold, dfrapPerfIpPerDlciRxOther=dfrapPerfIpPerDlciRxOther, dfrapCfgLockID=dfrapCfgLockID, dfrapVnipTopoTDMinDelay=dfrapVnipTopoTDMinDelay, dfrapPerfIcmpTotalTxAddrMaskReq=dfrapPerfIcmpTotalTxAddrMaskReq, dfrapPerfIcmpTotalTxSrcQuench=dfrapPerfIcmpTotalTxSrcQuench, dfrapPerfMgmtIpICMPInRedirects=dfrapPerfMgmtIpICMPInRedirects, dfrapPerfArpTotalTxTotal=dfrapPerfArpTotalTxTotal, dfrapCfgIpTable=dfrapCfgIpTable, dfrapPerfMgmtIpICMPOutEchoReps=dfrapPerfMgmtIpICMPOutEchoReps, dfrapEventTrapLogVarBind1=dfrapEventTrapLogVarBind1, dfrapPerfApplicationTotalRxCustom1=dfrapPerfApplicationTotalRxCustom1, dfrapPerfIpxTotalRxOther=dfrapPerfIpxTotalRxOther, dfrapPerfNetwProtoTotalTxAnnexG=dfrapPerfNetwProtoTotalTxAnnexG, dfrapPerfLmiTotalTxLivoEnqByteCnt=dfrapPerfLmiTotalTxLivoEnqByteCnt, dfrapPerfIpxTotalRxNcp=dfrapPerfIpxTotalRxNcp, dfrapPerfCurrentPerDlciUtilizationTable=dfrapPerfCurrentPerDlciUtilizationTable, dfrapPerfNetwProtoPerDlciTxAnnexG=dfrapPerfNetwProtoPerDlciTxAnnexG, dfrapPerfArpPerDlciTxInarpReq=dfrapPerfArpPerDlciTxInarpReq, dfrapEventTrapLogVarBind3=dfrapEventTrapLogVarBind3, dfrapVnipTopologyLocalDlci=dfrapVnipTopologyLocalDlci, dfrapPerfIpTotalInterval=dfrapPerfIpTotalInterval, dfrapSysMLSupported=dfrapSysMLSupported, dfrapNonLatchingLoopbackEnabledTrap=dfrapNonLatchingLoopbackEnabledTrap, dfrapSystem=dfrapSystem, dfrapPerfIpxPerDlciInterval=dfrapPerfIpxPerDlciInterval, dfrapPerfCirRxPercentUtilizationRange3=dfrapPerfCirRxPercentUtilizationRange3, dfrapPerfApplicationTotalTxCustom2=dfrapPerfApplicationTotalTxCustom2, dfrapCfgFrPerfDlciNamesDlciValue=dfrapCfgFrPerfDlciNamesDlciValue, dfrapPerfThruputPerDlciRxThruput=dfrapPerfThruputPerDlciRxThruput, dfrapPerfThruputPerDlciTxThruput=dfrapPerfThruputPerDlciTxThruput, dfrapPerfIpTotalRxTcp=dfrapPerfIpTotalRxTcp, dfrapPerfApplicationPerDlciTxCustom2=dfrapPerfApplicationPerDlciTxCustom2, dfrapCfgSnmpMgrIP=dfrapCfgSnmpMgrIP, dfrapPerfApplicationTotalRxTftp=dfrapPerfApplicationTotalRxTftp, dfrapPerfArpTotalTable=dfrapPerfArpTotalTable, dfrapCfgDdsTable=dfrapCfgDdsTable, dfrapStatusAllLEDs=dfrapStatusAllLEDs, dfrapPerfIpPerDlciValue=dfrapPerfIpPerDlciValue, dfrapPerfArpPerDlciTxRarpReq=dfrapPerfArpPerDlciTxRarpReq, dfrapPerfMgmtIpIPInHdrErr=dfrapPerfMgmtIpIPInHdrErr, dfrapPerfArpTotalRxArpRep=dfrapPerfArpTotalRxArpRep, dfrapDiagDteV54Lpbk=dfrapDiagDteV54Lpbk, dfrapPerfApplicationPerDlciTxCustom4=dfrapPerfApplicationPerDlciTxCustom4, dfrapStatusDteRxLED=dfrapStatusDteRxLED, dfrapPerfCirTxPercentUtilizationRange5=dfrapPerfCirTxPercentUtilizationRange5, dfrapCfgTransitDelayRcvSummaryCancel=dfrapCfgTransitDelayRcvSummaryCancel, dfrapDiagUnitLocLoop=dfrapDiagUnitLocLoop, dfrapCfgTransitDelayTableClear=dfrapCfgTransitDelayTableClear, dfrapSysNumMaintInstalled=dfrapSysNumMaintInstalled, dfrapPerfApplicationTotalRxHttp=dfrapPerfApplicationTotalRxHttp, dfrapLocalNetLoopbackEnabledTrap=dfrapLocalNetLoopbackEnabledTrap, dfrapPerfIcmpPerDlciRxGmReduct=dfrapPerfIcmpPerDlciRxGmReduct, dfrapVnipTopologyInterface=dfrapVnipTopologyInterface, dfrapPerfRoutingTotalRxOspf=dfrapPerfRoutingTotalRxOspf, dfrapVnipTopoTDAvgDelay=dfrapVnipTopoTDAvgDelay, dfrapTftpProgrammingTrap=dfrapTftpProgrammingTrap, dfrapConfigInstallSuccess=dfrapConfigInstallSuccess, dfrapPerfApplicationPerDlciTxSnmpTrap=dfrapPerfApplicationPerDlciTxSnmpTrap) mibBuilder.exportSymbols("DFRAP-MIB", dfrapPerfThruputCmdAvailabilityStsDlciReset=dfrapPerfThruputCmdAvailabilityStsDlciReset, dfrapDiagBertResyncs=dfrapDiagBertResyncs, dfrapPerfCirPercentUtilization=dfrapPerfCirPercentUtilization, dfrapPerfArpPerDlciTxInarpRep=dfrapPerfArpPerDlciTxInarpRep, dfrapCfgFrPerfDlciNamesEntry=dfrapCfgFrPerfDlciNamesEntry, dfrapPerfThruputPerDlciTxUtilizationStatus=dfrapPerfThruputPerDlciTxUtilizationStatus, dfrapPerfIcmpTotalInterval=dfrapPerfIcmpTotalInterval, dfrapPerfNetwProtoPerDlciRxArp=dfrapPerfNetwProtoPerDlciRxArp, dfrapPerfIcmpTotalTxAddrMaskRep=dfrapPerfIcmpTotalTxAddrMaskRep, dfrapPerfNetwProtoTotalRxIpx=dfrapPerfNetwProtoTotalRxIpx, dfrapCfgFrPerfLTDlciFilterTableClear=dfrapCfgFrPerfLTDlciFilterTableClear, dfrapPerfThruputPerDlciMTBSO=dfrapPerfThruputPerDlciMTBSO, dfrapPerfRoutingTotalInterval=dfrapPerfRoutingTotalInterval, dfrapPerfApplicationPerDlciRxSnmpTrap=dfrapPerfApplicationPerDlciRxSnmpTrap, dfrapPerfApplicationPerDlciRxSnmp=dfrapPerfApplicationPerDlciRxSnmp, dfrapPerfIcmpPerDlciRxGmReport=dfrapPerfIcmpPerDlciRxGmReport, dfrapPerfIcmpTotalTxEchoReq=dfrapPerfIcmpTotalTxEchoReq, dfrapPerfIcmpPerDlciRxAddrMaskReq=dfrapPerfIcmpPerDlciRxAddrMaskReq, dfrapPerfIcmpPerDlciEntry=dfrapPerfIcmpPerDlciEntry, dfrapPerfMgmtIpTCPCurrEstab=dfrapPerfMgmtIpTCPCurrEstab, dfrapPerfRoutingPerDlciTxOspf=dfrapPerfRoutingPerDlciTxOspf, dfrapCfgFrAddrResMode=dfrapCfgFrAddrResMode, dfrapPerfLmiTotalTable=dfrapPerfLmiTotalTable, dfrapStatusDdsLineStatus=dfrapStatusDdsLineStatus, dfrapPerfMgmtIpIFOutOctets=dfrapPerfMgmtIpIFOutOctets, dfrapStatusDteTable=dfrapStatusDteTable, dfrapPerfIcmpTotalTxTotal=dfrapPerfIcmpTotalTxTotal, dfrapCfgCommParity=dfrapCfgCommParity, dfrapPerfArpPerDlciTable=dfrapPerfArpPerDlciTable, dfrapPerfNetworkLongTerm=dfrapPerfNetworkLongTerm, dfrapCfgSnmpMgrEntry=dfrapCfgSnmpMgrEntry, dfrapCfgTftpDlci=dfrapCfgTftpDlci, dfrapEventTrapLogVarBind2=dfrapEventTrapLogVarBind2, dfrapDLCIInactiveTrap=dfrapDLCIInactiveTrap, dfrapPerfIpTotalTable=dfrapPerfIpTotalTable, dfrapPerfThruputPerIntfTxFrameCnt=dfrapPerfThruputPerIntfTxFrameCnt, dfrapPerfIpTotalTxOther=dfrapPerfIpTotalTxOther, dfrapDiagVBERTRate=dfrapDiagVBERTRate, dfrapPerfMgmtIpIPInDscrd=dfrapPerfMgmtIpIPInDscrd, dfrapPerfApplicationPerDlciValue=dfrapPerfApplicationPerDlciValue, dfrapPerfIcmpPerDlciRxGmQuery=dfrapPerfIcmpPerDlciRxGmQuery, dfrapPerfArpTotalRxOther=dfrapPerfArpTotalRxOther, dfrapCfgIpMaxMTU=dfrapCfgIpMaxMTU, dfrapPerfRoutingTotalTxNetbios=dfrapPerfRoutingTotalTxNetbios, dfrapEventLogAltSeqNum=dfrapEventLogAltSeqNum, dfrapPerfSnaPerDlciEntry=dfrapPerfSnaPerDlciEntry, dfrapPerfNetwProtoTotalTxTotal=dfrapPerfNetwProtoTotalTxTotal, dfrapPerfIpPerDlciEntry=dfrapPerfIpPerDlciEntry, dfrapPerfIpxPerDlciRxNcp=dfrapPerfIpxPerDlciRxNcp, dfrapPerfApplicationPerDlciRxHttp=dfrapPerfApplicationPerDlciRxHttp, dfrapPerfArpPerDlciTxArpRep=dfrapPerfArpPerDlciTxArpRep, dfrapStatusMgmtInterfaceStatus=dfrapStatusMgmtInterfaceStatus, dfrapPerfApplicationTotalRxCustom2=dfrapPerfApplicationTotalRxCustom2, dfrapEventLogClear=dfrapEventLogClear, dfrapPerfSnaPerDlciTxSubarea=dfrapPerfSnaPerDlciTxSubarea, dfrapPerfCirPercentUtilizationTable=dfrapPerfCirPercentUtilizationTable, dfrapSysResetNode=dfrapSysResetNode, dfrapVloopDown=dfrapVloopDown, dfrapPerfMgmtIpICMPOutEchos=dfrapPerfMgmtIpICMPOutEchos, dfrapPerfCirTxPercentUtilizationRange7=dfrapPerfCirTxPercentUtilizationRange7, dfrapCfgCommFlowCtrl=dfrapCfgCommFlowCtrl, dfrapPerfThruputCmdClearAllStats=dfrapPerfThruputCmdClearAllStats, dfrapCfgFrPerfLTDlciFilterDlciNum=dfrapCfgFrPerfLTDlciFilterDlciNum, dfrapPerfNetwProtoTotalTxIp=dfrapPerfNetwProtoTotalTxIp, dfrapEventTrapLogTable=dfrapEventTrapLogTable, dfrapPerfThruputPerDlciTable=dfrapPerfThruputPerDlciTable, dfrapPerfMgmtIpIPInProtUnk=dfrapPerfMgmtIpIPInProtUnk, dfrapPerfIcmpPerDlciRxAddrMaskRep=dfrapPerfIcmpPerDlciRxAddrMaskRep, dfrapConfiguration=dfrapConfiguration, dfrapDiagBertErrors=dfrapDiagBertErrors, dfrapVnipTopoTDMaxDelay=dfrapVnipTopoTDMaxDelay, dfrapPerfMgmtIpUDPNoPorts=dfrapPerfMgmtIpUDPNoPorts, dfrapPerfIcmpTotalTxTimestpRep=dfrapPerfIcmpTotalTxTimestpRep, dfrapPerfIpxTotalRxSpx=dfrapPerfIpxTotalRxSpx, dfrapCfgCliPassword=dfrapCfgCliPassword, dfrapPvcRxUtilizationExceededTrap=dfrapPvcRxUtilizationExceededTrap, dfrapPerfIcmpTotalRxSrcQuench=dfrapPerfIcmpTotalRxSrcQuench, dfrapStatus=dfrapStatus, dfrapPerfNetwProtoTotalEntry=dfrapPerfNetwProtoTotalEntry, dfrapPerfIcmpPerDlciRxRedirect=dfrapPerfIcmpPerDlciRxRedirect, dfrapDteSignalRtsOffTrap=dfrapDteSignalRtsOffTrap, dfrapVnipTransitDelayClear=dfrapVnipTransitDelayClear, dfrapStatusDteModeLED=dfrapStatusDteModeLED, dfrapPerfMgmtIpICMPOutParmProbs=dfrapPerfMgmtIpICMPOutParmProbs, dfrapPerfIpPerDlciTxIcmp=dfrapPerfIpPerDlciTxIcmp, dfrapPerfIcmpPerDlciTable=dfrapPerfIcmpPerDlciTable, dfrapPerfNetwProtoTotalInterval=dfrapPerfNetwProtoTotalInterval, dfrapVnipTopologyIndex=dfrapVnipTopologyIndex, dfrapPerfNetwProtoTotalRxTotal=dfrapPerfNetwProtoTotalRxTotal, dfrapPerfMgmtIp=dfrapPerfMgmtIp, dfrapPerfArpTotalTxInarpReq=dfrapPerfArpTotalTxInarpReq, dfrapDteSignalRtsOnTrap=dfrapDteSignalRtsOnTrap, dfrapCfgIpMyIP=dfrapCfgIpMyIP, dfrapDiagDdsTable=dfrapDiagDdsTable, dfrapPerfThruputCmdAllStsDlciResetAll=dfrapPerfThruputCmdAllStsDlciResetAll, dfrapStatusDteDcd=dfrapStatusDteDcd, dfrapPerfCirRxPercentUtilizationRange2=dfrapPerfCirRxPercentUtilizationRange2, dfrapCfgFrPerfUserProtocolsTableClear=dfrapCfgFrPerfUserProtocolsTableClear, dfrapPerfApplicationTotalTxSnmpTrap=dfrapPerfApplicationTotalTxSnmpTrap, dfrapPerfIpxTotalTxNetbios=dfrapPerfIpxTotalTxNetbios, dfrapCfgIpMask=dfrapCfgIpMask, dfrapStatusMgmtTable=dfrapStatusMgmtTable, dfrapPerfArpTotalRxInarpRep=dfrapPerfArpTotalRxInarpRep, dfrapPerfRoutingPerDlciRxRip=dfrapPerfRoutingPerDlciRxRip, dfrapPerfIpxTotalTxSpx=dfrapPerfIpxTotalTxSpx, dfrapLineFailureTrap=dfrapLineFailureTrap, dfrapPerfNetwProtoPerDlciRxIpx=dfrapPerfNetwProtoPerDlciRxIpx, dfrapBPVThresholdExceededTrap=dfrapBPVThresholdExceededTrap, dfrapCfgDdsLoopRate=dfrapCfgDdsLoopRate, dfrapPerfNetwProtoTotalRxAnnexG=dfrapPerfNetwProtoTotalRxAnnexG, dfrapCfgFrPerfDlciNamesDelete=dfrapCfgFrPerfDlciNamesDelete, dfrapCfgCommMode=dfrapCfgCommMode, dfrapPerfMgmtIpTCPPassiveOpens=dfrapPerfMgmtIpTCPPassiveOpens, dfrapPerfCurrentPerDlciTxUtilization=dfrapPerfCurrentPerDlciTxUtilization, dfrapCfgFrPerfLTDlciFilterTable=dfrapCfgFrPerfLTDlciFilterTable, dfrapPerfIcmpTotalTxTimeExcd=dfrapPerfIcmpTotalTxTimeExcd, dfrapPerfLmiPerDlciInterval=dfrapPerfLmiPerDlciInterval, dfrapPerfSnaTotalRxTotal=dfrapPerfSnaTotalRxTotal, dfrapPerfNetwLongTermTable=dfrapPerfNetwLongTermTable, dfrapPerfIcmpPerDlciTxSrcQuench=dfrapPerfIcmpPerDlciTxSrcQuench, dfrapPerfSnaTotalRxPeriph=dfrapPerfSnaTotalRxPeriph, dfrapPerfApplicationTotalRxCustom3=dfrapPerfApplicationTotalRxCustom3, dfrapPerfApplicationPerDlciTxHttp=dfrapPerfApplicationPerDlciTxHttp, dfrapPerfLmiTotalInterval=dfrapPerfLmiTotalInterval, dfrapPerfIcmpPerDlciTxParamProb=dfrapPerfIcmpPerDlciTxParamProb, dfrapPerfMgmtIpTCPStatsTable=dfrapPerfMgmtIpTCPStatsTable, dfrapBertInitiatedTrap=dfrapBertInitiatedTrap, dfrapPerfCurrentPerDlciUtilizationDlciValue=dfrapPerfCurrentPerDlciUtilizationDlciValue, dfrapSysNumT1Installed=dfrapSysNumT1Installed, dfrapCfgTftpIpAddress=dfrapCfgTftpIpAddress, dfrapPerfThruputCmdAllStsDlciReset=dfrapPerfThruputCmdAllStsDlciReset, dfrapPerfIpPerDlciRxTcp=dfrapPerfIpPerDlciRxTcp, dfrapPerfIcmpTotalRxParamProb=dfrapPerfIcmpTotalRxParamProb, dfrapCfgTftpInterface=dfrapCfgTftpInterface, dfrapPerfCurrentUnitUtilization=dfrapPerfCurrentUnitUtilization, dfrapPerfLmiTotalRxTotalByteCnt=dfrapPerfLmiTotalRxTotalByteCnt, dfrapPerfApplicationTotalTxSmtp=dfrapPerfApplicationTotalTxSmtp, dfrapPerfThruputPerDlciCreateTime=dfrapPerfThruputPerDlciCreateTime, dfrapPerfMgmtIpIFOperStatus=dfrapPerfMgmtIpIFOperStatus, dfrapCfgVnipTransitDelayFrequency=dfrapCfgVnipTransitDelayFrequency, dfrapPerfRoutingPerDlciRxNetbios=dfrapPerfRoutingPerDlciRxNetbios, dfrapPerfThruputPerDlciRxByte=dfrapPerfThruputPerDlciRxByte, dfrapDLCIActiveTrap=dfrapDLCIActiveTrap, dfrapPerfApplicationPerDlciRxTftp=dfrapPerfApplicationPerDlciRxTftp, dfrapSysRDOSupported=dfrapSysRDOSupported, dfrapCfgVnipKeepAliveTimer=dfrapCfgVnipKeepAliveTimer, dfrapPerfNetwProtoTotalTxVnip=dfrapPerfNetwProtoTotalTxVnip, dfrapCfgFrPerfDlciUtilDuration=dfrapCfgFrPerfDlciUtilDuration, dfrapStatusDdsTable=dfrapStatusDdsTable, dfrapTftpHostUnreachableTrap=dfrapTftpHostUnreachableTrap, dfrapPerfMgmtIpICMPOutDestUnreachs=dfrapPerfMgmtIpICMPOutDestUnreachs, dfrapPerfNetwProtoTotalTxArp=dfrapPerfNetwProtoTotalTxArp, dfrapPerfArpTotalTxOther=dfrapPerfArpTotalTxOther, dfrapDiagBertStatus=dfrapDiagBertStatus, dfrapCfgVnipInactivityTimer=dfrapCfgVnipInactivityTimer, dfrapPerfIpxTotalRxNetbios=dfrapPerfIpxTotalRxNetbios, dfrapPerfThruputPerDlciTxFrame=dfrapPerfThruputPerDlciTxFrame, dfrapStatusDdsModeLED=dfrapStatusDdsModeLED, dfrapPerfIcmpPerDlciRxPktTooBig=dfrapPerfIcmpPerDlciRxPktTooBig, dfrapPerfLmiPerDlciRxOtherByteCnt=dfrapPerfLmiPerDlciRxOtherByteCnt, dfrapCfgFrDLCIMgmtDE=dfrapCfgFrDLCIMgmtDE, dfrapPerfArpTotalTxArpReq=dfrapPerfArpTotalTxArpReq, dfrapPerfLmiTotalTxFullStatByteCnt=dfrapPerfLmiTotalTxFullStatByteCnt, dfrapPerfApplicationTotalTxCustom1=dfrapPerfApplicationTotalTxCustom1, dfrapPerfIpPerDlciTxIgrp=dfrapPerfIpPerDlciTxIgrp, dfrapSysSLIPSupported=dfrapSysSLIPSupported, dfrapTrapMutingActive=dfrapTrapMutingActive, dfrapStatusMgmtChannel=dfrapStatusMgmtChannel, dfrapPerfIcmpPerDlciTxEchoRep=dfrapPerfIcmpPerDlciTxEchoRep, dfrapPerfIcmpPerDlciRxTimestpRep=dfrapPerfIcmpPerDlciRxTimestpRep, dfrapPerfIpTotalTxTcp=dfrapPerfIpTotalTxTcp, dfrapPerfCirPercentUtilizationInterval=dfrapPerfCirPercentUtilizationInterval, dfrapSimplexCurrentLoopbackEnabledTrap=dfrapSimplexCurrentLoopbackEnabledTrap, dfrapCfgTftpStatus=dfrapCfgTftpStatus, dfrapCfgFrPerfUserProtocolsIndex=dfrapCfgFrPerfUserProtocolsIndex, Index=Index, dfrapPerfThruputCmdCountsStsDlciReset=dfrapPerfThruputCmdCountsStsDlciReset, dfrapPerfNetwProtoPerDlciTxVnip=dfrapPerfNetwProtoPerDlciTxVnip, dfrapPerfMgmtIpUDPOutDatagrams=dfrapPerfMgmtIpUDPOutDatagrams, dfrapCfgUpdate=dfrapCfgUpdate, dfrapPerfIpPerDlciTxTotal=dfrapPerfIpPerDlciTxTotal, dfrapPerfApplicationPerDlciTxCustom3=dfrapPerfApplicationPerDlciTxCustom3, dfrapCfgAppClockSource=dfrapCfgAppClockSource, dfrapPerfIpxTotalTxSap=dfrapPerfIpxTotalTxSap, dfrapStatusDteStatusLED=dfrapStatusDteStatusLED, dfrapCfgAppPerfBuffLimit=dfrapCfgAppPerfBuffLimit, dfrapCfgFrPerfDlciNamesEirValue=dfrapCfgFrPerfDlciNamesEirValue, dfrapPerfArpPerDlciRxTotal=dfrapPerfArpPerDlciRxTotal, dfrapPerfCirRxPercentUtilizationRange4=dfrapPerfCirRxPercentUtilizationRange4, dfrapEventTrapLogEntry=dfrapEventTrapLogEntry, dfrapCfgFrPerfLTProtocolFilterTable=dfrapCfgFrPerfLTProtocolFilterTable, dfrapLocalDteLoopbackDisabledTrap=dfrapLocalDteLoopbackDisabledTrap, dfrapPerfNetwProtoTotalRxCisco=dfrapPerfNetwProtoTotalRxCisco, dfrapCfgFrPerfUserProtocolsPortNum=dfrapCfgFrPerfUserProtocolsPortNum, dfrapPerfApplicationPerDlciRxTelnet=dfrapPerfApplicationPerDlciRxTelnet, dfrapLmiSourcingChangeNetDteTrap=dfrapLmiSourcingChangeNetDteTrap, dfrapSysType=dfrapSysType, dfrapLmiSourcingChangeNetDdsTrap=dfrapLmiSourcingChangeNetDdsTrap, dfrapPerfNetwLongTermAltDlci=dfrapPerfNetwLongTermAltDlci, dfrapPerfSnaTotalTxTotal=dfrapPerfSnaTotalTxTotal, dfrapCfgDteDsrOutput=dfrapCfgDteDsrOutput, dfrapPerfIcmpTotalTxRedirect=dfrapPerfIcmpTotalTxRedirect, dfrapDteSignalDtrOffTrap=dfrapDteSignalDtrOffTrap, dfrapCfgDteIntfType=dfrapCfgDteIntfType, dfrapPerfThruputPerDlciValue=dfrapPerfThruputPerDlciValue, dfrapPerfIcmpPerDlciTxTotal=dfrapPerfIcmpPerDlciTxTotal, dfrapCfgFrPerfTimers=dfrapCfgFrPerfTimers, dfrapPerfCurrentWanUtilization=dfrapPerfCurrentWanUtilization, dfrapPerfNetwProtoTotalRxArp=dfrapPerfNetwProtoTotalRxArp, dfrapPerfThruputCmdAvailabilityStsDlciResetAll=dfrapPerfThruputCmdAvailabilityStsDlciResetAll, sync=sync, dfrapPerfIcmpTotalTxGmReduct=dfrapPerfIcmpTotalTxGmReduct, dfrapDiagDteRmtV54Lpbk=dfrapDiagDteRmtV54Lpbk, dfrapCfgFrPerfUnprovDlcisDelete=dfrapCfgFrPerfUnprovDlcisDelete, dfrapPerfSnaTotalTable=dfrapPerfSnaTotalTable, dfrapPerfCirRxPercentUtilizationRange5=dfrapPerfCirRxPercentUtilizationRange5, dfrapNonIncrLmiSeqNumDteTrap=dfrapNonIncrLmiSeqNumDteTrap, dfrapPerfIcmpPerDlciTxPktTooBig=dfrapPerfIcmpPerDlciTxPktTooBig, dfrapPerfIpTotalRxIcmp=dfrapPerfIpTotalRxIcmp, dfrapPerfApplicationTotalTxHttp=dfrapPerfApplicationTotalTxHttp, dfrapPerfIcmpTotalRxGmReduct=dfrapPerfIcmpTotalRxGmReduct, dfrapTrapMutingInactive=dfrapTrapMutingInactive, dfrapCfgFrPerfDlciNamesTable=dfrapCfgFrPerfDlciNamesTable, dfrapPerfIpxTotalTable=dfrapPerfIpxTotalTable, dfrapVnipTopoTDNumSamples=dfrapVnipTopoTDNumSamples, dfrapVloopUpViaRemote=dfrapVloopUpViaRemote, dfrapStatusDdsLoopLength=dfrapStatusDdsLoopLength, dfrapInterface=dfrapInterface, dfrapPerfLmiTotalTxTotalByteCnt=dfrapPerfLmiTotalTxTotalByteCnt, dfrapPerfSnaTotalTxAppn=dfrapPerfSnaTotalTxAppn, dfrapPerfIpPerDlciTxOther=dfrapPerfIpPerDlciTxOther, dfrapCfgVnipTable=dfrapCfgVnipTable, dfrapCfgTDDeleteEntry=dfrapCfgTDDeleteEntry, dfrapCfgFrPerfLTProtocolFilterIndex=dfrapCfgFrPerfLTProtocolFilterIndex, dfrapPerfRoutingPerDlciValue=dfrapPerfRoutingPerDlciValue, dfrapPerfNetwProtoPerDlciTxSna=dfrapPerfNetwProtoPerDlciTxSna, dfrapVnipTopoVBertRxDEClrFrames=dfrapVnipTopoVBertRxDEClrFrames, dfrapSysBootRev=dfrapSysBootRev, dfrapStatusMgmtDefaultDLCINo=dfrapStatusMgmtDefaultDLCINo, dfrapPerfNetwLongTermAltEntry=dfrapPerfNetwLongTermAltEntry, dfrapPerfApplicationPerDlciTxSnmp=dfrapPerfApplicationPerDlciTxSnmp, dfrapPerfNetworkLongTermCommands=dfrapPerfNetworkLongTermCommands, dfrapPerfCurrentPerDlciRxUtilization=dfrapPerfCurrentPerDlciRxUtilization, dfrapCfgAppCircuitId=dfrapCfgAppCircuitId, dfrapCfgAppTable=dfrapCfgAppTable, dfrapPerfLmiTotalEntry=dfrapPerfLmiTotalEntry, dfrapPerfNetworkLongTermCmdClear=dfrapPerfNetworkLongTermCmdClear, dfrapEventTrapLog=dfrapEventTrapLog, dfrapCfgFrLmiKeepaliveTimeout=dfrapCfgFrLmiKeepaliveTimeout, dfrapPerfIpPerDlciRxUdp=dfrapPerfIpPerDlciRxUdp, dfrapPerfSnaPerDlciTable=dfrapPerfSnaPerDlciTable, dfrapCfgFrDLCIEncap=dfrapCfgFrDLCIEncap, dfrapPerfSnaPerDlciRxSubarea=dfrapPerfSnaPerDlciRxSubarea, dfrapPerfThruputPerDlciRxFecn=dfrapPerfThruputPerDlciRxFecn) mibBuilder.exportSymbols("DFRAP-MIB", dfrapPerfMgmtIpIPOutRqst=dfrapPerfMgmtIpIPOutRqst, dfrapDiagVBERTTestPeriod=dfrapDiagVBERTTestPeriod, dfrapCfgFrDLCITable=dfrapCfgFrDLCITable, dfrapCfgSecurityTable=dfrapCfgSecurityTable, dfrapPerfIcmpPerDlciRxTotal=dfrapPerfIcmpPerDlciRxTotal, dfrapPerfNetwProtoTotalTxOther=dfrapPerfNetwProtoTotalTxOther, dfrapPerfMgmtIpIPInDlvrs=dfrapPerfMgmtIpIPInDlvrs, dfrapSysNumUserProtocols=dfrapSysNumUserProtocols, dfrapCfgTftpPassword=dfrapCfgTftpPassword, dfrapPerfIcmpTotalRxGmQuery=dfrapPerfIcmpTotalRxGmQuery, dfrapCfgFrTable=dfrapCfgFrTable, dfrapCfgFrPerfUserProtocolsTable=dfrapCfgFrPerfUserProtocolsTable, dfrapPerfApplicationTotalRxCustom4=dfrapPerfApplicationTotalRxCustom4, dfrapPerfIcmpTotalRxAddrMaskRep=dfrapPerfIcmpTotalRxAddrMaskRep, dfrapDLCITDThresholdTrap=dfrapDLCITDThresholdTrap, dfrapCfgTDDeleteInterface=dfrapCfgTDDeleteInterface, dfrapPerfMgmtIpICMPInEchoReps=dfrapPerfMgmtIpICMPInEchoReps, dfrapPerfCirTxPercentUtilizationRange3=dfrapPerfCirTxPercentUtilizationRange3, dfrapSysETHSupported=dfrapSysETHSupported, dfrapTftpTransferringTrap=dfrapTftpTransferringTrap, dfrapDiagDdsRmtLpbk=dfrapDiagDdsRmtLpbk, dfrapCfgSetCommunityString=dfrapCfgSetCommunityString, dfrapPerfIcmpTotalTable=dfrapPerfIcmpTotalTable, dfrapCfgFrPerfDlciNamesDlciName=dfrapCfgFrPerfDlciNamesDlciName, dfrapLineInServiceTrap=dfrapLineInServiceTrap, dfrapEventLogCurrentSeqNum=dfrapEventLogCurrentSeqNum, dfrapV54LoopbackFailedTrap=dfrapV54LoopbackFailedTrap, dfrapCfgTftpInitiate=dfrapCfgTftpInitiate, dfrapPerfIpPerDlciTxUdp=dfrapPerfIpPerDlciTxUdp, dfrapPerfIpTotalTxIgrp=dfrapPerfIpTotalTxIgrp, dfrapPerfLmiPerDlciTxFullEnqByteCnt=dfrapPerfLmiPerDlciTxFullEnqByteCnt, dfrapPerfRoutingTotalTxOspf=dfrapPerfRoutingTotalTxOspf, dfrapTftpAbortedTrap=dfrapTftpAbortedTrap, dfrapPercentUtilization=dfrapPercentUtilization, dfrapPerfIcmpTotalTxGmQuery=dfrapPerfIcmpTotalTxGmQuery, dfrapPerfThruputCommands=dfrapPerfThruputCommands, dfrapCfgCommStopBits=dfrapCfgCommStopBits, dfrapPerfIcmpPerDlciRxSrcQuench=dfrapPerfIcmpPerDlciRxSrcQuench, dfrapPerfMgmtIpIPInRcv=dfrapPerfMgmtIpIPInRcv, dfrapPerfApplicationTotalRxFtp=dfrapPerfApplicationTotalRxFtp, dfrapPerfThruputPerIntfTxByteCnt=dfrapPerfThruputPerIntfTxByteCnt, dfrapCfgAppLpbkTimeout=dfrapCfgAppLpbkTimeout, dfrapPerfThruputPerDlciEntry=dfrapPerfThruputPerDlciEntry, dfrapPerfArpPerDlciTxTotal=dfrapPerfArpPerDlciTxTotal, dfrapPerfThruputCmdReplaceDlciTable=dfrapPerfThruputCmdReplaceDlciTable, dfrapBPVThresholdAcceptableTrap=dfrapBPVThresholdAcceptableTrap, dfrapVnipTopologyIpAddr=dfrapVnipTopologyIpAddr, dfrapPerfSnaPerDlciRxTotal=dfrapPerfSnaPerDlciRxTotal, dfrapCfgSnmpMgrIndex=dfrapCfgSnmpMgrIndex, dfrapPerfThruputPerIntfTable=dfrapPerfThruputPerIntfTable, dfrapPerfMgmtIpTCPOutSegs=dfrapPerfMgmtIpTCPOutSegs, dfrapPerfNetwProtoPerDlciEntry=dfrapPerfNetwProtoPerDlciEntry, dfrapPerfIpPerDlciRxIgrp=dfrapPerfIpPerDlciRxIgrp, dfrapPerfRoutingPerDlciInterval=dfrapPerfRoutingPerDlciInterval, dfrapPerfApplicationPerDlciRxCustom3=dfrapPerfApplicationPerDlciRxCustom3, dfrapDiagVnipDlci=dfrapDiagVnipDlci, dfrapPerfNetwLongTermProtocol=dfrapPerfNetwLongTermProtocol, dfrapDiagDdsLclLpbk=dfrapDiagDdsLclLpbk, dfrapPerfIcmpTotalRxPktTooBig=dfrapPerfIcmpTotalRxPktTooBig, dfrapPerfIpPerDlciRxTotal=dfrapPerfIpPerDlciRxTotal, dfrapDiagUnitTable=dfrapDiagUnitTable, dfrapPerfIpxPerDlciEntry=dfrapPerfIpxPerDlciEntry, dfrapVnipTopoVBertTransitDelayMax=dfrapVnipTopoVBertTransitDelayMax, dfrapPerfMgmtIpTCPInSegs=dfrapPerfMgmtIpTCPInSegs, dfrapPerfSnaTotalRxNetbios=dfrapPerfSnaTotalRxNetbios, dfrapPerfMgmtIpUDPStatsTable=dfrapPerfMgmtIpUDPStatsTable, dfrapPerfIpxPerDlciTxOther=dfrapPerfIpxPerDlciTxOther, dfrapSysBRISupported=dfrapSysBRISupported, dfrapPerfThruput=dfrapPerfThruput, dfrapPerfMgmtIpTCPActiveOpens=dfrapPerfMgmtIpTCPActiveOpens, dfrapCfgLock=dfrapCfgLock, dfrapPerfThruputPerDlciCIR=dfrapPerfThruputPerDlciCIR, dfrapPerfCirPercentUtilizationEntry=dfrapPerfCirPercentUtilizationEntry, dfrapPerfIpxTotalTxRip=dfrapPerfIpxTotalTxRip, dfrapCfgDteDtr=dfrapCfgDteDtr, dfrapPerfApplicationPerDlciTxFtp=dfrapPerfApplicationPerDlciTxFtp, dfrapPerfApplicationTotalRxSmtp=dfrapPerfApplicationTotalRxSmtp, dfrapPerfIpxTotalEntry=dfrapPerfIpxTotalEntry, dfrapV54LoopDownCompletedTrap=dfrapV54LoopDownCompletedTrap, dfrapSysExtTimSupported=dfrapSysExtTimSupported, dfrapPerfApplicationPerDlciRxSmtp=dfrapPerfApplicationPerDlciRxSmtp, dfrapCfgAppType=dfrapCfgAppType, dfrapPerfMgmtIpIPInAddrErr=dfrapPerfMgmtIpIPInAddrErr, dfrapNonIncrLmiSeqNumDdsTrap=dfrapNonIncrLmiSeqNumDdsTrap, dfrapVbertRequestFailed=dfrapVbertRequestFailed, dfrapLocalUnitLoopbackEnabledTrap=dfrapLocalUnitLoopbackEnabledTrap, dfrapCfgFrAddrResDlcis=dfrapCfgFrAddrResDlcis)
(octet_string, object_identifier, integer) = mibBuilder.importSymbols('ASN1', 'OctetString', 'ObjectIdentifier', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_intersection, value_size_constraint, constraints_union, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsIntersection', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (notification_type, time_ticks, counter32, integer32, object_identity, mib_identifier, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, unsigned32, internet, gauge32, counter64, notification_type, ip_address, iso, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'TimeTicks', 'Counter32', 'Integer32', 'ObjectIdentity', 'MibIdentifier', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Unsigned32', 'internet', 'Gauge32', 'Counter64', 'NotificationType', 'IpAddress', 'iso', 'Bits') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') private = mib_identifier((1, 3, 6, 1, 4)) enterprises = mib_identifier((1, 3, 6, 1, 4, 1)) sync = mib_identifier((1, 3, 6, 1, 4, 1, 485)) dfrap = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6)) dfrap_system = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 1)) dfrap_sys_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 1, 1)) dfrap_sys_type = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysType.setDescription('A textual description of the system model identifier. for example: SYNC-DFRAP') dfrap_sys_soft_rev = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysSoftRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSoftRev.setDescription('Displays the Software Revision installed in this node.') dfrap_sys_hard_rev = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysHardRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysHardRev.setDescription('Displays the Hardware Revision of the node.') dfrap_sys_num_t1_installed = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumT1Installed.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumT1Installed.setDescription('The number of T1 ports that are installed.') dfrap_sys_num_dds_installed = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumDdsInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDdsInstalled.setDescription('The number of DDS ports that are installed.') dfrap_sys_num_dte_installed = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumDteInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDteInstalled.setDescription('The number of DTE ports that are installed.') dfrap_sys_num_maint_installed = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumMaintInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumMaintInstalled.setDescription('The number of Async Maintenance/Console ports that are installed.') dfrap_sys_name = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapSysName.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysName.setDescription('The user supplied name of the node. This object does not affect operation, but may be useful for network management.') dfrap_sys_serial_no = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 12))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysSerialNo.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSerialNo.setDescription('The serial number of the board.') dfrap_sys_reset_node = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(321))).clone(namedValues=named_values(('reset-node', 321)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapSysResetNode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysResetNode.setDescription('Command to reset the node. NODE WILL BE OFF-LINE AND USER DATA WILL BE INTERRUPTED FOR APPROXIMATELY 15 SECONDS. Full network recovery may take longer. ') dfrap_sys_amt_memory_installed = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysAmtMemoryInstalled.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysAmtMemoryInstalled.setDescription('The amount of memory (RAM) installed (in megabytes).') dfrap_sys_location = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapSysLocation.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLocation.setDescription('The user supplied location of the node. This object does not affect operation, but may be useful for network management.') dfrap_sys_contact = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 13), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapSysContact.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysContact.setDescription('The user supplied contact information for the node. This object does not affect operation, but may be useful for network management.') dfrap_sys_prompt = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 15), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapSysPrompt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysPrompt.setDescription('Configurable Command Line Interface (CLI) prompt. CLI is the User Interface protocol used for directly attached VT100 terminal access as well as Remote access via Telnet.') dfrap_sys_boot_rev = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 1, 16), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysBootRev.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysBootRev.setDescription('Displays the bootblock Software Revision installed in this node.') dfrap_sys_feature_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 1, 2)) dfrap_sys_slip_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysSLIPSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSLIPSupported.setDescription('Shows whether the unit has SLIP (Serial Line IP) capability. SLIP is a method for out-of-band management that connects through the asynchronous terminal port.') dfrap_sys_ppp_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysPPPSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysPPPSupported.setDescription('Shows whether the unit has PPP (Point to Point protocol) capability. PPP is a method for out-of-band management that connects through the asynchronous terminal port.') dfrap_sys_rdo_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysRDOSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysRDOSupported.setDescription('Shows whether the unit has Remote Dial Out capability.') dfrap_sys_eth_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysETHSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysETHSupported.setDescription('Shows whether the unit has direct Ethernet capability.') dfrap_sys_tkr_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysTKRSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysTKRSupported.setDescription('Shows whether the unit has direct Token Ring capability.') dfrap_sys_ext_tim_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysExtTimSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysExtTimSupported.setDescription('Shows whether the unit has External Timing capability. This is the ability to derive WAN timing from the DTE port.') dfrap_sys_bri_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysBRISupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysBRISupported.setDescription('Shows whether the unit has BRI (ISDN Basic Rate) capability.') dfrap_sys_sel_dte_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysSelDTESupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysSelDTESupported.setDescription('Shows whether the unit has a Selectable DTE interface. This being the ability to select amongst various electrical interface formats (V.35, RS449, RS232, etc.) via software.') dfrap_sys_ml_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 10))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysMLSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysMLSupported.setDescription('Shows whether the unit supports MLs (out-of-band management links). N/A to frame relay networks.') dfrap_sys_num_dlcis_supported = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumDlcisSupported.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDlcisSupported.setDescription('Shows how many DLCIs can be monitored for frame-based statistics. The unit will pass an unlimited number of DLCIs but will only collect statistics on this number (first come first served).') dfrap_sys_ltf_num_dlcis = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysLTFNumDlcis.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLTFNumDlcis.setDescription('Shows how many DLCIs can be specified in the Long Term Statistics Filter.') dfrap_sys_ltf_num_protocols = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysLTFNumProtocols.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysLTFNumProtocols.setDescription('Shows how many protocols can be specified in the Long Term Statistics Filter.') dfrap_sys_num_user_protocols = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumUserProtocols.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumUserProtocols.setDescription('Shows how many protocols can be defined by the user. The user configures TCP/UDP ports which can be monitored as protocols. They are available for short term or long term statistics monitoring.') dfrap_sys_num_snmp_mgrs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumSnmpMgrs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumSnmpMgrs.setDescription('Shows how many SNMP managers can be programmed in the table dfrapCfgSnmpMngrTable. These managers are sent TRAPs.') dfrap_sys_num_dlci_names = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 1, 2, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapSysNumDlciNames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapSysNumDlciNames.setDescription('Shows how many DLCI names can be defined by the user in the table dfrapCfgFrPerfDlciNamesTable.') dfrap_configuration = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2)) dfrap_cfg_mgmt_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1)) dfrap_cfg_ip_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1)) dfrap_cfg_ip_my_ip = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 1), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpMyIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMyIP.setDescription('The IP address for this node.') dfrap_cfg_ip_peer_ip = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpPeerIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpPeerIP.setDescription('This parameter is not used internally by the unit. It is intended to identify either the device directly connected to the SLIP port or, in Frame Relay applications, the address of the primary network management station.') dfrap_cfg_ip_mask = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 3), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpMask.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMask.setDescription('The IP Subnet Mask (eg 255.255.255.0). This parameter should be consisent with the IP subnet address setting of the external internetworking equipment (router/frad).') dfrap_cfg_ip_max_mtu = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1500))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpMaxMTU.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpMaxMTU.setDescription('The Maximum Transmission Unit is the size of the largest IP packet supported (including header). This value should be set to the lowest value supported by any equipment in the transmission path. For Frame Relay management the typical value is 1500. For SLIP management the typical value is 1006.') dfrap_cfg_ip_channel = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('slip-port', 2), ('in-band-dlci', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgIpChannel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpChannel.setDescription('This is the method by which IP traffic is being carried. Either via the SLIP port or a DLCI. This reflects how your Management scheme is configured (read only).') dfrap_cfg_ip_telnet_enable = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable-telnet', 1), ('disable-telnet', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpTelnetEnable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpTelnetEnable.setDescription('Enables/Disables the telnet feature. (1) enable-telnet (2) disable-telnet') dfrap_cfg_ip_telnet_auto_log_out = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 5, 10, 30, 60))).clone(namedValues=named_values(('autologout-at-15-minutes', 1), ('disable-autologout', 2), ('autologout-at-3-minutes', 3), ('autologout-at-5-minutes', 5), ('autologout-at-10-minutes', 10), ('autologout-at-30-minutes', 30), ('autologout-at-60-minutes', 60)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgIpTelnetAutoLogOut.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgIpTelnetAutoLogOut.setDescription('If Telnet Auto logout is enabled the unit will automatically disconnect from a Telnet session after a period of inactivity (absence of key strokes from remote terminal). (2) disables this feature (1) auto logout after 15 minutes inactivity (3) auto logout after 3 minutes inactivity (5) auto logout after 5 minutes inactivity (10) auto logout after 10 minutes inactivity (30) auto logout after 30 minutes inactivity (60) auto logout after 60 minutes inactivity') dfrap_cfg_tftp_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2)) dfrap_cfg_tftp_initiate = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgTftpInitiate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpInitiate.setDescription('Setting this object to a value that matches the TFTP Password will command the unit to attempt a TFTP file transfer. A TFTP profile including host ip address, dlci value, interface, and file name must first be configured.') dfrap_cfg_tftp_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpIpAddress.setDescription('The IP address of the TFTP host with which the unit will attempt to establish a TFTP session when initiated.') dfrap_cfg_tftp_filename = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 80))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpFilename.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpFilename.setDescription('The name of the file located on the TFTP host that will be transferred to the unit. Typically this is a product-specific software image that will be programmed into unit FLASH. The unit provides several levels of checking to verify the validity and integrity of this file. Note - depending upon the host, this file name may be case sensitive.') dfrap_cfg_tftp_interface = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('dte-interface', 1), ('dds-interface', 2), ('slip-interface', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpInterface.setDescription('The physical interface out which the TFTP host is located. This parameter is only required for Piggyback and Bi-directional in-band frame relay managed applications. With Local and Remote in-band and SLIP-based applications the interface is known and Sets to this will be ignored.') dfrap_cfg_tftp_dlci = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 5), integer32().subtype(subtypeSpec=value_range_constraint(-1, 63487))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpDlci.setDescription('The local DLCI value on which the TFTP host can be reached. This DLCI should be active prior to initiating the TFTP session. This parameter is only required for Piggyback in-band frame relay managed applications. With Private management (Local, Remote or Bi-directional in-band applications) the DLCI is known and will be reported here (Sets will be ignored). In SLIP-based applications the DLCI value is not applicable and a value of -1 is reported (Sets will be ignored).') dfrap_cfg_tftp_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10))).clone(namedValues=named_values(('inactive', 1), ('requested', 2), ('transferring', 3), ('programming', 4), ('transfer-aborted', 5), ('host-no-reply', 6), ('file-not-found', 7), ('invalid-file', 8), ('corrupt-file', 9), ('successful', 10)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpStatus.setDescription('The status of current or most recent TFTP operation. (1) TFTP inactive, sets to this value will abort the session (2) TFTP requested (3) TFTP transferring (4) TFTP programming FLASH - unit will reset (5) TFTP fail: session aborted by user or error condition (6) TFTP fail: host no reply - verify TFTP profile and host (7) TFTP fail: file not found - verify file name and location (8) TFTP fail: invalid file - file rejected by unit as inappropriate (9) TFTP fail: corrupt file - session terminated due to checksum error (10) TFTP transfer successful and file has been verified') dfrap_cfg_tftp_num_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 2, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgTftpNumBytes.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpNumBytes.setDescription("The number of Bytes from the ROM image that have been TFTP'd to the unit") dfrap_cfg_snmp_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3)) dfrap_cfg_snmp_fr_trap = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpFrTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpFrTrap.setDescription('Controls whether or not the Frame Relay DLCI status change traps are issued. These traps are dfrapDLCIActiveTrap and dfrapDLCIInactiveTrap. When dfrapCfgSnmpFrTrap is enabled (1), a trap will be sent each time an individual DLCI changes status between active and inactive. When dfrapCfgSnmpFrTrap is disabled (2), the traps are not sent.') dfrap_cfg_snmp_trap_muting = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 10080))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpTrapMuting.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpTrapMuting.setDescription('Controls whether Traps are Sent or Muted. If traps are Muted then a single trap (#75) will be periodically issued by the unit at the programmed frequency. If Muting is Disabled then the full set of Trap events are reported accordingly. (0) Disable Trap Muting (30-10080) Trap Muting frequency in minutes.') dfrap_cfg_snmp_util_trap_enable = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable', 1), ('disable', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpUtilTrapEnable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpUtilTrapEnable.setDescription('Enables or disables the sending of per-DLCI utilization traps. (1) enable utilization traps (2) disable utilization traps ') dfrap_cfg_snmp_mgr_clear_n = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 7), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgSnmpMgrClearN.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrClearN.setDescription(' Deletes the number of entries in the dfrapCfgSnmpMgrTable indicated by the value. If the value is a positive number the entries will be deleted starting from the first entry. If the value is negative the entries will be deleted starting from the last entry. ') dfrap_cfg_snmp_mgr_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2)) if mibBuilder.loadTexts: dfrapCfgSnmpMgrTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrTable.setDescription("The table of SNMP manager profiles to which traps are sent. In all managed modes an SNMP trap mangager's ip address is required as a minimum. Additionally for Piggyback managed units the DLCI and interface must also be configured appropriately. For Local, Remote and SLIP-based management, the DLCI and interface are implied and need not be configured as part of this profile.") dfrap_cfg_snmp_mgr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgSnmpMgrIndex')) if mibBuilder.loadTexts: dfrapCfgSnmpMgrEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrEntry.setDescription('The SNMP trap manager profiles to which the unit sends TRAPs.') dfrap_cfg_snmp_mgr_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIndex.setDescription('The index to the list of SNMP managers receiving TRAPs.') dfrap_cfg_snmp_mgr_ip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 2), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrIP.setDescription("The IP address of a SNMP manager to receive this node's TRAPs. Setting this value to 0.0.0.0 will disable the issuance of traps to the indexed manager.") dfrap_cfg_snmp_mgr_interface = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('dte-interface', 1), ('dds-interface', 2), ('slip-interface', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpMgrInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrInterface.setDescription('The interface out which the indexed trap manager can be reached. This entry is required in Piggyback and Bi-directional in-band managed applications. In Local, Remote and SLIP-based applications, the interface is known and this parameter is ignored. When the node is configured for SLIP, a GET on this MIB object will return slip-interface(3) and a SET of this MIB object to slip-interface(3) is allowed but unnecessary. When the node is not configured for SLIP, this MIB object can be SET to dte-interface(1) or dds-interface(2); slip-interface(3) would be rejected.') dfrap_cfg_snmp_mgr_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 3, 2, 1, 4), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSnmpMgrDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSnmpMgrDlci.setDescription('The DLCI out which the indexed trap manager can be reached. This entry is required in Piggyback in-band managed applications. In Private in-band applications the DLCI is known and Sets to this parameter will be ignored. In SLIP mode the DLCI is not applicable, Sets will be ignored and a -1 will be returned as the DLCI value.') dfrap_cfg_comm_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4)) dfrap_cfg_comm_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('vt100', 1), ('slip', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommMode.setDescription("The protocol running on the Maintenance/Comm port (console). Setting this to SLIP mode will automatically disable in-band management if it's enabled. (1) VT100 for directly attached async terminal (2) SLIP - Serial Line IP out-of-band management") dfrap_cfg_comm_baud = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 4, 5, 6))).clone(namedValues=named_values(('baud-2400', 2), ('baud-9600', 4), ('baud-19200', 5), ('baud-38400', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommBaud.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommBaud.setDescription('Asynchronous baud rate for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (2) baud-2400 (4) baud-9600 (5) baud-19200 (6) baud-38400') dfrap_cfg_comm_data_bits = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('databits-7', 1), ('databits-8', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommDataBits.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommDataBits.setDescription('Asynchronous data format for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) 7 databits per character (2) 8 databits per character') dfrap_cfg_comm_stop_bits = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('stopbits-1', 1), ('stopbits-1-5', 2), ('stopbits-2', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommStopBits.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommStopBits.setDescription('Asynchronous intercharacter protocol for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) 1 stopbit (2) 1.5 stopbits (3) 3 stopbits') dfrap_cfg_comm_parity = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('no-parity', 1), ('odd-parity', 2), ('even-parity', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommParity.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommParity.setDescription('Asynchronous parity checking protocol for the Maintenance/Comm port (Console). This must be configured to match either the VT100 compatible terminal or the SLIP Terminal Server depending upon the Comm port mode. (1) no parity (2) odd-parity (3) even-parity') dfrap_cfg_comm_flow_ctrl = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('no-flow-control', 1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCommFlowCtrl.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCommFlowCtrl.setDescription('Flow Control for the Maintenance/Comm port (Console). (1) no flow control supported.') dfrap_cfg_fr_dlci_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5)) dfrap_cfg_fr_dlci_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('inactive', 1), ('local', 2), ('remote', 3), ('bidirectional', 4), ('piggyback', 5), ('fixed-dce', 6)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrDLCIMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIMode.setDescription('In-band Frame Relay management mode. A variety of options exist which are differentiated by how PVCs can be provisioned to manage the unit and the resulting impact to the logical processing of Link Management Protocol messages (LMI spoofing and sourcing). The unit is designed to support these management modes even in non-provisioned or failed frame relay networks. This setting also has implications upon how networking protocols such as ARP and InARP are handled by the unit. (1) inactive: in-band management is not enabled (2) local DLCI mode: in-band managed using a private dedicated DLCI accessible via the DTE port only. A DLCI value is configured which, through LMI spoofing, will only be visible to the DTE equipment and need not be provisioned on the WAN. All traffic on this DLCI will be terminated by the unit. (3) remote DLCI mode: in-band managed using a private dedicated DLCI accessible via the WAN port only. A DLCI value is configured which, through LMI spoofing, will only be visible from the WAN side and will not be seen by any DTE equipment. All traffic on this DLCI will be terminated by the unit. (4) bidirectional mode: in-band managed using a private dedicated DLCI accessible through either port. A DLCI value is configured which is expected to be fully provisioned in the frame relay network but dedicated to the management function of this particular unit. All traffic on this DLCI will be terminated by the unit. (5) piggyback mode: in-band managed using any DLCI on any interface. A DLCI value is defined that becomes the default DLCI that will be maintained by the unit during network or LMI failure conditions. The unit will terminate and respond accordingly to management and networking data while transparently passing on user data. (6) fixed DCE mode: special mode of operation to support frame relay applications that do not include a switch (frame relay DCE). The unit will independently respond to LMI requests on each interface and will provision the configured DLCI to each Frame Relay DTE device. Except for this, the unit behaves like piggyback.') dfrap_cfg_fr_dlci_value = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 2), integer32().subtype(subtypeSpec=value_range_constraint(16, 63487))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrDLCIValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIValue.setDescription('If in-band management is being used this DLCI value should be defined. In all modes of in-band management with the LMI Sourcing feature enabled the unit may provision this DLCI during LMI failure to facilitate management access. In Private modes (Local, Remote, and Bidirectional) this is the dedicated DLCI for management data and address resolution protocols - all other traffic on this DLCI will be discarded. In Piggyback mode this DLCI is treated like all others except during LMI failure sourcing when it may be provisioned by the unit. In Piggyback mode if InARP is enabled on a single DLCI then this value defines that DLCI.') dfrap_cfg_fr_dlci_encap = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('rfc1490', 1), ('rfc1490snap', 2), ('auto', 3), ('cisco', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrDLCIEncap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIEncap.setDescription('This is the protocol used for enacapsulating and formatting ip data for Frame Relay transmission. This setting is specific to management data to and from the unit. (1)RFC1490 - per IETF standard with Network Level Protocol ID (NLPID) set for IP encapsulation. (2)RFC1490 SNAP/IP - per IETF standard with NLPID set for Sub-Network Access Protocol (SNAP). (3)auto - adjusts to either of these encapsulation techniques as required. (4)Cisco - proprietary encapsulation (4-byte header).') dfrap_cfg_fr_dlci_mgmt_de = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 1, 5, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('no-DE-bit-0', 1), ('yes-DE-bit-1', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrDLCIMgmtDE.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrDLCIMgmtDE.setDescription('Provides user control over the state of the Frame Relay Discard Eligibility bit of all management frames generated by the unit. Frames marked DE=1 are more likely to be dropped in a congested Frame Relay network than those that are DE=0. Heavily congested circumstances can cause both to be dropped. Additionally, frames marked DE=0 may get re-marked to DE=1 by intervening equipment. (1) DE bit cleared to 0: frame is not discard eligible (2) DE bit set to 1: frame is discard eligible') dfrap_cfg_app_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 2)) dfrap_cfg_app_clock_source = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('internal', 1), ('network', 2), ('dte', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppClockSource.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppClockSource.setDescription('Timing source for transmission of data towards the WAN and for the generation of DTE clocking. There should be only one source per end-to-end WAN link. Unit is typically network timed in a point-to-network application. (1) internal: derive timing from a high-stability on-board crystal oscillator. (2) network: or Loop timing, derive timing from the signal received at the WAN interface (3) dte: derive timing from the clock presented by the DTE equipment on the Terminal Timing(TT)/Transmit Clock External (TCE) leads. This setting expects the DTE timing mode to be Loop 1 and the DTE device to be generating a clock at the DTE data rate.') dfrap_cfg_app_circuit_id = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 29))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppCircuitId.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppCircuitId.setDescription('Alphanumeric circuit identifier may be provided by the service provider for reference or assigned arbitrarily per user requirements.') dfrap_cfg_app_type = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dedicated', 1), ('frame-relay', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppType.setDescription('This unit provides many features specifically adapted to Frame Relay transmission links; this includes diagnostic utilities, statistical analysis, protocol trends, quality of service reporting, and in-band SNMP management. If the unit will be operating in a Frame Relay network the Application Type must be set to Frame Relay to enable these features. To operate in a non-Frame Relay network or to bypass this feature set the unit may be placed in Dedicated mode and will emulate a more familiar DSU/CSU. Note - changing this value will automatically change the Application Format setting and vice versa. (1) dedicated: protocol-independent transparent DSU/CSU (2) Frame Relay: Frame and protocol aware DSU/CSU') dfrap_cfg_app_format = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('cbo', 1), ('hdlc', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppFormat.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppFormat.setDescription('Refer to Application Type. Frame Relay is based upon HDLC framing. To operate in a Frame Relay application the Format must be set for HDLC. To operate in a protocol-independent application the Format must be set for Constant Bit Operation (CBO). Note - changing this value will automatically change the Application Type setting and vice versa (1) CBO: protocol-independent transparent DSU/CSU (2) HDLC: Frame and protocol aware DSU/CSU') dfrap_cfg_app_lpbk_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 1440))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppLpbkTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppLpbkTimeout.setDescription('The length of time a service-impacting loopback or diagnostic utility may run before automatically returning to normal operation. This setting will override any alternatively timed tests (such as VBERT). (0) Loopbak Timeout Disabled (1-1440) Loopback Timeout') dfrap_cfg_app_perf_buff_limit = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 2, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 512))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgAppPerfBuffLimit.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgAppPerfBuffLimit.setDescription('This value controls the throttling mechanism used to determine the optimum level of statistical processing versus managability of the unit. The lower the value (1 - 128), the unit becomes more responsive to management commands during very heavy utilization at the possible expense of statistical accuracy. The larger the value (129 - 512), the more accurate the DFRAP performs statistical analysis of the frames but management may seem slow or unresponsive during periods of very heavy link utilization. NOTE: A value of 0 disables statistical processing entirely.') dfrap_cfg_dds_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 3)) dfrap_cfg_dds_loop_rate = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('fifty-six', 1), ('sixty-four', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDdsLoopRate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDdsLoopRate.setDescription('Provisioned DDS WAN data rate. This unit conforms to either 56K DDS service or 64K (72K with framing) DDS service. (1) 56Kbps DDS (2) 64Kbs DDS (72K loop rate)') dfrap_cfg_dds_bpv_thresholding = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('thresholding-at-10E-4', 1), ('disable-thresholding', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDdsBPVThresholding.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDdsBPVThresholding.setDescription('The unit may be configured to issue traps in response to Bipolar Violations (BPVs) received from the WAN. If enabled the unit will issue a trap when more than 5 BPVs are detected in a one-second interval and a follow-up trap when the BPV threshold is no longer exceeded. BPVs that are part of network control codes do not contribute to this feature. (1) BPV Trap Threshold is 10e-4 (2) Disable BPV Traps') dfrap_cfg_dte_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 4)) dfrap_cfg_dte_intf_type = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4))).clone(namedValues=named_values(('intf-v35', 3), ('intf-rs449', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgDteIntfType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteIntfType.setDescription('The electrical interface for the DTE port (3) V.35 interface (4) RS-449 interface') dfrap_cfg_dte_clock_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('clock-normal', 1), ('clock-invert', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteClockMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteClockMode.setDescription('This selection controls how the unit internally latches the transmit data from the DTE. Normal will sample data with the rising edge of the selected TX Clock, Invert will sample data with the falling edge of the selected TX Clock. The TX Clock is selected using CfgDteTiming. This clock invertion is most useful when loop-2 timing is used - particularly at higher rates and with long cable runs. Only in rare circumstances will clock-invert be used with loop-1 timing. If the DTE Interface TX statistics are indicating excessive crc errors or aborts then changing this setting may have some benefit. (1) normal (2) invert') dfrap_cfg_dte_timing = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('loop-1', 1), ('loop-2', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteTiming.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteTiming.setDescription('Serial DTE Transmit Timing mode. Loop-1 (1) uses the clock returned from the DTE (TT/TCE) to sample tx data, Loop-2 (2) uses the clock (ST/TC) generated by the node to sample tx data. Loop-1 is the preferred mode. Loop-2 timing could experience data errors at high rates or due to long DTE cable runs - may need to Invert the clock (see CfgDteClockMode). (1) Loop 1: external clock returned from DTE with data (2) Loop 2: internal clock used to sample incoming data') dfrap_cfg_dte_rts = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('internal-held-active', 1), ('external-from-dte', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteRts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteRts.setDescription("Controls the reporting of the status of the DTE's Request to Send (RTS) control signal, specifically the generation of traps in response to control signal state changes. If Internally Held Active, the unit will ignore the actual status and always report this signal Active. If External, the unit will reflect the status as driven by the DTE; as such, Traps will be generated due to change of state (these may be useful fora network manager's assessment of interface status. (1) Internally Held Active (2) Externally Presented from DTE") dfrap_cfg_dte_dtr = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('internal-held-active', 1), ('external-from-dte', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteDtr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDtr.setDescription("Controls the reporting of the status of the DTE's Data Terminal Ready (DTR) control signal, specifically the generation of traps in response to control signal state changes. If Internally Held Active, the unit will ignore the actual status and always report this signal Active. If External, the unit will reflect the status as driven by the DTE; as such, Traps will be generated due to change of state (these may be useful fora network manager's assessment of interface status. (1) Internally Held Active (2) Externally Presented from DTE") dfrap_cfg_dte_dcd_output = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('signal-off', 1), ('signal-on', 2), ('follow-carrier', 3), ('follow-test', 4), ('follow-rts', 5), ('follow-carrier-rts', 6), ('follow-sync-rts', 7), ('follow-lmi-carr-rts', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteDcdOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDcdOutput.setDescription('Specifies the behavior of the Data Carrier Detect (DCD) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrap_cfg_dte_dsr_output = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('signal-off', 1), ('signal-on', 2), ('follow-carrier', 3), ('follow-test', 4), ('follow-rts', 5), ('follow-carrier-rts', 6), ('follow-sync-rts', 7), ('follow-lmi-carr-rts', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteDsrOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteDsrOutput.setDescription('Specifies the behavior of the Data Set Ready (DSR) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrap_cfg_dte_cts_output = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 4, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('signal-off', 1), ('signal-on', 2), ('follow-carrier', 3), ('follow-test', 4), ('follow-rts', 5), ('follow-carrier-rts', 6), ('follow-sync-rts', 7), ('follow-lmi-carr-rts', 8)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgDteCtsOutput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgDteCtsOutput.setDescription('Specifies the behavior of the Clear to Send (CTS) control signal generated by the unit towards the DTE. (1) inactive always: signal is permanently INACTIVE. (2) active always: signal is permanently ACTIVE. (3) reflect WAN carrier: signal echoes the received signal status from the WAN. (4) inactive with test mode: signal is ACTIVE during normal data transfer and INACTIVE during diagnostic conditions that interfere with data transfer from the DTE to the WAN. (5) follow RTS: signal echoes the status of RTS as processed from the DTE. (6) reflect carrier and RTS: signal is a logical AND between RTS processed from the DTE and the received signal status from the WAN. No signal received from the WAN or RTS INACTIVE will cause this control signal to be asserted INACTIVE. (7) reflect sync and RTS: signal is a logical AND between RTS processed from the DTE and the frame synchronization with the WAN. Frame Synchronization is only applicable with 64K DDS service, otherwise this is equivalent to (6). (8) reflect LMI and carrier and RTS: signal is a logical AND between RTS processed from the DTE and the carrier signal status from the WAN and LMI. If the unit is in an LMI passthrough state then LMI is considered Active. LMI Inactivity timer must be non-zero for LMI to be declared Inactive. In non-Frame Relay applications (type = dedicated) LMI will be presumed ACTIVE so this will setting is equivalent to (6). Note that there is a separate parameter for how the unit processes RTS that is related to this function if options (4), (5), (6), or (7) is selected, see CfgDteRts.') dfrap_cfg_fr_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 5)) dfrap_cfg_fr_addr_len = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('twobytes', 1), ('threebytes', 2), ('fourbytes', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrAddrLen.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrLen.setDescription('Shows the size that DLCI address field. This setting must correspond to the Frame Relay transmission format; typically Two bytes. (1) two byte DLCI address field (2) three byte DLCI address field (3) four byte DLCI address field') dfrap_cfg_fr_crc_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('discard', 1), ('passthru', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrCrcMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrCrcMode.setDescription('This defines the manner in which the unit handles HDLC protocol errors (crc errors) in a Frame Relay application. If Discard is selected the unit will respond to an errored frame by aborting the frame if transmission has begun; or simply discarding it if transmission has not begun. If Passthru is selected the unit transmit the entire frame but will place an incorrect crc in it to preserve the error indication. (1) discard (2) pasthru') dfrap_cfg_fr_lmi_type = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('annexd', 1), ('annexa', 2), ('type1', 3), ('autosense', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrLmiType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiType.setDescription('The LMI type used in a Frame Relay application. This setting must match the attached Frame Relay device configuration. Annex-A and Annex-D use DLCI 0, and Type 1 uses DLCI 1023. Type 1 is alternatively referred to as Cisco, Group of four, or simply LMI. Annex-D may be referred to as ANSI T1.617. Annex-A may be referred to as ITU or CCITT Q.933. Auto-sense will either use the most recently detected LMI type or, in the absence of any LMI, will attempt to instigate LMI communications using each protocol. (1) Annex-A: conforms to ITU (CCITT) Q.933 annex A (2) Annex-D: conforms to ANSI T1.617 annex D (3) Type 1: conforms to the original LMI as developed by the Group of Four (4) Auto-sense: unit will attempt to detect and synchronize to the LMI type of the attached equipment.') dfrap_cfg_fr_lmi_inactivity_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrLmiInactivityTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiInactivityTimeout.setDescription('Timer used by the unit to determine that an attached device is not participating in the LMI protocol and that the unit should attempt to source LMI. This timer also controls the length of time that the LMI sourcing state machine remains in a particular state as it attempts to locate an LMI peer. (0) LMI Sourcing disabled (2-255) LMI Inactivity timeout') dfrap_cfg_fr_lmi_keepalive_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 5), integer32().subtype(subtypeSpec=value_range_constraint(2, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrLmiKeepaliveTimeout.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiKeepaliveTimeout.setDescription('Timer used by the unit to determine the frequency at which Status Enquiries are issued during LMI sourcing states where the unit is emulating a Frame Relay DTE device. (2-255) length of time between sending enquiries (in seconds)') dfrap_cfg_fr_addr_res_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inactive', 1), ('arp', 2), ('inarp', 3), ('both', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrAddrResMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResMode.setDescription("The ip-based Address Resolution protocol supported in the application. With ARP, requests are received and replies are generated accordingly. With InARP, requests are received and replies are generated; additionally, InARP requests are issued by the unit at the frequency defined by the InARP timer. Address Resolution will circumvent the need for static routes and automatically log an associated dynamic entry into the routing tables. (1) inactive: no address resolution support (2) ARP: only provide ARP responses. ARP is useful when the router knows the unit's ip address but doesn't know the DLCI. (3) InARP: provide both InARP responses and InARP requests. InARP is useful when the router knows the DLCI but not the ip address. (4) Both ARP and InARP.") dfrap_cfg_fr_addr_res_dlcis = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('single', 1), ('multiple', 2), ('ddsmulti', 3), ('dtemulti', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrAddrResDlcis.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResDlcis.setDescription('Address Resolution Dlcis determines which dlcis will support address resolution. In Private management modes (Local, Remote, Bidirectional), address resolution runs on the single defined management DLCI only (regardless of this setting). In Piggyback management the user has options based upon two models: Single, where the address resolution protocols run only upon the defined managment DLCI and Multiple, where its supported on all active DLCIs recognized by the unit. (1) Single - address resolution on the defined default DLCI on both ports (2) Multiple - address resolution on all active DLCIs on both ports (3) DDSMulti - Single on DTE and Multiple on DDS (4) DTEMulti - Single on DDS and Multiple on DTE') dfrap_cfg_fr_addr_res_inarp_timer = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 7), integer32().subtype(subtypeSpec=value_range_constraint(5, 86400))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrAddrResInarpTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrAddrResInarpTimer.setDescription('If the unit is configured to support the InARP address resolution protocol, this is the frequency of INARP requests that the unit will generate. (5-86400) - InARP Request Timer in seconds') dfrap_cfg_fr_lmi_full_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 5, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrLmiFullStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrLmiFullStatus.setDescription("Timer used by the unit to determine if an LMI Full Status Report is missing. In the absence of a Full Status report for the duration defined by this timer, the unit will declared all DLCI's status INACTIVE and begin logging down time. Data passage is not interfered with. (0) Full Status Timer is disabled (20-3600) Full Status Report Timeout in seconds.") dfrap_cfg_vnip_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 6)) dfrap_cfg_vnip_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inactive', 1), ('dte', 2), ('dds', 3), ('both', 4)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgVnipMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipMode.setDescription("This setting configures the unit for VNIP topology support on a per-interface basis. Establishing a VNIP topology is a fundamental prerequisite to applying the VNIP feature set which includes PVC-based delay measurement, diagnostics, and congestion monitoring. With VNIP enabled on an interface the unit will attempt to locate VNIP peers out that port. As peers are discovered and logged the unit will report the topology it has learned on its opposite interface. If VNIP is inactive on one interface it will not engage in any VNIP dialog; however it will continue to listen for topology messages on the inactive interface and will reflect these messages out the opposite interface if VNIP is enabled. With VNIP inactive on both interfaces the unit will transparently pass all VNIP messages. The topology database includes ip addresses, DLCI values, and the number of VNIP hops in between. (1) Topology Inactive: VNIP messages pass through unit (2) Topology Enabled on DTE only: unit logs VNIP peers seen out the DTE interface. Unit listens for topology reports from the WAN but doesn't generate any towards the WAN. Will report learned WAN topology towards the DTE. (3) Topology Enabled on WAN only: unit logs VNIP peers seen out the WAN interface. Unit listens for topology reports from the DTE but doesn't generate any towards the DTE. Will report learned DTE topology towards the WAN. (4) Topolgy Enabled on Both DTE and WAN: Unit logs VNIP peers seen out both interfaces and generates DTE topolgy reports towards the WAN and vice versa.") dfrap_cfg_vnip_init_timer = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 2), integer32().subtype(subtypeSpec=value_range_constraint(5, 86400))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgVnipInitTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipInitTimer.setDescription('VNIP peer to peer communications are initiated following the detection of a VNIP Hello message. The unit will periodically issue this message out interfaces that have VNIP enabled until a Hello response is received. Following the reception of the Hello response, the unit will stop issuing Hello messahges on that DLCI/interface and generate periodic topology reports at the VNIP Keep Alive frequency. The unit will generate periodic Hello messages, at the InitTimer frequency if no Hello responses are ever detected or a topology message not been detected within the time period defined by the VNIP Inactivity timer. (5-86400) VNIP Hello frequency (in seconds)') dfrap_cfg_vnip_keep_alive_timer = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 3), integer32().subtype(subtypeSpec=value_range_constraint(5, 86400))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgVnipKeepAliveTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipKeepAliveTimer.setDescription("This is the frequency that topology reports are issued out any interface that has VNIP enabled. Once a Hello exchange occurs, the unit will periodically issue a VNIP message which reflects the topology it has learned on the opposite interface. This Keep Alive timer must be less than any peer unit's Inactivity timer. (5-86400) VNIP Topology Update frequency (in seconds)") dfrap_cfg_vnip_inactivity_timer = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 4), integer32().subtype(subtypeSpec=value_range_constraint(5, 86400))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgVnipInactivityTimer.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipInactivityTimer.setDescription('The length of time to wait before dropping a VNIP peer from the database and attempting tp reestablish communications by issuing the VNIP Hello message. If this timer expires then the entire topology database is reset. The Inactivity timers of any unit participating in a VNIP topology must be greater than the highest Keep Alive timer in the topology. (5- 86400) VNIP Hello frequency (in seconds)') dfrap_cfg_vnip_transit_delay_frequency = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 5), integer32().subtype(subtypeSpec=value_range_constraint(15, 86400))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgVnipTransitDelayFrequency.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgVnipTransitDelayFrequency.setDescription('Transit Delay measurements may be enabled between any DLCI peers that have been logged through the topology protocol. Delay messages are issued at this frequency and results are recorded. Transit delay measures the round-trip network delay between two VNIP peers (internal unit latencies are not part of the measurement). Traps may be optionally generated if a delay threshold is exceeded. (15-86400): Transit Delay message frequency (in seconds)') dfrap_cfg_transit_delay_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20)) if mibBuilder.loadTexts: dfrapCfgTransitDelayTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayTable.setDescription("The table defining the transit delay measurement profile for each of the learned VNIP peers. As peers are located and logged into the topology database, a default transit delay profile is assumed. The default is to enable transit delay to all hops located out the interface. A DLCI's transit delay profile cannot be modified unless the DLCI has been discovered through the VNIP topology protocol.") dfrap_cfg_transit_delay_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgTransitDelayInterface'), (0, 'DFRAP-MIB', 'dfrapCfgTransitDelayDlciValue')) if mibBuilder.loadTexts: dfrapCfgTransitDelayEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayEntry.setDescription("A VNIP Transit Delay configuration entry for a particular DLCI on a particular interface. A DLCI's transit delay profile cannot be modified unless the DLCI has been discovered through the VNIP topology protocol") dfrap_cfg_transit_delay_interface = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte-interface', 1), ('dds-interface', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTransitDelayInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayInterface.setDescription('This is the interface being configured for VNIP Transit Delay. If topology is enabled, each interface will contain a database of VNIP peers organized by DLCI value and Number of Hops. (1) DTE Interface (2) DDS Interface') dfrap_cfg_transit_delay_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTransitDelayDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayDlciValue.setDescription('This is the DLCI being configured for VNIP Transit Delay. If topology is enabled, each interface will contain a database of VNIP peers organized by DLCI value and Number of Hops.') dfrap_cfg_transit_delay_num_hops = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTransitDelayNumHops.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayNumHops.setDescription('VNIP topolgy may include multiple units on a given DLCI/interface. The topology logs the number of intermediate VNIP peers between units (Hops). This setting determines which peers on a DLCI are participating in delay measurements. (0) All hops (1-254) individually addressable delay measurement between any two peers. (255) Furthest hop only') dfrap_cfg_transit_delay_rcv_summary_cancel = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable-rsc', 1), ('disable-rsc', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTransitDelayRcvSummaryCancel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayRcvSummaryCancel.setDescription("Controls the Receive Summary Cancellation feature of VNIP Transit Delay on this interface/DLCI. Every Transit Delay measurement exchange includes a follow-up message from the initiator with the delay results. If RSC is enabled, a unit will log results based upon this summary message and will not issue its next scheduled delay measurement. With RSC disabled, the unit will not use the summary message and will always issue its regularly scheduled message based on the delay frequency timer. The purpose of this feature is to reduce traffic introduced by VNIP. In a typical peer-to-peer transit delay measurement where both ends are concurrently conducting transit delay measurements it's recommended that one end have RSC enabled and one end disabled.") dfrap_cfg_transit_delay_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 20, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 86400000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTransitDelayThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayThreshold.setDescription('Specifies a transit delay threshold for this DLCI/interface. When the transit delay exceeds the threshold, a TRAP is sent. The threshold may be set from one millisecond to 24 hours. A value of 0 will prevent a TRAP from being sent. (0): Transit delay threshold trap disabled for this DLCI/interface (1-86400000): delay threshhold. Any delay measurements exceeding this result will generate a trap.') dfrap_cfg_td_delete_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21)) if mibBuilder.loadTexts: dfrapCfgTDDeleteTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteTable.setDescription('The table allows the user to disable transit delay measurements for a specific DLCI on a particular interface.') dfrap_cfg_td_delete_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgTDDeleteInterface')) if mibBuilder.loadTexts: dfrapCfgTDDeleteEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteEntry.setDescription('Disables VNIP Transit Delay for a particular interface and DLCI.') dfrap_cfg_td_delete_interface = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte-interface', 1), ('dds-interface', 2)))) if mibBuilder.loadTexts: dfrapCfgTDDeleteInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteInterface.setDescription('Transit delay can be disabled for a given DLCI on either interface. This indexes the interface. Setting this index and the associated DLCI index will disable transit delay on that combination.') dfrap_cfg_td_delete_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 21, 1, 2), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgTDDeleteDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTDDeleteDlciValue.setDescription('Transit delay can be disabled for a given DLCI on either interface. This indexes the DLCI. Setting this index and the associated interface index will disable transit delay on that combination.') dfrap_cfg_transit_delay_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 6, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-table', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgTransitDelayTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTransitDelayTableClear.setDescription(' The dfrapCfgTransitDelayTable is cleared. (1) clear the table ') dfrap_cfg_fr_perf = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 7)) dfrap_cfg_fr_perf_dlci_names_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1)) if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTable.setDescription('This table allows the user to configure DLCI specific parameters such as Names, CIR, and EIR. Additionally, any DLCIs configured with these parameters will be added into the Short Term statistics database next time its cleared.') dfrap_cfg_fr_perf_dlci_names_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgFrPerfDlciNamesDlciValue')) if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEntry.setDescription('A table entry indexed by DLCI, containing a DLCI, a DLCI name, a CIR, and how the CIR value was obtained.') dfrap_cfg_fr_perf_dlci_names_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 1), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciValue.setDescription("A DLCI selected for customized configuration and to be added to short term statistics collection (if it wasn't already there).") dfrap_cfg_fr_perf_dlci_names_dlci_name = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciName.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDlciName.setDescription('A user-specifiable name for an individual DLCI.') dfrap_cfg_fr_perf_dlci_names_cir_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirValue.setDescription('The CIR value for an individual DLCI. This value is used in the calculation utilization as a percentage of CIR. If the CIR is reported in the LMI message then the reported value will override this configured entry. In the absence of LMI CIR and a configured CIR, the unit will assume that teh CIR is the DTE Line Rate.') dfrap_cfg_fr_perf_dlci_names_cir_type = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('cir-acquired-from-lmi', 1), ('cir-configured-by-user', 2), ('cir-is-datarate', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesCirType.setDescription('The source of the CIR value for this DLCI. If CIR for a DLCI is part of the LMI message then this LMI supplied CIR will override any defined CIR. If CIR is not part of LMI and has not been explicitly defined by the user it will default to the DTE Line Rate. (1) CIR reported in LMI Full Status message (2) CIR configured by user (3) CIR defaulted to DTE Line Rate') dfrap_cfg_fr_perf_dlci_names_util_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesUtilThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesUtilThreshold.setDescription("The threshold for generating a utilization threshold trap as a percentage of the CIR. If the utilization percentage is above this threshold for more than dfrapCfgFrPerfDlciUtilThreshold number of dfrapCfgFrPerfTimersSTInterval's a dfrapPvc(Rx/Tx)UtilizationExceeded trap will be issued. If the If the utilization percentage falls below this threshold for more than dfrapCfgFrPerfDlciUtilThreshold number of dfrapCfgFrPerfTimersSTInterval's a dfrapPvc(Rx/Tx)UtilizationExceeded trap will be issued.") dfrap_cfg_fr_perf_dlci_names_eir_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 1, 1, 6), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEirValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesEirValue.setDescription('The EIR value for an individual DLCI. In the absence of a configured EIR, the unit will assume that the EIR is the DTE Line Rate.') dfrap_cfg_fr_perf_dlci_names_delete = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 2), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDelete.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesDelete.setDescription('Setting this object with a specific DLCI value will remove the DLCI form the DLCI-specific parameters database.') dfrap_cfg_fr_perf_timers = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3)) dfrap_cfg_fr_perf_timers_st_interval = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(3, 60))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersSTInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersSTInterval.setDescription('Short term statistics maintain cumulative counts, and counts for the current and previous short term windows. This value is the window size for the short term statistics intervals. (3-60): short term statistics collection interval') dfrap_cfg_fr_perf_timers_lt_interval = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(4, 3600))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersLTInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfTimersLTInterval.setDescription('Long term statistics maintain 96 contiguous intervals of configurable protocol per DLCI statistics. This value is the window size of each interval. Adjusting this value will change the overall length of time that the 96 intervals will span. (4-3600): long term statsistics collection interval') dfrap_cfg_fr_perf_user_protocols_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4)) if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTable.setDescription('This table allows the user to select TCP/UDP ports for statistics collection. Tx and Rx byte counts will collected on the specified ports. These ports are selectable as protocols in the long term statistics filter and are displayed with the other protocols in the short term statistics.') dfrap_cfg_fr_perf_user_protocols_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgFrPerfUserProtocolsIndex')) if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsEntry.setDescription('An index and TCP/UDP port number pair.') dfrap_cfg_fr_perf_user_protocols_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsIndex.setDescription('An index. Beginning with index 1, the range is defined in SysNumUserProtocols') dfrap_cfg_fr_perf_user_protocols_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 4, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsPortNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsPortNum.setDescription('Tx and Rx byte counts will be collected on the user-specifiable TCP/UDP port number. (0) port not defined (1-65535): IP TCP/UDP protocol port number.') dfrap_cfg_fr_perf_lt_dlci_filter_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5)) if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTable.setDescription('Long term statistics can only be collected on a limited number of DLCIs. The value of SysLTFNumDlcis defines the maximum number of DLCIs that can be included in the Long Term Statistics. Once one or more DLCIs are added to Long Term Stats, the user may assign a set of protocols that will be monitored across all of the Long Term DLCIs.') dfrap_cfg_fr_perf_lt_dlci_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgFrPerfLTDlciFilterIndex')) if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterEntry.setDescription('An index and DLCI number pair.') dfrap_cfg_fr_perf_lt_dlci_filter_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterIndex.setDescription('An index. Beginning with index 1, the maximum is defined by the value of SysLTFNumDlcis.') dfrap_cfg_fr_perf_lt_dlci_filter_dlci_num = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 5, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterDlciNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterDlciNum.setDescription('Setting a DLCI value here will add that DLCI into the Long term statistics database (associated with its index) and it will be monitored for the protocol activity defined in the Long Term Protocol filter.') dfrap_cfg_fr_perf_lt_protocol_filter_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6)) if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTable.setDescription('Long term statistics can only be collected on a limited number of protocols. The maximum number of Long Term Protoocls are defined by SysLTFNumProtocols. This table allows the user to configure those protocols.') dfrap_cfg_fr_perf_lt_protocol_filter_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapCfgFrPerfLTProtocolFilterIndex')) if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterEntry.setDescription('An index and protocol pair.') dfrap_cfg_fr_perf_lt_protocol_filter_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterIndex.setDescription('An index. Beginning with index 1, the maximum is defined by the value of SysLTFNumProtocols.') dfrap_cfg_fr_perf_lt_protocol_filter_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, -1))).clone(namedValues=named_values(('ip-tx-bc', 1), ('ip-rx-bc', 2), ('tcp-ip-tx-bc', 3), ('tcp-ip-rx-bc', 4), ('ftp-tcp-ip-tx-bc', 5), ('ftp-tcp-ip-rx-bc', 6), ('telnet-tcp-ip-tx-bc', 7), ('telnet-tcp-ip-rx-bc', 8), ('smtp-tcp-ip-tx-bc', 9), ('smtp-tcp-ip-rx-bc', 10), ('tftp-tcp-ip-tx-bc', 11), ('tftp-tcp-ip-rx-bc', 12), ('http-tcp-ip-tx-bc', 13), ('http-tcp-ip-rx-bc', 14), ('netbios-ssn-tcp-ip-tx-bc', 15), ('netbios-ssn-tcp-ip-rx-bc', 16), ('snmp-tcp-ip-tx-bc', 17), ('snmp-tcp-ip-rx-bc', 18), ('snmptrap-tcp-ip-tx-bc', 19), ('snmptrap-tcp-ip-rx-bc', 20), ('udp-ip-tx-bc', 21), ('udp-ip-rx-bc', 22), ('ftp-udp-ip-tx-bc', 23), ('ftp-udp-ip-rx-bc', 24), ('telnet-udp-ip-tx-bc', 25), ('telnet-udp-ip-rx-bc', 26), ('smtp-udp-ip-tx-bc', 27), ('smtp-udp-ip-rx-bc', 28), ('tftp-udp-ip-tx-bc', 29), ('tftp-udp-ip-rx-bc', 30), ('http-udp-ip-tx-bc', 31), ('http-udp-ip-rx-bc', 32), ('netbios-dgm-udp-ip-tx-bc', 33), ('netbios-dgm-udp-ip-rx-bc', 34), ('snmp-udp-ip-tx-bc', 35), ('snmp-udp-ip-rx-bc', 36), ('snmptrap-udp-ip-tx-bc', 37), ('snmptrap-udp-ip-rx-bc', 38), ('rip-udp-ip-tx-bc', 39), ('rip-udp-ip-rx-bc', 40), ('icmp-ip-tx-bc', 41), ('icmp-ip-rx-bc', 42), ('echorep-icmp-ip-tx-bc', 43), ('echorep-icmp-ip-rx-bc', 44), ('dest-unr-icmp-ip-tx-bc', 45), ('dest-unr-icmp-ip-rx-bc', 46), ('src-quench-icmp-ip-tx-bc', 47), ('src-quench-icmp-ip-rx-bc', 48), ('redirect-icmp-ip-tx-bc', 49), ('redirect-icmp-ip-rx-bc', 50), ('echoreq-icmp-ip-tx-bc', 51), ('echoreq-icmp-ip-rx-bc', 52), ('time-excd-icmp-ip-tx-bc', 53), ('time-excd-icmp-ip-rx-bc', 54), ('param-prob-icmp-ip-tx-bc', 55), ('param-prob-icmp-ip-rx-bc', 56), ('timestamp-req-icmp-ip-tx-bc', 57), ('timestamp-req-icmp-ip-rx-bc', 58), ('timestamp-rep-icmp-ip-tx-bc', 59), ('timestamp-rep-icmp-ip-rx-bc', 60), ('addr-mask-req-icmp-ip-tx-bc', 61), ('addr-mask-req-icmp-ip-rx-bc', 62), ('addr-mask-rep-icmp-ip-tx-bc', 63), ('addr-mask-rep-icmp-ip-rx-bc', 64), ('pkt-too-big-icmp-ip-tx-bc', 65), ('pkt-too-big-icmp-ip-rx-bc', 66), ('gp-mem-query-icmp-ip-tx-bc', 67), ('gp-mem-query-icmp-ip-rx-bc', 68), ('gp-mem-report-icmp-ip-tx-bc', 69), ('gp-mem-report-icmp-ip-rx-bc', 70), ('gp-mem-reduct-icmp-ip-tx-bc', 71), ('gp-mem-reduct-icmp-ip-rx-bc', 72), ('ospf-ip-tx-bc', 73), ('ospf-ip-rx-bc', 74), ('other-ip-tx-bc', 75), ('other-ip-rx-bc', 76), ('ipx-tx-bc', 77), ('ipx-rx-bc', 78), ('spx-ipx-tx-bc', 79), ('spx-ipx-rx-bc', 80), ('ncp-ipx-tx-bc', 81), ('ncp-ipx-rx-bc', 82), ('sap-ipx-tx-bc', 83), ('sap-ipx-rx-bc', 84), ('rip-ipx-tx-bc', 85), ('rip-ipx-rx-bc', 86), ('netbios-ipx-tx-bc', 87), ('netbios-ipx-rx-bc', 88), ('other-ipx-tx-bc', 89), ('other-ipx-rx-bc', 90), ('arp-tx-bc', 91), ('arp-rx-bc', 92), ('arp-req-tx-bc', 93), ('arp-req-rx-bc', 94), ('arp-rep-tx-bc', 95), ('arp-rep-rx-bc', 96), ('rarp-req-tx-bc', 97), ('rarp-req-rx-bc', 98), ('rarp-rep-tx-bc', 99), ('rarp-rep-rx-bc', 100), ('inarp-req-tx-bc', 101), ('inarp-req-rx-bc', 102), ('inarp-rep-tx-bc', 103), ('inarp-rep-rx-bc', 104), ('sna-tx-bc', 105), ('sna-rx-bc', 106), ('sna-subarea-tx-bc', 107), ('sna-subarea-rx-bc', 108), ('sna-periph-tx-bc', 109), ('sna-periph-rx-bc', 110), ('sna-appn-tx-bc', 111), ('sna-appn-rx-bc', 112), ('sna-netbios-tx-bc', 113), ('sna-netbios-rx-bc', 114), ('cisco-tx-bc', 115), ('cisco-rx-bc', 116), ('other-tx-bc', 117), ('other-rx-bc', 118), ('user-defined-1-tx-bc', 119), ('user-defined-1-rx-bc', 120), ('user-defined-2-tx-bc', 121), ('user-defined-2-rx-bc', 122), ('user-defined-3-tx-bc', 123), ('user-defined-3-rx-bc', 124), ('user-defined-4-tx-bc', 125), ('user-defined-4-rx-bc', 126), ('thru-byte-tx-bc', 127), ('thru-byte-rx-bc', 128), ('thru-frame-tx-c', 129), ('thru-frame-rx-c', 130), ('thru-fecn-tx-c', 131), ('thru-fecn-rx-c', 132), ('thru-becn-tx-c', 133), ('thru-becn-rx-c', 134), ('thru-de-tx-c', 135), ('thru-de-rx-c', 136), ('cir-percent-range1-tx-bc', 137), ('cir-percent-range1-rx-bc', 138), ('cir-percent-range2-tx-bc', 139), ('cir-percent-range2-rx-bc', 140), ('cir-percent-range3-tx-bc', 141), ('cir-percent-range3-rx-bc', 142), ('cir-percent-range4-tx-bc', 143), ('cir-percent-range4-rx-bc', 144), ('cir-percent-range5-tx-bc', 145), ('cir-percent-range5-rx-bc', 146), ('cir-percent-range6-tx-bc', 147), ('cir-percent-range6-rx-bc', 148), ('cir-percent-range7-tx-bc', 149), ('cir-percent-range7-rx-bc', 150), ('cir-percent-range8-tx-bc', 151), ('cir-percent-range8-rx-bc', 152), ('lmi-tx-bc', 153), ('lmi-rx-bc', 154), ('lmi-livo-enq-tx-bc', 155), ('lmi-livo-enq-rx-bc', 156), ('lmi-livo-stat-tx-bc', 157), ('lmi-livo-stat-rx-bc', 158), ('lmi-full-enq-tx-bc', 159), ('lmi-full-enq-rx-bc', 160), ('lmi-full-stat-tx-bc', 161), ('lmi-full-stat-rx-bc', 162), ('lmi-other-tx-bc', 163), ('lmi-other-rx-bc', 164), ('total-uptime', 165), ('total-downtime', 166), ('igrp-tx-bc', 167), ('igrp-rx-bc', 168), ('vnip-tx-bc', 169), ('vnip-rx-bc', 170), ('annex-g-tx-bc', 171), ('annex-g-rx-bc', 172), ('delete-entry', -1)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterProtocol.setDescription('Long term statistics will be collected on the user-specifiable protocol. Setting a -1 remove the indexed protocol from the filter.') dfrap_cfg_fr_perf_dlci_default_util_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 100))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciDefaultUtilThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciDefaultUtilThreshold.setDescription('The default threshold for generating a utilization threshold trap as a percentage of the CIR. This value is used for dfrapCfgFrPerfDlciNamesUtilThreshold when a DLCI is first discovered. ') dfrap_cfg_fr_perf_dlci_util_duration = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciUtilDuration.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciUtilDuration.setDescription("The number of Short Term Intervals that a DLCI's utilization as a percentage of CIR must be above or below the value of dfrapCfgFrPerfDlciUtilThreshold before a dfrapPvc(Rx/Tx)UtilizationExceededTrap or dfrapPvc(Rx/Tx)UtilizationClearedTrap is issued. ") dfrap_cfg_fr_perf_dlci_names_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('clear-table', 1), ('clear-table-keep-stats', 2)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfDlciNamesTableClear.setDescription("Clears the smperCfgFrPerfDlciNamesTable (1) clear the table or (2) clear the table but don't remove the dlcis from the short term statistics.") dfrap_cfg_fr_perf_user_protocols_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-table', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUserProtocolsTableClear.setDescription(' Clears the dfrapCfgFrPerfUserProtocolsTable (1) clear the table ') dfrap_cfg_fr_perf_lt_dlci_filter_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-table', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTDlciFilterTableClear.setDescription(' Clears the dfrapCfgFrPerfLTDlciFilterTable (1) clear the table ') dfrap_cfg_fr_perf_lt_protocol_filter_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-table', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTableClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfLTProtocolFilterTableClear.setDescription(' Clears the dfrapCfgFrPerfLTProtocolFilterTable (1) clear the table ') dfrap_cfg_fr_perf_unprov_dlcis_delete = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 7, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('delete-unprov', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgFrPerfUnprovDlcisDelete.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgFrPerfUnprovDlcisDelete.setDescription('Delete all unprovisioned and Not-In-LMI dlcis (1) delete all unprovisioned ') dfrap_cfg_security_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 2, 8)) dfrap_cfg_telnet_cli_lcd_password = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTelnetCliLcdPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTelnetCliLcdPassword.setDescription('The password needed to start a CLI (Command Line Interface), Telnet or LCD session.') dfrap_cfg_tftp_password = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgTftpPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgTftpPassword.setDescription('The password needed to initiate a TFTP download.') dfrap_cfg_cli_password = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgCliPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgCliPassword.setDescription('OBSOLETE: The Telnet, CLI and LCD passwords are one and the same. Use the above CfgTelnetCliLcdPassword to log into the CLI (Command Line Interface).') dfrap_cfg_lcd_password = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgLcdPassword.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLcdPassword.setDescription('OBSOLETE: The Telnet, CLI and LCD passwords are one and the same. Use the above CfgTelnetCliLcdPassword to log into the LCD Interface.') dfrap_cfg_get_community_string = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgGetCommunityString.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgGetCommunityString.setDescription('The community string for doing SNMP GETs. The unit will respond to GETs that use either this string or the SET community string. All others will be rejected and a trap will be generated. String is case sensitive.') dfrap_cfg_set_community_string = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 8, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgSetCommunityString.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgSetCommunityString.setDescription('The community string for doing SNMP SETs. The unit will reject SETs with any other coimmunity string and will generate a trap. String is case sensitive.') dfrap_cfg_lock = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 600))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgLock.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLock.setDescription(' Request to start configuration download and lock out any other means of configuring the unit. The integer passed in represents the time out period in seconds between sets. A set to this object will fail if the unit is already in a configuration locked state.') dfrap_cfg_lock_id = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 13), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgLockID.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLockID.setDescription(' Returns the IP Address of the management station currently in control of configuration. A unit that is not in a configuration locked state will return 0.0.0.0') dfrap_cfg_id = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 14), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapCfgID.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgID.setDescription(' A read of this object returns the Current Configuration ID string. A write sets the Configuration ID string. The string contains a starting character to indicate the last configuration source C = Envisage N = CLI/TELNET L = LCD S= other SNMP management station and a unique 7 integer value to differentiate configurations between common sources. A value of *STARTUP indicates the configuration has been defaulted. A write will only be accepted from the management station that has successfully obtained the configuration lock') dfrap_cfg_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('in-progress', 1), ('success', 2), ('datarate-density-conflict', 3), ('bandwidth-allocation-error', 4), ('general-error', 5), ('timeout', 6), ('aborted-by-user', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgStatus.setDescription(' The status of a configuration install is reported here. On startup, a status of success will be reported. (1) The configuration has been locked and an update or unlock command has not been received. (2) An update command has been received and the configuration has been validated as consistent; . (3) An update command has been received but the DTE port datarate is not compatible with the density. (4) An update command has been received but the number of channels to be allocated will not fit in the available channels. (5) An update command has been received but there is an error in the configuration that is not a datarate-density-conflict or bandwidth-allocation-error. (6) The time between consecutive set requests exceeded the timeout sent with the dfrapCfgLock command. (7) The user sent a dfrapCfgUnlock command before a dfrapCfgUpdate command. This usually means that one of the sets in the configuration failed. ') dfrap_cfg_unlock = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('un-lock', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgUnlock.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgUnlock.setDescription(' The management station sets this variable to complete the configuration install process. Un-lock (1) notifies the agent to remove the lock on configuring the unit without updating the configuration.') dfrap_cfg_update = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 2, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('update', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapCfgUpdate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgUpdate.setDescription(' The management station sets this variable to complete the configuration install process. Update (1) notifies the agent to start the update process within the unit.') dfrap_diagnostics = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 3)) dfrap_diag_unit_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 1)) dfrap_diag_unit_loc_loop = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable-loopback-mode', 1), ('disable-loopback-mode', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagUnitLocLoop.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitLocLoop.setDescription('Controls a bi-directional unit loopback. Data is received from either interface, processed, and transmitted back towards the same interface. When configured for Frame Relay operation the unit will preserve the LMI path during this loopback. In Frame Relay mode, only valid frames are looped back (pseudorandom test patterns will be dropped). (1) enable unit loopback') dfrap_diag_unit_reset = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('reset-unit', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapDiagUnitReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitReset.setDescription('Enables the operator to remotely reset the unit. Using this command will cause the unit to terminate all its connections and drop data. (1): reset unit') dfrap_diag_unit_time_remaining = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 1, 3), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagUnitTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagUnitTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrap_diag_dds_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 2)) dfrap_diag_dds_lcl_lpbk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable-loopback-mode', 1), ('disable-loopback-mode', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagDdsLclLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsLclLpbk.setDescription('Controls local network loopback. All data received from the WAN, regardless of format or content, is transmitted back out (line interface loopback) while still being sent to the DTE. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback. (1) enable DDS line loopback (2) disable DDS line loopback') dfrap_diag_dds_rmt_lpbk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('no-loop-from-remote', 1), ('simplex-current-loop', 2), ('non-latching-loop', 3), ('latching-loopback', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagDdsRmtLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsRmtLpbk.setDescription('Enables the operator to examine (ONLY) the status of network loopbacks placed by external equipment, such as your local CO. Any of these conditions will result in a DDS line loopback. (1) no remote loop up command (2) simplex current reversal loopback command (3) non-latching loopback command (4) latching loopback comamnd') dfrap_diag_dds_time_remaining = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 2, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagDdsTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDdsTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrap_diag_dte_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 3)) dfrap_diag_dte_lcl_lpbk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enable-loopback-mode', 1), ('disable-loopback-mode', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagDteLclLpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteLclLpbk.setDescription('Controls a bi-directional DTE loopback. All data received at the DTE interface is looped back regardless of format or content (line loopback). All data received at the WAN interface is looped back regardless of format or content (line loopback). When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback. (1) enable DTE loopback (2) disable DTE loopback') dfrap_diag_dte_v54_lpbk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v54-received', 1), ('v54-not-received', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagDteV54Lpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteV54Lpbk.setDescription('This selection displays the status of the DTE Channel V.54 Loopback for the channel. This loopback is initiated by the remote node, causing this unit to enter a Local DTE loopback condition. (1) V54 loopback pattern received from WAN (2) V54 loopback pattern not received from WAN') dfrap_diag_dte_rmt_v54_lpbk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(3, 4))).clone(namedValues=named_values(('transmit-code-enable', 3), ('transmit-code-disable', 4)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapDiagDteRmtV54Lpbk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteRmtV54Lpbk.setDescription('This selection controls the DTE Channel V.54 Remote Loopback. Transmit-code-enable (3) will cause the node to transmit a V.54 code to the remote node which will then enter a Local DTE Loopback state. transmit-code-disable (4) will transmit the loopdown code and cause the remote unit to remove the Local DTE Loopback path. (1) send remote V54 loop up command (2) send remote V54 loop down command') dfrap_diag_dte_time_remaining = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 3, 13), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagDteTimeRemaining.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagDteTimeRemaining.setDescription('The remaining time on the active loopback before the loopback times out. The time is in hundredths of seconds (TimeTicks).') dfrap_diag_bert_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 3, 5)) dfrap_diag_bert_state = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 5))).clone(namedValues=named_values(('start-test', 1), ('stop-test', 3), ('inject-error', 4), ('clear-error', 5)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapDiagBertState.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertState.setDescription(' The unit is capable of sending a pseudorandom test pattern (511 or QRSS) out the WAN and monitoring the WAN received data for the same pattern. This test may be ineffective in certain frame relay applications as pseudorandom data lacks appropriate framing. Refer to VLOOP and VBERT for PVC-based error-rate testing in a live frame relay network. (1) Start a BERT test (2) Stop a BERT test (4) Inject a single bit error into the outgoing pattern (5) Clear current BERT results') dfrap_diag_bert_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('bert-off', 1), ('bert-out-of-sync', 2), ('bert-in-sync', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagBertStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertStatus.setDescription('Displays the current BERT test sync status. (1) BERT is not running (2) BERT is running but is not in sync (3) BERT is running and has detected a received BERT') dfrap_diag_bert_errors = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagBertErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertErrors.setDescription('Displays the number of errors detected in Bert Test.') dfrap_diag_bert_err_sec = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagBertErrSec.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertErrSec.setDescription('Displays the number of seconds containing 1 or more errors in BERT Test.') dfrap_diag_bert_time_elaps = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 5), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagBertTimeElaps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertTimeElaps.setDescription('Elapsed time since BERT test was started or last cleared.') dfrap_diag_bert_resyncs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagBertResyncs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertResyncs.setDescription('Displays the number of times BERT test has synched up on the pattern. The BERT will attempt to resynchronize in response to excessive errors. A running count here indicates that a clean BERT is not being received.') dfrap_diag_bert_pattern = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 3, 5, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('five11-pattern', 1), ('qrss', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagBertPattern.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagBertPattern.setDescription('The type of pseudorandom BERT pattern used. (1) 511: 9-bit pseudorandom pattern (2) QRSS: 20-bit pseudorandom pattern with no more than 14 consecutive zeros') dfrap_diag_vnip_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 3, 6)) if mibBuilder.loadTexts: dfrapDiagVnipTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipTable.setDescription(' Table of Diagnostics performed with the VNIP protocol') dfrap_diag_vnip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapDiagVnipInterface'), (0, 'DFRAP-MIB', 'dfrapDiagVnipIndex')) if mibBuilder.loadTexts: dfrapDiagVnipEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipEntry.setDescription('VNIP VLOOP and VBERT diagnostic profile. Initiating these tests require an established and stable VNIP topology on an interface. Once the topology is in place, the user can execute a PVC-based diagnostic between this unit and any indexed entry in the topology table. The index into the topology table for a particular interface is required.') dfrap_diag_vnip_interface = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte-interface', 1), ('t1-interface', 2)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVnipInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipInterface.setDescription('The interface out which a PVC-based VNIP diagnostic will be run. This must be an interface with a valid and stable VNIP topology for a VNIP Diagnostic.') dfrap_diag_vnip_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 2), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVnipIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipIndex.setDescription('The index to the external VNIP peer as presented by the VNIP topology database for the given interface. Refer to VnipTopologyTable to determine the index of the remote peer.') dfrap_diag_vnip_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagVnipDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipDlci.setDescription('This is the DLCI value for the given interface/index combination. This comes from the VniptTopologyTable.') dfrap_diag_vnip_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDiagVnipIpAddr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVnipIpAddr.setDescription('This is the ip address for the given interface/index combination. This comes from the VniptTopologyTable.') dfrap_diag_vloop = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('start-test', 1), ('stop-test', 2)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapDiagVLOOP.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVLOOP.setDescription('Controls execution of the Vnip Logical Loopback (VLOOP) test. VLOOP is designed as an intrusive test and customer data on the DLCI-under-test will be discarded. The VLOOP test includes a timed VBERT test and is run using the profile configured within this table. (1) start VLOOP test (2) stop VLOOP test (override VBERT test duration)') dfrap_diag_vbert = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('start', 1), ('stop', 2)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapDiagVBERT.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERT.setDescription('Controls execution of the Vnip Virtual Bit Eror Rate (VBERT) test. VBERT is designed to be a non-intrusive test and will attempt to statistically multiplex VBERT test data and customer data on the DLCI-under-test. However, VBERT data is given priority over customer data when the selected VBERT volume causes internal congestion. The test is run using the profile configured within this table. (1) start test (2) stop test (override VBERT test duration)') dfrap_diag_vbert_rate = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(8000, 64000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVBERTRate.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTRate.setDescription('Specifies the throughput bit rate applied by VBERT or VLOOP to the DLCI-under-test. Any rate up to the DTE line rate may be selected. Note that selecting rates that approach line rate will impact neighboring DLCIs. (8000-64000): VBERT/VLOOP data rate (in bits per second).') dfrap_diag_vbert_size = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(64, 128, 256, 512, 1024, 2048))).clone(namedValues=named_values(('sixty-four-byte', 64), ('one-twenty-eight-byte', 128), ('two-fifty-six-byte', 256), ('five-hundred-twelve-byte', 512), ('thousand-twenty-four-byte', 1024), ('two-thous-forty-eight-byte', 2048)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVBERTSize.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTSize.setDescription('Specifies the size of framed data that will be used during the VBERT test, measures in Bytes. (64) 64-byte frames (128) 128-byte frames (256) 256-byte frames (512) 512-byte frames (1024) 1024-byte frames (2048) 2048-byte frames') dfrap_diag_vbert_pkt_percent = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('zero-percent', 1), ('twentyFive-percent', 2), ('fifty-percent', 3), ('seventyFive-percent', 4), ('oneHundred-percent', 5)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVBERTPktPercent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTPktPercent.setDescription('Specifies percentage of VBERT packets that will have the Frame Relay Discard Eligibility bit set. Frames with this bit set may be more likley to get dropped in a congested network. (1) 0% of the test frames are marked discard eligible (2) 25% of the test frames are marked discard eligible (3) 50% of the test frames are marked discard eligible (4) 75% of the test frames are marked discard eligible (5) 100% of the test frames are marked discard eligible') dfrap_diag_vbert_test_period = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 3, 6, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(10, 1440))).setMaxAccess('readwrite') if mibBuilder.loadTexts: dfrapDiagVBERTTestPeriod.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDiagVBERTTestPeriod.setDescription("Specifies the duration of a VBERT test. Note that VBERT is subjected to the unit's Loopback Timer and will be terminated by whichever timer expires first. (10-1440): VBERT time duration in seconds") dfrap_status = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 4)) dfrap_vnip_topology_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 4, 2)) if mibBuilder.loadTexts: dfrapVnipTopologyTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyTable.setDescription('VNIP topology is a feature that, for each interface, maps all compatible VNIP peers, their DLCI value, ip address and relative location. The topology is a fundamental prerequisite to applying the VNIP feature set which includes PVC-based delay measurement, diagnostics, and congestion monitoring. With VNIP enabled on an interface the unit will attempt to locate VNIP peers out that port. As peers are discovered and logged the unit will report the topology it has learned on its opposite interface. If VNIP is inactive on one interface it will not engage in any VNIP dialog; however it will continue to listen for topology messages on the inactive interface and will reflect these messages out the opposite interface if VNIP is enabled. With VNIP inactive on both interfaces the unit will transparently pass all VNIP messages. The topology database includes the interface, local DLCI value, remote peer DLCI value, remote peer ip address, and the number of VNIP hops in between. This table also reports the status of other VNIP features as well.') dfrap_vnip_topology_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapVnipTopologyInterface'), (0, 'DFRAP-MIB', 'dfrapVnipTopologyIndex')) if mibBuilder.loadTexts: dfrapVnipTopologyEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyEntry.setDescription('The DLCI, IP address, and number of hops for a particular node, discovered via VNIP off of an interface. The entry may also have transit delay measurements and VBERT diagnostic status to report as well.') dfrap_vnip_topology_interface = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte-interface', 1), ('dds-interface', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyInterface.setDescription('The interface off of which the peer was discovered. Topology is discovered by sending VNIP messages out each interface. Units discovered via a particular interface are kept in a list associated with that interface. (1) VNIP peers and status out DTE interface (2) VNIP peers and status out WAN interface') dfrap_vnip_topology_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyIndex.setDescription('The number of this discovered peer in the list of nodes for this interface. For each interface, the nodes are numbered 1 through n. This index is required when disabling or enabling VBERT/VLOOP to a particular peer.') dfrap_vnip_topology_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyDlci.setDescription('The DLCI of the discovered neighboring peer. This may be different from the local DLCI.') dfrap_vnip_topology_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 4), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyIpAddr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyIpAddr.setDescription('The IP address for the discovered peer.') dfrap_vnip_topology_num_hops = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyNumHops.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyNumHops.setDescription('The discovered peer is this number of hops away. Each hop is a VNIP peer.') dfrap_vnip_topology_local_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopologyLocalDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopologyLocalDlci.setDescription('The DLCI from this unit over which the remote peer was discovered.') dfrap_vnip_topo_td_num_samples = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoTDNumSamples.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDNumSamples.setDescription('The number of transit delay samples collected.') dfrap_vnip_topo_td_avg_delay = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoTDAvgDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDAvgDelay.setDescription('The average transit delay between this unit and the remote peer (in milliseconds).') dfrap_vnip_topo_td_max_delay = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoTDMaxDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDMaxDelay.setDescription('The maximum transit delay between this unit and the remote peer (in milliseconds).') dfrap_vnip_topo_td_min_delay = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoTDMinDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDMinDelay.setDescription('The minimum transit delay between this node and the remote peer (in milliseconds).') dfrap_vnip_topo_td_last_delay = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoTDLastDelay.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoTDLastDelay.setDescription('The most recent transit delay measured between this node and the remote peer (in milliseconds).') dfrap_vnip_topo_vloop_status = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('loopback-enable', 1), ('loopback-disable', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVLOOPStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVLOOPStatus.setDescription('This selection displays the status of the VNIP PVC Loopback for this entry. This loopback is initiated by the remote node through the VLOOP utility, causing this node to loop data back to the remote node.') dfrap_vnip_topo_vbert_status = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('off', 1), ('testing', 2), ('test-failed', 3), ('test-completed', 4), ('in-test', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBERTStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBERTStatus.setDescription('Displays the current status of the VBERT/VLOOP test. (1) Off: no test has run or the entry has been cleared (2) Testing: the entry is generating VBERT test frames (3) Test Failed: the request for a test on this entry failed (4) Test Completed: a test has run and is finished results are complete (5) In Test: the entry is on the receiving end of VBERT packets') dfrap_vnip_topo_v_bert_tx_de_set_frames = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDESetFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDESetFrames.setDescription('Displays the number of Frames transmitted during VBERT/VLOOP Test that had the Discard Eligibility indicator bit set.') dfrap_vnip_topo_v_bert_rx_de_set_frames = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDESetFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDESetFrames.setDescription('Displays the number of Frames received during VBERT/VLOOP Test that had the Discard Eligibility indicator bit set.') dfrap_vnip_topo_v_bert_tx_de_clr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDEClrFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTxDEClrFrames.setDescription('Displays the number of Frames transmitted during VBERT/VLOOP Test that had the Discard Eligibility indicator bit cleared.') dfrap_vnip_topo_v_bert_rx_de_clr_frames = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDEClrFrames.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertRxDEClrFrames.setDescription('Displays the number of Frames received during VBERT/VLOOP Test that had the Discard Eligibility indicator bit cleared.') dfrap_vnip_topo_v_bert_transit_delay_max = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayMax.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayMax.setDescription('The maximum transit delay between this node and the remote peer during the VBERT/VLOOP test.') dfrap_vnip_topo_v_bert_transit_delay_avg = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayAvg.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTransitDelayAvg.setDescription('The average transit delay between this node and the remote peer during the VBERT/VLOOP test.') dfrap_vnip_topo_v_bert_time_elapse = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 23), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertTimeElapse.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertTimeElapse.setDescription('Elapsed time since VBERT/VLOOP test was started or cleared.') dfrap_vnip_topo_v_bert_per_util_cir = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 24), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilCIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilCIR.setDescription(' The calculated percent of CIR utilization during a VBERT test, this value is only valid after a test is complete not during.') dfrap_vnip_topo_v_bert_per_util_eir = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 4, 2, 1, 25), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilEIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTopoVBertPerUtilEIR.setDescription(' The calculated percent of EIR utilization during a VBERT test, this value is only valid after a test is complete not during.') dfrap_vnip_transit_delay_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-transit-delay', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapVnipTransitDelayClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVnipTransitDelayClear.setDescription('Allows the user to clear all the VNIP Transit Delay data collected in the VNIP topology database. (1) Clear entire Transit Delay results database') dfrap_lmi_sourcing = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('initializing', 1), ('passthrough', 2), ('status-enqs-to-dte', 3), ('status-enqs-to-dds', 4), ('status-rspns-to-dte', 5), ('status-rspns-to-dds', 6), ('disabled', 7), ('status-rspns-both', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapLmiSourcing.setStatus('mandatory') if mibBuilder.loadTexts: dfrapLmiSourcing.setDescription('If configured for Frame Relay with a non-zero LMI inactivity timer the unit will monitor the status of LMI and, if proper messaging is not detected, will attempt to emulate either Frame Relay DTE or DCE devices in attempt to restore LMI to any attached equipment and provide managed access for diagnostic purposes. Typically frads/routers are Frame Relay DTE while switches are Frame Relay DCE but this model may vary. In the absence of full-duplex LMI, the unit will cycle through various states in attempt to adapt to an LMI partner. The unit will try each state for the duration of the LMI Inactivity timer and then advance to the next one if satisfactory handshaking is not established. While in any of these states if full-duplex LMI handshaking does appear, the unit will immediately revert to the passthrough state. (1) initializing (2) Passthrough: not sourcing any LMI messages. (3) Status Enquiries out DTE interface: unit is emulating a Frame Relay DTE device out the its (physical) DTE interface. (4) Status Enquiries out WAN interface: unit is emulating a Frame Relay DTE device out the its WAN interface. (5) Status Responses out the DTE interface: unit is emulating a Frame Relay DCE device out the its (physical) DTE interface (provisioning the single default management DLCI). (6) Status Responses out the WAN interface: unit is emulating a Frame Relay DCE device out the its WAN interface (provisioning the single default management DLCI). (7) Disabled - LMI Inactivity timer is zero or unit not configured for a Frame Relay application. (8) Status Responses out both DTE and WAN interfaces: unit is configured for Fixed DCE mode of management and emulates a Frame Relay DCE independently on both ports (provisioning the single default management DLCI).') dfrap_v_bert_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-vbert', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapVBertClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapVBertClear.setDescription('Allows the user to clear all the VBERT data collected in the VNIP topology database as long as the entry is not in a test status. (1) Clear all VBERT/VLOOP status information') dfrap_status_mgmt_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 3)) dfrap_status_mgmt_channel = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('slip', 2), ('private-dlci', 3), ('piggyback-dlci', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusMgmtChannel.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtChannel.setDescription("This is the method in which the unit is configured for SNMP management access. (1) None: SNMP management disabled (2) SLIP: out-of-band management via asynchronous Serial Line IP (3) Private DLCI: in-band management using a private DLCI that is dedicated solely to this unit's management. (4) Piggyback DLCI: in-band management using any DLCI optionally multiplexing both management and user data.") dfrap_status_mgmt_interface = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('comm', 1), ('local-dte', 2), ('remote-wan', 3), ('local-and-remote', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusMgmtInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtInterface.setDescription('This is the port(s) on which the management traffic will appear. (1) Async Maintenance(Comm)/Console port - SLIP mode (2) Local DTE interface: unit is configured for Private Local DLCI mode (3) Remote WAN Interface: unit is confiogured for Private Remote DLCI mode (4) DTE and WAN Interfaces: unit is configured for either Piggyback Bidirectional mode.') dfrap_status_mgmt_interface_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('active', 1), ('inactive', 2), ('alarm', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusMgmtInterfaceStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtInterfaceStatus.setDescription('This is the status of the port(s) on which the management traffic will appear. (1) Active: port is configured and status is okay (2) Inactive: port is declared out of service (3) Alarm: port is experiencing an alarm condition that may interefere with management access ') dfrap_status_mgmt_default_dlci_no = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCINo.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCINo.setDescription('This is the DLCI for the PVC that is defined for the Management port. All traffic using this DLCI in the Frame Replay packet will be destined for the InBand Management task.') dfrap_status_mgmt_default_dlci_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('na', 1), ('dlci-active', 2), ('dlci-inactive', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCIStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusMgmtDefaultDLCIStatus.setDescription('This is the status of the default management DLCI. (1) not applicable: SLIP mode or management is disabled (2) DLCI Active: default DLCI is active in the LMI full status response. (3) DLCI Inactive: default DLCI is not active in the LMI full status response.') dfrap_status_lmi_autosense = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('disabled', 1), ('searching', 2), ('learned-annex-d', 3), ('learned-annex-a', 4), ('learned-type1', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusLmiAutosense.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusLmiAutosense.setDescription("This indicates the current status of LMI Auto Sensing if it's enabled. (1) Disabled: LMI is configured as Type 1, Annex-D, or Annex-A (2) Searching: unit is attempting to determine the LMI type of the attached equipment by issuing LMI messages of each LMI type and searching for responses. (3) Learned Annex-D: unit has successfully detected Annex-D LMI (ANSI T1.617 Annex D) (4) Learned Annex-A: unit has successfully detected Annex-A LMI (ITU/CCITT Q.933 Annex A) (5) Learned Type 1: unit has successfully detected Type 1 LMI (Cisco, Group of four, LMI)") dfrap_status_dte_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 7)) dfrap_status_dte_mode = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('no-connections', 1), ('active', 2), ('test', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteMode.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteMode.setDescription('Status of the DTE port. (1) No-connections: indicates the port is not completely to pass data to/from the WAN. (2) Active: port is configured and ready to pass data. (3) Test: diagnostic condition in process.') dfrap_status_dte_rts = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteRts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteRts.setDescription('Status of the Request to Send (RTS) signal from the DTE port. (1) RTS Active (2) RTS Inactive') dfrap_status_dte_dtr = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteDtr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDtr.setDescription('Status of the Data Terminal Ready (DTR) signal from the DTE port. (1) DTR Active (2) DTR Inactive') dfrap_status_dte_dcd = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteDcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDcd.setDescription('Status of the Data Carrier Detect (DCD) signal driven by this unit towards the DTE port (1) DCD Active (2) DCD Inactive') dfrap_status_dte_dsr = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteDsr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteDsr.setDescription('Status of the Data Set Ready (DSR) signal driven by this unit towards the DTE port. (1) DSR Active (2) DSR Inactive') dfrap_status_dte_cts = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 7, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteCts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteCts.setDescription('Status of the Clear to Send (CTS) signal driven by this unit towards the DTE port (1) CTS Active (2) CTS Inactive') dfrap_status_dds_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 8)) dfrap_status_dds_line_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 8, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('in-sync', 1), ('out-of-service', 2), ('out-of-frame', 3), ('bpv-threshold-failure', 4), ('loss-of-signal', 5), ('simplex-current-loopback', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDdsLineStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsLineStatus.setDescription('The Current status of the physical interface. Your network carrier can send Out-of-Service or Maintenance Mode codes. (1) in sync (2) out of service (3) out of frame (4) bipolar violations (5) loss of signal (6) simplex current loopback') dfrap_status_dds_loop_length = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 8, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('loss-40-50db', 1), ('loss-39-44db', 2), ('loss-33-38db', 3), ('loss-27-32db', 4), ('loss-21-26db', 5), ('loss-15-20db', 6), ('loss-8-14db', 7), ('loss-1-7db', 8), ('loss-0db', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDdsLoopLength.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsLoopLength.setDescription('The estimated line attenuation (signal loss) on the DDS channel. Actual cable length can be estimated with the assumption that a good quality data grade cable is used. Use of lower quality cabling will produce greater line attenuation on shorter cable runs. (1) est. between 40 and 50dB line loss, equivalent to roughly 8 to 9 Kilometers of nominal cable length. (2) est. between 39 and 44dB line loss, equivalent to roughly 7 to 8 Kilometers of nominal cable length. (3) est. between 33 and 38dB line loss, equivalent to roughly 6 to 7 Kilometers of nominal cable length. (4) est. between 27 and 22dB line loss, equivalent to roughly 5 to 6 Kilometers of nominal cable length. (5) est. between 21 and 26dB line loss, equivalent to roughly 4 to 5 Kilometers of nominal cable length. (6) est. between 15 and 20dB line loss, equivalent to roughly 3 to 4 Kilometers of nominal cable length (7) est. between 8 and 14dB line loss, equivalent to roughly 2 to 3 Kilometers of nominal cable length (8) est. between 1 and 7dB line loss, equivalent to roughly .5 to 2 Kilometers of nominal cable length (9) est. 0dB line loss, equivalent to less than 1Km nominal cable length') dfrap_status_led_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 4, 4)) dfrap_status_dte_mode_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('offLED-DTE-inactive', 1), ('greenLED-normal', 2), ('yellowLED-test-mode', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteModeLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteModeLED.setDescription('Status of the DTE Mode LED. (1) DTE Mode LED off: Missing control signals (2) DTE Mode LED green: Normal (3) DTE Mode LED yellow: Test Mode') dfrap_status_dte_status_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2))).clone(namedValues=named_values(('greenLED-active', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteStatusLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteStatusLED.setDescription('Status of the DTE Status LED. (1) DTE Status LED green: normal') dfrap_status_dte_tx_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('offLED-inactive', 1), ('greenLED-tx-data-transmitting', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteTxLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteTxLED.setDescription('Status of the DTE Tx Data LED. In Frame Relay mode, this LED is ON (green) when the DTE is not sending HDLC Flags and is OFF when HDLC flags are being transmit. In CBO mode, the LED is ON (green) for a SPACE and OFF for a MARK. (1) DTE Transmit LED OFF: inactive (HDLC flags or CBO marks) (2) DTE Transmit LED ON: active (HDLC frames or CBO spaces)') dfrap_status_dte_rx_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('offLED-inactive', 1), ('greenLED-rx-data-receiving', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDteRxLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDteRxLED.setDescription('Status of the DTE Rx Data LED. In Frame Relay mode, this LED is ON (green) when the WAN is receiving HDLC Flags and is OFF when HDLC flags are being received. In CBO mode, the LED is ON (green) for a SPACE and OFF for a MARK. (1) DTE Receive LED OFF: inactive (HDLC flags or CBO marks) (2) DTE Receive LED ON: active (HDLC frames or CBO spaces)') dfrap_status_dds_mode_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('greenLED-normal', 2), ('yellowLED-test-mode', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDdsModeLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsModeLED.setDescription('Status of the DDS Mode LED. (1) DDS Mode LED is green: normal data mode (2) DDS Mode LED is yellow: test mode') dfrap_status_dds_status_led = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('offLED-DDS-no-signal', 1), ('greenLED-normal', 2), ('yellowLED-remote-alarm', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusDdsStatusLED.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusDdsStatusLED.setDescription('Status of the DDS Status LED. (1) DDS Status LED is OFF: no signal received from WAN (2) DDS Status LED is green: normal (3) DDS Status LED is yellow: remote alarm') dfrap_status_all_le_ds = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 4, 4, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapStatusAllLEDs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapStatusAllLEDs.setDescription("Status of all six DFRAP LEDs, encoded in a string. 'F' off '5' green '0' yellow 'A' red '7' blinking green and off '3' blinking yellow and off 'B' blinking red and off '4' blinking green and yellow '6' blinking green and red '8' blinking yellow and red Positionally, the 6 letters are DTE Mode, DTE status, Dte Tx, Dte Rx, DDS Mode, and DDS Status. For example, '555550' would mean: DTE in normal mode, active status, transmitting and receiving and DDS normal with remote alarm.") dfrap_performance = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5)) dfrap_perf_mgmt_ip = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2)) dfrap_perf_mgmt_ip_if_stats_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1)) dfrap_perf_mgmt_ip_if_in_octets = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInOctets.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInOctets.setDescription('The count of all management octets received. Same as ifInOctets in mib-2.') dfrap_perf_mgmt_ip_if_in_errors = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFInErrors.setDescription('The count of management packets received that could not be delivered because of errors. Same as ifInErrors in mib-2.') dfrap_perf_mgmt_ip_if_out_octets = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOutOctets.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOutOctets.setDescription('The count of all management octets transmitted. Same as ifOutOctets in mib-2.') dfrap_perf_mgmt_ip_if_oper_status = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOperStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIFOperStatus.setDescription('The current operational state. Same as ifOperStatus in mib-2. (1) link up (2) link down (30 test') dfrap_perf_mgmt_ip_ip_stats_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2)) dfrap_perf_mgmt_ip_ip_in_rcv = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInRcv.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInRcv.setDescription('The count of all management datagrams received. Same as ipInReceives in mib-2.') dfrap_perf_mgmt_ip_ip_in_hdr_err = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInHdrErr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInHdrErr.setDescription('The count of management datagrams received that were discarded because of errors in their IP headers. Same as ipInHdrErrors in mib-2.') dfrap_perf_mgmt_ip_ip_in_addr_err = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInAddrErr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInAddrErr.setDescription('The count of management datagrams received that were discarded because unexpected or invalid IP addresses in their IP headers. Same as ipInAddrErrors in mib-2.') dfrap_perf_mgmt_ip_ip_in_prot_unk = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInProtUnk.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInProtUnk.setDescription('The count of management datagrams received that were discarded because of unsupported protocols. Same as ipInUnknownProtos in mib-2.') dfrap_perf_mgmt_ip_ip_in_dscrd = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDscrd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDscrd.setDescription('The count of management datagrams received that were discarded for reasons other than a problem with the datagram. Same as ipInDiscards in mib-2.') dfrap_perf_mgmt_ip_ip_in_dlvrs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDlvrs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPInDlvrs.setDescription('The count of management datagrams received that were delivered to IP client-protocols. Same as ipInDelivers in mib-2.') dfrap_perf_mgmt_ip_ip_out_rqst = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutRqst.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutRqst.setDescription('The count of all outgoing management datagrams originating in this node. Same as ipOutRequests in mib-2.') dfrap_perf_mgmt_ip_ip_out_dscrd = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutDscrd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutDscrd.setDescription('The count of outgoing management datagrams that were discarded for reasons other than a problem with the datagram. Same as ipOutDiscards in mib-2.') dfrap_perf_mgmt_ip_ip_out_no_rt = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 2, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutNoRt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpIPOutNoRt.setDescription('The count of outgoing management datagrams that were discarded because no route could be found for transmission. Same as ipOutNoRoutes in mib-2.') dfrap_perf_mgmt_ip_icmp_stats_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3)) dfrap_perf_mgmt_ip_icmp_in_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInMsgs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInMsgs.setDescription('The count of all management ICMP messages received. Same as icmpInMsgs in mib-2.') dfrap_perf_mgmt_ip_icmp_in_errors = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInErrors.setDescription('The count of management ICMP messages received with errors. Same as icmpInErrors in mib-2.') dfrap_perf_mgmt_ip_icmp_in_dest_unreachs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInDestUnreachs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInDestUnreachs.setDescription('The count of management ICMP Destination Unreachable messages received. Same as icmpInDestUnreachs in mib-2.') dfrap_perf_mgmt_ip_icmp_in_time_excds = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInTimeExcds.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInTimeExcds.setDescription('The count of management ICMP Time Exceeded messages received. Same as icmpInTimeExcds in mib-2.') dfrap_perf_mgmt_ip_icmp_in_parm_probs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInParmProbs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInParmProbs.setDescription('The count of management ICMP Parameter Problem messages received. Same as icmpInParmProbs in mib-2.') dfrap_perf_mgmt_ip_icmp_in_redirects = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInRedirects.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInRedirects.setDescription('The count of management ICMP Redirect messages received. Same as icmpInRedirects in mib-2.') dfrap_perf_mgmt_ip_icmp_in_echos = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchos.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchos.setDescription('The count of management ICMP Echo messages received. Same as icmpInEchos in mib-2.') dfrap_perf_mgmt_ip_icmp_in_echo_reps = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchoReps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPInEchoReps.setDescription('The count of management ICMP Echo Reply messages received. Same as icmpInEchoReps in mib-2.') dfrap_perf_mgmt_ip_icmp_out_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutMsgs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutMsgs.setDescription('The count of all outgoing management ICMP messages originating in this node. Same as icmpOutMsgs in mib-2.') dfrap_perf_mgmt_ip_icmp_out_errors = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutErrors.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutErrors.setDescription('The count of outgoing management ICMP messages not transmitted due problems found by the ICMP layer. which this entity did Same as icmpOutErrors in mib-2.') dfrap_perf_mgmt_ip_icmp_out_dest_unreachs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutDestUnreachs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutDestUnreachs.setDescription('The count of outgoing management ICMP Destination Unreachable messages. Same as icmpOutDestUnreachs in mib-2.') dfrap_perf_mgmt_ip_icmp_out_parm_probs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutParmProbs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutParmProbs.setDescription('The count of outgoing management ICMP Parameter Problem messages. Same as icmpOutParmProbs in mib-2.') dfrap_perf_mgmt_ip_icmp_out_redirects = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutRedirects.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutRedirects.setDescription('The count of outgoing management ICMP Redirect messages. Same as icmpOutRedirects in mib-2.') dfrap_perf_mgmt_ip_icmp_out_echos = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchos.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchos.setDescription('The count of management outgoing ICMP Echo messages. Same as icmpOutEchos in mib-2.') dfrap_perf_mgmt_ip_icmp_out_echo_reps = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 3, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchoReps.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpICMPOutEchoReps.setDescription('The count of management outgoing ICMP Echo Reply messages. Same as icmpOutEchoReps in mib-2.') dfrap_perf_mgmt_ip_udp_stats_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4)) dfrap_perf_mgmt_ip_udp_in_datagrams = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPInDatagrams.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPInDatagrams.setDescription('The count of all management UDP datagrams received. Same as udpInDatagrams in mib-2.') dfrap_perf_mgmt_ip_udp_out_datagrams = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPOutDatagrams.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPOutDatagrams.setDescription('The count of all management UDP datagrams sent. Same as udpOutDatagrams in mib-2.') dfrap_perf_mgmt_ip_udp_no_ports = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 4, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPNoPorts.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpUDPNoPorts.setDescription('The count of all management UDP datagrams received with no application at the destination port. Same as udpNoPorts in mib-2.') dfrap_perf_mgmt_ip_tcp_stats_table = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5)) dfrap_perf_mgmt_ip_tcp_active_opens = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPActiveOpens.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPActiveOpens.setDescription('The count of the times management TCP connections have made a direct state transition from CLOSED to SYN-SENT. Same as tcpActiveOpens in mib-2.') dfrap_perf_mgmt_ip_tcp_passive_opens = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPPassiveOpens.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPPassiveOpens.setDescription('The count of the times management TCP connections have made a direct state transition from CLOSED to SYN-RCVD. Same as tcpPassiveOpens in mib-2.') dfrap_perf_mgmt_ip_tcp_attempt_fails = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPAttemptFails.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPAttemptFails.setDescription('The count of the times management TCP connections have made a direct state transition from SYN-SENT or SYN-RCVD to CLOSED state, plus the count of the times TCP connections have made a direct state transition from SYN-RCVD to LISTEN. Same as tcpAttemptFails in mib-2.') dfrap_perf_mgmt_ip_tcp_curr_estab = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 4), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPCurrEstab.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPCurrEstab.setDescription('The count of the management TCP connections in state ESTABLISHED or CLOSE-WAIT. Same as tcpCurrEstab in mib-2.') dfrap_perf_mgmt_ip_tcp_in_segs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPInSegs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPInSegs.setDescription('The count of all the management segments received. Same as tcpInSegs in mib-2.') dfrap_perf_mgmt_ip_tcp_out_segs = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 2, 5, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPOutSegs.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfMgmtIpTCPOutSegs.setDescription('The count of all the management segments sent. Same as tcpOutSegs in mib-2.') dfrap_perf_thruput = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 3)) class Index(Integer32): pass dfrap_perf_thruput_per_intf_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1)) if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTable.setDescription('The throughput per interface table. These values are accumulated across all DLCIs.') dfrap_perf_thruput_per_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfThruputPerIntfIndex')) if mibBuilder.loadTexts: dfrapPerfThruputPerIntfEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfEntry.setDescription('An entry in the throughput per interface table.') dfrap_perf_thruput_per_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte', 1), ('dds', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfIndex.setDescription('Interface for which the statistics apply. (1) DTE interface (2) DDS interface') dfrap_perf_thruput_per_intf_rx_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxByteCnt.setDescription('The number of framed bytes that have been received on this interface.') dfrap_perf_thruput_per_intf_tx_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxByteCnt.setDescription('The number of framed bytes that have been transmit on this interface.') dfrap_perf_thruput_per_intf_rx_frame_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxFrameCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxFrameCnt.setDescription('The number of frames that have been received on this interface.') dfrap_perf_thruput_per_intf_tx_frame_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxFrameCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfTxFrameCnt.setDescription('The number of frames that have been transmit on this interface.') dfrap_perf_thruput_per_intf_rx_crc_err_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxCrcErrCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxCrcErrCnt.setDescription('The number of frames with CRC errors received on this interface.') dfrap_perf_thruput_per_intf_rx_abort_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxAbortCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxAbortCnt.setDescription('The number of aborted frames received on this interface.') dfrap_perf_thruput_per_intf_rx_bpv_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxBpvCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerIntfRxBpvCnt.setDescription('The number of BPV errors received on this interface.') dfrap_perf_thruput_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2)) if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTable.setDescription('Layer 2 statistics on a per-DLCI basis. Transmit direction is from DTE to WAN and receive direction is from the WAN towards the DTE.') dfrap_perf_thruput_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfThruputPerDlciIndex'), (0, 'DFRAP-MIB', 'dfrapPerfThruputPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEntry.setDescription('The Statistics for a particular Data Link Connection Management Interface (DLCI).') dfrap_perf_thruput_per_dlci_index = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 1), index()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciIndex.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciIndex.setDescription('This value must be in the range 1-3. Other than that, this value is ignored as all three will return the same result.') dfrap_perf_thruput_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrap_perf_thruput_per_dlci_create_time = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCreateTime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCreateTime.setDescription('The amount of time elapsed since this DLCI was first detected through traffic sensing or in an LMI message (in seconds).') dfrap_perf_thruput_per_dlci_change_time = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciChangeTime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciChangeTime.setDescription('The amount of elapsed time since this DLCI last changed state from active to inactive or vice versa (in seconds).') dfrap_perf_thruput_per_dlci_rx_byte = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxByte.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxByte.setDescription('The number of bytes that have been received from the WAN towards the DTE on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_tx_byte = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxByte.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxByte.setDescription('The number of bytes that have been transmit from the DTE towards the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_rx_frame = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFrame.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFrame.setDescription('The number of frames that have been received from the WAN towards to the DTE on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_tx_frame = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxFrame.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxFrame.setDescription('The number of frames that have been transmit from the DTE towards the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_rx_fecn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFecn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxFecn.setDescription('The number frames received from the WAN towards the DTE that have had the Forward Explict Congestion Notification (FECN) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_rx_becn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxBecn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxBecn.setDescription('The number frames received from the WAN towards the DTE that have had the Backward Explict Congestion Notification (BECN) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_rx_de = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxDe.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxDe.setDescription('The number frames received from the WAN towards the DTE that have had the Discard Eligibility (DE) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_tx_de = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxDe.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxDe.setDescription('The number frames transmit towards the WAN from the DTE that have had the Discard Eligibility (DE) bit set on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_rx_thruput = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxThruput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxThruput.setDescription('The number of bits/sec received from the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_tx_thruput = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxThruput.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxThruput.setDescription('The number of bits/sec transmit to the WAN on this DLCI. This count will include any frames that are terminated by the unit and do not pass through to the opposite interface (management and networking data).') dfrap_perf_thruput_per_dlci_cir = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCIR.setDescription('The Committed Information Rate (CIR) for this DLCI. This can come form one of three sources: From the LMI Full Status Response, configured by the user, or the DTE line rate (default).') dfrap_perf_thruput_per_dlci_cir_type = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('cir-acquired-from-lmi', 1), ('cir-configured-by-user', 2), ('cir-is-dte-datarate', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCirType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciCirType.setDescription('The source of the CIR value for this DLCI. (1) CIR acquired from LMI message. Will override user configured CIR. This feature is not supported by all Frame Relay DCE (switches). (2) CIR configured by user. (3) CIR is DTE Line Rate. Default if CIR is not set by one of the other methods.') dfrap_perf_thruput_per_dlci_uptime = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciUptime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciUptime.setDescription('The total amount of time that the DLCI has been up as reproted by the LMI Full Status Response (in seconds).') dfrap_perf_thruput_per_dlci_downtime = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 17), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciDowntime.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciDowntime.setDescription("The total amount of time that the DLCI has been declared down (in seconds). A DLCI is Down if it's explicitly declared Inactive through LMI or if it's missing from the LMI Full Status message or if there is no Full Status message at all.") dfrap_perf_thruput_per_dlci_pvc_state = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('pvc-active', 1), ('pvc-inactive', 2), ('pvc-unprovisioned', 3), ('pvc-not-in-lmi', 4), ('pvc-lmi-timeout', 5), ('pvc-undetermined', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciPvcState.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciPvcState.setDescription('The current state of the DLCI: (1) DLCI marked active in last full status LMI (2) DLCI in last full status LMI but not marked active (3) DLCI has never been seen in a full status LMI (4) DLCI was seen at least once in a full status LMI but was not in the last full status LMI (5) the full status LMI has timed out; all previously active or inactive DLCIs are changed to this state (6) DLCI was detected in the traffic stream and a full status LMI has not been received so the state cannot be determined yet. ') dfrap_perf_thruput_per_dlci_outage_count = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciOutageCount.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciOutageCount.setDescription('The number of times the smperPerfThruputPerDlciPvcState transitions from pvc-active or pvc-undetermined to one of the other (inactive) states. ') dfrap_perf_thruput_per_dlci_availability = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 21), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciAvailability.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciAvailability.setDescription('The measure of the percentage time the DLCI is available: UpTime/CreateTime or zero if CreateTime = 0. (in 1/1000 per cent; i.e. availability = 1000 converts to 1%). ') dfrap_perf_thruput_per_dlci_mtbso = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 22), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTBSO.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTBSO.setDescription('Mean Time Between Service Outages: UpTime/OutageCount or zero if OutageCount = 0 (in seconds). ') dfrap_perf_thruput_per_dlci_mttsr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 23), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTTSR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciMTTSR.setDescription('Mean Time to ServiceRestoral: DownTime/OutageCount or zero if OutageCount = 0 (in seconds). ') dfrap_perf_thruput_per_dlci_encap_type = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('encap-na', 1), ('encap-1490', 2), ('encap-cisco', 3), ('encap-annex-g', 4), ('encap-other', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEncapType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEncapType.setDescription('The encapsulation protocol seen in the last frame analyzed on this DLCI: (1) DLCI is the LMI DLCI or no frames have been analyzed (2) The encapsulation is per rfc1490 (3) The encapsulation is per Cisco proprietary (4) The encapsulation is per Annex-G (X.25 over frame relay) (5) The encapsulation is not one of the above. ') dfrap_perf_thruput_per_dlci_rx_utilization_status = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('clear', 1), ('over-threshold', 2), ('alarm', 3), ('alarm-under-threshold', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxUtilizationStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciRxUtilizationStatus.setDescription(' The status of the per-DLCI utilization alarm in the receive direction. (1) there is no alarm condition; utilization is under the configured CIR percentage threshold; if traps are enabled and the alarm had been previously triggered, a utilization alarm clear trap will be sent. (2) the utilization has been over the configured CIR percentage threshold for less than the configured duration. (3) the utilization has been over the configured CIR percentage threshold for more than the configured duration; if traps are enabled a utilization exceeded trap will be sent. (4) the utilization has been under the configured CIR percentage threshold for less than the configured duration. ') dfrap_perf_thruput_per_dlci_tx_utilization_status = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('clear', 1), ('over-threshold', 2), ('alarm', 3), ('alarm-under-threshold', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxUtilizationStatus.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciTxUtilizationStatus.setDescription(' The status of the per-DLCI utilization alarm in the transmit direction. (1) there is no alarm condition; utilization is under the configured CIR percentage threshold; if traps are enabled and the alarm had been previously triggered, a utilization alarm clear trap will be sent. (2) the utilization has been over the configured CIR percentage threshold for less than the configured duration. (3) the utilization has been over the configured CIR percentage threshold for more than the configured duration; if traps are enabled a utilization exceeded trap will be sent. (4) the utilization has been under the configured CIR percentage threshold for less than the configured duration. ') dfrap_perf_thruput_per_dlci_eir = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 2, 1, 27), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEIR.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputPerDlciEIR.setDescription('The Excess Information Rate. This is defined to be the maximum rate traffic is (supposed to be) allowed to burst to.') dfrap_perf_thruput_commands = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3)) dfrap_perf_thruput_cmd_clear_dte_stats = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDteStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDteStats.setDescription('Allows the user to zero out all the interface statistics in the DTE portion of the ThruputPerIntf statistics table. (1) Clear DTE interface statistics command.') dfrap_perf_thruput_cmd_clear_dds_stats = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDdsStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDdsStats.setDescription('Allows the user to zero out all the interface statistics in the DDS portion of the ThruputPerIntf statistics table. (1) Clear WAN interface statistics command.') dfrap_perf_thruput_cmd_clear_all_intf_stats = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllIntfStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllIntfStats.setDescription('Allows the user to zero out all the statistics in the ThruputPerIntf statistics table.') dfrap_perf_thruput_cmd_clear_dlci_stats = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDlciStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearDlciStats.setDescription('Allows the user to zero out all the per-DLCI statistics in the ThruputPerDlci statistics table and the the short term statistics tables. (1) Clear layer 2 per-DLCI statistics command.') dfrap_perf_thruput_cmd_clear_all_stats = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllStats.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdClearAllStats.setDescription('Allows the user to zero out all the statistics in the ThruputPerIntf and ThruputPerDlci statistics tables and in the short term statistics tables. (1) Clear all interface and layer 2 per-DLCI statistics.') dfrap_perf_thruput_cmd_remove_sts_dlci = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 6), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdRemoveStsDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdRemoveStsDlci.setDescription('Allows the user to remove a Dlci from the short term statistics tables.') dfrap_perf_thruput_cmd_replace_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7)) if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciTable.setDescription('Allows the user to replace one DLCI in the short-term statistics table with another one.') dfrap_perf_thruput_cmd_replace_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfThruputCmdReplaceDlciValue')) if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciEntry.setDescription('Allows the user to replace one DLCI in the short-term statistics table with another one.') dfrap_perf_thruput_cmd_replace_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciValue.setDescription('A Dlci that is in the short-term stats table. Index by this Dlci value to identify the statistics entry to be replaced.') dfrap_perf_thruput_cmd_replace_dlci_new_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 7, 1, 2), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciNewValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdReplaceDlciNewValue.setDescription('A Dlci that is to replace another in the short-term stats table. Index by this Dlci value to identify the statistics entry to do the replacing.') dfrap_perf_thruput_cmd_availability_sts_dlci_reset = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 8), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciReset.setDescription('Allows the user to reset the availability statistics of an individual Dlci within the short-term stats table.') dfrap_perf_thruput_cmd_availability_sts_dlci_reset_all = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 9), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAvailabilityStsDlciResetAll.setDescription("Allows the user to reset the availability statistics of all Dlci's within the short-term stats table.") dfrap_perf_thruput_cmd_counts_sts_dlci_reset = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 10), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciReset.setDescription('Allows the user to reset the count statistics of an individual Dlci within the short-term stats table.') dfrap_perf_thruput_cmd_counts_sts_dlci_reset_all = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 11), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdCountsStsDlciResetAll.setDescription("Allows the user to reset the count statistics of all Dlci's within the short-term stats table.") dfrap_perf_thruput_cmd_all_sts_dlci_reset = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 12), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciReset.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciReset.setDescription('Allows the user to reset both the count and availability statistics of an individual Dlci within the short-term stats table.') dfrap_perf_thruput_cmd_all_sts_dlci_reset_all = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 3, 3, 13), integer32()).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciResetAll.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfThruputCmdAllStsDlciResetAll.setDescription("Allows the user to reset both the count and the availability statistics of all Dlci's within the short-term stats table.") dfrap_perf_network_short_term = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 4)) dfrap_perf_netw_proto_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1)) if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTable.setDescription('The Short Term Statistics on the Network Layer protocol for each DLCI. These are protocol-based per-DLCI statistics. The Short Term model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval).') dfrap_perf_netw_proto_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfNetwProtoPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfNetwProtoPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciEntry.setDescription('The Network Layer Short Term Statistics for a particular DLCI. This table organizes statistics by high-layer network protocol.') dfrap_perf_netw_proto_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_netw_proto_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_netw_proto_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxTotal.setDescription('The total number of received Network Layer bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxTotal.setDescription('The total number of transmitted Network Layer bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_ip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIp.setDescription('The number of received IP bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_ip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIp.setDescription('The number of transmitted IP bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_ipx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxIpx.setDescription('The number of received IPX bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_ipx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxIpx.setDescription('The number of transmitted IPX bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_sna = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxSna.setDescription('The number of received SNA bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_sna = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxSna.setDescription('The number of transmitted SNA bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_arp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxArp.setDescription('The number of received ARP bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_arp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxArp.setDescription('The number of transmitted ARP bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_cisco = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxCisco.setDescription('The number of received Cisco protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_cisco = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxCisco.setDescription('The number of transmitted Cisco protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols that are not counted elsewhere in this table.') dfrap_perf_netw_proto_per_dlci_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols that are not counted elsewhere in this table.') dfrap_perf_netw_proto_per_dlci_rx_vnip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxVnip.setDescription('The number of received VNIP protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_vnip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxVnip.setDescription('The number of transmitted VNIP protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_rx_annex_g = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciRxAnnexG.setDescription('The number of received Annex G protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_per_dlci_tx_annex_g = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 1, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoPerDlciTxAnnexG.setDescription('The number of transmitted Annex G protocol bytes that have been counted on this DLCI.') dfrap_perf_netw_proto_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2)) if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTable.setDescription('The Short Term Statistics on Network Layer protocols summed across all DLCIs.') dfrap_perf_netw_proto_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfNetwProtoTotalInterval')) if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalEntry.setDescription('The Network Layer Short Term Statistics across all DLCIs.') dfrap_perf_netw_proto_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_netw_proto_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxTotal.setDescription('The total number of received Network Layer bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxTotal.setDescription('The total number of transmitted Network Layer bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_ip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIp.setDescription('The number of received IP bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_ip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIp.setDescription('The number of transmitted IP bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_ipx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxIpx.setDescription('The number of received IPX bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_ipx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxIpx.setDescription('The number of transmitted IPX bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_sna = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxSna.setDescription('The number of received SNA bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_sna = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxSna.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxSna.setDescription('The number of transmitted SNA bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_arp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxArp.setDescription('The number of received ARP bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_arp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxArp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxArp.setDescription('The number of transmitted ARP bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_cisco = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxCisco.setDescription('The number of received Cisco protocol bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_cisco = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxCisco.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxCisco.setDescription('The number of transmitted Cisco protocol bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols that are not counted elsewhere in this table.') dfrap_perf_netw_proto_total_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols that are not counted elsewhere in this table.') dfrap_perf_netw_proto_total_rx_vnip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxVnip.setDescription('The number of received VNIP protocol bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_vnip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxVnip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxVnip.setDescription('The number of transmitted VNIP protocol bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_rx_annex_g = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalRxAnnexG.setDescription('The number of received Annex G protocol bytes that have been counted across all DLCIs.') dfrap_perf_netw_proto_total_tx_annex_g = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 2, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxAnnexG.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwProtoTotalTxAnnexG.setDescription('The number of transmitted Annex G protocol bytes that have been counted across all DLCIs.') dfrap_perf_ip_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3)) if mibBuilder.loadTexts: dfrapPerfIpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTable.setDescription('The Short Term Statistics on the IP protocol for each DLCI.') dfrap_perf_ip_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIpPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfIpPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfIpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciEntry.setDescription('The IP Short Term Statistics for a particular DLCI.') dfrap_perf_ip_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_ip_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_ip_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTotal.setDescription('The total number of received IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTotal.setDescription('The total number of transmitted IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_rx_tcp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxTcp.setDescription('The number of received TCP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_tx_tcp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxTcp.setDescription('The number of transmitted TCP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_rx_udp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxUdp.setDescription('The number of received UDP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_tx_udp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxUdp.setDescription('The number of transmitted UDP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_rx_icmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIcmp.setDescription('The number of received ICMP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_tx_icmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIcmp.setDescription('The number of transmitted ICMP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over IP that are not counted elsewhere in this table.') dfrap_perf_ip_per_dlci_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over IP that are not counted elsewhere in this table.') dfrap_perf_ip_per_dlci_rx_igrp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciRxIgrp.setDescription('The number of received IGRP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_per_dlci_tx_igrp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 3, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpPerDlciTxIgrp.setDescription('The number of transmitted IGRP over IP bytes that have been counted on this DLCI.') dfrap_perf_ip_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4)) if mibBuilder.loadTexts: dfrapPerfIpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTable.setDescription('The Short Term Statistics on the IP protocol for each DLCI.') dfrap_perf_ip_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIpTotalInterval')) if mibBuilder.loadTexts: dfrapPerfIpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalEntry.setDescription('The IP Short Term Statistics across all DLCIs.') dfrap_perf_ip_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_ip_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTotal.setDescription('The total number of received IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTotal.setDescription('The total number of transmitted IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_rx_tcp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxTcp.setDescription('The number of received TCP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_tx_tcp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxTcp.setDescription('The number of transmitted TCP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_rx_udp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxUdp.setDescription('The number of received UDP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_tx_udp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxUdp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxUdp.setDescription('The number of transmitted UDP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_rx_icmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIcmp.setDescription('The number of received ICMP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_tx_icmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIcmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIcmp.setDescription('The number of transmitted ICMP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over IP that are not counted elsewhere in this table.') dfrap_perf_ip_total_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over IP that are not counted elsewhere in this table.') dfrap_perf_ip_total_rx_igrp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalRxIgrp.setDescription('The number of received IGRP over IP bytes that have been counted across all DLCIs.') dfrap_perf_ip_total_tx_igrp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 4, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIgrp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpTotalTxIgrp.setDescription('The number of transmitted IGRP over IP bytes that have been counted across all DLCIs.') dfrap_perf_icmp_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5)) if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTable.setDescription('Short Term Statistics on the ICMP protocol for each DLCI.') dfrap_perf_icmp_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIcmpPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfIcmpPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciEntry.setDescription('The ICMP Short Term Statistics for a particular DLCI.') dfrap_perf_icmp_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_icmp_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrap_perf_icmp_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTotal.setDescription('The total number of ICMP bytes that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTotal.setDescription('The total number of ICMP bytes that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_echo_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_echo_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_dest_unr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_dest_unr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_src_quench = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_src_quench = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_redirect = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_redirect = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_echo_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_echo_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_time_excd = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_time_excd = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_param_prob = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_param_prob = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_timestp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_timestp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_timestp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_timestp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_addr_mask_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_addr_mask_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 24), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_addr_mask_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 25), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_addr_mask_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 26), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_pkt_too_big = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 27), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_pkt_too_big = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 28), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_gm_query = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 29), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_gm_query = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 30), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_gm_report = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 31), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_gm_report = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 32), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_rx_gm_reduct = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 33), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciRxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted on this DLCI.') dfrap_perf_icmp_per_dlci_tx_gm_reduct = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 5, 1, 34), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpPerDlciTxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted on this DLCI.') dfrap_perf_icmp_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6)) if mibBuilder.loadTexts: dfrapPerfIcmpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTable.setDescription('Short Term Statistics on the ICMP protocol across all DLCIs.') dfrap_perf_icmp_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIcmpTotalInterval')) if mibBuilder.loadTexts: dfrapPerfIcmpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalEntry.setDescription('The ICMP Short Term Statistics across all DLCIs.') dfrap_perf_icmp_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_icmp_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTotal.setDescription('The total number of ICMP bytes that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTotal.setDescription('The total number of ICMP bytes that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_echo_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_echo_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoRep.setDescription('The number of bytes in ICMP ECHO repies that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_dest_unr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_dest_unr = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxDestUnr.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxDestUnr.setDescription('The number of bytes in ICMP destination unreachables that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_src_quench = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_src_quench = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxSrcQuench.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxSrcQuench.setDescription('The number of bytes in ICMP source quenches that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_redirect = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_redirect = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxRedirect.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxRedirect.setDescription('The number of bytes in ICMP redirects that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_echo_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_echo_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxEchoReq.setDescription('The number of bytes in ICMP ECHO requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_time_excd = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_time_excd = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimeExcd.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimeExcd.setDescription('The number of bytes in ICMP time exceededs that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_param_prob = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_param_prob = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxParamProb.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxParamProb.setDescription('The number of bytes in ICMP parameter problems that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_timestp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_timestp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpReq.setDescription('The number of bytes in ICMP timestamp requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_timestp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_timestp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxTimestpRep.setDescription('The number of bytes in ICMP timestamp replies that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_addr_mask_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_addr_mask_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 24), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskReq.setDescription('The number of bytes in ICMP address mask requests that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_addr_mask_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 25), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_addr_mask_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 26), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxAddrMaskRep.setDescription('The number of bytes in ICMP address mask replies that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_pkt_too_big = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 27), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_pkt_too_big = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 28), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxPktTooBig.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxPktTooBig.setDescription('The number of bytes in ICMP packet too bigs that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_gm_query = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 29), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_gm_query = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 30), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmQuery.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmQuery.setDescription('The number of bytes in ICMP group membership queries that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_gm_report = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 31), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_gm_report = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 32), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReport.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReport.setDescription('The number of bytes in ICMP group membership reports that have been counted across all DLCIs.') dfrap_perf_icmp_total_rx_gm_reduct = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 33), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalRxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted across all DLCIs.') dfrap_perf_icmp_total_tx_gm_reduct = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 6, 1, 34), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReduct.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIcmpTotalTxGmReduct.setDescription('The number of bytes in ICMP group membership reductions that have been counted across all DLCIs.') dfrap_perf_application_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7)) if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTable.setDescription('The Short Term Statistics on the Application protocol for each DLCI.') dfrap_perf_application_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfApplicationPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfApplicationPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciEntry.setDescription('The Application Short Term Statistics for a particular DLCI.') dfrap_perf_application_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_application_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_application_per_dlci_rx_snmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmp.setDescription('The number of received SNMP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_snmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmp.setDescription('The number of transmitted SNMP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_snmp_trap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSnmpTrap.setDescription('The number of received SNMP TRAP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_snmp_trap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSnmpTrap.setDescription('The number of transmitted SNMP TRAP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_http = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxHttp.setDescription('The number of received HTTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_http = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxHttp.setDescription('The number of transmitted HTTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_telnet = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTelnet.setDescription('The number of received Telnet bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_telnet = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTelnet.setDescription('The number of transmitted Telnet bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_smtp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxSmtp.setDescription('The number of received SMTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_smtp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxSmtp.setDescription('The number of transmitted SMTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_ftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxFtp.setDescription('The number of received FTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_ftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxFtp.setDescription('The number of transmitted FTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_tftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxTftp.setDescription('The number of received TFTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_tftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxTftp.setDescription('The number of transmitted TFTP bytes that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_custom1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom1.setDescription('The number of received bytes of User Defined Protocol #1 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_custom1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom1.setDescription('The number of transmitted bytes of User Defined Protocol #1 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_custom2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom2.setDescription('The number of received bytes of User Defined Protocol #2 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_custom2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom2.setDescription('The number of transmitted bytes of User Defined Protocol #2 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_custom3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom3.setDescription('The number of received bytes of User Defined Protocol #3 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_custom3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom3.setDescription('The number of transmitted bytes of User Defined Protocol #3 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_rx_custom4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciRxCustom4.setDescription('The number of received bytes of User Defined Protocol #4 that have been counted on this DLCI.') dfrap_perf_application_per_dlci_tx_custom4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 7, 1, 24), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationPerDlciTxCustom4.setDescription('The number of transmitted bytes of User Defined Protocol #4 that have been counted on this DLCI.') dfrap_perf_application_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8)) if mibBuilder.loadTexts: dfrapPerfApplicationTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTable.setDescription('The Short Term Statistics on the Application protocol across all DLCIs.') dfrap_perf_application_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfApplicationTotalInterval')) if mibBuilder.loadTexts: dfrapPerfApplicationTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalEntry.setDescription('The Application Short Term Statistics across all DLCIs..') dfrap_perf_application_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_application_total_rx_snmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmp.setDescription('The number of received SNMP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_snmp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmp.setDescription('The number of transmitted SNMP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_snmp_trap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSnmpTrap.setDescription('The number of received SNMP TRAP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_snmp_trap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmpTrap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSnmpTrap.setDescription('The number of transmitted SNMP TRAP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_http = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxHttp.setDescription('The number of received HTTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_http = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxHttp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxHttp.setDescription('The number of transmitted HTTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_telnet = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTelnet.setDescription('The number of received Telnet bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_telnet = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTelnet.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTelnet.setDescription('The number of transmitted Telnet bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_smtp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxSmtp.setDescription('The number of received SMTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_smtp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSmtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxSmtp.setDescription('The number of transmitted SMTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_ftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxFtp.setDescription('The number of received FTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_ftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxFtp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxFtp.setDescription('The number of transmitted FTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_tftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxTftp.setDescription('The number of received TFTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_tx_tftp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTftp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxTftp.setDescription('The number of transmitted TFTP bytes that have been counted across all DLCIs.') dfrap_perf_application_total_rx_custom1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom1.setDescription('The number of received bytes of User Defined Protocol #1 that have been counted across all DLCIs.') dfrap_perf_application_total_tx_custom1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom1.setDescription('The number of transmitted bytes of User Defined Protocol #1 that have been counted across all DLCIs.') dfrap_perf_application_total_rx_custom2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 19), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom2.setDescription('The number of received bytes of User Defined Protocol #2 that have been counted across all DLCIs.') dfrap_perf_application_total_tx_custom2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 20), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom2.setDescription('The number of transmitted bytes of User Defined Protocol #2 that have been counted across all DLCIs.') dfrap_perf_application_total_rx_custom3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 21), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom3.setDescription('The number of received bytes of User Defined Protocol #3 that have been counted across all DLCIs.') dfrap_perf_application_total_tx_custom3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 22), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom3.setDescription('The number of transmitted bytes of User Defined Protocol #3 that have been counted across all DLCIs.') dfrap_perf_application_total_rx_custom4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 23), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalRxCustom4.setDescription('The number of received bytes of User Defined Protocol #4 that have been counted across all DLCIs.') dfrap_perf_application_total_tx_custom4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 8, 1, 24), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfApplicationTotalTxCustom4.setDescription('The number of transmitted bytes of User Defined Protocol #4 that have been counted across all DLCIs.') dfrap_perf_routing_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9)) if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTable.setDescription('The Short Term Statistics on the Routing protocol for each DLCI.') dfrap_perf_routing_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfRoutingPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfRoutingPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciEntry.setDescription('The Routing Short Term Statistics for a particular DLCI.') dfrap_perf_routing_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_routing_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_routing_per_dlci_rx_ospf = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxOspf.setDescription('The number of received OSPF bytes that have been counted on this DLCI.') dfrap_perf_routing_per_dlci_tx_ospf = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxOspf.setDescription('The number of transmitted OSPF bytes that have been counted on this DLCI.') dfrap_perf_routing_per_dlci_rx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxRip.setDescription('The number of received RIP bytes that have been counted on this DLCI.') dfrap_perf_routing_per_dlci_tx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxRip.setDescription('The number of transmitted RIP bytes that have been counted on this DLCI.') dfrap_perf_routing_per_dlci_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciRxNetbios.setDescription('The number of received Netbios bytes that have been counted on this DLCI.') dfrap_perf_routing_per_dlci_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 9, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingPerDlciTxNetbios.setDescription('The number of transmitted Netbios bytes that have been counted on this DLCI.') dfrap_perf_routing_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10)) if mibBuilder.loadTexts: dfrapPerfRoutingTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTable.setDescription('The Short Term Statistics on the Routing protocol across all DLCIs.') dfrap_perf_routing_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfRoutingTotalInterval')) if mibBuilder.loadTexts: dfrapPerfRoutingTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalEntry.setDescription('The Routing Short Term Statistics across all DLCIs.') dfrap_perf_routing_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_routing_total_rx_ospf = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxOspf.setDescription('The number of received OSPF bytes that have been counted across all DLCIs.') dfrap_perf_routing_total_tx_ospf = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxOspf.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxOspf.setDescription('The number of transmitted OSPF bytes that have been counted across all DLCIs.') dfrap_perf_routing_total_rx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxRip.setDescription('The number of received RIP bytes that have been counted across all DLCIs.') dfrap_perf_routing_total_tx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxRip.setDescription('The number of transmitted RIP bytes that have been counted across all DLCIs.') dfrap_perf_routing_total_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalRxNetbios.setDescription('The number of received Netbios bytes that have been counted across all DLCIs.') dfrap_perf_routing_total_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 10, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfRoutingTotalTxNetbios.setDescription('The number of transmitted Netbios bytes that have been counted across all DLCIs.') dfrap_perf_ipx_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11)) if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTable.setDescription('Short Term Statistics on the IPX protocol for each DLCI.') dfrap_perf_ipx_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIpxPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfIpxPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfIpxPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciEntry.setDescription('The IPX Short Term Statistics for a particular DLCI.') dfrap_perf_ipx_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_ipx_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrap_perf_ipx_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxTotal.setDescription('The total number of IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxTotal.setDescription('The total number of IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_spx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSpx.setDescription('The number of SPX over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_spx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSpx.setDescription('The number of SPX over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_ncp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNcp.setDescription('The number of NCP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_ncp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNcp.setDescription('The number of NCP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxSap.setDescription('The number of SAP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxSap.setDescription('The number of SAP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxRip.setDescription('The number of RIP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxRip.setDescription('The number of RIP over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted on this DLCI.') dfrap_perf_ipx_per_dlci_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over IPX that are not counted elsewhere in this table.') dfrap_perf_ipx_per_dlci_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 11, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over IPX that are not counted elsewhere in this table.') dfrap_perf_ipx_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12)) if mibBuilder.loadTexts: dfrapPerfIpxTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTable.setDescription('Short Term Statistics on the IPX protocol across all DLCIs.') dfrap_perf_ipx_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfIpxTotalInterval')) if mibBuilder.loadTexts: dfrapPerfIpxTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalEntry.setDescription('The IPX Short Term Statistics across all DLCIs.') dfrap_perf_ipx_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_ipx_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxTotal.setDescription('The total number of IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxTotal.setDescription('The total number of IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_spx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSpx.setDescription('The number of SPX over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_spx = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSpx.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSpx.setDescription('The number of SPX over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_ncp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNcp.setDescription('The number of NCP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_ncp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNcp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNcp.setDescription('The number of NCP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxSap.setDescription('The number of SAP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_sap = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSap.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxSap.setDescription('The number of SAP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxRip.setDescription('The number of RIP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_rip = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxRip.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxRip.setDescription('The number of RIP over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxNetbios.setDescription('The number of NETBIOS over IPX bytes that have been counted across all DLCIs.') dfrap_perf_ipx_total_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over IPX that are not counted elsewhere in this table.') dfrap_perf_ipx_total_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 12, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfIpxTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over IPX that are not counted elsewhere in this table.') dfrap_perf_sna_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13)) if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTable.setDescription('Short Term Statistics on the SNA protocol for each DLCI.') dfrap_perf_sna_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfSnaPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfSnaPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfSnaPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciEntry.setDescription('The SNA Short Term Statistics for a particular DLCI.') dfrap_perf_sna_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_sna_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrap_perf_sna_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxTotal.setDescription('The total number of SNA bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxTotal.setDescription('The total number of SNA bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_rx_subarea = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxSubarea.setDescription('The number of SNA Subarea bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_tx_subarea = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxSubarea.setDescription('The number of SNA Subarea bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_rx_periph = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxPeriph.setDescription('The number of SNA Periph bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_tx_periph = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxPeriph.setDescription('The number of SNA Periph bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_rx_appn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxAppn.setDescription('The number of SNA Appn bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_tx_appn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxAppn.setDescription('The number of SNA Appn bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxNetbios.setDescription('The number of SNA Netbios bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxNetbios.setDescription('The number of SNA Netbios bytes that have been counted on this DLCI.') dfrap_perf_sna_per_dlci_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciRxOther.setDescription('The number of received bytes on this DLCI from protocols over SNA that are not counted elsewhere in this table.') dfrap_perf_sna_per_dlci_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 13, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from protocols over SNA that are not counted elsewhere in this table.') dfrap_perf_sna_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14)) if mibBuilder.loadTexts: dfrapPerfSnaTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTable.setDescription('Short Term Statistics on the SNA protocol across all DLCIs.') dfrap_perf_sna_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfSnaTotalInterval')) if mibBuilder.loadTexts: dfrapPerfSnaTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalEntry.setDescription('The SNA Short Term Statistics across all DLCIs.') dfrap_perf_sna_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_sna_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxTotal.setDescription('The total number of SNA bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxTotal.setDescription('The total number of SNA bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_rx_subarea = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxSubarea.setDescription('The number of SNA Subarea bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_tx_subarea = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxSubarea.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxSubarea.setDescription('The number of SNA Subarea bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_rx_periph = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxPeriph.setDescription('The number of SNA Periph bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_tx_periph = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxPeriph.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxPeriph.setDescription('The number of SNA Periph bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_rx_appn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxAppn.setDescription('The number of SNA Appn bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_tx_appn = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxAppn.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxAppn.setDescription('The number of SNA Appn bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_rx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxNetbios.setDescription('The number of SNA Netbios bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_tx_netbios = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxNetbios.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxNetbios.setDescription('The number of SNA Netbios bytes that have been counted across all DLCIs.') dfrap_perf_sna_total_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalRxOther.setDescription('The number of received bytes across all DLCIs from protocols over SNA that are not counted elsewhere in this table.') dfrap_perf_sna_total_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 14, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfSnaTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from protocols over SNA that are not counted elsewhere in this table.') dfrap_perf_arp_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15)) if mibBuilder.loadTexts: dfrapPerfArpPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTable.setDescription('Short Term Statistics on the ARP protocol for each DLCI.') dfrap_perf_arp_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfArpPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfArpPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfArpPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciEntry.setDescription('The ARP Short Term Statistics for a particular DLCI.') dfrap_perf_arp_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_arp_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciValue.setDescription('The DLCI value in which the Statistics are associated.') dfrap_perf_arp_per_dlci_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxTotal.setDescription('The total number of ARP bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxTotal.setDescription('The total number of ARP bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_arp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpReq.setDescription('The number of ARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_arp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpReq.setDescription('The number of ARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_arp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxArpRep.setDescription('The number of ARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_arp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxArpRep.setDescription('The number of ARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_rarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpReq.setDescription('The number of RARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_rarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpReq.setDescription('The number of RARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_rarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxRarpRep.setDescription('The number of RARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_rarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxRarpRep.setDescription('The number of RARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_inarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpReq.setDescription('The number of INARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_inarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpReq.setDescription('The number of INARP request bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_inarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxInarpRep.setDescription('The number of INARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_tx_inarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxInarpRep.setDescription('The number of INARP reply bytes that have been counted on this DLCI.') dfrap_perf_arp_per_dlci_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciRxOther.setDescription('The number of received bytes on this DLCI from ARP message types that are not counted elsewhere in this table.') dfrap_perf_arp_per_dlci_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 15, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpPerDlciTxOther.setDescription('The number of transmitted bytes on this DLCI from ARP message types that are not counted elsewhere in this table.') dfrap_perf_arp_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16)) if mibBuilder.loadTexts: dfrapPerfArpTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTable.setDescription('Short Term Statistics on the ARP protocol across all DLCIs.') dfrap_perf_arp_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfArpTotalInterval')) if mibBuilder.loadTexts: dfrapPerfArpTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalEntry.setDescription('The ARP Short Term Statistics across all DLCIs.') dfrap_perf_arp_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_arp_total_rx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxTotal.setDescription('The total number of ARP bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_total = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxTotal.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxTotal.setDescription('The total number of ARP bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_arp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpReq.setDescription('The number of ARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_arp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpReq.setDescription('The number of ARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_arp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxArpRep.setDescription('The number of ARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_arp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxArpRep.setDescription('The number of ARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_rarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpReq.setDescription('The number of RARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_rarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpReq.setDescription('The number of RARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_rarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxRarpRep.setDescription('The number of RARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_rarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxRarpRep.setDescription('The number of RARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_inarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpReq.setDescription('The number of INARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_inarp_req = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpReq.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpReq.setDescription('The number of INARP request bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_inarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxInarpRep.setDescription('The number of INARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_tx_inarp_rep = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 16), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpRep.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxInarpRep.setDescription('The number of INARP reply bytes that have been counted across all DLCIs.') dfrap_perf_arp_total_rx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalRxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalRxOther.setDescription('The number of received bytes across all DLCIs from ARP message types that are not counted elsewhere in this table.') dfrap_perf_arp_total_tx_other = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 16, 1, 18), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfArpTotalTxOther.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfArpTotalTxOther.setDescription('The number of transmitted bytes across all DLCIs from ARP message types that are not counted elsewhere in this table.') dfrap_perf_lmi_per_dlci_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17)) if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTable.setDescription('Short Term Statistics on LMI protocol for each DLCI.') dfrap_perf_lmi_per_dlci_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfLmiPerDlciInterval'), (0, 'DFRAP-MIB', 'dfrapPerfLmiPerDlciValue')) if mibBuilder.loadTexts: dfrapPerfLmiPerDlciEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciEntry.setDescription('The LMI Short Term Statistics for a particular DLCI.') dfrap_perf_lmi_per_dlci_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_lmi_per_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_lmi_per_dlci_rx_total_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxTotalByteCnt.setDescription('The total number of received LMI bytes counted on this DLCI.') dfrap_perf_lmi_per_dlci_tx_total_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxTotalByteCnt.setDescription('The total number of transmitted LMI bytes counted on this DLCI.') dfrap_perf_lmi_per_dlci_rx_livo_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoEnqByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrap_perf_lmi_per_dlci_tx_livo_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoEnqByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrap_perf_lmi_per_dlci_rx_livo_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxLivoStatByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrap_perf_lmi_per_dlci_tx_livo_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxLivoStatByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrap_perf_lmi_per_dlci_rx_full_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullEnqByteCnt.setDescription('The number of bytes received in Full Status enquiries on this DLCI.') dfrap_perf_lmi_per_dlci_tx_full_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullEnqByteCnt.setDescription('The number of bytes transmitted in Full Status enquiries on this DLCI.') dfrap_perf_lmi_per_dlci_rx_full_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxFullStatByteCnt.setDescription('The number of bytes received in Full Status messages on this DLCI.') dfrap_perf_lmi_per_dlci_tx_full_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxFullStatByteCnt.setDescription('The number of bytes transmitted in Full Status messages on this DLCI.') dfrap_perf_lmi_per_dlci_rx_other_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciRxOtherByteCnt.setDescription('The number of received bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrap_perf_lmi_per_dlci_tx_other_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 17, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiPerDlciTxOtherByteCnt.setDescription('The number of transmitted bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrap_perf_lmi_total_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18)) if mibBuilder.loadTexts: dfrapPerfLmiTotalTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTable.setDescription('Short Term Statistics on LMI protocol across all DLCIs.') dfrap_perf_lmi_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfLmiTotalInterval')) if mibBuilder.loadTexts: dfrapPerfLmiTotalEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalEntry.setDescription('The LMI Short Term Statistics across all DLCIs.') dfrap_perf_lmi_total_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_lmi_total_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalDlciValue.setDescription('OBSOLETE.') dfrap_perf_lmi_total_rx_total_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxTotalByteCnt.setDescription('The total number of received LMI bytes counted on this DLCI.') dfrap_perf_lmi_total_tx_total_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxTotalByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxTotalByteCnt.setDescription('The total number of transmitted LMI bytes counted on this DLCI.') dfrap_perf_lmi_total_rx_livo_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoEnqByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrap_perf_lmi_total_tx_livo_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoEnqByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) enquiries on this DLCI.') dfrap_perf_lmi_total_rx_livo_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxLivoStatByteCnt.setDescription('The number of bytes received in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrap_perf_lmi_total_tx_livo_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxLivoStatByteCnt.setDescription('The number of bytes transmitted in Link Integrity Verification Only (LIVO) statuses on this DLCI.') dfrap_perf_lmi_total_rx_full_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullEnqByteCnt.setDescription('The number of bytes received in Full Status enquiries on this DLCI.') dfrap_perf_lmi_total_tx_full_enq_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullEnqByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullEnqByteCnt.setDescription('The number of bytes transmitted in Full Status enquiries on this DLCI.') dfrap_perf_lmi_total_rx_full_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxFullStatByteCnt.setDescription('The number of bytes received in Full Status messages on this DLCI.') dfrap_perf_lmi_total_tx_full_stat_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullStatByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxFullStatByteCnt.setDescription('The number of bytes transmitted in Full Status messages on this DLCI.') dfrap_perf_lmi_total_rx_other_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalRxOtherByteCnt.setDescription('The number of received bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrap_perf_lmi_total_tx_other_byte_cnt = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 4, 18, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxOtherByteCnt.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfLmiTotalTxOtherByteCnt.setDescription('The number of transmitted bytes on this DLCI from LMI protocols that are not counted elsewhere (other than Total) in this table.') dfrap_perf_network_long_term = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 5)) dfrap_perf_netw_long_term_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1)) if mibBuilder.loadTexts: dfrapPerfNetwLongTermTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermTable.setDescription('Long Term Statistics by DLCI, protocol, and interval. LT statistics are collected on a configurable set of DLCIs and protocols. There are 96 intervals maintained each with a duration defined by the Long Term Timer. Interval 96 is the current window and Interval 1 is furthest back in time (96xLT Timer seconds ago). (CfgFrPerfTimersLTInterval).') dfrap_perf_netw_long_term_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfNetwLongTermDlci'), (0, 'DFRAP-MIB', 'dfrapPerfNetwLongTermProtocol'), (0, 'DFRAP-MIB', 'dfrapPerfNetwLongTermInterval')) if mibBuilder.loadTexts: dfrapPerfNetwLongTermEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermEntry.setDescription('The Long Term Statistic for a particular DLCI, protocol and interval.') dfrap_perf_netw_long_term_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermDlci.setDescription('The DLCI monitored for the statistics. The Long Term DLCI filter must first be configured (CfgFrPerfLTDlciFilterEntry).') dfrap_perf_netw_long_term_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 21, 22, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172))).clone(namedValues=named_values(('ip-tx-bc', 1), ('ip-rx-bc', 2), ('tcp-ip-tx-bc', 3), ('tcp-ip-rx-bc', 4), ('ftp-tcp-ip-tx-bc', 5), ('ftp-tcp-ip-rx-bc', 6), ('telnet-tcp-ip-tx-bc', 7), ('telnet-tcp-ip-rx-bc', 8), ('smtp-tcp-ip-tx-bc', 9), ('smtp-tcp-ip-rx-bc', 10), ('http-tcp-ip-tx-bc', 13), ('http-tcp-ip-rx-bc', 14), ('netbios-ssn-tcp-ip-tx-bc', 15), ('netbios-ssn-tcp-ip-rx-bc', 16), ('udp-ip-tx-bc', 21), ('udp-ip-rx-bc', 22), ('tftp-udp-ip-tx-bc', 29), ('tftp-udp-ip-rx-bc', 30), ('netbios-dgm-udp-ip-tx-bc', 33), ('netbios-dgm-udp-ip-rx-bc', 34), ('snmp-udp-ip-tx-bc', 35), ('snmp-udp-ip-rx-bc', 36), ('snmptrap-udp-ip-tx-bc', 37), ('snmptrap-udp-ip-rx-bc', 38), ('rip-udp-ip-tx-bc', 39), ('rip-udp-ip-rx-bc', 40), ('icmp-ip-tx-bc', 41), ('icmp-ip-rx-bc', 42), ('echorep-icmp-ip-tx-bc', 43), ('echorep-icmp-ip-rx-bc', 44), ('dest-unr-icmp-ip-tx-bc', 45), ('dest-unr-icmp-ip-rx-bc', 46), ('src-quench-icmp-ip-tx-bc', 47), ('src-quench-icmp-ip-rx-bc', 48), ('redirect-icmp-ip-tx-bc', 49), ('redirect-icmp-ip-rx-bc', 50), ('echoreq-icmp-ip-tx-bc', 51), ('echoreq-icmp-ip-rx-bc', 52), ('time-excd-icmp-ip-tx-bc', 53), ('time-excd-icmp-ip-rx-bc', 54), ('param-prob-icmp-ip-tx-bc', 55), ('param-prob-icmp-ip-rx-bc', 56), ('timestamp-req-icmp-ip-tx-bc', 57), ('timestamp-req-icmp-ip-rx-bc', 58), ('timestamp-rep-icmp-ip-tx-bc', 59), ('timestamp-rep-icmp-ip-rx-bc', 60), ('addr-mask-req-icmp-ip-tx-bc', 61), ('addr-mask-req-icmp-ip-rx-bc', 62), ('addr-mask-rep-icmp-ip-tx-bc', 63), ('addr-mask-rep-icmp-ip-rx-bc', 64), ('pkt-too-big-icmp-ip-tx-bc', 65), ('pkt-too-big-icmp-ip-rx-bc', 66), ('gp-mem-query-icmp-ip-tx-bc', 67), ('gp-mem-query-icmp-ip-rx-bc', 68), ('gp-mem-report-icmp-ip-tx-bc', 69), ('gp-mem-report-icmp-ip-rx-bc', 70), ('gp-mem-reduct-icmp-ip-tx-bc', 71), ('gp-mem-reduct-icmp-ip-rx-bc', 72), ('ospf-ip-tx-bc', 73), ('ospf-ip-rx-bc', 74), ('other-ip-tx-bc', 75), ('other-ip-rx-bc', 76), ('ipx-tx-bc', 77), ('ipx-rx-bc', 78), ('spx-ipx-tx-bc', 79), ('spx-ipx-rx-bc', 80), ('ncp-ipx-tx-bc', 81), ('ncp-ipx-rx-bc', 82), ('sap-ipx-tx-bc', 83), ('sap-ipx-rx-bc', 84), ('rip-ipx-tx-bc', 85), ('rip-ipx-rx-bc', 86), ('netbios-ipx-tx-bc', 87), ('netbios-ipx-rx-bc', 88), ('other-ipx-tx-bc', 89), ('other-ipx-rx-bc', 90), ('arp-tx-bc', 91), ('arp-rx-bc', 92), ('arp-req-tx-bc', 93), ('arp-req-rx-bc', 94), ('arp-rep-tx-bc', 95), ('arp-rep-rx-bc', 96), ('rarp-req-tx-bc', 97), ('rarp-req-rx-bc', 98), ('rarp-rep-tx-bc', 99), ('rarp-rep-rx-bc', 100), ('inarp-req-tx-bc', 101), ('inarp-req-rx-bc', 102), ('inarp-rep-tx-bc', 103), ('inarp-rep-rx-bc', 104), ('sna-tx-bc', 105), ('sna-rx-bc', 106), ('sna-subarea-tx-bc', 107), ('sna-subarea-rx-bc', 108), ('sna-periph-tx-bc', 109), ('sna-periph-rx-bc', 110), ('sna-appn-tx-bc', 111), ('sna-appn-rx-bc', 112), ('sna-netbios-tx-bc', 113), ('sna-netbios-rx-bc', 114), ('cisco-tx-bc', 115), ('cisco-rx-bc', 116), ('other-tx-bc', 117), ('other-rx-bc', 118), ('user-defined-1-tx-bc', 119), ('user-defined-1-rx-bc', 120), ('user-defined-2-tx-bc', 121), ('user-defined-2-rx-bc', 122), ('user-defined-3-tx-bc', 123), ('user-defined-3-rx-bc', 124), ('user-defined-4-tx-bc', 125), ('user-defined-4-rx-bc', 126), ('thru-byte-tx-bc', 127), ('thru-byte-rx-bc', 128), ('thru-frame-tx-c', 129), ('thru-frame-rx-c', 130), ('thru-fecn-tx-c', 131), ('thru-fecn-rx-c', 132), ('thru-becn-tx-c', 133), ('thru-becn-rx-c', 134), ('thru-de-tx-c', 135), ('thru-de-rx-c', 136), ('cir-percent-range1-tx-bc', 137), ('cir-percent-range1-rx-bc', 138), ('cir-percent-range2-tx-bc', 139), ('cir-percent-range2-rx-bc', 140), ('cir-percent-range3-tx-bc', 141), ('cir-percent-range3-rx-bc', 142), ('cir-percent-range4-tx-bc', 143), ('cir-percent-range4-rx-bc', 144), ('cir-percent-range5-tx-bc', 145), ('cir-percent-range5-rx-bc', 146), ('cir-percent-range6-tx-bc', 147), ('cir-percent-range6-rx-bc', 148), ('cir-percent-range7-tx-bc', 149), ('cir-percent-range7-rx-bc', 150), ('cir-percent-range8-tx-bc', 151), ('cir-percent-range8-rx-bc', 152), ('lmi-tx-bc', 153), ('lmi-rx-bc', 154), ('lmi-livo-enq-tx-bc', 155), ('lmi-livo-enq-rx-bc', 156), ('lmi-livo-stat-tx-bc', 157), ('lmi-livo-stat-rx-bc', 158), ('lmi-full-enq-tx-bc', 159), ('lmi-full-enq-rx-bc', 160), ('lmi-full-stat-tx-bc', 161), ('lmi-full-stat-rx-bc', 162), ('lmi-other-tx-bc', 163), ('lmi-other-rx-bc', 164), ('total-uptime', 165), ('total-downtime', 166), ('igrp-tx-bc', 167), ('igrp-rx-bc', 168), ('vnip-tx-bc', 169), ('vnip-rx-bc', 170), ('annex-g-tx-bc', 171), ('annex-g-rx-bc', 172)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermProtocol.setDescription('The type of protocol monitored for the statistics.') dfrap_perf_netw_long_term_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermInterval.setDescription('The time interval in which the value was collected. Long Term statistis are maintained for 96 intervals with the interval duration defined by (CfgFrPerfTimersLTInterval).') dfrap_perf_netw_long_term_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 1, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermValue.setDescription('The statistic collected for the given DLCI and protocol and within the given time interval.') dfrap_perf_netw_long_term_alt_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2)) if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltTable.setDescription('This is an alternative method to access the database of long term statistics. The statistics are indexed by DLCI and protocol and are returned in an OCTETSTRING.') dfrap_perf_netw_long_term_alt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfNetwLongTermAltDlci'), (0, 'DFRAP-MIB', 'dfrapPerfNetwLongTermAltProtocol')) if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltEntry.setDescription('The Long Term Statistic for a particular DLCI and protocol.') dfrap_perf_netw_long_term_alt_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltDlci.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltDlci.setDescription('The DLCI monitored for the statistics.') dfrap_perf_netw_long_term_alt_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 13, 14, 15, 16, 21, 22, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172))).clone(namedValues=named_values(('ip-tx-bc', 1), ('ip-rx-bc', 2), ('tcp-ip-tx-bc', 3), ('tcp-ip-rx-bc', 4), ('ftp-tcp-ip-tx-bc', 5), ('ftp-tcp-ip-rx-bc', 6), ('telnet-tcp-ip-tx-bc', 7), ('telnet-tcp-ip-rx-bc', 8), ('smtp-tcp-ip-tx-bc', 9), ('smtp-tcp-ip-rx-bc', 10), ('http-tcp-ip-tx-bc', 13), ('http-tcp-ip-rx-bc', 14), ('netbios-ssn-tcp-ip-tx-bc', 15), ('netbios-ssn-tcp-ip-rx-bc', 16), ('udp-ip-tx-bc', 21), ('udp-ip-rx-bc', 22), ('tftp-udp-ip-tx-bc', 29), ('tftp-udp-ip-rx-bc', 30), ('netbios-dgm-udp-ip-tx-bc', 33), ('netbios-dgm-udp-ip-rx-bc', 34), ('snmp-udp-ip-tx-bc', 35), ('snmp-udp-ip-rx-bc', 36), ('snmptrap-udp-ip-tx-bc', 37), ('snmptrap-udp-ip-rx-bc', 38), ('rip-udp-ip-tx-bc', 39), ('rip-udp-ip-rx-bc', 40), ('icmp-ip-tx-bc', 41), ('icmp-ip-rx-bc', 42), ('echorep-icmp-ip-tx-bc', 43), ('echorep-icmp-ip-rx-bc', 44), ('dest-unr-icmp-ip-tx-bc', 45), ('dest-unr-icmp-ip-rx-bc', 46), ('src-quench-icmp-ip-tx-bc', 47), ('src-quench-icmp-ip-rx-bc', 48), ('redirect-icmp-ip-tx-bc', 49), ('redirect-icmp-ip-rx-bc', 50), ('echoreq-icmp-ip-tx-bc', 51), ('echoreq-icmp-ip-rx-bc', 52), ('time-excd-icmp-ip-tx-bc', 53), ('time-excd-icmp-ip-rx-bc', 54), ('param-prob-icmp-ip-tx-bc', 55), ('param-prob-icmp-ip-rx-bc', 56), ('timestamp-req-icmp-ip-tx-bc', 57), ('timestamp-req-icmp-ip-rx-bc', 58), ('timestamp-rep-icmp-ip-tx-bc', 59), ('timestamp-rep-icmp-ip-rx-bc', 60), ('addr-mask-req-icmp-ip-tx-bc', 61), ('addr-mask-req-icmp-ip-rx-bc', 62), ('addr-mask-rep-icmp-ip-tx-bc', 63), ('addr-mask-rep-icmp-ip-rx-bc', 64), ('pkt-too-big-icmp-ip-tx-bc', 65), ('pkt-too-big-icmp-ip-rx-bc', 66), ('gp-mem-query-icmp-ip-tx-bc', 67), ('gp-mem-query-icmp-ip-rx-bc', 68), ('gp-mem-report-icmp-ip-tx-bc', 69), ('gp-mem-report-icmp-ip-rx-bc', 70), ('gp-mem-reduct-icmp-ip-tx-bc', 71), ('gp-mem-reduct-icmp-ip-rx-bc', 72), ('ospf-ip-tx-bc', 73), ('ospf-ip-rx-bc', 74), ('other-ip-tx-bc', 75), ('other-ip-rx-bc', 76), ('ipx-tx-bc', 77), ('ipx-rx-bc', 78), ('spx-ipx-tx-bc', 79), ('spx-ipx-rx-bc', 80), ('ncp-ipx-tx-bc', 81), ('ncp-ipx-rx-bc', 82), ('sap-ipx-tx-bc', 83), ('sap-ipx-rx-bc', 84), ('rip-ipx-tx-bc', 85), ('rip-ipx-rx-bc', 86), ('netbios-ipx-tx-bc', 87), ('netbios-ipx-rx-bc', 88), ('other-ipx-tx-bc', 89), ('other-ipx-rx-bc', 90), ('arp-tx-bc', 91), ('arp-rx-bc', 92), ('arp-req-tx-bc', 93), ('arp-req-rx-bc', 94), ('arp-rep-tx-bc', 95), ('arp-rep-rx-bc', 96), ('rarp-req-tx-bc', 97), ('rarp-req-rx-bc', 98), ('rarp-rep-tx-bc', 99), ('rarp-rep-rx-bc', 100), ('inarp-req-tx-bc', 101), ('inarp-req-rx-bc', 102), ('inarp-rep-tx-bc', 103), ('inarp-rep-rx-bc', 104), ('sna-tx-bc', 105), ('sna-rx-bc', 106), ('sna-subarea-tx-bc', 107), ('sna-subarea-rx-bc', 108), ('sna-periph-tx-bc', 109), ('sna-periph-rx-bc', 110), ('sna-appn-tx-bc', 111), ('sna-appn-rx-bc', 112), ('sna-netbios-tx-bc', 113), ('sna-netbios-rx-bc', 114), ('cisco-tx-bc', 115), ('cisco-rx-bc', 116), ('other-tx-bc', 117), ('other-rx-bc', 118), ('user-defined-1-tx-bc', 119), ('user-defined-1-rx-bc', 120), ('user-defined-2-tx-bc', 121), ('user-defined-2-rx-bc', 122), ('user-defined-3-tx-bc', 123), ('user-defined-3-rx-bc', 124), ('user-defined-4-tx-bc', 125), ('user-defined-4-rx-bc', 126), ('thru-byte-tx-bc', 127), ('thru-byte-rx-bc', 128), ('thru-frame-tx-c', 129), ('thru-frame-rx-c', 130), ('thru-fecn-tx-c', 131), ('thru-fecn-rx-c', 132), ('thru-becn-tx-c', 133), ('thru-becn-rx-c', 134), ('thru-de-tx-c', 135), ('thru-de-rx-c', 136), ('cir-percent-range1-tx-bc', 137), ('cir-percent-range1-rx-bc', 138), ('cir-percent-range2-tx-bc', 139), ('cir-percent-range2-rx-bc', 140), ('cir-percent-range3-tx-bc', 141), ('cir-percent-range3-rx-bc', 142), ('cir-percent-range4-tx-bc', 143), ('cir-percent-range4-rx-bc', 144), ('cir-percent-range5-tx-bc', 145), ('cir-percent-range5-rx-bc', 146), ('cir-percent-range6-tx-bc', 147), ('cir-percent-range6-rx-bc', 148), ('cir-percent-range7-tx-bc', 149), ('cir-percent-range7-rx-bc', 150), ('cir-percent-range8-tx-bc', 151), ('cir-percent-range8-rx-bc', 152), ('lmi-tx-bc', 153), ('lmi-rx-bc', 154), ('lmi-livo-enq-tx-bc', 155), ('lmi-livo-enq-rx-bc', 156), ('lmi-livo-stat-tx-bc', 157), ('lmi-livo-stat-rx-bc', 158), ('lmi-full-enq-tx-bc', 159), ('lmi-full-enq-rx-bc', 160), ('lmi-full-stat-tx-bc', 161), ('lmi-full-stat-rx-bc', 162), ('lmi-other-tx-bc', 163), ('lmi-other-rx-bc', 164), ('total-uptime', 165), ('total-downtime', 166), ('igrp-tx-bc', 167), ('igrp-rx-bc', 168), ('vnip-tx-bc', 169), ('vnip-rx-bc', 170), ('annex-g-tx-bc', 171), ('annex-g-rx-bc', 172)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltProtocol.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltProtocol.setDescription('The protocol monitored for the statistics.') dfrap_perf_netw_long_term_alt_array = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 2, 1, 3), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltArray.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetwLongTermAltArray.setDescription('The statistic collected for the given DLCI and protocol.') dfrap_perf_network_long_term_commands = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 3)) dfrap_perf_network_long_term_cmd_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 5, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear-statistics', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapPerfNetworkLongTermCmdClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfNetworkLongTermCmdClear.setDescription('Allows the user to zero out all the statistics in the long term statistics tables. (1) Clear all Long Term statistics') dfrap_perf_cir_percent_utilization = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 6)) dfrap_perf_cir_percent_utilization_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1)) if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationTable.setDescription('Short Term Statistics on the percentage of CIR used on each DLCI. Each short term statistics interval, the count of bytes transmitted and received is used to calculate the percentage of CIR used. The byte count is then added to the appropriate bucket for the CIR percentage range.') dfrap_perf_cir_percent_utilization_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfCirPercentUtilizationInterval'), (0, 'DFRAP-MIB', 'dfrapPerfCirPercentUtilizationDlciValue')) if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationEntry.setDescription('The CIR Percentage Statistics for a particular DLCI. These calculations are done at the completion of each Short Term interval.') dfrap_perf_cir_percent_utilization_interval = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('current-interval', 1), ('previous-interval', 2), ('cumulative-counts', 3)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationInterval.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationInterval.setDescription('The Short Term statistics model maintains three intervals: current, previous, and cumulative totals. Interval duration is defined by the Short Term Timer (CfgFrPerfTimersSTInterval). (1) Currently active short term interval (2) Previously completed short term interval (3) Cumulative total since last cleared.') dfrap_perf_cir_percent_utilization_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirPercentUtilizationDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_cir_rx_percent_utilization_range1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 21), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange1.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 1 (0% of CIR).') dfrap_perf_cir_rx_percent_utilization_range2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 22), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange2.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 2 (1-10% of CIR).') dfrap_perf_cir_rx_percent_utilization_range3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 23), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange3.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 3 (11-20% of CIR).') dfrap_perf_cir_rx_percent_utilization_range4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 24), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange4.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 4 (21-50% of CIR).') dfrap_perf_cir_rx_percent_utilization_range5 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 25), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange5.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange5.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 5 (51-80% of CIR).') dfrap_perf_cir_rx_percent_utilization_range6 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 26), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange6.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange6.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 6 (81-100% of CIR).') dfrap_perf_cir_rx_percent_utilization_range7 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 27), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange7.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange7.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 7 (101-150% of CIR).') dfrap_perf_cir_rx_percent_utilization_range8 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 28), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange8.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirRxPercentUtilizationRange8.setDescription('The number of received bytes counted on this DLCI during intervals where the percentage of CIR was in range 8 (> 150% of CIR).') dfrap_perf_cir_tx_percent_utilization_range1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 41), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange1.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 1 (0% of CIR).') dfrap_perf_cir_tx_percent_utilization_range2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 42), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange2.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 2 (1-10% of CIR).') dfrap_perf_cir_tx_percent_utilization_range3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 43), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange3.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 3 (11-20% of CIR).') dfrap_perf_cir_tx_percent_utilization_range4 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 44), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange4.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange4.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 4 (21-50% of CIR).') dfrap_perf_cir_tx_percent_utilization_range5 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 45), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange5.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange5.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 5 (51-80% of CIR).') dfrap_perf_cir_tx_percent_utilization_range6 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 46), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange6.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange6.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 6 (81-100% o0f CIR).') dfrap_perf_cir_tx_percent_utilization_range7 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 47), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange7.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange7.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 7 (101-150% of CIR).') dfrap_perf_cir_tx_percent_utilization_range8 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 1, 1, 48), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange8.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCirTxPercentUtilizationRange8.setDescription('The number of transmitted bytes counted on this DLCI during intervals where the percentage of CIR was in range 8 (> 150% of CIR).') dfrap_perf_current_per_dlci_utilization_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2)) if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationTable.setDescription('The current measurement of utilization as a percentage of CIR on each DLCI. Each short term statistics interval, the count of bytes transmitted and received is used to calculate the percentage of CIR used.') dfrap_perf_current_per_dlci_utilization_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapPerfCurrentPerDlciUtilizationDlciValue')) if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationEntry.setDescription('The utilization statistics for a particular DLCI.') dfrap_perf_current_per_dlci_utilization_dlci_value = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationDlciValue.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciUtilizationDlciValue.setDescription('The DLCI value with which the Statistics are associated.') dfrap_perf_current_per_dlci_rx_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciRxUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciRxUtilization.setDescription('The receive direction utilization as a percentage of CIR.') dfrap_perf_current_per_dlci_tx_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciTxUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciTxUtilization.setDescription('The transmit direction utilization as a percentage of CIR.') dfrap_perf_current_per_dlci_aggregate_utilization = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 2, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciAggregateUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentPerDlciAggregateUtilization.setDescription('The aggregate utilization, the average of the receive and transmit utilization as a percentage of CIR.') dfrap_perf_current_unit_utilization = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3)) dfrap_perf_current_dte_utilization = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentDteUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentDteUtilization.setDescription('The DTE interface utilization as a percentage of line rate.') dfrap_perf_current_wan_utilization = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentWanUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentWanUtilization.setDescription('The WAN interface utilization as a percentage of line rate.') dfrap_perf_current_aggregate_utilization = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 5, 6, 3, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPerfCurrentAggregateUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPerfCurrentAggregateUtilization.setDescription('The aggregate utilization of the unit, the average of the DTE and WAN interface utilizations as a percentage of line rate.') dfrap_event_trap_log = mib_identifier((1, 3, 6, 1, 4, 1, 485, 6, 10)) dfrap_event_trap_log_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 10, 1)) if mibBuilder.loadTexts: dfrapEventTrapLogTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogTable.setDescription('This table contains the Event/Trap log. The entries are indexed by sequence number.') dfrap_event_trap_log_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapEventTrapLogSeqNum')) if mibBuilder.loadTexts: dfrapEventTrapLogEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogEntry.setDescription('The event record for a particular event.') dfrap_event_trap_log_seq_num = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogSeqNum.setDescription('The sequence number associated with an event record.') dfrap_event_trap_log_generic_event = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogGenericEvent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogGenericEvent.setDescription('The SNMP generic trap or event number.') dfrap_event_trap_log_specific_event = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogSpecificEvent.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogSpecificEvent.setDescription('The SNMP specific trap or event sub-identifier number.') dfrap_event_trap_log_time_stamp = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 4), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogTimeStamp.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogTimeStamp.setDescription('The SNMP trap timestamp.') dfrap_event_trap_log_var_bind1 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind1.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind1.setDescription('Variable Binding 1 for this SNMP Trap event.') dfrap_event_trap_log_var_bind2 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind2.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind2.setDescription('Variable Binding 2 for this SNMP Trap event.') dfrap_event_trap_log_var_bind3 = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 1, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind3.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventTrapLogVarBind3.setDescription('Variable Binding 3 for this SNMP Trap event.') dfrap_event_log_alt_table = mib_table((1, 3, 6, 1, 4, 1, 485, 6, 10, 2)) if mibBuilder.loadTexts: dfrapEventLogAltTable.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltTable.setDescription("This is an alternative method to access the database of the Event/Trap Log. The database is indexed by Sequence Number and Event/Trap log's are returned in an OCTETSTRING.") dfrap_event_log_alt_entry = mib_table_row((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1)).setIndexNames((0, 'DFRAP-MIB', 'dfrapEventLogAltSeqNum')) if mibBuilder.loadTexts: dfrapEventLogAltEntry.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltEntry.setDescription('The Event/Trap Log for a particular sequence number.') dfrap_event_log_alt_seq_num = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventLogAltSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltSeqNum.setDescription('The Sequence Number monitored for the Event Log') dfrap_event_log_alt_array = mib_table_column((1, 3, 6, 1, 4, 1, 485, 6, 10, 2, 1, 2), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventLogAltArray.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogAltArray.setDescription('The Event / Trap log for the given sequence number.') dfrap_event_log_current_seq_num = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 3), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapEventLogCurrentSeqNum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogCurrentSeqNum.setDescription('The current index into the Event Log Table.') dfrap_event_log_freeze = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('freeze', 1), ('un-freeze', 2)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapEventLogFreeze.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogFreeze.setDescription('This freezes the Event/Trap Log. freeze(1) will prevent Events / Traps from being entered into the database, un-freeze(2) will allow Events / Traps to be logged into the database. An event will be logged indicating a set of this entry') dfrap_event_log_clear = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 10, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('clear', 1)))).setMaxAccess('writeonly') if mibBuilder.loadTexts: dfrapEventLogClear.setStatus('mandatory') if mibBuilder.loadTexts: dfrapEventLogClear.setDescription('This clears the Event/Trap Log.') dfrap_alarm_type = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 14, 15, 16, 17, 18, 19, 26, 27, 28, 29, 30, 31, 32, 33, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 90, 91, 92, 93, 94, 95, 96, 97, 138, 139, 140, 141, 142, 257, 258, 259, 260, 261, 262, 263, 264, 265))).clone(namedValues=named_values(('bad-config-in-set', 1), ('config-local-update', 2), ('local-unit-loopback-enabled', 14), ('local-unit-loopback-disabled', 15), ('local-unit-loopback-failure', 16), ('local-dte-loopback-enabled', 17), ('local-dte-loopback-disabled', 18), ('local-dte-loopback-failure', 19), ('local-network-loopback-enabled', 26), ('local-network-loopback-disabled', 27), ('local-network-loopback-failure', 28), ('v54-loop-up-initiated', 29), ('v54-loop-down-completed', 30), ('v54-loopback-enabled-by-remote', 31), ('v54-loopback-disabled-by-remote', 32), ('v54-loopback-failure', 33), ('bert-test-pattern-initiated', 44), ('bert-test-pattern-completed', 45), ('bert-test-pattern-failure', 46), ('dlci-active', 47), ('dlci-inactive', 48), ('dlci-td-threshold', 49), ('lmi-sourcing-change-passthru', 50), ('lmi-sourcing-change-user-dte', 51), ('lmi-sourcing-change-net-dte', 52), ('lmi-sourcing-change-user-net', 53), ('lmi-sourcing-change-net-net', 54), ('dte-signal-rts-on', 55), ('dte-signal-rts-off', 56), ('dte-signal-dtr-on', 57), ('dte-signal-dtr-off', 58), ('lmi-non-incr-seq-num-dte', 59), ('lmi-non-incr-seq-num-net', 60), ('lmi-seq-num-mismatch-dte', 61), ('lmi-seq-num-mismatch-net', 62), ('line-failure', 63), ('line-in-service', 64), ('connected', 65), ('connect-failure', 66), ('incoming-call', 67), ('disconnected', 68), ('bpv-threshold-exceeded', 69), ('bpv-threshold-acceptable', 70), ('remote-network-simplex-loopback-enabled', 71), ('remote-network-simplex-loopback-disabled', 72), ('remote-network-non-latching-loopback-enabled', 73), ('remote-network-non-latching-loopback-disabled', 74), ('trap-muting-active', 75), ('trap-muting-inactive', 76), ('vloop-loop-up', 90), ('vloop-loop-down', 91), ('vloop-up-via-remote', 92), ('vloop-down-via-remote', 93), ('vloop-failed', 94), ('vbert-started', 95), ('vbert-stopped', 96), ('vbert-request-failed', 97), ('pvc-rx-utilization-exceeded', 138), ('pvc-tx-utilization-exceeded', 139), ('pvc-rx-utilization-cleared', 140), ('pvc-tx-utilization-cleared', 141), ('config-install-success', 142), ('tftp-requested', 257), ('tftp-transferring', 258), ('tftp-programming', 259), ('tftp-aborted', 260), ('tftp-success', 261), ('tftp-host-unreachable', 262), ('tftp-no-file', 263), ('tftp-invalid-file', 264), ('tftp-corrupt-file', 265)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapAlarmType.setStatus('mandatory') if mibBuilder.loadTexts: dfrapAlarmType.setDescription('The alarm type of the most recent TRAP generated.') dfrap_dlci_num = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapDLCINum.setStatus('mandatory') if mibBuilder.loadTexts: dfrapDLCINum.setDescription('The DLCI number for the most recent DLCI TRAP generated.') dfrap_interface = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('dte', 1), ('dds', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapInterface.setStatus('mandatory') if mibBuilder.loadTexts: dfrapInterface.setDescription('The interface most recently reported in a TRAP.') dfrap_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 9), ip_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapIpAddress.setDescription('The IP address most recently reported in a TRAP.') dfrap_percent_utilization = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapPercentUtilization.setStatus('mandatory') if mibBuilder.loadTexts: dfrapPercentUtilization.setDescription('The percent utilization for a DLCI most recently reported in a TRAP.') dfrap_utilization_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapUtilizationThreshold.setStatus('mandatory') if mibBuilder.loadTexts: dfrapUtilizationThreshold.setDescription('The percent utilization threshold for a DLCI most recently reported in a TRAP.') dfrap_cfg_lock_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 485, 6, 13), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: dfrapCfgLockIpAddress.setStatus('mandatory') if mibBuilder.loadTexts: dfrapCfgLockIpAddress.setDescription('The IP address of the management station locking the configuration most recently reported in a TRAP.') dfrap_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 0)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTrap.setDescription('A dfrapTrap trap signifies that the sending node had its `dfrapAlarmType` variable modified.') dfrap_bad_config_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 1)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBadConfigTrap.setDescription('Unit has received a configuration update request through SNMP but the request was rejected due to an incorrect or inappropriate parameter.') dfrap_local_config_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 2)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalConfigTrap.setDescription('Unit configuration has been updated locally (console port or front panel keypad) or remotely (telnet)') dfrap_local_unit_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 14)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackEnabledTrap.setDescription('Unit is in a bi-directional unit loopback. Data is received from either interface, processed, and transmitted back towards the same interface. When configured for Frame Relay operation the unit will preserve the LMI path during this loopback. In Frame Relay mode, only valid frames are looped back (pseudorandom test patterns will be dropped).') dfrap_local_unit_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 15)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackDisabledTrap.setDescription('Bi-directional unit loopback path is removed.') dfrap_local_unit_loopback_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 16)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalUnitLoopbackFailedTrap.setDescription('Bi-directional unit loopback request has been rejected by the unit. Typically, this is due to the presence of another loopback condition.') dfrap_local_dte_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 17)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalDteLoopbackEnabledTrap.setDescription('Unit is in a bi-directional DTE loopback. All data received at the DTE interface is looped back regardless of format or content (line loopback). All data received at the WAN interface is looped back regardless of format or content (line loopback) When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrap_local_dte_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 18)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalDteLoopbackDisabledTrap.setDescription('Bi-directional DTE loopback path is removed.') dfrap_local_dte_loopback_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 19)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalDteLoopbackFailedTrap.setDescription('Bi-directional DTE loopback request has been rejected by the unit. Typically, this is due to the presence of another loopback condition.') dfrap_local_net_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 26)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalNetLoopbackEnabledTrap.setDescription('Unit is in local network loopback. All data received from the WAN, regardless of format or content, is transmitted back out (line interface loopback) while still being sent to the DTE. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrap_local_net_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 27)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalNetLoopbackDisabledTrap.setDescription('Local network loopback path is removed.') dfrap_local_net_loopback_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 28)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLocalNetLoopbackFailedTrap.setDescription('Local network loopback request is rejected. Typically, this is due to the presence of another loopback condition.') dfrap_v54_loop_up_initiated_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 29)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapV54LoopUpInitiatedTrap.setDescription('Unit has sent the standard V54 loop up pattern out the WAN at the DTE rate. A compatible piece of equipment can sense this pattern and enter a loopback state - typically putting up a bi-directional DTE loopback path. After sending the V54 loop up pattern, the (local) unit returns to normal operation, expecting a loopback condition at the remote device.') dfrap_v54_loop_down_completed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 30)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapV54LoopDownCompletedTrap.setDescription('Unit has sent the standard V54 loop down pattern out the WAN at the DTE rate. A compatible piece of equipment can sense this pattern remove the loopback state that is entered after receiving a loop up pattern - typically a bi-directional DTE loopback path. After sending the V54 loop down pattern, the unit returns to normal operation.') dfrap_v54_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 31)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapV54LoopbackEnabledTrap.setDescription('Unit has received a V54 loop up pattern from a compatible piece of equipment. A bi-directional DTE loopback is activated. All data received at the DTE interface is looped back regardless of format or content. All data received at the WAN interface is looped back regardless of format or content. When configured for Frame Relay operation the unit will not preserve the LMI path during this loopback.') dfrap_v54_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 32)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapV54LoopbackDisabledTrap.setDescription('Unit has received a V54 loop down pattern from a compatible piece of equipment. The bi-directional local DTE loopback is removed') dfrap_v54_loopback_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 33)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapV54LoopbackFailedTrap.setDescription('Unit has rejected the request to send a V54 loop up. Typically, this is due to the presence of another loopback condition.') dfrap_bert_initiated_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 44)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBertInitiatedTrap.setDescription('Unit is sending a pseudorandom test pattern (511 or QRSS) out the WAN and monitoring the WAN received data for the same pattern. This test may be ineffective in certain frame relay applications as pseudorandom data lacks appropriate framing.') dfrap_bert_completed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 45)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBertCompletedTrap.setDescription('Unit has stopped sending a pseudorandom test pattern out the WAN.') dfrap_bert_failed_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 46)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBertFailedTrap.setDescription('Unit has rejected the request to enter a BERT test state. Typically, this is due to the presence of another diagnostic condition.') dfrap_dlci_active_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 47)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum')) if mibBuilder.loadTexts: dfrapDLCIActiveTrap.setDescription('Unit is reporting this DLCI as active and provisioned. An active DLCI is one that is explicitly declared ACTIVE in an LMI Full Status Response (typically coming from a frame relay switch).') dfrap_dlci_inactive_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 48)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum')) if mibBuilder.loadTexts: dfrapDLCIInactiveTrap.setDescription("Unit is reporting this DLCI as inactive. An inactive DLCI is determined inactive one of two ways: it is either explicitly declared inactive in an LMI Full Status Response (typically coming from a frame relay switch) or a Full Status Response is not seen causing a Full Status Timer expiry. Having the unit's full status timer too low could result in the unit falsely declaring DLCIs inactive (then active again). This does not interfere with any data activity on the DLCI but could result in excessive traps.") dfrap_dlcitd_threshold_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 49)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapIpAddress')) if mibBuilder.loadTexts: dfrapDLCITDThresholdTrap.setDescription('VNIP has measured a round-trip transit delay on this PVC to this peer which exceeds the user-defined threshold.') dfrap_lmi_sourcing_change_passthru_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 50)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSourcingChangePassthruTrap.setDescription('Unit is not sourcing any LMI messages. If this state persists then LMI is up and the proper handshaking is occurring independent of the unit. This may also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrap_lmi_sourcing_change_user_dte_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 51)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSourcingChangeUserDteTrap.setDescription('Unit is acting as a source of LMI Status Requests (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the DTE interface is configured as a Frame Relay DCE but a companion Frame Relay DTE device is not seen out the WAN. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrap_lmi_sourcing_change_net_dte_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 52)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSourcingChangeNetDteTrap.setDescription('Unit is acting as a source of LMI Status Responses (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the DTE interface is configured as a Frame Relay DTE but a companion Frame Relay DCE device is not seen out the WAN. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of external equipment.') dfrap_lmi_sourcing_change_user_dds_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 53)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSourcingChangeUserDdsTrap.setDescription('Unit is acting as a source of LMI Status Requests (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the WAN interface is configured as a Frame Relay DCE but a companion Frame Relay DTE device is not seen out the DTE interface. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrap_lmi_sourcing_change_net_dds_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 54)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSourcingChangeNetDdsTrap.setDescription('Unit is acting as a source of LMI Status Responses (Link Integrity Verification, Keep Alive). If this state persists then the equipment attached to the WAN interface is configured as a Frame Relay DTE but a companion Frame Relay DCE device is not seen out the DTE interface. This could also be a transient state if the unit is in an LMI hunt mode. If this trap occurs repeatedly, separated by other LMI sourcing states, the unit is not seeing any of the expected LMI messages from either interface. Check LMI type, connectivity, and configuration of associated equipment.') dfrap_dte_signal_rts_on_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 55)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapDteSignalRtsOnTrap.setDescription("Unit's DTE Request to Send (RTS) interface control signal is now active (on). This signal is presented by the external DTE device.") dfrap_dte_signal_rts_off_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 56)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapDteSignalRtsOffTrap.setDescription("Unit's DTE Request to Send (RTS) interface control signal is now inactive (off). This signal is presented by the external DTE device.") dfrap_dte_signal_dtr_on_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 57)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapDteSignalDtrOnTrap.setDescription("Unit's DTE Data Terminal Ready (DTR) interface control signal is now active (on). This signal is presented by the external DTE device.") dfrap_dte_signal_dtr_off_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 58)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapDteSignalDtrOffTrap.setDescription("Unit's DTE Data Terminal Ready (DTR) interface control signal is now inactive (off). This signal is presented by the external DTE device.") dfrap_non_incr_lmi_seq_num_dte_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 59)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapNonIncrLmiSeqNumDteTrap.setDescription("Unit has detected a non-incrementing LMI sequence number from the DTE. A Status Enquiry or Status Response message has been seen at the DTE interface. The Link Integrity information element's Send Sequence Number was not incremented or was incremented more than once since the last Send Sequence Number seen from the DTE interface.") dfrap_non_incr_lmi_seq_num_dds_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 60)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapNonIncrLmiSeqNumDdsTrap.setDescription("Unit has detected a non-incrementing LMI sequence number from the WAN. A Status Enquiry or Status Response message has been seen at the WAN interface. The Link Integrity information element's Send Sequence Number was not incremented or was incremented more than once since the last Send Sequence Number seen from the WAN interface.") dfrap_lmi_seq_num_mismatch_dte_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 61)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSeqNumMismatchDteTrap.setDescription("Unit has detected an LMI sequence number mismatch from the DTE. A Status Enquiry or Status Response message has been seen at the DTE interface. The Link Inetgrity information element's Receive Sequence Number was not the most recent Send Sequence number sent from the WAN interface") dfrap_lmi_seq_num_mismatch_dds_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 62)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLmiSeqNumMismatchDdsTrap.setDescription("Unit has detected an LMI sequence number mismatch from the WAN. A Status Enquiry or Status Response message has been seen at the WAN interface. The Link Integrity information element's Receive Sequence Number was not the most recent Send Sequence number sent from the DTE interface.") dfrap_line_failure_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 63)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLineFailureTrap.setDescription('The unit is reporting error conditions that inditate that the WAN connection is not fully functional.') dfrap_line_in_service_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 64)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapLineInServiceTrap.setDescription('The unit is reporting that its WAN link has transitioned from a failure state to one which is functioning normally.') dfrap_bpv_threshold_exceeded_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 69)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBPVThresholdExceededTrap.setDescription('The unit may be configured to issue this alarm in response to line code violations being received from the service provider. If more than 5 violations are detected within a one-second interval, this trap is generated. Network control codes which include bipolar violations are not considered errors and will not contribute to this trap. If this condition persists then contact your WAN service provider.') dfrap_bpv_threshold_acceptable_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 70)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapBPVThresholdAcceptableTrap.setDescription('This trap is to announce that the bipolar violation threshold of at least 5 per second is no longer being exceeded.') dfrap_simplex_current_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 71)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapSimplexCurrentLoopbackEnabledTrap.setDescription('The unit has received a DDS-standard simplex current reversal from the WAN. In response, a Network Line Loopback path will be initiated for the duration of the current reversal.') dfrap_simplex_current_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 72)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapSimplexCurrentLoopbackDisabledTrap.setDescription('The unit has ceased receiving a simplex current reversal from the WAN. In response, the Network Line Loopback path will be removed.') dfrap_non_latching_loopback_enabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 73)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapNonLatchingLoopbackEnabledTrap.setDescription('The unit has received a DDS-standard in-band loopback command. In response, a Network Line Loopback path will be initiated and maintained as long as the appropriate command is recognized.') dfrap_non_latching_loopback_disabled_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 74)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapNonLatchingLoopbackDisabledTrap.setDescription('The unit has ceased receiving a DDS-standard in-band loopback command. In response, a Network Line Loopback path will be removed.') dfrap_trap_muting_active = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 75)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTrapMutingActive.setDescription('Trap generation is muted. This trap will be issued at the configured trap muting frequency. No other traps will be issued.') dfrap_trap_muting_inactive = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 76)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTrapMutingInactive.setDescription('Trap generation is re-enabled (muting disabled).') dfrap_vloop_up = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 90)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVloopUp.setDescription('A Vnip PVC loopback (VLOOP) request has been sent to a remote device on this DLCI out this interface. The remote unit should respond by looping all data received on this PVC back towards the unit that initiated this request. A PVC running VLOOP will not be running any user data.') dfrap_vloop_down = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 91)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVloopDown.setDescription('A Vnip PVC loopback (VLOOP) disable request has been sent to a remote device on this DLCI out this interface. The remote unit should respond by tearing down the logical loop on this DLCI.') dfrap_vloop_up_via_remote = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 92)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVloopUpViaRemote.setDescription('A Vnip PVC loopback (VLOOP) request has been received from a remote device on this DLCI on this interface. The unit will respond by looping all data received on this PVC back out the interface towards the unit that initiated the request.') dfrap_vloop_down_via_remote = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 93)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVloopDownViaRemote.setDescription('A request to disable a Vnip PVC loopback (VLOOP) on this unit with the indicated DLCI and Interface has been received. Usually this disable request is from the remote device that requested the VLOOP, however the request may also be due to a local event such as expiration of a locally configured loopback timeout. The unit will respond by tearing down the logical loop on this DLCI.') dfrap_vloop_request_failed = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 94)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVloopRequestFailed.setDescription('The request for a PVC loopback (VLOOP) has been rejected or did not complete.') dfrap_vbert_started = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 95)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVbertStarted.setDescription('A Vnip PVC error rate test (VBERT) has been started on this DLCI out this interface to a remote device. The VBERT test data will be statistically multiplexed in with user data, management data, and networking data. The destination peer will echo this test data back to the source producing a full-duplex volume-based timed test.') dfrap_vbert_stopped = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 96)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVbertStopped.setDescription('A Vnip PVC BERT (VBERT) has been stopped on this DLCI on this interface to a remote device.') dfrap_vbert_request_failed = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 97)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapInterface')) if mibBuilder.loadTexts: dfrapVbertRequestFailed.setDescription('The request for a PVC BERT (VBERT) on this DLCI on this interface has been rejected.') dfrap_pvc_rx_utilization_exceeded_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 138)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapPercentUtilization'), ('DFRAP-MIB', 'dfrapUtilizationThreshold')) if mibBuilder.loadTexts: dfrapPvcRxUtilizationExceededTrap.setDescription('Percent utilization threshold was exceeded for the defined number of Short Term Intervals in the reception direction on this DLCI. ') dfrap_pvc_tx_utilization_exceeded_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 139)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapPercentUtilization'), ('DFRAP-MIB', 'dfrapUtilizationThreshold')) if mibBuilder.loadTexts: dfrapPvcTxUtilizationExceededTrap.setDescription('Percent utilization threshold was exceeded for the defined number of Short Term Intervals in the transmission direction on this DLCI. ') dfrap_pvc_rx_utilization_cleared_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 140)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapPercentUtilization'), ('DFRAP-MIB', 'dfrapUtilizationThreshold')) if mibBuilder.loadTexts: dfrapPvcRxUtilizationClearedTrap.setDescription('Percent utilization was below the threshold for the defined number of Short Term Intervals in the reception direction on this DLCI. ') dfrap_pvc_tx_utilization_cleared_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 141)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapDLCINum'), ('DFRAP-MIB', 'dfrapPercentUtilization'), ('DFRAP-MIB', 'dfrapUtilizationThreshold')) if mibBuilder.loadTexts: dfrapPvcTxUtilizationClearedTrap.setDescription('Percent utilization was below the threshold for the defined number of Short Term Intervals in the transmission direction on this DLCI. ') dfrap_config_install_success = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 142)).setObjects(('DFRAP-MIB', 'dfrapAlarmType'), ('DFRAP-MIB', 'dfrapCfgLockIpAddress')) if mibBuilder.loadTexts: dfrapConfigInstallSuccess.setDescription(' The configuration install process has successfully completed. ') dfrap_tftp_requested_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 257)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpRequestedTrap.setDescription("Unit has received a TFTP download request. TFTP is the preferred method for upgrading a unit's software image.") dfrap_tftp_transferring_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 258)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpTransferringTrap.setDescription('Unit has established a TFTP session, found the file, and begun the transfer. The file must still be qualified as appropriate for this unit.') dfrap_tftp_programming_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 259)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpProgrammingTrap.setDescription('Unit has completed the TFTP transfer of a new software image which will next be programmed into non-volatile flash memory') dfrap_tftp_aborted_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 260)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpAbortedTrap.setDescription("Unit's TFTP session was established but the transfer was aborted by user intervention or an unrecoverable TFTP protocol error") dfrap_tftp_success_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 261)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpSuccessTrap.setDescription("Unit's TFTP download completed successfully. Flash devices will be programmed with a new image. Unit will stop passing data during the programming phase (less than a minute) and, upon completion, will reset and return to full operation using the new image") dfrap_tftp_host_unreachable_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 262)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpHostUnreachableTrap.setDescription('Unit could not establish a TFTP session with the designated server. Verify that the correct TFTP ip address, TFTP DLCI and TFTP interface are configured on the unit and also verify the TFTP server configuration') dfrap_tftp_no_file_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 263)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpNoFileTrap.setDescription('Unit could not locate the designated file on the TFTP server. Verify the correct TFTP filename is configured on the unit and verify the location of this file on the server (file name may be case sensitive)') dfrap_tftp_invalid_file_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 264)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpInvalidFileTrap.setDescription('Unit had established a TFTP session and began transfer of the designated file. The unit aborted the transfer after determining that the specified file is not appropriate for this product (failed header verification)') dfrap_tftp_corrupt_file_trap = notification_type((1, 3, 6, 1, 4, 1, 485, 6) + (0, 265)).setObjects(('DFRAP-MIB', 'dfrapAlarmType')) if mibBuilder.loadTexts: dfrapTftpCorruptFileTrap.setDescription('Unit transferred the designated file but aborted the operation due to a checksum error within the downloaded s-record file') mibBuilder.exportSymbols('DFRAP-MIB', dfrapV54LoopbackDisabledTrap=dfrapV54LoopbackDisabledTrap, dfrapPerfRoutingTotalEntry=dfrapPerfRoutingTotalEntry, dfrapPerfSnaPerDlciTxAppn=dfrapPerfSnaPerDlciTxAppn, dfrapVnipTopoVBertPerUtilEIR=dfrapVnipTopoVBertPerUtilEIR, dfrapLocalNetLoopbackDisabledTrap=dfrapLocalNetLoopbackDisabledTrap, dfrapPerfCirRxPercentUtilizationRange6=dfrapPerfCirRxPercentUtilizationRange6, dfrapPerfRoutingTotalTxRip=dfrapPerfRoutingTotalTxRip, dfrapSysName=dfrapSysName, dfrapVnipTopoTDLastDelay=dfrapVnipTopoTDLastDelay, dfrapPerfCirTxPercentUtilizationRange4=dfrapPerfCirTxPercentUtilizationRange4, dfrapVnipTopoVBERTStatus=dfrapVnipTopoVBERTStatus, dfrapPerfIpxPerDlciTxTotal=dfrapPerfIpxPerDlciTxTotal, dfrapVnipTopoVLOOPStatus=dfrapVnipTopoVLOOPStatus, dfrapPerfLmiPerDlciEntry=dfrapPerfLmiPerDlciEntry, dfrapPerfLmiPerDlciTxOtherByteCnt=dfrapPerfLmiPerDlciTxOtherByteCnt, dfrapPerfIpxTotalInterval=dfrapPerfIpxTotalInterval, dfrapPerfRoutingTotalTable=dfrapPerfRoutingTotalTable, dfrapCfgFrLmiInactivityTimeout=dfrapCfgFrLmiInactivityTimeout, dfrapLocalUnitLoopbackFailedTrap=dfrapLocalUnitLoopbackFailedTrap, dfrapPerfArpTotalEntry=dfrapPerfArpTotalEntry, dfrapCfgIpTelnetAutoLogOut=dfrapCfgIpTelnetAutoLogOut, dfrapTftpRequestedTrap=dfrapTftpRequestedTrap, dfrapPerfApplicationTotalTxSnmp=dfrapPerfApplicationTotalTxSnmp, dfrapCfgDteClockMode=dfrapCfgDteClockMode, dfrapDiagDdsTimeRemaining=dfrapDiagDdsTimeRemaining, dfrapPerfApplicationPerDlciEntry=dfrapPerfApplicationPerDlciEntry, dfrapPerfMgmtIpICMPInTimeExcds=dfrapPerfMgmtIpICMPInTimeExcds, dfrapCfgIpPeerIP=dfrapCfgIpPeerIP, dfrapPerfIpxTotalTxOther=dfrapPerfIpxTotalTxOther, dfrapPerfIcmpPerDlciValue=dfrapPerfIcmpPerDlciValue, dfrapStatusLedTable=dfrapStatusLedTable, dfrapPerfIcmpPerDlciTxTimestpReq=dfrapPerfIcmpPerDlciTxTimestpReq, dfrapPerfArpPerDlciRxInarpReq=dfrapPerfArpPerDlciRxInarpReq, dfrapBadConfigTrap=dfrapBadConfigTrap, dfrapSysTKRSupported=dfrapSysTKRSupported, dfrapCfgLcdPassword=dfrapCfgLcdPassword, dfrapPerfThruputCmdRemoveStsDlci=dfrapPerfThruputCmdRemoveStsDlci, dfrapStatusDdsStatusLED=dfrapStatusDdsStatusLED, dfrapPerfIcmpTotalEntry=dfrapPerfIcmpTotalEntry, dfrapPerfIpxPerDlciRxTotal=dfrapPerfIpxPerDlciRxTotal, dfrapDiagBertTable=dfrapDiagBertTable, dfrapPerfThruputPerDlciTxByte=dfrapPerfThruputPerDlciTxByte, dfrapStatusDteRts=dfrapStatusDteRts, dfrapPerfNetwProtoTotalRxIp=dfrapPerfNetwProtoTotalRxIp, dfrapPerfIpTotalTxTotal=dfrapPerfIpTotalTxTotal, dfrapLmiSeqNumMismatchDdsTrap=dfrapLmiSeqNumMismatchDdsTrap, dfrapLmiSourcing=dfrapLmiSourcing, dfrapPerfArpTotalTxRarpReq=dfrapPerfArpTotalTxRarpReq, dfrapPerfSnaPerDlciInterval=dfrapPerfSnaPerDlciInterval, dfrapSysLTFNumDlcis=dfrapSysLTFNumDlcis, dfrapCfgTransitDelayTable=dfrapCfgTransitDelayTable, dfrapPerfApplicationTotalTxCustom4=dfrapPerfApplicationTotalTxCustom4, dfrapCfgUnlock=dfrapCfgUnlock, dfrapPerfIcmpTotalTxPktTooBig=dfrapPerfIcmpTotalTxPktTooBig, dfrapCfgSnmpMgrInterface=dfrapCfgSnmpMgrInterface, dfrapPerfIpTotalTxIcmp=dfrapPerfIpTotalTxIcmp, dfrapSysFeatureTable=dfrapSysFeatureTable, dfrapPerfCurrentPerDlciUtilizationEntry=dfrapPerfCurrentPerDlciUtilizationEntry, dfrapPerfNetwProtoPerDlciTxIp=dfrapPerfNetwProtoPerDlciTxIp, dfrapPerfMgmtIpICMPInParmProbs=dfrapPerfMgmtIpICMPInParmProbs, dfrapPerfThruputPerDlciUptime=dfrapPerfThruputPerDlciUptime, dfrapPerfIcmpTotalTxDestUnr=dfrapPerfIcmpTotalTxDestUnr, dfrapTftpNoFileTrap=dfrapTftpNoFileTrap, dfrap=dfrap, dfrapPerfMgmtIpIPStatsTable=dfrapPerfMgmtIpIPStatsTable, dfrapPerfThruputPerDlciRxBecn=dfrapPerfThruputPerDlciRxBecn, dfrapPerfSnaPerDlciTxOther=dfrapPerfSnaPerDlciTxOther, dfrapPerfThruputPerDlciChangeTime=dfrapPerfThruputPerDlciChangeTime, dfrapPerfSnaTotalRxOther=dfrapPerfSnaTotalRxOther, dfrapCfgFrPerfDlciNamesCirValue=dfrapCfgFrPerfDlciNamesCirValue, dfrapVnipTopoVBertTimeElapse=dfrapVnipTopoVBertTimeElapse, dfrapPerfThruputPerIntfEntry=dfrapPerfThruputPerIntfEntry, dfrapPerfIpTotalTxUdp=dfrapPerfIpTotalTxUdp, dfrapPerfIcmpPerDlciRxTimeExcd=dfrapPerfIcmpPerDlciRxTimeExcd, dfrapPerfLmiTotalTxOtherByteCnt=dfrapPerfLmiTotalTxOtherByteCnt, dfrapEventTrapLogGenericEvent=dfrapEventTrapLogGenericEvent, dfrapLmiSourcingChangeUserDteTrap=dfrapLmiSourcingChangeUserDteTrap, dfrapCfgGetCommunityString=dfrapCfgGetCommunityString, dfrapCfgVnipMode=dfrapCfgVnipMode, dfrapIpAddress=dfrapIpAddress, dfrapCfgSnmpTrapMuting=dfrapCfgSnmpTrapMuting, dfrapDiagVnipIpAddr=dfrapDiagVnipIpAddr, dfrapPerfIpTotalRxTotal=dfrapPerfIpTotalRxTotal, dfrapCfgMgmtTable=dfrapCfgMgmtTable, dfrapEventLogAltEntry=dfrapEventLogAltEntry, dfrapPerfNetwProtoPerDlciRxVnip=dfrapPerfNetwProtoPerDlciRxVnip, dfrapPerfIpTotalRxIgrp=dfrapPerfIpTotalRxIgrp, dfrapDiagDteLclLpbk=dfrapDiagDteLclLpbk, dfrapPerfNetwProtoPerDlciValue=dfrapPerfNetwProtoPerDlciValue, dfrapPerfIcmpPerDlciRxDestUnr=dfrapPerfIcmpPerDlciRxDestUnr, dfrapDiagDteTimeRemaining=dfrapDiagDteTimeRemaining, dfrapCfgSnmpUtilTrapEnable=dfrapCfgSnmpUtilTrapEnable, dfrapCfgCommDataBits=dfrapCfgCommDataBits, dfrapPerfNetwProtoPerDlciTxCisco=dfrapPerfNetwProtoPerDlciTxCisco, dfrapCfgFrPerfLTDlciFilterEntry=dfrapCfgFrPerfLTDlciFilterEntry, dfrapPerfIpxPerDlciRxOther=dfrapPerfIpxPerDlciRxOther, dfrapPerfIcmpPerDlciTxEchoReq=dfrapPerfIcmpPerDlciTxEchoReq, dfrapPerfNetwLongTermAltArray=dfrapPerfNetwLongTermAltArray, dfrapPerfSnaTotalTxNetbios=dfrapPerfSnaTotalTxNetbios, dfrapPerfCirTxPercentUtilizationRange2=dfrapPerfCirTxPercentUtilizationRange2, dfrapCfgFrPerf=dfrapCfgFrPerf, dfrapPerfIcmpTotalTxEchoRep=dfrapPerfIcmpTotalTxEchoRep, dfrapPerfNetwProtoTotalTxSna=dfrapPerfNetwProtoTotalTxSna, dfrapStatusDteTxLED=dfrapStatusDteTxLED, dfrapPerfIcmpTotalRxAddrMaskReq=dfrapPerfIcmpTotalRxAddrMaskReq, dfrapSysSerialNo=dfrapSysSerialNo, dfrapPerfIpxPerDlciTable=dfrapPerfIpxPerDlciTable, dfrapPerfThruputCmdReplaceDlciNewValue=dfrapPerfThruputCmdReplaceDlciNewValue, dfrapPerfApplicationTotalTxTftp=dfrapPerfApplicationTotalTxTftp, dfrapPerfNetwProtoPerDlciTxArp=dfrapPerfNetwProtoPerDlciTxArp, dfrapPerfLmiPerDlciValue=dfrapPerfLmiPerDlciValue, dfrapPerfCirTxPercentUtilizationRange8=dfrapPerfCirTxPercentUtilizationRange8, dfrapCfgTransitDelayThreshold=dfrapCfgTransitDelayThreshold, dfrapPerfSnaTotalTxOther=dfrapPerfSnaTotalTxOther, dfrapAlarmType=dfrapAlarmType, dfrapCfgFrPerfTimersSTInterval=dfrapCfgFrPerfTimersSTInterval, dfrapPerfNetwProtoPerDlciTxIpx=dfrapPerfNetwProtoPerDlciTxIpx, dfrapVloopUp=dfrapVloopUp, dfrapPerfApplicationPerDlciTxSmtp=dfrapPerfApplicationPerDlciTxSmtp, dfrapSimplexCurrentLoopbackDisabledTrap=dfrapSimplexCurrentLoopbackDisabledTrap, dfrapPerfRoutingTotalRxNetbios=dfrapPerfRoutingTotalRxNetbios, dfrapPerfLmiTotalTxLivoStatByteCnt=dfrapPerfLmiTotalTxLivoStatByteCnt, dfrapPerfIpxPerDlciRxSap=dfrapPerfIpxPerDlciRxSap, dfrapPerfApplicationPerDlciRxFtp=dfrapPerfApplicationPerDlciRxFtp, dfrapPerfNetwProtoPerDlciRxTotal=dfrapPerfNetwProtoPerDlciRxTotal, dfrapPerfMgmtIpIPOutDscrd=dfrapPerfMgmtIpIPOutDscrd, dfrapPerfIpxTotalTxTotal=dfrapPerfIpxTotalTxTotal, dfrapDiagUnitTimeRemaining=dfrapDiagUnitTimeRemaining, dfrapPerfApplicationPerDlciTxTelnet=dfrapPerfApplicationPerDlciTxTelnet, dfrapCfgTransitDelayNumHops=dfrapCfgTransitDelayNumHops, dfrapPerfArpPerDlciTxArpReq=dfrapPerfArpPerDlciTxArpReq, dfrapCfgFrPerfDlciNamesTableClear=dfrapCfgFrPerfDlciNamesTableClear, dfrapDiagnostics=dfrapDiagnostics, dfrapCfgAppFormat=dfrapCfgAppFormat, dfrapPerfIcmpTotalRxTimestpReq=dfrapPerfIcmpTotalRxTimestpReq, dfrapSysSoftRev=dfrapSysSoftRev, dfrapPerfArpPerDlciValue=dfrapPerfArpPerDlciValue, dfrapPerfArpPerDlciTxRarpRep=dfrapPerfArpPerDlciTxRarpRep, dfrapPerfNetwProtoPerDlciRxCisco=dfrapPerfNetwProtoPerDlciRxCisco, dfrapPerfIcmpTotalRxEchoReq=dfrapPerfIcmpTotalRxEchoReq, dfrapPerfNetwProtoPerDlciRxOther=dfrapPerfNetwProtoPerDlciRxOther, dfrapVnipTopoVBertTxDESetFrames=dfrapVnipTopoVBertTxDESetFrames, dfrapStatusMgmtDefaultDLCIStatus=dfrapStatusMgmtDefaultDLCIStatus, dfrapPerfLmiTotalTxFullEnqByteCnt=dfrapPerfLmiTotalTxFullEnqByteCnt, dfrapPerfThruputPerDlciEIR=dfrapPerfThruputPerDlciEIR, dfrapPerfArpTotalTxRarpRep=dfrapPerfArpTotalTxRarpRep, dfrapPerfArpTotalInterval=dfrapPerfArpTotalInterval, dfrapPerfNetwLongTermAltTable=dfrapPerfNetwLongTermAltTable, dfrapSysHardRev=dfrapSysHardRev, dfrapPerfCirPercentUtilizationDlciValue=dfrapPerfCirPercentUtilizationDlciValue, dfrapPerfNetwProtoPerDlciTxOther=dfrapPerfNetwProtoPerDlciTxOther, dfrapDLCINum=dfrapDLCINum, dfrapSysNumDteInstalled=dfrapSysNumDteInstalled, dfrapPerfLmiPerDlciRxLivoStatByteCnt=dfrapPerfLmiPerDlciRxLivoStatByteCnt, dfrapCfgSnmpTable=dfrapCfgSnmpTable, dfrapPerfCirRxPercentUtilizationRange7=dfrapPerfCirRxPercentUtilizationRange7, dfrapCfgCommBaud=dfrapCfgCommBaud, dfrapVnipTopologyNumHops=dfrapVnipTopologyNumHops, dfrapPerfSnaPerDlciRxPeriph=dfrapPerfSnaPerDlciRxPeriph, dfrapCfgFrLmiType=dfrapCfgFrLmiType, dfrapPerfIpxPerDlciRxSpx=dfrapPerfIpxPerDlciRxSpx, dfrapPerfMgmtIpICMPInMsgs=dfrapPerfMgmtIpICMPInMsgs, dfrapCfgTransitDelayInterface=dfrapCfgTransitDelayInterface, dfrapPerfNetwProtoPerDlciRxIp=dfrapPerfNetwProtoPerDlciRxIp, dfrapPerfIcmpTotalRxDestUnr=dfrapPerfIcmpTotalRxDestUnr, dfrapPerfNetwLongTermDlci=dfrapPerfNetwLongTermDlci, dfrapPerfThruputCmdCountsStsDlciResetAll=dfrapPerfThruputCmdCountsStsDlciResetAll, dfrapVnipTopologyTable=dfrapVnipTopologyTable, dfrapPerfThruputCmdReplaceDlciEntry=dfrapPerfThruputCmdReplaceDlciEntry, dfrapTftpCorruptFileTrap=dfrapTftpCorruptFileTrap, dfrapDiagVLOOP=dfrapDiagVLOOP, dfrapDiagBertErrSec=dfrapDiagBertErrSec, dfrapSysLocation=dfrapSysLocation, dfrapPerfThruputPerDlciRxDe=dfrapPerfThruputPerDlciRxDe, dfrapPerfRoutingPerDlciTxNetbios=dfrapPerfRoutingPerDlciTxNetbios, dfrapPerfCurrentDteUtilization=dfrapPerfCurrentDteUtilization, dfrapCfgSnmpMgrClearN=dfrapCfgSnmpMgrClearN, dfrapPerfMgmtIpIFInErrors=dfrapPerfMgmtIpIFInErrors, dfrapPvcRxUtilizationClearedTrap=dfrapPvcRxUtilizationClearedTrap, dfrapPerfThruputPerDlciIndex=dfrapPerfThruputPerDlciIndex, dfrapV54LoopUpInitiatedTrap=dfrapV54LoopUpInitiatedTrap, dfrapPerfIcmpPerDlciTxDestUnr=dfrapPerfIcmpPerDlciTxDestUnr, dfrapPerfNetwProtoPerDlciTable=dfrapPerfNetwProtoPerDlciTable, dfrapPerformance=dfrapPerformance, dfrapPerfArpPerDlciRxArpReq=dfrapPerfArpPerDlciRxArpReq, dfrapPerfArpPerDlciRxRarpRep=dfrapPerfArpPerDlciRxRarpRep, dfrapPerfLmiTotalRxLivoStatByteCnt=dfrapPerfLmiTotalRxLivoStatByteCnt, dfrapPerfApplicationPerDlciTable=dfrapPerfApplicationPerDlciTable, dfrapPerfIpTotalRxOther=dfrapPerfIpTotalRxOther, dfrapPerfThruputCmdReplaceDlciValue=dfrapPerfThruputCmdReplaceDlciValue, dfrapSysNumDlcisSupported=dfrapSysNumDlcisSupported, dfrapPerfIcmpTotalRxTimeExcd=dfrapPerfIcmpTotalRxTimeExcd, dfrapPerfIpxPerDlciRxNetbios=dfrapPerfIpxPerDlciRxNetbios, dfrapStatusDteMode=dfrapStatusDteMode, dfrapPerfLmiPerDlciRxLivoEnqByteCnt=dfrapPerfLmiPerDlciRxLivoEnqByteCnt, dfrapLocalDteLoopbackFailedTrap=dfrapLocalDteLoopbackFailedTrap, dfrapPerfApplicationPerDlciInterval=dfrapPerfApplicationPerDlciInterval, dfrapCfgDteTable=dfrapCfgDteTable, dfrapPerfMgmtIpUDPInDatagrams=dfrapPerfMgmtIpUDPInDatagrams, dfrapPerfThruputPerIntfRxFrameCnt=dfrapPerfThruputPerIntfRxFrameCnt, dfrapPerfArpPerDlciRxOther=dfrapPerfArpPerDlciRxOther, dfrapCfgSnmpMgrTable=dfrapCfgSnmpMgrTable, dfrapSysPrompt=dfrapSysPrompt, dfrapPerfSnaPerDlciRxOther=dfrapPerfSnaPerDlciRxOther, dfrapVnipTopoVBertRxDESetFrames=dfrapVnipTopoVBertRxDESetFrames, dfrapPerfIcmpPerDlciRxEchoRep=dfrapPerfIcmpPerDlciRxEchoRep, dfrapPerfLmiPerDlciTxLivoStatByteCnt=dfrapPerfLmiPerDlciTxLivoStatByteCnt, dfrapUtilizationThreshold=dfrapUtilizationThreshold, dfrapPerfMgmtIpTCPAttemptFails=dfrapPerfMgmtIpTCPAttemptFails, dfrapPerfSnaTotalTxSubarea=dfrapPerfSnaTotalTxSubarea, dfrapNonLatchingLoopbackDisabledTrap=dfrapNonLatchingLoopbackDisabledTrap, dfrapPerfLmiTotalRxFullStatByteCnt=dfrapPerfLmiTotalRxFullStatByteCnt, dfrapPerfMgmtIpIPOutNoRt=dfrapPerfMgmtIpIPOutNoRt, dfrapDiagBertState=dfrapDiagBertState, dfrapEventTrapLogTimeStamp=dfrapEventTrapLogTimeStamp, dfrapEventLogFreeze=dfrapEventLogFreeze, dfrapEventTrapLogSpecificEvent=dfrapEventTrapLogSpecificEvent, dfrapPerfNetwProtoTotalRxOther=dfrapPerfNetwProtoTotalRxOther, dfrapPerfCirRxPercentUtilizationRange1=dfrapPerfCirRxPercentUtilizationRange1, dfrapCfgFrAddrResInarpTimer=dfrapCfgFrAddrResInarpTimer, dfrapPerfIpxPerDlciTxRip=dfrapPerfIpxPerDlciTxRip, dfrapCfgVnipInitTimer=dfrapCfgVnipInitTimer, dfrapSysNumDlciNames=dfrapSysNumDlciNames, dfrapPerfIpxPerDlciTxSap=dfrapPerfIpxPerDlciTxSap, dfrapPerfNetwProtoPerDlciRxSna=dfrapPerfNetwProtoPerDlciRxSna, dfrapCfgFrAddrLen=dfrapCfgFrAddrLen, dfrapDiagUnitReset=dfrapDiagUnitReset, dfrapPerfThruputPerIntfRxCrcErrCnt=dfrapPerfThruputPerIntfRxCrcErrCnt, dfrapPerfMgmtIpICMPInEchos=dfrapPerfMgmtIpICMPInEchos, dfrapPerfSnaPerDlciRxNetbios=dfrapPerfSnaPerDlciRxNetbios, dfrapPerfLmiPerDlciTable=dfrapPerfLmiPerDlciTable, dfrapDiagVnipIndex=dfrapDiagVnipIndex, dfrapPerfRoutingTotalRxRip=dfrapPerfRoutingTotalRxRip, dfrapPerfArpPerDlciInterval=dfrapPerfArpPerDlciInterval, dfrapDiagVBERTPktPercent=dfrapDiagVBERTPktPercent, dfrapPerfNetwProtoPerDlciRxAnnexG=dfrapPerfNetwProtoPerDlciRxAnnexG, dfrapSysNumDdsInstalled=dfrapSysNumDdsInstalled, dfrapPerfIpTotalEntry=dfrapPerfIpTotalEntry, dfrapPerfThruputPerIntfRxByteCnt=dfrapPerfThruputPerIntfRxByteCnt, dfrapVbertStopped=dfrapVbertStopped, dfrapPerfSnaPerDlciTxTotal=dfrapPerfSnaPerDlciTxTotal, dfrapPerfRoutingPerDlciEntry=dfrapPerfRoutingPerDlciEntry, dfrapPerfIpxTotalRxRip=dfrapPerfIpxTotalRxRip, dfrapPerfIcmpTotalRxTotal=dfrapPerfIcmpTotalRxTotal, dfrapPerfNetwProtoTotalTable=dfrapPerfNetwProtoTotalTable, dfrapVnipTopologyEntry=dfrapVnipTopologyEntry, dfrapPerfIpxPerDlciValue=dfrapPerfIpxPerDlciValue, dfrapCfgFrLmiFullStatus=dfrapCfgFrLmiFullStatus, dfrapPerfApplicationTotalEntry=dfrapPerfApplicationTotalEntry, dfrapPerfNetwProtoTotalRxSna=dfrapPerfNetwProtoTotalRxSna, dfrapPerfIcmpTotalRxRedirect=dfrapPerfIcmpTotalRxRedirect, dfrapPerfThruputPerIntfIndex=dfrapPerfThruputPerIntfIndex, dfrapPerfLmiPerDlciTxTotalByteCnt=dfrapPerfLmiPerDlciTxTotalByteCnt, dfrapCfgTransitDelayDlciValue=dfrapCfgTransitDelayDlciValue) mibBuilder.exportSymbols('DFRAP-MIB', dfrapLocalNetLoopbackFailedTrap=dfrapLocalNetLoopbackFailedTrap, dfrapPerfIcmpTotalRxGmReport=dfrapPerfIcmpTotalRxGmReport, dfrapPerfApplicationTotalTable=dfrapPerfApplicationTotalTable, dfrapPerfSnaTotalRxAppn=dfrapPerfSnaTotalRxAppn, dfrapDiagVnipTable=dfrapDiagVnipTable, dfrapPerfIcmpPerDlciTxTimeExcd=dfrapPerfIcmpPerDlciTxTimeExcd, dfrapPerfThruputCmdClearDdsStats=dfrapPerfThruputCmdClearDdsStats, dfrapPerfIcmpPerDlciTxGmQuery=dfrapPerfIcmpPerDlciTxGmQuery, dfrapPerfThruputPerDlciEncapType=dfrapPerfThruputPerDlciEncapType, dfrapDiagBertTimeElaps=dfrapDiagBertTimeElaps, dfrapPerfThruputPerDlciCirType=dfrapPerfThruputPerDlciCirType, dfrapPerfIpxTotalRxSap=dfrapPerfIpxTotalRxSap, dfrapPerfCirTxPercentUtilizationRange1=dfrapPerfCirTxPercentUtilizationRange1, dfrapPerfIcmpPerDlciInterval=dfrapPerfIcmpPerDlciInterval, dfrapPerfNetwLongTermValue=dfrapPerfNetwLongTermValue, dfrapPerfArpTotalRxRarpReq=dfrapPerfArpTotalRxRarpReq, dfrapPerfIcmpTotalTxGmReport=dfrapPerfIcmpTotalTxGmReport, dfrapPerfArpPerDlciRxArpRep=dfrapPerfArpPerDlciRxArpRep, dfrapSysLTFNumProtocols=dfrapSysLTFNumProtocols, dfrapCfgID=dfrapCfgID, dfrapCfgTftpFilename=dfrapCfgTftpFilename, dfrapCfgSnmpFrTrap=dfrapCfgSnmpFrTrap, dfrapCfgFrDLCIMode=dfrapCfgFrDLCIMode, dfrapPerfIpPerDlciRxIcmp=dfrapPerfIpPerDlciRxIcmp, dfrapPerfThruputCmdClearDteStats=dfrapPerfThruputCmdClearDteStats, dfrapCfgFrPerfDlciNamesCirType=dfrapCfgFrPerfDlciNamesCirType, dfrapPerfSnaTotalEntry=dfrapPerfSnaTotalEntry, dfrapPerfSnaTotalRxSubarea=dfrapPerfSnaTotalRxSubarea, dfrapPvcTxUtilizationExceededTrap=dfrapPvcTxUtilizationExceededTrap, dfrapTftpInvalidFileTrap=dfrapTftpInvalidFileTrap, dfrapPerfApplicationTotalTxCustom3=dfrapPerfApplicationTotalTxCustom3, dfrapVnipTopoVBertTxDEClrFrames=dfrapVnipTopoVBertTxDEClrFrames, dfrapPerfSnaPerDlciRxAppn=dfrapPerfSnaPerDlciRxAppn, dfrapPerfNetwProtoPerDlciInterval=dfrapPerfNetwProtoPerDlciInterval, dfrapCfgTransitDelayEntry=dfrapCfgTransitDelayEntry, dfrapPerfNetwProtoTotalRxVnip=dfrapPerfNetwProtoTotalRxVnip, dfrapPerfIpTotalRxUdp=dfrapPerfIpTotalRxUdp, dfrapPerfLmiPerDlciRxTotalByteCnt=dfrapPerfLmiPerDlciRxTotalByteCnt, dfrapPerfApplicationTotalTxTelnet=dfrapPerfApplicationTotalTxTelnet, dfrapCfgDteCtsOutput=dfrapCfgDteCtsOutput, dfrapPerfNetwLongTermInterval=dfrapPerfNetwLongTermInterval, dfrapPerfThruputPerDlciDowntime=dfrapPerfThruputPerDlciDowntime, dfrapSysNumSnmpMgrs=dfrapSysNumSnmpMgrs, dfrapBertCompletedTrap=dfrapBertCompletedTrap, dfrapPerfMgmtIpICMPOutMsgs=dfrapPerfMgmtIpICMPOutMsgs, dfrapDiagVBERT=dfrapDiagVBERT, dfrapPerfSnaPerDlciValue=dfrapPerfSnaPerDlciValue, dfrapPerfLmiPerDlciTxFullStatByteCnt=dfrapPerfLmiPerDlciTxFullStatByteCnt, dfrapPerfArpPerDlciRxRarpReq=dfrapPerfArpPerDlciRxRarpReq, dfrapEventTrapLogSeqNum=dfrapEventTrapLogSeqNum, dfrapPerfIpxPerDlciTxSpx=dfrapPerfIpxPerDlciTxSpx, dfrapPerfIpxPerDlciTxNcp=dfrapPerfIpxPerDlciTxNcp, dfrapCfgTelnetCliLcdPassword=dfrapCfgTelnetCliLcdPassword, dfrapPerfIcmpPerDlciTxGmReport=dfrapPerfIcmpPerDlciTxGmReport, dfrapPerfNetwLongTermAltProtocol=dfrapPerfNetwLongTermAltProtocol, dfrapPerfMgmtIpICMPStatsTable=dfrapPerfMgmtIpICMPStatsTable, dfrapPerfIcmpPerDlciTxRedirect=dfrapPerfIcmpPerDlciTxRedirect, dfrapSysTable=dfrapSysTable, dfrapPerfMgmtIpIFInOctets=dfrapPerfMgmtIpIFInOctets, dfrapCfgDteRts=dfrapCfgDteRts, dfrapCfgFrCrcMode=dfrapCfgFrCrcMode, dfrapVloopDownViaRemote=dfrapVloopDownViaRemote, dfrapDiagVBERTSize=dfrapDiagVBERTSize, dfrapPerfIcmpPerDlciTxGmReduct=dfrapPerfIcmpPerDlciTxGmReduct, dfrapPerfIcmpPerDlciTxTimestpRep=dfrapPerfIcmpPerDlciTxTimestpRep, dfrapCfgTDDeleteTable=dfrapCfgTDDeleteTable, dfrapV54LoopbackEnabledTrap=dfrapV54LoopbackEnabledTrap, dfrapStatusMgmtInterface=dfrapStatusMgmtInterface, dfrapPerfIpPerDlciInterval=dfrapPerfIpPerDlciInterval, dfrapDiagBertPattern=dfrapDiagBertPattern, dfrapPerfThruputPerDlciOutageCount=dfrapPerfThruputPerDlciOutageCount, dfrapTftpSuccessTrap=dfrapTftpSuccessTrap, enterprises=enterprises, dfrapDiagDteTable=dfrapDiagDteTable, dfrapVnipTopologyDlci=dfrapVnipTopologyDlci, dfrapPerfSnaTotalTxPeriph=dfrapPerfSnaTotalTxPeriph, dfrapPerfIcmpTotalRxEchoRep=dfrapPerfIcmpTotalRxEchoRep, dfrapLmiSeqNumMismatchDteTrap=dfrapLmiSeqNumMismatchDteTrap, dfrapPerfLmiTotalDlciValue=dfrapPerfLmiTotalDlciValue, dfrapPerfApplicationPerDlciTxCustom1=dfrapPerfApplicationPerDlciTxCustom1, dfrapVbertStarted=dfrapVbertStarted, dfrapPvcTxUtilizationClearedTrap=dfrapPvcTxUtilizationClearedTrap, dfrapPerfSnaTotalInterval=dfrapPerfSnaTotalInterval, dfrapCfgIpChannel=dfrapCfgIpChannel, dfrapPerfCurrentPerDlciAggregateUtilization=dfrapPerfCurrentPerDlciAggregateUtilization, dfrapStatusDteCts=dfrapStatusDteCts, dfrapCfgFrPerfLTProtocolFilterTableClear=dfrapCfgFrPerfLTProtocolFilterTableClear, dfrapCfgFrPerfLTDlciFilterIndex=dfrapCfgFrPerfLTDlciFilterIndex, dfrapSysPPPSupported=dfrapSysPPPSupported, dfrapPerfApplicationTotalRxSnmp=dfrapPerfApplicationTotalRxSnmp, dfrapCfgFrPerfTimersLTInterval=dfrapCfgFrPerfTimersLTInterval, dfrapPerfApplicationPerDlciTxTftp=dfrapPerfApplicationPerDlciTxTftp, dfrapLmiSourcingChangeUserDdsTrap=dfrapLmiSourcingChangeUserDdsTrap, dfrapPerfArpTotalTxInarpRep=dfrapPerfArpTotalTxInarpRep, dfrapPerfArpTotalRxArpReq=dfrapPerfArpTotalRxArpReq, dfrapLocalDteLoopbackEnabledTrap=dfrapLocalDteLoopbackEnabledTrap, dfrapCfgDteDcdOutput=dfrapCfgDteDcdOutput, dfrapCfgCommTable=dfrapCfgCommTable, dfrapPerfApplicationPerDlciRxCustom1=dfrapPerfApplicationPerDlciRxCustom1, dfrapPerfArpPerDlciRxInarpRep=dfrapPerfArpPerDlciRxInarpRep, dfrapPerfNetworkShortTerm=dfrapPerfNetworkShortTerm, dfrapPerfIcmpTotalRxTimestpRep=dfrapPerfIcmpTotalRxTimestpRep, dfrapPerfLmiPerDlciTxLivoEnqByteCnt=dfrapPerfLmiPerDlciTxLivoEnqByteCnt, dfrapPerfMgmtIpIFStatsTable=dfrapPerfMgmtIpIFStatsTable, dfrapPerfThruputPerDlciRxFrame=dfrapPerfThruputPerDlciRxFrame, dfrapVloopRequestFailed=dfrapVloopRequestFailed, dfrapPerfIpxTotalRxTotal=dfrapPerfIpxTotalRxTotal, dfrapPerfNetwProtoTotalTxIpx=dfrapPerfNetwProtoTotalTxIpx, dfrapCfgDdsBPVThresholding=dfrapCfgDdsBPVThresholding, dfrapPerfThruputPerIntfRxAbortCnt=dfrapPerfThruputPerIntfRxAbortCnt, dfrapVnipTopoVBertPerUtilCIR=dfrapVnipTopoVBertPerUtilCIR, dfrapPerfThruputPerDlciPvcState=dfrapPerfThruputPerDlciPvcState, dfrapVnipTopoVBertTransitDelayAvg=dfrapVnipTopoVBertTransitDelayAvg, dfrapPerfIcmpPerDlciRxParamProb=dfrapPerfIcmpPerDlciRxParamProb, dfrapLocalConfigTrap=dfrapLocalConfigTrap, dfrapVBertClear=dfrapVBertClear, dfrapPerfThruputPerDlciTxDe=dfrapPerfThruputPerDlciTxDe, dfrapPerfIcmpTotalTxParamProb=dfrapPerfIcmpTotalTxParamProb, dfrapPerfNetwLongTermEntry=dfrapPerfNetwLongTermEntry, dfrapPerfNetwProtoTotalTxCisco=dfrapPerfNetwProtoTotalTxCisco, dfrapPerfIcmpTotalTxTimestpReq=dfrapPerfIcmpTotalTxTimestpReq, dfrapTrap=dfrapTrap, dfrapPerfRoutingPerDlciTable=dfrapPerfRoutingPerDlciTable, dfrapPerfLmiPerDlciRxFullEnqByteCnt=dfrapPerfLmiPerDlciRxFullEnqByteCnt, dfrapCfgStatus=dfrapCfgStatus, dfrapPerfCurrentAggregateUtilization=dfrapPerfCurrentAggregateUtilization, dfrapPerfLmiTotalRxLivoEnqByteCnt=dfrapPerfLmiTotalRxLivoEnqByteCnt, dfrapLmiSourcingChangePassthruTrap=dfrapLmiSourcingChangePassthruTrap, dfrapPerfIcmpPerDlciTxAddrMaskRep=dfrapPerfIcmpPerDlciTxAddrMaskRep, dfrapDiagVnipInterface=dfrapDiagVnipInterface, dfrapPerfIcmpPerDlciRxEchoReq=dfrapPerfIcmpPerDlciRxEchoReq, dfrapCfgTftpTable=dfrapCfgTftpTable, dfrapCfgFrPerfUserProtocolsEntry=dfrapCfgFrPerfUserProtocolsEntry, dfrapPerfApplicationPerDlciRxCustom4=dfrapPerfApplicationPerDlciRxCustom4, dfrapPerfApplicationTotalInterval=dfrapPerfApplicationTotalInterval, dfrapCfgLockIpAddress=dfrapCfgLockIpAddress, dfrapEventLogAltTable=dfrapEventLogAltTable, dfrapPerfArpTotalRxTotal=dfrapPerfArpTotalRxTotal, dfrapLocalUnitLoopbackDisabledTrap=dfrapLocalUnitLoopbackDisabledTrap, dfrapPerfLmiPerDlciRxFullStatByteCnt=dfrapPerfLmiPerDlciRxFullStatByteCnt, dfrapPerfApplicationTotalRxSnmpTrap=dfrapPerfApplicationTotalRxSnmpTrap, dfrapCfgSnmpMgrDlci=dfrapCfgSnmpMgrDlci, dfrapPerfThruputPerDlciRxUtilizationStatus=dfrapPerfThruputPerDlciRxUtilizationStatus, dfrapPerfMgmtIpICMPOutErrors=dfrapPerfMgmtIpICMPOutErrors, dfrapPerfMgmtIpICMPInDestUnreachs=dfrapPerfMgmtIpICMPInDestUnreachs, dfrapCfgTDDeleteDlciValue=dfrapCfgTDDeleteDlciValue, dfrapDiagVnipEntry=dfrapDiagVnipEntry, dfrapPerfCirTxPercentUtilizationRange6=dfrapPerfCirTxPercentUtilizationRange6, dfrapCfgFrPerfLTProtocolFilterProtocol=dfrapCfgFrPerfLTProtocolFilterProtocol, dfrapPerfRoutingPerDlciTxRip=dfrapPerfRoutingPerDlciTxRip, dfrapPerfCirRxPercentUtilizationRange8=dfrapPerfCirRxPercentUtilizationRange8, dfrapEventLogAltArray=dfrapEventLogAltArray, dfrapSysSelDTESupported=dfrapSysSelDTESupported, dfrapPerfThruputCmdClearDlciStats=dfrapPerfThruputCmdClearDlciStats, dfrapPerfArpTotalTxArpRep=dfrapPerfArpTotalTxArpRep, dfrapPerfArpTotalRxInarpReq=dfrapPerfArpTotalRxInarpReq, dfrapPerfLmiTotalRxOtherByteCnt=dfrapPerfLmiTotalRxOtherByteCnt, dfrapBertFailedTrap=dfrapBertFailedTrap, dfrapPerfApplicationTotalRxTelnet=dfrapPerfApplicationTotalRxTelnet, dfrapPerfIpxPerDlciRxRip=dfrapPerfIpxPerDlciRxRip, dfrapPerfIpPerDlciTxTcp=dfrapPerfIpPerDlciTxTcp, dfrapPerfArpTotalRxRarpRep=dfrapPerfArpTotalRxRarpRep, dfrapPerfArpPerDlciEntry=dfrapPerfArpPerDlciEntry, dfrapCfgFrDLCIValue=dfrapCfgFrDLCIValue, dfrapPerfIcmpPerDlciTxAddrMaskReq=dfrapPerfIcmpPerDlciTxAddrMaskReq, dfrapPerfMgmtIpICMPInErrors=dfrapPerfMgmtIpICMPInErrors, dfrapCfgFrPerfDlciNamesUtilThreshold=dfrapCfgFrPerfDlciNamesUtilThreshold, private=private, dfrapPerfThruputCmdClearAllIntfStats=dfrapPerfThruputCmdClearAllIntfStats, dfrapPerfApplicationTotalTxFtp=dfrapPerfApplicationTotalTxFtp, dfrapPerfIpxPerDlciTxNetbios=dfrapPerfIpxPerDlciTxNetbios, dfrapPerfLmiTotalRxFullEnqByteCnt=dfrapPerfLmiTotalRxFullEnqByteCnt, dfrapPerfArpPerDlciTxOther=dfrapPerfArpPerDlciTxOther, dfrapPerfNetwProtoPerDlciTxTotal=dfrapPerfNetwProtoPerDlciTxTotal, dfrapPerfThruputPerIntfRxBpvCnt=dfrapPerfThruputPerIntfRxBpvCnt, dfrapPerfThruputPerDlciMTTSR=dfrapPerfThruputPerDlciMTTSR, dfrapPerfRoutingPerDlciRxOspf=dfrapPerfRoutingPerDlciRxOspf, dfrapPerfSnaPerDlciTxPeriph=dfrapPerfSnaPerDlciTxPeriph, dfrapSysContact=dfrapSysContact, dfrapStatusDteDsr=dfrapStatusDteDsr, dfrapPerfMgmtIpICMPOutRedirects=dfrapPerfMgmtIpICMPOutRedirects, dfrapPerfSnaPerDlciTxNetbios=dfrapPerfSnaPerDlciTxNetbios, dfrapStatusDteDtr=dfrapStatusDteDtr, dfrapPerfApplicationPerDlciRxCustom2=dfrapPerfApplicationPerDlciRxCustom2, dfrapPerfThruputPerDlciAvailability=dfrapPerfThruputPerDlciAvailability, dfrapStatusLmiAutosense=dfrapStatusLmiAutosense, dfrapCfgIpTelnetEnable=dfrapCfgIpTelnetEnable, dfrapDteSignalDtrOnTrap=dfrapDteSignalDtrOnTrap, dfrapSysAmtMemoryInstalled=dfrapSysAmtMemoryInstalled, dfrapPerfIcmpPerDlciRxTimestpReq=dfrapPerfIcmpPerDlciRxTimestpReq, dfrapCfgTftpNumBytes=dfrapCfgTftpNumBytes, dfrapPerfIpPerDlciTable=dfrapPerfIpPerDlciTable, dfrapPerfIpxTotalTxNcp=dfrapPerfIpxTotalTxNcp, dfrapCfgDteTiming=dfrapCfgDteTiming, dfrapCfgFrPerfLTProtocolFilterEntry=dfrapCfgFrPerfLTProtocolFilterEntry, dfrapCfgFrPerfDlciDefaultUtilThreshold=dfrapCfgFrPerfDlciDefaultUtilThreshold, dfrapPerfIpPerDlciRxOther=dfrapPerfIpPerDlciRxOther, dfrapCfgLockID=dfrapCfgLockID, dfrapVnipTopoTDMinDelay=dfrapVnipTopoTDMinDelay, dfrapPerfIcmpTotalTxAddrMaskReq=dfrapPerfIcmpTotalTxAddrMaskReq, dfrapPerfIcmpTotalTxSrcQuench=dfrapPerfIcmpTotalTxSrcQuench, dfrapPerfMgmtIpICMPInRedirects=dfrapPerfMgmtIpICMPInRedirects, dfrapPerfArpTotalTxTotal=dfrapPerfArpTotalTxTotal, dfrapCfgIpTable=dfrapCfgIpTable, dfrapPerfMgmtIpICMPOutEchoReps=dfrapPerfMgmtIpICMPOutEchoReps, dfrapEventTrapLogVarBind1=dfrapEventTrapLogVarBind1, dfrapPerfApplicationTotalRxCustom1=dfrapPerfApplicationTotalRxCustom1, dfrapPerfIpxTotalRxOther=dfrapPerfIpxTotalRxOther, dfrapPerfNetwProtoTotalTxAnnexG=dfrapPerfNetwProtoTotalTxAnnexG, dfrapPerfLmiTotalTxLivoEnqByteCnt=dfrapPerfLmiTotalTxLivoEnqByteCnt, dfrapPerfIpxTotalRxNcp=dfrapPerfIpxTotalRxNcp, dfrapPerfCurrentPerDlciUtilizationTable=dfrapPerfCurrentPerDlciUtilizationTable, dfrapPerfNetwProtoPerDlciTxAnnexG=dfrapPerfNetwProtoPerDlciTxAnnexG, dfrapPerfArpPerDlciTxInarpReq=dfrapPerfArpPerDlciTxInarpReq, dfrapEventTrapLogVarBind3=dfrapEventTrapLogVarBind3, dfrapVnipTopologyLocalDlci=dfrapVnipTopologyLocalDlci, dfrapPerfIpTotalInterval=dfrapPerfIpTotalInterval, dfrapSysMLSupported=dfrapSysMLSupported, dfrapNonLatchingLoopbackEnabledTrap=dfrapNonLatchingLoopbackEnabledTrap, dfrapSystem=dfrapSystem, dfrapPerfIpxPerDlciInterval=dfrapPerfIpxPerDlciInterval, dfrapPerfCirRxPercentUtilizationRange3=dfrapPerfCirRxPercentUtilizationRange3, dfrapPerfApplicationTotalTxCustom2=dfrapPerfApplicationTotalTxCustom2, dfrapCfgFrPerfDlciNamesDlciValue=dfrapCfgFrPerfDlciNamesDlciValue, dfrapPerfThruputPerDlciRxThruput=dfrapPerfThruputPerDlciRxThruput, dfrapPerfThruputPerDlciTxThruput=dfrapPerfThruputPerDlciTxThruput, dfrapPerfIpTotalRxTcp=dfrapPerfIpTotalRxTcp, dfrapPerfApplicationPerDlciTxCustom2=dfrapPerfApplicationPerDlciTxCustom2, dfrapCfgSnmpMgrIP=dfrapCfgSnmpMgrIP, dfrapPerfApplicationTotalRxTftp=dfrapPerfApplicationTotalRxTftp, dfrapPerfArpTotalTable=dfrapPerfArpTotalTable, dfrapCfgDdsTable=dfrapCfgDdsTable, dfrapStatusAllLEDs=dfrapStatusAllLEDs, dfrapPerfIpPerDlciValue=dfrapPerfIpPerDlciValue, dfrapPerfArpPerDlciTxRarpReq=dfrapPerfArpPerDlciTxRarpReq, dfrapPerfMgmtIpIPInHdrErr=dfrapPerfMgmtIpIPInHdrErr, dfrapPerfArpTotalRxArpRep=dfrapPerfArpTotalRxArpRep, dfrapDiagDteV54Lpbk=dfrapDiagDteV54Lpbk, dfrapPerfApplicationPerDlciTxCustom4=dfrapPerfApplicationPerDlciTxCustom4, dfrapStatusDteRxLED=dfrapStatusDteRxLED, dfrapPerfCirTxPercentUtilizationRange5=dfrapPerfCirTxPercentUtilizationRange5, dfrapCfgTransitDelayRcvSummaryCancel=dfrapCfgTransitDelayRcvSummaryCancel, dfrapDiagUnitLocLoop=dfrapDiagUnitLocLoop, dfrapCfgTransitDelayTableClear=dfrapCfgTransitDelayTableClear, dfrapSysNumMaintInstalled=dfrapSysNumMaintInstalled, dfrapPerfApplicationTotalRxHttp=dfrapPerfApplicationTotalRxHttp, dfrapLocalNetLoopbackEnabledTrap=dfrapLocalNetLoopbackEnabledTrap, dfrapPerfIcmpPerDlciRxGmReduct=dfrapPerfIcmpPerDlciRxGmReduct, dfrapVnipTopologyInterface=dfrapVnipTopologyInterface, dfrapPerfRoutingTotalRxOspf=dfrapPerfRoutingTotalRxOspf, dfrapVnipTopoTDAvgDelay=dfrapVnipTopoTDAvgDelay, dfrapTftpProgrammingTrap=dfrapTftpProgrammingTrap, dfrapConfigInstallSuccess=dfrapConfigInstallSuccess, dfrapPerfApplicationPerDlciTxSnmpTrap=dfrapPerfApplicationPerDlciTxSnmpTrap) mibBuilder.exportSymbols('DFRAP-MIB', dfrapPerfThruputCmdAvailabilityStsDlciReset=dfrapPerfThruputCmdAvailabilityStsDlciReset, dfrapDiagBertResyncs=dfrapDiagBertResyncs, dfrapPerfCirPercentUtilization=dfrapPerfCirPercentUtilization, dfrapPerfArpPerDlciTxInarpRep=dfrapPerfArpPerDlciTxInarpRep, dfrapCfgFrPerfDlciNamesEntry=dfrapCfgFrPerfDlciNamesEntry, dfrapPerfThruputPerDlciTxUtilizationStatus=dfrapPerfThruputPerDlciTxUtilizationStatus, dfrapPerfIcmpTotalInterval=dfrapPerfIcmpTotalInterval, dfrapPerfNetwProtoPerDlciRxArp=dfrapPerfNetwProtoPerDlciRxArp, dfrapPerfIcmpTotalTxAddrMaskRep=dfrapPerfIcmpTotalTxAddrMaskRep, dfrapPerfNetwProtoTotalRxIpx=dfrapPerfNetwProtoTotalRxIpx, dfrapCfgFrPerfLTDlciFilterTableClear=dfrapCfgFrPerfLTDlciFilterTableClear, dfrapPerfThruputPerDlciMTBSO=dfrapPerfThruputPerDlciMTBSO, dfrapPerfRoutingTotalInterval=dfrapPerfRoutingTotalInterval, dfrapPerfApplicationPerDlciRxSnmpTrap=dfrapPerfApplicationPerDlciRxSnmpTrap, dfrapPerfApplicationPerDlciRxSnmp=dfrapPerfApplicationPerDlciRxSnmp, dfrapPerfIcmpPerDlciRxGmReport=dfrapPerfIcmpPerDlciRxGmReport, dfrapPerfIcmpTotalTxEchoReq=dfrapPerfIcmpTotalTxEchoReq, dfrapPerfIcmpPerDlciRxAddrMaskReq=dfrapPerfIcmpPerDlciRxAddrMaskReq, dfrapPerfIcmpPerDlciEntry=dfrapPerfIcmpPerDlciEntry, dfrapPerfMgmtIpTCPCurrEstab=dfrapPerfMgmtIpTCPCurrEstab, dfrapPerfRoutingPerDlciTxOspf=dfrapPerfRoutingPerDlciTxOspf, dfrapCfgFrAddrResMode=dfrapCfgFrAddrResMode, dfrapPerfLmiTotalTable=dfrapPerfLmiTotalTable, dfrapStatusDdsLineStatus=dfrapStatusDdsLineStatus, dfrapPerfMgmtIpIFOutOctets=dfrapPerfMgmtIpIFOutOctets, dfrapStatusDteTable=dfrapStatusDteTable, dfrapPerfIcmpTotalTxTotal=dfrapPerfIcmpTotalTxTotal, dfrapCfgCommParity=dfrapCfgCommParity, dfrapPerfArpPerDlciTable=dfrapPerfArpPerDlciTable, dfrapPerfNetworkLongTerm=dfrapPerfNetworkLongTerm, dfrapCfgSnmpMgrEntry=dfrapCfgSnmpMgrEntry, dfrapCfgTftpDlci=dfrapCfgTftpDlci, dfrapEventTrapLogVarBind2=dfrapEventTrapLogVarBind2, dfrapDLCIInactiveTrap=dfrapDLCIInactiveTrap, dfrapPerfIpTotalTable=dfrapPerfIpTotalTable, dfrapPerfThruputPerIntfTxFrameCnt=dfrapPerfThruputPerIntfTxFrameCnt, dfrapPerfIpTotalTxOther=dfrapPerfIpTotalTxOther, dfrapDiagVBERTRate=dfrapDiagVBERTRate, dfrapPerfMgmtIpIPInDscrd=dfrapPerfMgmtIpIPInDscrd, dfrapPerfApplicationPerDlciValue=dfrapPerfApplicationPerDlciValue, dfrapPerfIcmpPerDlciRxGmQuery=dfrapPerfIcmpPerDlciRxGmQuery, dfrapPerfArpTotalRxOther=dfrapPerfArpTotalRxOther, dfrapCfgIpMaxMTU=dfrapCfgIpMaxMTU, dfrapPerfRoutingTotalTxNetbios=dfrapPerfRoutingTotalTxNetbios, dfrapEventLogAltSeqNum=dfrapEventLogAltSeqNum, dfrapPerfSnaPerDlciEntry=dfrapPerfSnaPerDlciEntry, dfrapPerfNetwProtoTotalTxTotal=dfrapPerfNetwProtoTotalTxTotal, dfrapPerfIpPerDlciEntry=dfrapPerfIpPerDlciEntry, dfrapPerfIpxPerDlciRxNcp=dfrapPerfIpxPerDlciRxNcp, dfrapPerfApplicationPerDlciRxHttp=dfrapPerfApplicationPerDlciRxHttp, dfrapPerfArpPerDlciTxArpRep=dfrapPerfArpPerDlciTxArpRep, dfrapStatusMgmtInterfaceStatus=dfrapStatusMgmtInterfaceStatus, dfrapPerfApplicationTotalRxCustom2=dfrapPerfApplicationTotalRxCustom2, dfrapEventLogClear=dfrapEventLogClear, dfrapPerfSnaPerDlciTxSubarea=dfrapPerfSnaPerDlciTxSubarea, dfrapPerfCirPercentUtilizationTable=dfrapPerfCirPercentUtilizationTable, dfrapSysResetNode=dfrapSysResetNode, dfrapVloopDown=dfrapVloopDown, dfrapPerfMgmtIpICMPOutEchos=dfrapPerfMgmtIpICMPOutEchos, dfrapPerfCirTxPercentUtilizationRange7=dfrapPerfCirTxPercentUtilizationRange7, dfrapCfgCommFlowCtrl=dfrapCfgCommFlowCtrl, dfrapPerfThruputCmdClearAllStats=dfrapPerfThruputCmdClearAllStats, dfrapCfgFrPerfLTDlciFilterDlciNum=dfrapCfgFrPerfLTDlciFilterDlciNum, dfrapPerfNetwProtoTotalTxIp=dfrapPerfNetwProtoTotalTxIp, dfrapEventTrapLogTable=dfrapEventTrapLogTable, dfrapPerfThruputPerDlciTable=dfrapPerfThruputPerDlciTable, dfrapPerfMgmtIpIPInProtUnk=dfrapPerfMgmtIpIPInProtUnk, dfrapPerfIcmpPerDlciRxAddrMaskRep=dfrapPerfIcmpPerDlciRxAddrMaskRep, dfrapConfiguration=dfrapConfiguration, dfrapDiagBertErrors=dfrapDiagBertErrors, dfrapVnipTopoTDMaxDelay=dfrapVnipTopoTDMaxDelay, dfrapPerfMgmtIpUDPNoPorts=dfrapPerfMgmtIpUDPNoPorts, dfrapPerfIcmpTotalTxTimestpRep=dfrapPerfIcmpTotalTxTimestpRep, dfrapPerfIpxTotalRxSpx=dfrapPerfIpxTotalRxSpx, dfrapCfgCliPassword=dfrapCfgCliPassword, dfrapPvcRxUtilizationExceededTrap=dfrapPvcRxUtilizationExceededTrap, dfrapPerfIcmpTotalRxSrcQuench=dfrapPerfIcmpTotalRxSrcQuench, dfrapStatus=dfrapStatus, dfrapPerfNetwProtoTotalEntry=dfrapPerfNetwProtoTotalEntry, dfrapPerfIcmpPerDlciRxRedirect=dfrapPerfIcmpPerDlciRxRedirect, dfrapDteSignalRtsOffTrap=dfrapDteSignalRtsOffTrap, dfrapVnipTransitDelayClear=dfrapVnipTransitDelayClear, dfrapStatusDteModeLED=dfrapStatusDteModeLED, dfrapPerfMgmtIpICMPOutParmProbs=dfrapPerfMgmtIpICMPOutParmProbs, dfrapPerfIpPerDlciTxIcmp=dfrapPerfIpPerDlciTxIcmp, dfrapPerfIcmpPerDlciTable=dfrapPerfIcmpPerDlciTable, dfrapPerfNetwProtoTotalInterval=dfrapPerfNetwProtoTotalInterval, dfrapVnipTopologyIndex=dfrapVnipTopologyIndex, dfrapPerfNetwProtoTotalRxTotal=dfrapPerfNetwProtoTotalRxTotal, dfrapPerfMgmtIp=dfrapPerfMgmtIp, dfrapPerfArpTotalTxInarpReq=dfrapPerfArpTotalTxInarpReq, dfrapDteSignalRtsOnTrap=dfrapDteSignalRtsOnTrap, dfrapCfgIpMyIP=dfrapCfgIpMyIP, dfrapDiagDdsTable=dfrapDiagDdsTable, dfrapPerfThruputCmdAllStsDlciResetAll=dfrapPerfThruputCmdAllStsDlciResetAll, dfrapStatusDteDcd=dfrapStatusDteDcd, dfrapPerfCirRxPercentUtilizationRange2=dfrapPerfCirRxPercentUtilizationRange2, dfrapCfgFrPerfUserProtocolsTableClear=dfrapCfgFrPerfUserProtocolsTableClear, dfrapPerfApplicationTotalTxSnmpTrap=dfrapPerfApplicationTotalTxSnmpTrap, dfrapPerfIpxTotalTxNetbios=dfrapPerfIpxTotalTxNetbios, dfrapCfgIpMask=dfrapCfgIpMask, dfrapStatusMgmtTable=dfrapStatusMgmtTable, dfrapPerfArpTotalRxInarpRep=dfrapPerfArpTotalRxInarpRep, dfrapPerfRoutingPerDlciRxRip=dfrapPerfRoutingPerDlciRxRip, dfrapPerfIpxTotalTxSpx=dfrapPerfIpxTotalTxSpx, dfrapLineFailureTrap=dfrapLineFailureTrap, dfrapPerfNetwProtoPerDlciRxIpx=dfrapPerfNetwProtoPerDlciRxIpx, dfrapBPVThresholdExceededTrap=dfrapBPVThresholdExceededTrap, dfrapCfgDdsLoopRate=dfrapCfgDdsLoopRate, dfrapPerfNetwProtoTotalRxAnnexG=dfrapPerfNetwProtoTotalRxAnnexG, dfrapCfgFrPerfDlciNamesDelete=dfrapCfgFrPerfDlciNamesDelete, dfrapCfgCommMode=dfrapCfgCommMode, dfrapPerfMgmtIpTCPPassiveOpens=dfrapPerfMgmtIpTCPPassiveOpens, dfrapPerfCurrentPerDlciTxUtilization=dfrapPerfCurrentPerDlciTxUtilization, dfrapCfgFrPerfLTDlciFilterTable=dfrapCfgFrPerfLTDlciFilterTable, dfrapPerfIcmpTotalTxTimeExcd=dfrapPerfIcmpTotalTxTimeExcd, dfrapPerfLmiPerDlciInterval=dfrapPerfLmiPerDlciInterval, dfrapPerfSnaTotalRxTotal=dfrapPerfSnaTotalRxTotal, dfrapPerfNetwLongTermTable=dfrapPerfNetwLongTermTable, dfrapPerfIcmpPerDlciTxSrcQuench=dfrapPerfIcmpPerDlciTxSrcQuench, dfrapPerfSnaTotalRxPeriph=dfrapPerfSnaTotalRxPeriph, dfrapPerfApplicationTotalRxCustom3=dfrapPerfApplicationTotalRxCustom3, dfrapPerfApplicationPerDlciTxHttp=dfrapPerfApplicationPerDlciTxHttp, dfrapPerfLmiTotalInterval=dfrapPerfLmiTotalInterval, dfrapPerfIcmpPerDlciTxParamProb=dfrapPerfIcmpPerDlciTxParamProb, dfrapPerfMgmtIpTCPStatsTable=dfrapPerfMgmtIpTCPStatsTable, dfrapBertInitiatedTrap=dfrapBertInitiatedTrap, dfrapPerfCurrentPerDlciUtilizationDlciValue=dfrapPerfCurrentPerDlciUtilizationDlciValue, dfrapSysNumT1Installed=dfrapSysNumT1Installed, dfrapCfgTftpIpAddress=dfrapCfgTftpIpAddress, dfrapPerfThruputCmdAllStsDlciReset=dfrapPerfThruputCmdAllStsDlciReset, dfrapPerfIpPerDlciRxTcp=dfrapPerfIpPerDlciRxTcp, dfrapPerfIcmpTotalRxParamProb=dfrapPerfIcmpTotalRxParamProb, dfrapCfgTftpInterface=dfrapCfgTftpInterface, dfrapPerfCurrentUnitUtilization=dfrapPerfCurrentUnitUtilization, dfrapPerfLmiTotalRxTotalByteCnt=dfrapPerfLmiTotalRxTotalByteCnt, dfrapPerfApplicationTotalTxSmtp=dfrapPerfApplicationTotalTxSmtp, dfrapPerfThruputPerDlciCreateTime=dfrapPerfThruputPerDlciCreateTime, dfrapPerfMgmtIpIFOperStatus=dfrapPerfMgmtIpIFOperStatus, dfrapCfgVnipTransitDelayFrequency=dfrapCfgVnipTransitDelayFrequency, dfrapPerfRoutingPerDlciRxNetbios=dfrapPerfRoutingPerDlciRxNetbios, dfrapPerfThruputPerDlciRxByte=dfrapPerfThruputPerDlciRxByte, dfrapDLCIActiveTrap=dfrapDLCIActiveTrap, dfrapPerfApplicationPerDlciRxTftp=dfrapPerfApplicationPerDlciRxTftp, dfrapSysRDOSupported=dfrapSysRDOSupported, dfrapCfgVnipKeepAliveTimer=dfrapCfgVnipKeepAliveTimer, dfrapPerfNetwProtoTotalTxVnip=dfrapPerfNetwProtoTotalTxVnip, dfrapCfgFrPerfDlciUtilDuration=dfrapCfgFrPerfDlciUtilDuration, dfrapStatusDdsTable=dfrapStatusDdsTable, dfrapTftpHostUnreachableTrap=dfrapTftpHostUnreachableTrap, dfrapPerfMgmtIpICMPOutDestUnreachs=dfrapPerfMgmtIpICMPOutDestUnreachs, dfrapPerfNetwProtoTotalTxArp=dfrapPerfNetwProtoTotalTxArp, dfrapPerfArpTotalTxOther=dfrapPerfArpTotalTxOther, dfrapDiagBertStatus=dfrapDiagBertStatus, dfrapCfgVnipInactivityTimer=dfrapCfgVnipInactivityTimer, dfrapPerfIpxTotalRxNetbios=dfrapPerfIpxTotalRxNetbios, dfrapPerfThruputPerDlciTxFrame=dfrapPerfThruputPerDlciTxFrame, dfrapStatusDdsModeLED=dfrapStatusDdsModeLED, dfrapPerfIcmpPerDlciRxPktTooBig=dfrapPerfIcmpPerDlciRxPktTooBig, dfrapPerfLmiPerDlciRxOtherByteCnt=dfrapPerfLmiPerDlciRxOtherByteCnt, dfrapCfgFrDLCIMgmtDE=dfrapCfgFrDLCIMgmtDE, dfrapPerfArpTotalTxArpReq=dfrapPerfArpTotalTxArpReq, dfrapPerfLmiTotalTxFullStatByteCnt=dfrapPerfLmiTotalTxFullStatByteCnt, dfrapPerfApplicationTotalTxCustom1=dfrapPerfApplicationTotalTxCustom1, dfrapPerfIpPerDlciTxIgrp=dfrapPerfIpPerDlciTxIgrp, dfrapSysSLIPSupported=dfrapSysSLIPSupported, dfrapTrapMutingActive=dfrapTrapMutingActive, dfrapStatusMgmtChannel=dfrapStatusMgmtChannel, dfrapPerfIcmpPerDlciTxEchoRep=dfrapPerfIcmpPerDlciTxEchoRep, dfrapPerfIcmpPerDlciRxTimestpRep=dfrapPerfIcmpPerDlciRxTimestpRep, dfrapPerfIpTotalTxTcp=dfrapPerfIpTotalTxTcp, dfrapPerfCirPercentUtilizationInterval=dfrapPerfCirPercentUtilizationInterval, dfrapSimplexCurrentLoopbackEnabledTrap=dfrapSimplexCurrentLoopbackEnabledTrap, dfrapCfgTftpStatus=dfrapCfgTftpStatus, dfrapCfgFrPerfUserProtocolsIndex=dfrapCfgFrPerfUserProtocolsIndex, Index=Index, dfrapPerfThruputCmdCountsStsDlciReset=dfrapPerfThruputCmdCountsStsDlciReset, dfrapPerfNetwProtoPerDlciTxVnip=dfrapPerfNetwProtoPerDlciTxVnip, dfrapPerfMgmtIpUDPOutDatagrams=dfrapPerfMgmtIpUDPOutDatagrams, dfrapCfgUpdate=dfrapCfgUpdate, dfrapPerfIpPerDlciTxTotal=dfrapPerfIpPerDlciTxTotal, dfrapPerfApplicationPerDlciTxCustom3=dfrapPerfApplicationPerDlciTxCustom3, dfrapCfgAppClockSource=dfrapCfgAppClockSource, dfrapPerfIpxTotalTxSap=dfrapPerfIpxTotalTxSap, dfrapStatusDteStatusLED=dfrapStatusDteStatusLED, dfrapCfgAppPerfBuffLimit=dfrapCfgAppPerfBuffLimit, dfrapCfgFrPerfDlciNamesEirValue=dfrapCfgFrPerfDlciNamesEirValue, dfrapPerfArpPerDlciRxTotal=dfrapPerfArpPerDlciRxTotal, dfrapPerfCirRxPercentUtilizationRange4=dfrapPerfCirRxPercentUtilizationRange4, dfrapEventTrapLogEntry=dfrapEventTrapLogEntry, dfrapCfgFrPerfLTProtocolFilterTable=dfrapCfgFrPerfLTProtocolFilterTable, dfrapLocalDteLoopbackDisabledTrap=dfrapLocalDteLoopbackDisabledTrap, dfrapPerfNetwProtoTotalRxCisco=dfrapPerfNetwProtoTotalRxCisco, dfrapCfgFrPerfUserProtocolsPortNum=dfrapCfgFrPerfUserProtocolsPortNum, dfrapPerfApplicationPerDlciRxTelnet=dfrapPerfApplicationPerDlciRxTelnet, dfrapLmiSourcingChangeNetDteTrap=dfrapLmiSourcingChangeNetDteTrap, dfrapSysType=dfrapSysType, dfrapLmiSourcingChangeNetDdsTrap=dfrapLmiSourcingChangeNetDdsTrap, dfrapPerfNetwLongTermAltDlci=dfrapPerfNetwLongTermAltDlci, dfrapPerfSnaTotalTxTotal=dfrapPerfSnaTotalTxTotal, dfrapCfgDteDsrOutput=dfrapCfgDteDsrOutput, dfrapPerfIcmpTotalTxRedirect=dfrapPerfIcmpTotalTxRedirect, dfrapDteSignalDtrOffTrap=dfrapDteSignalDtrOffTrap, dfrapCfgDteIntfType=dfrapCfgDteIntfType, dfrapPerfThruputPerDlciValue=dfrapPerfThruputPerDlciValue, dfrapPerfIcmpPerDlciTxTotal=dfrapPerfIcmpPerDlciTxTotal, dfrapCfgFrPerfTimers=dfrapCfgFrPerfTimers, dfrapPerfCurrentWanUtilization=dfrapPerfCurrentWanUtilization, dfrapPerfNetwProtoTotalRxArp=dfrapPerfNetwProtoTotalRxArp, dfrapPerfThruputCmdAvailabilityStsDlciResetAll=dfrapPerfThruputCmdAvailabilityStsDlciResetAll, sync=sync, dfrapPerfIcmpTotalTxGmReduct=dfrapPerfIcmpTotalTxGmReduct, dfrapDiagDteRmtV54Lpbk=dfrapDiagDteRmtV54Lpbk, dfrapCfgFrPerfUnprovDlcisDelete=dfrapCfgFrPerfUnprovDlcisDelete, dfrapPerfSnaTotalTable=dfrapPerfSnaTotalTable, dfrapPerfCirRxPercentUtilizationRange5=dfrapPerfCirRxPercentUtilizationRange5, dfrapNonIncrLmiSeqNumDteTrap=dfrapNonIncrLmiSeqNumDteTrap, dfrapPerfIcmpPerDlciTxPktTooBig=dfrapPerfIcmpPerDlciTxPktTooBig, dfrapPerfIpTotalRxIcmp=dfrapPerfIpTotalRxIcmp, dfrapPerfApplicationTotalTxHttp=dfrapPerfApplicationTotalTxHttp, dfrapPerfIcmpTotalRxGmReduct=dfrapPerfIcmpTotalRxGmReduct, dfrapTrapMutingInactive=dfrapTrapMutingInactive, dfrapCfgFrPerfDlciNamesTable=dfrapCfgFrPerfDlciNamesTable, dfrapPerfIpxTotalTable=dfrapPerfIpxTotalTable, dfrapVnipTopoTDNumSamples=dfrapVnipTopoTDNumSamples, dfrapVloopUpViaRemote=dfrapVloopUpViaRemote, dfrapStatusDdsLoopLength=dfrapStatusDdsLoopLength, dfrapInterface=dfrapInterface, dfrapPerfLmiTotalTxTotalByteCnt=dfrapPerfLmiTotalTxTotalByteCnt, dfrapPerfSnaTotalTxAppn=dfrapPerfSnaTotalTxAppn, dfrapPerfIpPerDlciTxOther=dfrapPerfIpPerDlciTxOther, dfrapCfgVnipTable=dfrapCfgVnipTable, dfrapCfgTDDeleteEntry=dfrapCfgTDDeleteEntry, dfrapCfgFrPerfLTProtocolFilterIndex=dfrapCfgFrPerfLTProtocolFilterIndex, dfrapPerfRoutingPerDlciValue=dfrapPerfRoutingPerDlciValue, dfrapPerfNetwProtoPerDlciTxSna=dfrapPerfNetwProtoPerDlciTxSna, dfrapVnipTopoVBertRxDEClrFrames=dfrapVnipTopoVBertRxDEClrFrames, dfrapSysBootRev=dfrapSysBootRev, dfrapStatusMgmtDefaultDLCINo=dfrapStatusMgmtDefaultDLCINo, dfrapPerfNetwLongTermAltEntry=dfrapPerfNetwLongTermAltEntry, dfrapPerfApplicationPerDlciTxSnmp=dfrapPerfApplicationPerDlciTxSnmp, dfrapPerfNetworkLongTermCommands=dfrapPerfNetworkLongTermCommands, dfrapPerfCurrentPerDlciRxUtilization=dfrapPerfCurrentPerDlciRxUtilization, dfrapCfgAppCircuitId=dfrapCfgAppCircuitId, dfrapCfgAppTable=dfrapCfgAppTable, dfrapPerfLmiTotalEntry=dfrapPerfLmiTotalEntry, dfrapPerfNetworkLongTermCmdClear=dfrapPerfNetworkLongTermCmdClear, dfrapEventTrapLog=dfrapEventTrapLog, dfrapCfgFrLmiKeepaliveTimeout=dfrapCfgFrLmiKeepaliveTimeout, dfrapPerfIpPerDlciRxUdp=dfrapPerfIpPerDlciRxUdp, dfrapPerfSnaPerDlciTable=dfrapPerfSnaPerDlciTable, dfrapCfgFrDLCIEncap=dfrapCfgFrDLCIEncap, dfrapPerfSnaPerDlciRxSubarea=dfrapPerfSnaPerDlciRxSubarea, dfrapPerfThruputPerDlciRxFecn=dfrapPerfThruputPerDlciRxFecn) mibBuilder.exportSymbols('DFRAP-MIB', dfrapPerfMgmtIpIPOutRqst=dfrapPerfMgmtIpIPOutRqst, dfrapDiagVBERTTestPeriod=dfrapDiagVBERTTestPeriod, dfrapCfgFrDLCITable=dfrapCfgFrDLCITable, dfrapCfgSecurityTable=dfrapCfgSecurityTable, dfrapPerfIcmpPerDlciRxTotal=dfrapPerfIcmpPerDlciRxTotal, dfrapPerfNetwProtoTotalTxOther=dfrapPerfNetwProtoTotalTxOther, dfrapPerfMgmtIpIPInDlvrs=dfrapPerfMgmtIpIPInDlvrs, dfrapSysNumUserProtocols=dfrapSysNumUserProtocols, dfrapCfgTftpPassword=dfrapCfgTftpPassword, dfrapPerfIcmpTotalRxGmQuery=dfrapPerfIcmpTotalRxGmQuery, dfrapCfgFrTable=dfrapCfgFrTable, dfrapCfgFrPerfUserProtocolsTable=dfrapCfgFrPerfUserProtocolsTable, dfrapPerfApplicationTotalRxCustom4=dfrapPerfApplicationTotalRxCustom4, dfrapPerfIcmpTotalRxAddrMaskRep=dfrapPerfIcmpTotalRxAddrMaskRep, dfrapDLCITDThresholdTrap=dfrapDLCITDThresholdTrap, dfrapCfgTDDeleteInterface=dfrapCfgTDDeleteInterface, dfrapPerfMgmtIpICMPInEchoReps=dfrapPerfMgmtIpICMPInEchoReps, dfrapPerfCirTxPercentUtilizationRange3=dfrapPerfCirTxPercentUtilizationRange3, dfrapSysETHSupported=dfrapSysETHSupported, dfrapTftpTransferringTrap=dfrapTftpTransferringTrap, dfrapDiagDdsRmtLpbk=dfrapDiagDdsRmtLpbk, dfrapCfgSetCommunityString=dfrapCfgSetCommunityString, dfrapPerfIcmpTotalTable=dfrapPerfIcmpTotalTable, dfrapCfgFrPerfDlciNamesDlciName=dfrapCfgFrPerfDlciNamesDlciName, dfrapLineInServiceTrap=dfrapLineInServiceTrap, dfrapEventLogCurrentSeqNum=dfrapEventLogCurrentSeqNum, dfrapV54LoopbackFailedTrap=dfrapV54LoopbackFailedTrap, dfrapCfgTftpInitiate=dfrapCfgTftpInitiate, dfrapPerfIpPerDlciTxUdp=dfrapPerfIpPerDlciTxUdp, dfrapPerfIpTotalTxIgrp=dfrapPerfIpTotalTxIgrp, dfrapPerfLmiPerDlciTxFullEnqByteCnt=dfrapPerfLmiPerDlciTxFullEnqByteCnt, dfrapPerfRoutingTotalTxOspf=dfrapPerfRoutingTotalTxOspf, dfrapTftpAbortedTrap=dfrapTftpAbortedTrap, dfrapPercentUtilization=dfrapPercentUtilization, dfrapPerfIcmpTotalTxGmQuery=dfrapPerfIcmpTotalTxGmQuery, dfrapPerfThruputCommands=dfrapPerfThruputCommands, dfrapCfgCommStopBits=dfrapCfgCommStopBits, dfrapPerfIcmpPerDlciRxSrcQuench=dfrapPerfIcmpPerDlciRxSrcQuench, dfrapPerfMgmtIpIPInRcv=dfrapPerfMgmtIpIPInRcv, dfrapPerfApplicationTotalRxFtp=dfrapPerfApplicationTotalRxFtp, dfrapPerfThruputPerIntfTxByteCnt=dfrapPerfThruputPerIntfTxByteCnt, dfrapCfgAppLpbkTimeout=dfrapCfgAppLpbkTimeout, dfrapPerfThruputPerDlciEntry=dfrapPerfThruputPerDlciEntry, dfrapPerfArpPerDlciTxTotal=dfrapPerfArpPerDlciTxTotal, dfrapPerfThruputCmdReplaceDlciTable=dfrapPerfThruputCmdReplaceDlciTable, dfrapBPVThresholdAcceptableTrap=dfrapBPVThresholdAcceptableTrap, dfrapVnipTopologyIpAddr=dfrapVnipTopologyIpAddr, dfrapPerfSnaPerDlciRxTotal=dfrapPerfSnaPerDlciRxTotal, dfrapCfgSnmpMgrIndex=dfrapCfgSnmpMgrIndex, dfrapPerfThruputPerIntfTable=dfrapPerfThruputPerIntfTable, dfrapPerfMgmtIpTCPOutSegs=dfrapPerfMgmtIpTCPOutSegs, dfrapPerfNetwProtoPerDlciEntry=dfrapPerfNetwProtoPerDlciEntry, dfrapPerfIpPerDlciRxIgrp=dfrapPerfIpPerDlciRxIgrp, dfrapPerfRoutingPerDlciInterval=dfrapPerfRoutingPerDlciInterval, dfrapPerfApplicationPerDlciRxCustom3=dfrapPerfApplicationPerDlciRxCustom3, dfrapDiagVnipDlci=dfrapDiagVnipDlci, dfrapPerfNetwLongTermProtocol=dfrapPerfNetwLongTermProtocol, dfrapDiagDdsLclLpbk=dfrapDiagDdsLclLpbk, dfrapPerfIcmpTotalRxPktTooBig=dfrapPerfIcmpTotalRxPktTooBig, dfrapPerfIpPerDlciRxTotal=dfrapPerfIpPerDlciRxTotal, dfrapDiagUnitTable=dfrapDiagUnitTable, dfrapPerfIpxPerDlciEntry=dfrapPerfIpxPerDlciEntry, dfrapVnipTopoVBertTransitDelayMax=dfrapVnipTopoVBertTransitDelayMax, dfrapPerfMgmtIpTCPInSegs=dfrapPerfMgmtIpTCPInSegs, dfrapPerfSnaTotalRxNetbios=dfrapPerfSnaTotalRxNetbios, dfrapPerfMgmtIpUDPStatsTable=dfrapPerfMgmtIpUDPStatsTable, dfrapPerfIpxPerDlciTxOther=dfrapPerfIpxPerDlciTxOther, dfrapSysBRISupported=dfrapSysBRISupported, dfrapPerfThruput=dfrapPerfThruput, dfrapPerfMgmtIpTCPActiveOpens=dfrapPerfMgmtIpTCPActiveOpens, dfrapCfgLock=dfrapCfgLock, dfrapPerfThruputPerDlciCIR=dfrapPerfThruputPerDlciCIR, dfrapPerfCirPercentUtilizationEntry=dfrapPerfCirPercentUtilizationEntry, dfrapPerfIpxTotalTxRip=dfrapPerfIpxTotalTxRip, dfrapCfgDteDtr=dfrapCfgDteDtr, dfrapPerfApplicationPerDlciTxFtp=dfrapPerfApplicationPerDlciTxFtp, dfrapPerfApplicationTotalRxSmtp=dfrapPerfApplicationTotalRxSmtp, dfrapPerfIpxTotalEntry=dfrapPerfIpxTotalEntry, dfrapV54LoopDownCompletedTrap=dfrapV54LoopDownCompletedTrap, dfrapSysExtTimSupported=dfrapSysExtTimSupported, dfrapPerfApplicationPerDlciRxSmtp=dfrapPerfApplicationPerDlciRxSmtp, dfrapCfgAppType=dfrapCfgAppType, dfrapPerfMgmtIpIPInAddrErr=dfrapPerfMgmtIpIPInAddrErr, dfrapNonIncrLmiSeqNumDdsTrap=dfrapNonIncrLmiSeqNumDdsTrap, dfrapVbertRequestFailed=dfrapVbertRequestFailed, dfrapLocalUnitLoopbackEnabledTrap=dfrapLocalUnitLoopbackEnabledTrap, dfrapCfgFrAddrResDlcis=dfrapCfgFrAddrResDlcis)
#!/opt/evawiz/python/bin/python #normal python defination code here def pyAdd(x,y): return abs(x)+abs(y)
def py_add(x, y): return abs(x) + abs(y)
class Solution: def scheduleCourse(self, courses: List[List[int]]) -> int: best = 0 timeSpent = 0 h = [] current = 0 courses.sort(key=lambda x: x[1]) for duration, last in courses: heapq.heappush(h, -duration) timeSpent += duration current += 1 while timeSpent > last and len(h) > 0: timeSpent -= -heapq.heappop(h) current -= 1 best = max(best, current) return best
class Solution: def schedule_course(self, courses: List[List[int]]) -> int: best = 0 time_spent = 0 h = [] current = 0 courses.sort(key=lambda x: x[1]) for (duration, last) in courses: heapq.heappush(h, -duration) time_spent += duration current += 1 while timeSpent > last and len(h) > 0: time_spent -= -heapq.heappop(h) current -= 1 best = max(best, current) return best
""" Approach 1: Brute Force - O(n), O(1) Approach 2: Binary Search - O(log n), O(1) Approach 3: Binary Search on Evens Indexes Only - O(log n), O(1) """ class Solution: def singleNonDuplicate1(self, nums: List[int]) -> int: for i in range(0, len(nums) - 2, 2): if nums[i] != nums[i + 1]: return nums[i] return nums[-1] def singleNonDuplicate2(self, nums: List[int]) -> int: lo = 0 hi = len(nums) - 1 while lo < hi: mid = lo + (hi - lo) // 2 halves_are_even = (hi - mid) % 2 == 0 if nums[mid + 1] == nums[mid]: if halves_are_even: lo = mid + 2 else: hi = mid - 1 elif nums[mid - 1] == nums[mid]: if halves_are_even: hi = mid - 2 else: lo = mid + 1 else: return nums[mid] return nums[lo] def singleNonDuplicate3(self, nums: List[int]) -> int: lo = 0 hi = len(nums) - 1 while lo < hi: mid = lo + (hi - lo) // 2 if mid % 2 == 1: mid -= 1 if nums[mid] == nums[mid + 1]: lo = mid + 2 else: hi = mid return nums[lo] # O(n log(n)) def singleNonDuplicate(self, nums): if len(nums) == 1: return nums[0] elif len(nums) == 2: return nums[0] ^ nums[1] return self.singleNonDuplicate(nums[0:len(nums) // 2]) ^ self.singleNonDuplicate(nums[len(nums) // 2:]) # odd ^ 1 = odd - 1 # even ^ 1 = even + 1 def singleNonDuplicate_1(self, nums): lo, hi = 0, len(nums) - 1 while lo < hi: mid = (lo + hi) / 2 if nums[mid] == nums[mid ^ 1]: lo = mid + 1 else: hi = mid return nums[lo] if __name__ == '__main__': soln = Solution() # nums = [1, 1, 2, 3, 3, 4, 4, 8, 8] nums = [3, 3, 7, 7, 10, 11, 11] ans = soln.singleNonDuplicate(nums) print(ans)
""" Approach 1: Brute Force - O(n), O(1) Approach 2: Binary Search - O(log n), O(1) Approach 3: Binary Search on Evens Indexes Only - O(log n), O(1) """ class Solution: def single_non_duplicate1(self, nums: List[int]) -> int: for i in range(0, len(nums) - 2, 2): if nums[i] != nums[i + 1]: return nums[i] return nums[-1] def single_non_duplicate2(self, nums: List[int]) -> int: lo = 0 hi = len(nums) - 1 while lo < hi: mid = lo + (hi - lo) // 2 halves_are_even = (hi - mid) % 2 == 0 if nums[mid + 1] == nums[mid]: if halves_are_even: lo = mid + 2 else: hi = mid - 1 elif nums[mid - 1] == nums[mid]: if halves_are_even: hi = mid - 2 else: lo = mid + 1 else: return nums[mid] return nums[lo] def single_non_duplicate3(self, nums: List[int]) -> int: lo = 0 hi = len(nums) - 1 while lo < hi: mid = lo + (hi - lo) // 2 if mid % 2 == 1: mid -= 1 if nums[mid] == nums[mid + 1]: lo = mid + 2 else: hi = mid return nums[lo] def single_non_duplicate(self, nums): if len(nums) == 1: return nums[0] elif len(nums) == 2: return nums[0] ^ nums[1] return self.singleNonDuplicate(nums[0:len(nums) // 2]) ^ self.singleNonDuplicate(nums[len(nums) // 2:]) def single_non_duplicate_1(self, nums): (lo, hi) = (0, len(nums) - 1) while lo < hi: mid = (lo + hi) / 2 if nums[mid] == nums[mid ^ 1]: lo = mid + 1 else: hi = mid return nums[lo] if __name__ == '__main__': soln = solution() nums = [3, 3, 7, 7, 10, 11, 11] ans = soln.singleNonDuplicate(nums) print(ans)
modlist = [ ("Pmv","SLCommands","""None"""), ("Pmv","amberCommands","""None"""), ("Pmv","artCommands","""None"""), ("Pmv","bondsCommands","""None"""), ("Pmv","colorCommands",""" This Module implements commands to color the current selection different ways. for example: by atoms. by residues. by chains. etc ... """), ("Pmv","deleteCommands",""" This Module implements commands to delete items from the MoleculeViewer: for examples: Delete Molecule """), ("Pmv","displayCommands","""None"""), ("Pmv","editCommands","""None"""), ("Pmv","extrusionCommands","""None"""), ("Pmv","fileCommands",""" This Module implements commands to load molecules from files in the following formats: PDB: Brookhaven Data Bank format PQR: Don Bashford's modified PDB format used by MEAD PDBQ: Autodock file format PDBQS: Autodock file format The module implements commands to save molecules in additional formats: STL: Stereolithography file format """), ("Pmv","genparserCommands","""None"""), ("Pmv","gridCommands",""" This Module implements commands to read grid data, to visualize isosurfaces, to manipulate orthoslices through the isosurfaces... """), ("Pmv","hbondCommands","""None"""), ("Pmv","interactiveCommands","""None"""), ("Pmv","labelCommands",""" This Module implements commands to label the current selection different ways. For example: by properties of the current selection """), ("Pmv","measureCommands","""None"""), ("Pmv","msmsCommands","""None"""), ("Pmv","povrayCommands","""None"""), ("Pmv","repairCommands","""None"""), ("Pmv","sdCommands","""None"""), ("Pmv","secondaryStructureCommands","""None"""), ("Pmv","selectionCommands","""None"""), ("Pmv","setangleCommands","""None"""), ("Pmv","splineCommands","""None"""), ("Pmv","superimposeCommandsNew","""None"""), ("Pmv","traceCommands",""" Package: Pmv Module : TraceCommands This module provides a set of commands: - ComputeTraceCommand (computeTrace) to compute a trace and the corresponding sheet2D using the given control atoms and torsion atoms. Typically used to compute a CA trace for a protein - ExtrudeTraceCommand (extrudeTrace) to extrude a 2D geometry along the 3D path to represent the given trace. - DisplayTraceCommand (displayTrace) to display, undisplay or display only parts of the molecule using the geometry created to represent the given trace. Keywords: Trace, CA """), ("Pmv","vectfieldCommands","""None"""), ("Pmv","visionCommands","""None"""), ("Pmv","writeMsmsAsCommands","""None"""), ]
modlist = [('Pmv', 'SLCommands', 'None'), ('Pmv', 'amberCommands', 'None'), ('Pmv', 'artCommands', 'None'), ('Pmv', 'bondsCommands', 'None'), ('Pmv', 'colorCommands', '\nThis Module implements commands to color the current selection different ways.\nfor example:\n by atoms.\n by residues.\n by chains.\n etc ...\n \n'), ('Pmv', 'deleteCommands', '\nThis Module implements commands to delete items from the MoleculeViewer:\nfor examples:\n Delete Molecule\n'), ('Pmv', 'displayCommands', 'None'), ('Pmv', 'editCommands', 'None'), ('Pmv', 'extrusionCommands', 'None'), ('Pmv', 'fileCommands', "\nThis Module implements commands to load molecules from files in the following\nformats:\n PDB: Brookhaven Data Bank format\n PQR: Don Bashford's modified PDB format used by MEAD\n PDBQ: Autodock file format\n PDBQS: Autodock file format\nThe module implements commands to save molecules in additional formats: \n STL: Stereolithography file format\n"), ('Pmv', 'genparserCommands', 'None'), ('Pmv', 'gridCommands', '\nThis Module implements commands \n to read grid data, \n to visualize isosurfaces,\n to manipulate orthoslices through the isosurfaces...\n \n'), ('Pmv', 'hbondCommands', 'None'), ('Pmv', 'interactiveCommands', 'None'), ('Pmv', 'labelCommands', '\nThis Module implements commands to label the current selection different ways.\nFor example:\n by properties of the current selection\n'), ('Pmv', 'measureCommands', 'None'), ('Pmv', 'msmsCommands', 'None'), ('Pmv', 'povrayCommands', 'None'), ('Pmv', 'repairCommands', 'None'), ('Pmv', 'sdCommands', 'None'), ('Pmv', 'secondaryStructureCommands', 'None'), ('Pmv', 'selectionCommands', 'None'), ('Pmv', 'setangleCommands', 'None'), ('Pmv', 'splineCommands', 'None'), ('Pmv', 'superimposeCommandsNew', 'None'), ('Pmv', 'traceCommands', '\nPackage: Pmv\nModule : TraceCommands\nThis module provides a set of commands:\n- ComputeTraceCommand (computeTrace) to compute a trace and the corresponding\n sheet2D using the given control atoms and torsion atoms. Typically used to\n compute a CA trace for a protein\n- ExtrudeTraceCommand (extrudeTrace) to extrude a 2D geometry along the 3D\n path to represent the given trace.\n- DisplayTraceCommand (displayTrace) to display, undisplay or display only\n parts of the molecule using the geometry created to represent the given\n trace.\n Keywords:\n Trace, CA \n \n'), ('Pmv', 'vectfieldCommands', 'None'), ('Pmv', 'visionCommands', 'None'), ('Pmv', 'writeMsmsAsCommands', 'None')]