content
stringlengths
7
1.05M
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
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
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', ]
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))
max = int(input()) bridges_height = input().split(" ") # Перемен. для высчитвания высота моста относительно прошлого. last_bridge_height = 0 for i in range(1, max + 1): bridge_height = int(bridges_height[i - 1]) - last_bridge_height if bridge_height <= 437: print("Crash {}".format(i)) exit() print("No crash")
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)
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
# Description: 罗马数字包含以下七种字符: I, V, X, L,C,D 和 M。 # # 字符 数值 # I 1 # V 5 # X 10 # L 50 # C 100 # D 500 # M 1000 # # 例如, 罗马数字 2 写做 II ,即为两个并列的 1。12 写做 XII ,即为 X + II 。 27 写做 XXVII, 即为 XX + V + II # # 通常情况下,罗马数字中小的数字在大的数字的右边。但也存在特例,例如 4 不写做 IIII,而是 IV。 # 数字 1 在数字 5 的左边,所表示的数等于大数 5 减小数 1 得到的数值 4 。同样地,数字 9 表示为 IX。 # 这个特殊的规则只适用于以下六种情况: # 1. I 可以放在 V (5) 和 X (10) 的左边,来表示 4 和 9。 # 2. X 可以放在 L (50) 和 C (100) 的左边,来表示 40 和 90。 # 3. C 可以放在 D (500) 和 M (1000) 的左边,来表示 400 和 900。 # # 给定一个整数,将其转为罗马数字。输入确保在 1 到 3999 的范围内。 # # Examples: 输入: 3, 输出: "III" # 输入: 4, 输出: "IV" # 输入: 9, 输出: "IX" # 输入: 58, 输出: "LVIII", 解释: L = 50, V= 5, III = 3. # 输入: 1994, 输出: "MCMXCIV", 解释: M = 1000, CM = 900, XC = 90, IV = 4. # # Difficulty: Medium # Author: zlchen # Date: 5/2/2019 # Performance: 76 ms, surpass 99.54%'s python3 submissions class Solution: def intToRoman(self, num: int) -> str: assert(num >= 1 and num <= 3999), print('输入超出范围!') thousand = num // 1000 ans = thousand * 'M' hundred = num % 1000 // 100 if hundred >= 5: if hundred == 9: ans += 'CM' else: ans += 'D' + (hundred - 5) * 'C' else: if hundred == 4: ans += 'CD' else: ans += (hundred) * 'C' ten = num % 100 // 10 if ten >= 5: if ten == 9: ans += 'XC' else: ans += 'L' + (ten - 5) * 'X' else: if ten == 4: ans += 'XL' else: ans += (ten) * 'X' unit = num % 10 if unit >= 5: if unit == 9: ans += 'IX' else: ans += 'V' + (unit - 5) * 'I' else: if unit == 4: ans += 'IV' else: ans += (unit) * 'I' return ans # this method is much more concise but slower slightly def intToRoman_2(self, num: int) -> str: values = [1000, 900, 500, 400, 100, 90, 50, 40, 10, 9, 5, 4, 1] symbols = ['M', 'CM', 'D', 'CD', 'C', 'XC', 'L', 'XL', 'X', 'IX', 'V', 'IV', 'I'] ans = '' for i in range(len(values)): while(num >= values[i]): num -= values[i] ans += symbols[i] return ans if __name__ == '__main__': num = 3632 print(Solution().intToRoman(num)) print(Solution().intToRoman_2(num))
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)
''' 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]
# 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()
"""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[ ]:
#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")
# The basic parameters and file path should be explicit before trainning. # The image that trainning directly in the deep learning model. # The size of images should be small to prevent memory overflow. img_h, img_w = 256, 256 # the classes number in this remote sensing semantic segmentation task n_label = 6 # color of the class in the inference # classes=[0.0,17.0,34.0,51.0,68.0,255.0] classes=[0,1,2,3,4,5] # data filepath that includes train data and label data filepath = '/media/gentry/数据分区/深度学习数据/train_dataset/' train_set_path= '/media/gentry/数据分区/深度学习数据/train_dataset/' val_set_path = '/media/gentry/数据分区/深度学习数据/val_dataset/' model_path='/media/gentry/数据分区/segnet.h5' # BS = 16 EPOCHS = 1
""" 练习1:将昨天作业day09/homework/exercise01功能改为函数 练习2:在终端中根据输入的选项,调用相应功能 """ # ---------------全局变量----------------------- list_commodity_infos = [ {"cid": 1001, "name": "屠龙刀", "price": 10000}, {"cid": 1002, "name": "倚天剑", "price": 10000}, {"cid": 1003, "name": "金箍棒", "price": 52100}, {"cid": 1004, "name": "口罩", "price": 20}, {"cid": 1005, "name": "酒精", "price": 30}, ] # ---------------定义函数----------------------- def print_single_commodity(commodity): print(f"编号:{commodity['cid']},商品名称:{commodity['name']},商品单价:{commodity['price']}") # 1. 打印所有商品信息,格式:商品编号xx,商品名称xx,商品单价xx. def print_all_commodity(): for commodity in list_commodity_infos: # print(f"编号:{commodity['cid']},商品名称:{commodity['name']},商品单价:{commodity['price']}") print_single_commodity(commodity) # 2. 打印商品单价小于2万的商品信息 def print_commodity_price_lt_2w(): for commodity in list_commodity_infos: if commodity["price"] < 20000: # print(f"编号:{commodity['cid']}商品名称:{commodity['name']}商品单价:{commodity['price']}") print_single_commodity(commodity) # 3. 查找单价最高的商品 def find_commodity_max_price(): max_value = list_commodity_infos[0] for i in range(1, len(list_commodity_infos)): if max_value["price"] < list_commodity_infos[i]["price"]: max_value = list_commodity_infos[i] return max_value # 4. 根据单价升序排列 def sort_by_price(): for r in range(len(list_commodity_infos) - 1): for c in range(r + 1, len(list_commodity_infos)): if list_commodity_infos[r]["price"] > list_commodity_infos[c]["price"]: list_commodity_infos[r], list_commodity_infos[c] = list_commodity_infos[c], list_commodity_infos[r] def display_menu(): """ 显示菜单 """ print("输入1键显示所有商品信息") print("输入2键显示单价大于2w的商品") print("输入3键显示最贵的商品") print("输入4键按照单价显示所有商品") def select_menu(): """ 选择菜单 """ item = input("请输入您的选项:") if item == "1": print_all_commodity() elif item == "2": print_commodity_price_lt_2w() elif item == "3": cmd = find_commodity_max_price() print_single_commodity(cmd) elif item == "4": sort_by_price() print_all_commodity() def main(): while True: display_menu() select_menu() # ---------------入口代码----------------------- main() """ data01 = 10 def func01(): data01 = 20 # 希望修改全局变量,但是创建了局部变量 data02 = [10] def func02(): # 读取全局变量,修改列表第一个元素 data02[0] = 20 """
'''1. Faça um programa que peça ao usuário um número e imprima todos os números de um até o número dado. Exemplo: digite: 5, imprime: 1 2 3 4 5''' print("{:^30}".format("LET'S GO")) print('-'*30) #Data input num = int(input('Insert the number: ')) valor = 1 #Testing codicion for enter while valor <= num: print(valor, end=' ') #Incrementing value in variable valor = valor + 1 print('\nFINISED!')
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
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 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))
#!/usr/bin/python # -*- coding: utf-8 -*- ''' @AUTHOR:Joselyn Zhao @CONTACT:zhaojing17@foxmail.com @HOME_PAGE:joselynzhao.top @SOFTWERE:PyCharm @FILE:chuantong.py @TIME:2020/4/17 21:57 @DES: 使用列表推导式 ''' #variable = [out_exp_res for out_exp in input_list if out_ex == 2] # out_exp_res 列表生成元素表达式,可以有返回值的函数 squares = [] for x in range(10): squares.append(x**2) # 表示x的平方 print(squares) squares1 = [x**2 for x in range(10)] print(squares1) squares2 = [x**2 for x in range(10) if x%2 is 0] print(squares2) #[0, 4, 16, 36, 64] multiples = [i for i in range(30) if i%3 is 0] print(multiples) # [0, 3, 6, 9, 12, 15, 18, 21, 24, 27]
# -*- 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)
############################################################################### # 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
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("-- Cursos --") print("Matemáticas - Biologia - Lenguas - Ciencias") curso = input("Ingrese el curso deseado: ") if curso in ("Matemáticas", "Biologia", "Lenguas", "Ciencias"): print("Curso {0} seleccionado".format(curso)) else: print("Este curso no existe...")
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))
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
# 選択ソート n = int(input()) lst = list(map(int, input().split())) def selectionSort(A, n): cnt = 0 for i in range(n): minj = i for j in range(i, n): if A[j] < A[minj]: minj = j if A[i] != A[minj]: A[i], A[minj] = A[minj], A[i] cnt += 1 print(' '.join([str(i) for i in A])) print(cnt) selectionSort(lst, n)
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 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 AbstractMiddleware: def send_data(self): pass #def process_middleware_response(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 """
# 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))
"""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 }
""" 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}')
"""Top-level package for Python Boilerplate.""" __author__ = """Evgeny Skosarev""" __email__ = 'skosarew@mail.ru' __version__ = '0.1.0'
# Dissecando uma variável: # Exercício para testar tipos primitivos e informações sobre o que for digitado. a = input('Digite algo: ') print(type(a)) print('O valor digitado só tem espaços?', a.isspace()) print('O valor digitado é número?', a.isnumeric()) print('O valor digitado é alfanumérico?', a.isalnum()) print('O valor digitado está em minúsculo?', a.islower()) print('O valor digitado está em maiúsculo', a.isupper()) print('O valor digitado está capitalizado?', a.istitle()) print('O valor digitado pertence ao código ascii?', a.isascii()) print('O valor digitado é imprimível?', a.isprintable()) print('O valor digitado é um dígito?', a.isdigit())
## 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
# 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
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', '*'] ] ]
'''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
""" the file was left blank with much intent and purpose Poetry needs it """
nome = input("digite seu nome aqui: ") print("analizando seu nome...") print("seu nome em maiúsculas é {}".format(nome.upper())) print("seu nome em minúsculas é {}".format(nome.lower())) print("seu nome tem ao todo {} letras".format(len(nome)- nome.count(" "))) #print("seu primeiro nome é {} e ele tem {} letras".format()) separa = nome.split() print("seu primeiro nome é {} e ele tem {} letras".format(separa[0], len(separa[0])))
class CuentaBancaria(): def __init__(self, ID, titular, fecha_apertura, numero_cuenta, saldo): self.ID = ID self.titular = titular self.fecha_apertura = fecha_apertura self.numero_cuenta = numero_cuenta self.saldo = saldo #Método set def setID(self, ID): self.ID = ID def settitular(self, titular): self.titular = titular def setfecha_apertura(self, fecha_apertura): self.fecha_apertura = fecha_apertura def setnumero_cuenta(self, numero_cuenta): self.numero_cuenta = numero_cuenta def setsaldo(self, saldo): self.saldo = saldo #Método get def getID(self): return self.ID def gettitular(self): return self.titular def getfecha_apertura(self): return self.fecha_apertura def getnumero_cuenta(self): return self.numero_cuenta def getsaldo(self): return self.saldo #Método para retirar dinero def retirar_dinero(self, dinero): if float(dinero) > self.getsaldo(): print('No hay suficiente dinero para retirar') else: dinero_final = (self.getsaldo()) - float(dinero) self.setsaldo(dinero_final) #Método para ingresar dinero def ingresar_dinero(self, dinero): dinero_final = (self.getsaldo()) + float(dinero) self.setsaldo(dinero_final) #Método para transferir dinero def transferir_dinero(self, dinero, cuenta): if float(dinero) > self.getsaldo(): print('No hay suficiente saldo para transferir') else: self.retirar_dinero(dinero) cuenta.ingresar_dinero(dinero)
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 }
__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)
# -*- coding: utf-8 -*- """ Created on Wed Aug 29 14:04:13 2018 Created By: Ryan Boldi """ class Card(object): """Class of a Card object """ #ids go A -> K of Spades, A -> K of Diamonds, #A -> K of Clubs, A -> K of Hearts #Ace of spades is 0, king of hearts is 51` colors = ["Red", "Black"] suits = ["Spades", "Hearts", "Clubs", "Diamonds"] symbols = ["♠","♥","♣","♦"] values = ["A","2","3","4","5","6","7","8","9","10","J","Q","K"] def __init__(self, value= None, suit= None, name = None): self.id = 0 if value != None and suit != None: if (suit == "Hearts" or suit == "Diamonds"): self.color = "Red" elif (suit == "Spades" or suit == "Clubs"): self.color = "Black" else: raise ValueError("Color and suit do not match") if (suit in self.suits): self.suit = suit else: raise ValueError("Suit not valid") if (value in self.values): self.value = value else: raise ValueError("Value not valid") self.symbol = None if self.suit == "Spades": self.symbol = self.symbols[0] self.id += 0 elif self.suit == "Hearts": self.symbol = self.symbols[1] self.id += 39 elif self.suit == "Clubs": self.symbol = self.symbols[2] self.id += 26 else: self.symbol = self.symbols[3] self.id += 13 self.name = self.value + self.symbol for i in range (len(self.values)): if value == str(self.values[i]): self.id += i if ((value == None or suit == None) and name == None): raise ValueError ("No arguments given") def getId(self): return self.id def getColor(self): return self.color def getSuit(self): return self.suit def getValue(self): return self.value def getName(self): return self.name def __str__(self): return str(self.name) def __repr__(self): return str(self.name) def __eq__(self, other): return self.id == other.id
""" 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
#Definir variables y otros print("Ejercicio") bono=0 #Datos de entrada a=int(input("Años de trabajo:")) #Proceso if a==1: bono=100 elif a==2: bono=200 elif a==3: bono=300 elif a==4: bono=400 elif a==5: bono=500 elif a>5: bono=1000 #Datos de salida print("El pago es de:", bono)
# -*- coding: utf-8 -*- #from gluon import * #from s3 import * # ============================================================================= class Daily(): """ Daily Maintenance Tasks """ def __call__(self): # @ToDo: cleanup scheduler logs return # END =========================================================================
#------------------------------------------------------------------------------ # 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. """
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")
#类定义 class people: #定义基本属性 name = '' age = 0 #定义私有属性,私有属性在类外部无法直接进行访问 __weight = 0 #定义构造方法 def __init__(self,n,a,w): self.name = n self.age = a self.__weight = w #定义speak方法 def speak(self): print("%s 说: 我 %d 岁。" %(self.name,self.age)) #单继承类 class student(people): grade = '' def __init__(self,n,a,w,g): #调用父类的构函 people.__init__(self,n,a,w) self.grade = g #覆写父类的方法 def speak(self): print("%s 说: 我 %d 岁了,我在读 %d 年级。"%(self.name,self.age,self.grade)) #利用input()函数动态输入学生的信息 sname = input("请输入学生的姓名:") sage = int(input("请输入学生的年龄:")) sweight = int(input("请输入学生的体重:")) sgrade = int(input("请输入学生所在的年级:")) s = student(sname,sage,sweight,sgrade) #类的实例化 s.speak() #调用类中的方法
# # 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)
#!/opt/evawiz/python/bin/python #normal python defination code here def pyAdd(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
# @Title: 适龄的朋友 (Friends Of Appropriate Ages) # @Author: KivenC # @Date: 2018-07-20 20:33:56 # @Runtime: 724 ms # @Memory: N/A class Solution(object): def numFriendRequests(self, ages): """ :type ages: List[int] :rtype: int """ # 年龄取值的范围比较小,1 <= ages[i] <= 120, 所以可以把所有的年龄都转换成(age, count)这样一个对,用dic记录,然后dic[age]代表年龄为age的人有多少个。反正匹配只和年龄有关,这个人的序号无关,所以对于年龄进行O(n2)=O(120**2)的遍历 dic = {} for age in ages: if age in dic: dic[age] += 1 else: dic[age] = 1 res = 0 for age in ages: # 计算当前年龄下符合计算公式的人数,要排除自己,因此减一 dic[age] -= 1 # 符合条件的区间 left, right = age // 2 + 8, age res += sum(dic[x] for x in range(left, right+1) if x in dic) # 把自己加回来 dic[age] += 1 return res
""" Copyright (c) 2019 - Present – Thomson Licensing, SAS All rights reserved. This source code is licensed under the Clear BSD license found in the LICENSE file in the root directory of this source tree. """ surpriseAlgo=["SVD","PMF","NMF","SVDpp","KNNWithMeans"] f = open('commands.txt', 'w') gitPath="~/black-box_recom/git/" dataPath="~/black-box_recom/datasets/ML100K/" configPath="~/black-box_recom/config/" outputPath="~/temp/" # surprise algo for i in range(0, len(surpriseAlgo)): # unknown_train + unknown_test cmd = "export name=" + surpriseAlgo[i] + \ ",python "+gitPath+"recom.py --pickleSavePath "+outputPath+"${name}ut.pickle" + \ " --dataset "+dataPath+"unknown_train.csv --validSize 0" + \ " --testSet "+dataPath+"unknown_test.csv" + \ " --surprise_algo ${name} --proc 15" + \ " --evalTrain --topN_list 5 10 20 30 50" + \ " > "+outputPath+"${name}ut.out 2>&1" f.write("%s\n" % cmd) # known_train + unknown_test cmd = "export name=" + surpriseAlgo[i] + \ ",python "+gitPath+"recom.py --pickleSavePath "+outputPath+"${name}kt.pickle" + \ " --dataset "+dataPath+"known_train.csv --validSize 0" + \ " --testSet "+dataPath+"unknown_test.csv" + \ " --surprise_algo ${name} --proc 15" + \ " --evalTrain --topN_list 5 10 20 30 50" + \ " > "+outputPath+"${name}kt.out 2>&1" f.write("%s\n" % cmd) # known_train + known_valid cmd = "export name=" + surpriseAlgo[i] + \ ",python "+gitPath+"recom.py --pickleSavePath "+outputPath+"${name}kv.pickle" + \ " --dataset "+dataPath+"known_train.csv --validSize 0" + \ " --testSet "+dataPath+"known_val.csv" + \ " --surprise_algo ${name} --proc 15" + \ " --evalTrain --topN_list 5 10 20 30 50" + \ " > "+outputPath+"${name}kv.out 2>&1" f.write("%s\n" % cmd) # known_train + known_query cmd = "export name=" + surpriseAlgo[i] + \ ",python "+gitPath+"recom.py --pickleSavePath "+outputPath+"${name}kq.pickle" + \ " --dataset "+dataPath+"known_train.csv --validSize 0" + \ " --testSet "+dataPath+"known_query.csv" + \ " --surprise_algo ${name} --proc 15" + \ " --evalTrain --topN_list 5 10 20 30 50" + \ " > "+outputPath+"${name}kq.out 2>&1" f.write("%s\n" % cmd)
# Escreva um programa que leia um valor em metros e o exiba convertido em centímetros e milímetros medida = float(input('Informe uma distância em metros: ')) km = medida / 1000 hm = medida / 100 dam = medida / 10 dm = medida * 10 ct = medida * 100 ml = medida * 1000 print('A medida de {:.1f}m corresponde a: \n{:.3f}Km \n{:.2f}hm \n{:.1f}dam \n{:.0f}dm \n{:.0f}cm \n{:.0f}mm'.format(medida, km, hm, dam, dm, ct, ml))
""" 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)
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"""), ]
# -*- coding:utf-8 -*- WENCAI_LOGIN_URL = { "scrape_transaction": 'http://www.iwencai.com/traceback/strategy/transaction', "scrape_report": 'http://www.iwencai.com/traceback/strategy/submit', 'strategy': 'http://www.iwencai.com/traceback/strategy/submit', "search": "http://www.iwencai.com/data-robot/extract-new", 'recommend_strategy': 'http://www.iwencai.com/traceback/list/get-strategy', 'backtest': 'http://backtest.10jqka.com.cn/backtest/app.html#/backtest' } WENCAI_CRAWLER_URL = { 'history_detail': 'http://backtest.10jqka.com.cn/backtestonce/historydetail?\ sort_by=desc&id={backtest_id}&start_date={start_date}&end_date={end_date}&period={period}', "backtest": "http://backtest.10jqka.com.cn/backtestonce/backtest", "yieldbacktest": "http://backtest.10jqka.com.cn/tradebacktest/yieldbacktest", "history_pick": 'http://backtest.10jqka.com.cn/tradebacktest/historypick?\ query={query}&hold_num={hold_num}&trade_date={trade_date}', 'eventbacktest':'http://backtest.10jqka.com.cn/eventbacktest/backtest', } WENCAI_HEADERS = { 'backtest': { 'Host': "backtest.10jqka.com.cn", 'Origin': "http://backtest.10jqka.com.cn", "Referer": "http://backtest.10jqka.com.cn/backtest/app.html", } }
class ConfigAttributeDataTypes: data_types = { 0: 'None', 1: 'Base64', 2: 'Boolean', 3: 'CaseExactString', 4: 'CaseIgnoreList', 5: 'CaseIgnoreString, String', 6: 'Counter', 7: 'DistinguishedName', 8: 'EMailAddress', 9: 'FaxNumber', 10: 'Hold', 11: 'Integer', 12: 'Interval', 13: 'IPNetworkAddress', 14: 'NetworkAddress', 15: 'NumericString', 16: 'OctetList', 17: 'OctetString', 18: 'Path', 19: 'PostalAddress', 20: 'PrintableString', 21: 'SchemaClass', 22: 'Stream', 23: 'TelephoneNumber', 24: 'Time', }
# Python code to demonstrate the working of # "+" and "*" # initializing list 1 lis = [1, 2, 3] # initializing list 2 lis1 = [4, 5, 6] # using "+" to concatenate lists lis2= lis + lis1 # priting concatenated lists print ("list after concatenation is : ", end="") for i in range(0,len(lis2)): print (lis2[i], end=" ") print ("\r") #using '*' to combine lists lis3 = lis * 3 # priting combined lists print ("list after combining is : ", end="") for i in range(0,len(lis3)): print (lis3[i], end=" ")
""" 12-1 lambda 表达式 """ # 匿名函数/ lambda 表达式 # 定义函数的时候不需要定义函数名。 # 函数的基本定义: def add(x,y): return x+y # 匿名函数 # lambda parameter_list: expression # 学习匿名函数最好的方式:对比普通函数一起学习。 # lambda 后面的 expression 只能是一些简单的表达式,不能完整地实现函数内部的代码块。 lambda x, y: x+y # add 函数使用匿名函数实现 # 匿名函数与add函数的区别: # 匿名函数没有 add 名字 # 不需要 return 语句返回。冒号后边 expression 表达结果就是匿名函数的返回结果。 # 如何调用匿名函数?匿名函数没有名字,我们怎么调用? # 虽然匿名函数没有名字,但是我们可以将匿名函数赋值给一个变量。 # 赋值给变量之后我们就可以调用 f = lambda x, y: x+y print(f(1, 2)) print(add(1, 2)) # 3 # 3 # 匿名函数和普通函数实现的效果一样的。但是匿名函数的定义非常简洁。 # 目前为止调用匿名函数的方式并没有体现匿名函数的优势。 # 正则表达式中有个地方特别适合匿名函数. # 在 Python 里, lambda 称为匿名函数. # 在 C# 里, lambda 定义的函数成为 Lambda 表达式,关键点在表达式上.后面只能是表达式,不能是代码块. # f = lambda x,y: a = x+y # SyntaxError: can't assign to lambda # 不能在 lambda 做赋值操作, 因为我们强调了冒号后面只能是表达式, a = x+y 不是表达式,是完整的代码语句. # Python 里匿名函数突出表达式更合适. # C# 里匿名函数和 lambda 表达式是两个不同的东西. # Summary # 匿名函数/ lambda 表达式 # lambda parameter_list: expression # expression 只能写表达式,不能写代码块。
"""Kata: Get nth even number - Return the nth even number. #1 Best Practices Solution by tedmiston, tachyonlabs, OQth, and others. def nth_even(n): return n * 2 - 2 """ def nth_even(n): """Function I wrote that returns the nth even number.""" return (n * 2) - 2
# -*- coding: utf-8 -*- stuff = ['hello', 'hi', 'how are you doing', 'im fine', 'how about you'] length_of_stuff = len(stuff) index = 0 while index < length_of_stuff: print(stuff[index]) index += 1
# Returns list of a specific attribute in yaml file. Attribute could be aliases/filter/category/id. def icon_list(p_list, *pos): if pos: return [p_list[i][pos[0]] for i in range(len(p_list)) if (p_list[i][pos[0]] is not None)] else: return [p_list[i][2] for i in range(len(p_list))] # Displays list of icons which matched the criteria from user def icon_output(l): print('Icon''(s) matched this criteria :') for i in l: print(i) # Maps {id:unicode} of the filtered list from user def give_id_unicode(p_list, *text): if text: id_unicode = {p_list[i][2]: p_list[i][3] for i in range(len(p_list)) if (p_list[i][text[1]] is not None) and (text[0] in p_list[i][text[1]])} else: id_unicode = {p_list[i][2]: p_list[i][3] for i in range(len(p_list))} return id_unicode # The source yaml file has some missing aliases and filter fields,so adding just placeholders. def clean(a): for i in a: try: if (i['aliases']): continue except KeyError: i['aliases'] = '' for i in a: try: if (i['filter']): continue except KeyError: i['filter'] = '' return a
for x in range(10): pass for x in range(5): a += x b += 2 if False: break else: continue else: c = 3 for index, val in enumerate(range(5)): val *= 2
# Que 20 Leap Year print ("Leap Year Has 366 Days...") print ('The Year Perfectly Divisible by 4 is A Leap Year') z=0 for i in range(2010,2101,1): if i%4==0: z=z+1 if z<=10: print(i,end=" ") else: z=1 print() print(i,end=" ")
def get_ns_declare(fd): while True: line = fd.readline() if line.strip().startswith('(ns'): return line def get_ns(filename): with open(filename, 'r') as infile: ns_declare = get_ns_declare(infile) splited = ns_declare.split() ns = splited[-1] if ns.endswith(')'): ns = ns[:-1] return ns.strip()
num1 = int(input()) num2 = int(input()) if num1 > num2: print(num1-num2) else: print(num1+num2)
""" Tuples """ # A tuple is a collection which is ordered and unchangeable # 1. In Python, tuples are written with round brackets thistuple = ("apple", "banana", "cherry") print(thistuple) # 2. accessing thistuple = ("apple", "banana", "cherry") print(thistuple[1]) # 3. reverse indexing thistuple = ("apple", "banana", "cherry") print(thistuple[-1]) # 4. slicing thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango") print(thistuple[2:5]) # 5. negative slicing thistuple = ("apple", "banana", "cherry", "orange", "kiwi", "melon", "mango") print(thistuple[-4:-1]) # 6. iterating thistuple = ("apple", "banana", "cherry") for x in thistuple: print(x) # 7. contains? thistuple = ("apple", "banana", "cherry") if "apple" in thistuple: print("Yes, 'apple' is in the fruits tuple") # 8. creating a tuple with one item thistuple = ("apple",) print(type(thistuple)) #NOT a tuple thistuple = ("apple") print(type(thistuple)) # 9. concatenating tuples with addition operator tuple1 = ("a", "b" , "c") tuple2 = (1, 2, 3) tuple3 = tuple1 + tuple2 print(tuple3)
print("The code point of symbol я = ",ord('я') ) # 1103 print("The symbol, represented by code point 1103 = ", chr(1103) ) # я print("Symbols, represented by code points 9745 - 9750") for i in range(9745, 9751): print( chr(i), end=" " ) # U+0488 print("\u0488")
def gp(a,r,n): for i in range(n): temp = a*pow(r,i) print(temp,end=" ") a = int(input()) r = int(input()) n = int(input()) gp(a,r,n)
class BatchReferenceSampler: def __init__( self, dataset, batch_size, label_sampler, annotation_sampler, point_sampler ): self._dataset = dataset self._batch_size = batch_size self._label_sampler = label_sampler self._annotation_sampler = annotation_sampler self._point_sampler = point_sampler @property def dataset(self): return self._dataset @property def mode(self): return self._dataset.mode def reset(self): self._label_sampler.reset() self._annotation_sampler.reset() self._point_sampler.reset() def update(self, batch): self._label_sampler.update(batch) self._annotation_sampler.update(batch) def batch(self): batch = [] for _ in range(self._batch_size): # get next label label = next(self._label_sampler) # get next index of label index = next(self._annotation_sampler)(label) # get new sample to samples sample = self._dataset.sample_references[label][index] point = self._point_sampler.sample(sample) # add new sample to samples batch.append({'reference': sample, 'point': point}) return batch
name = 'pybk8500' version = '1.2.0' description = 'BK-8500-Electronic-Load python library' url = 'https://github.com/justengel/pybk8500' author = 'Justin Engel' author_email = 'jtengel08@gmail.com'
"""Base classes.""" class BaseEstimator: """Base class for all estimators.""" def __init__(self): self._parameters = {} self._residuals = None self._fitted = False self._t = None self._y = None self._y_predict = None @property def parameters(self): """Returns the model (fitted) parameters.""" return self._parameters def fit(self, t, y): """Fit the model to time-series data. Parameters ---------- t : 1-D array Time coordinate. y : 1-D array Time series data. """ res = self._fit(t, y) self._fitted = True self._t = t self._y = y self._y_predict = self.predict(t) self._residuals = y - self._y_predict return res def _fit(self, t, y): raise NotImplementedError() def predict(self, t): """Evaluate the model at given time values. Parameters ---------- t : 1-D array Time coordinate. Returns ------- y_predicted : 1-D array Predicted values. """ if not self._fitted: raise ValueError("run `.fit()` first") return self._predict(t) def _predict(self, t): raise NotImplementedError() @property def residuals(self): """Returns the model residuals.""" return self._residuals
""" https://www.ssa.gov/oact/babynames/decades/names2010s.html """ first_names_male = """ noah liam jacob william mason ethan michael alexander james elijah benjamin daniel aiden logan jayden matthew lucas david jackson joseph anthony samuel joshua gabriel andrew john christopher olive dylan carter isaac luke henry owen ryan nathan wyatt caleb sebastian jack christian jonathan julian landon levi isaiah hunter aaron charles thomas eli jaxon connor nicholas jeremiah grayson cameron brayden adrian evan jordan josiah angel robert gavin tyler austin colton jose dominic brandon lan lincoln hudson kevin zachary adam mateo jason chase nolan ayden cooper parker xavier asher carson jace easton justin leo bentley jaxson nathaniel blake elias theodore kayden luis tristan ezra bryson juan brody vincent micah miles santiago cole ryder carlos damian leonardo roman max sawyer jesus diego greyson alex maxwell axel eric wesley declan giovanni ezekiel braxton ashton ivan hayden camden silas bryce weston harrison jameson george antonio timothy kaiden jonah everett miguel steven richard emmett victor kaleb kai maverick joel bryan maddox kingston aidan patrick edward emmanuel jude alejandro preston luca bennett jesse colin jaden malachi kaden jayce alan kyle marcus brian ryker grant jeremy abel riley calvin brantley caden oscar abraham brady sean jake tucker nicolas mark amir avery king gael kenneth bradley cayden xander graham rowan """ first_names_female = """ emma olivia sophia isabella ava mia abigail emily charlotte madison elizabeth amelia evelyn ella chloe harper avery sofia grace addison victoria lily natalie aubrey lillian zoey hannah layla brooklyn scarlett zoe camila samantha riley leah aria savannah audrey anna allison gabriella claire hailey penelope aaliyah sarah nevaeh kaylee stella mila nora ellie bella alexa lucy arianna violet ariana genesis alexis elanor maya caroline peyton skylar madelyn serenity kennedy taylor alyssa autumn paisley ashley brianna sadie naomi kylie julia sophie mackenzie eva gianna luna katherine hazel khloe ruby melanie piper lydia aubree madeline aurora faith alexandra alice kayla jasmine maria annabelle lauren reagan elena rylee isabelle bailey eliana sydney makayla cora morgan natalia kimberly vivian quinn valentina andrea willow clara london jade liliana jocelyn kinsley trinity brielle mary molly hadley delilah emilia josephine brooke lvy lilly adeline payton lyla isla jordyn paige isabel mariah mya nicole valeria destiny rachel ximena emery everly sara angelina adalynn kendall reese aliyah margaret juliana melody amy eden mckenzie laila vanessa ariel gracie valerie adalyn brooklynn gabrielle kaitlyn athena elise jessica adriana leilani ryleigh daisy nova norah eliza rose rebecca michelle alaina catherine londyn summer lila jayla katelyn daniela harmony alana alana amaya emerson julianna cecilia Izabella """
# 1.11 # Replace list elements #Replacing list elements is pretty easy. Simply subset the list and assign new values to the subset. You can select single elements or you can change entire list slices at once. #Use the IPython Shell to experiment with the commands below. Can you tell what's happening and why? #x = ["a", "b", "c", "d"] #x[1] = "r" #x[2:] = ["s", "t"] #For this and the following exercises, you'll continue working on the areas list that contains the names and areas of different rooms in a house. #INSTRUCTIONS #100 XP #Update the area of the bathroom area to be 10.50 square meters instead of 9.50. #Make the areas list more trendy! Change "living room" to "chill zone". # Create the areas list areas = ["hallway", 11.25, "kitchen", 18.0, "living room", 20.0, "bedroom", 10.75, "bathroom", 9.50] # Correct the bathroom area areas[-1] = 10.50 # Change "living room" to "chill zone" areas[4] = "chill zone"
class Solution: def fullJustify(self, words: List[str], maxWidth: int) -> List[str]: ans = [] todo = [] todo_size = 0 def combine(todo, todo_size): spaces = maxWidth - todo_size if len(todo) == 1: return todo[0] + " " * spaces base = " " * (spaces // (len(todo) - 1)) first = spaces % (len(todo) - 1) result = [] for i in range(len(todo) - 1): result.append(todo[i]) result.append(base) if i < first: result.append(" ") result.append(todo[-1]) return "".join(result) for word in words: lw = len(word) if todo_size + len(todo) + lw > maxWidth: ans.append(combine(todo, todo_size)) todo = [] todo_size = 0 todo.append(word) todo_size += lw final = " ".join(todo) + " " * (maxWidth - len(todo) + 1 - todo_size) ans.append(final) return ans
# Python - 3.6.0 BASIC_TESTS = ( (('45', '1'), '1451'), (('13', '200'), '1320013'), (('Soon', 'Me'), 'MeSoonMe'), (('U', 'False'), 'UFalseU') ) test.describe('Basic Tests') for pair, result in BASIC_TESTS: test.it("'{}', '{}'".format(*pair)) test.assert_equals(solution(*pair), result)
class Solution(object): def generate(self, numRows): """ :type numRows: int :rtype: List[List[int]] """ m = [[1]*i for i in range(1 , numRows + 1 )] for i in range(numRows): for j in range(1 , len(m[i]) - 1): m[i][j] = m[i-1][j-1] + m[i-1][j] return m
#list_intro.py #What is a list? # A collection of items in a particular order. # Ex: The alphabet, digits 0-9, names of family # Typically we will plural nouns for list names star_treks = ['TOS', 'TNG', 'Voyager', 'DS9'] #print(star_treks) #Accessing Elements #Because lists are ordered, each element has an index value #we can use the index value to get elements out. #REMEMBER: Python starts counting 0 #print(star_treks[0]) #print(star_treks[2]) #If you keep getting off-by-one indexing problems, check # to make sure you are counting from zero. #The individual elements act like variables in their own right, # we can operate on them like variables. print(star_treks[0].title()) #We need to check the last item of a list, but we dont # know how many elements are in the list. print(star_treks[-1]) print(star_treks[-3]) message = f"The first star trek I \ watched was {star_treks[0].title()}." print(message)
# Preencha as informações pessoais nas variáveis abaixo nome = "Nome Completo" matricula = "12/3456789" email = "foo@bar.com"
""" Exercício Python 33: Faça um programa que leia três números e mostre qual é o maior e qual é o menor. """ print('-' * 30) print(f'{"Valores - Maior e Menor":^30}') print('-' * 30) num1 = int(input('Digite o 1º número: ')) num2 = int(input('Digite o 2º número: ')) num3 = int(input('Digite o 3º número: ')) maior = num1 menor = num1 # verificar quem é o maior if num2 > num1 and num2 > num3: maior = num2 if num3 > num1 and num3 > num2: maior = num3 # verificar quem é o menor if num2 < num1 and num2 < num3: menor = num2 if num3 < num1 and num3 < num2: menor = num3 print(f'Maior número é : {maior}') print(f'Menor é número : {menor}')