content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
class User: def __init__(self, guid, client): self.guid = guid self.client = client def delete(self): """ Delete this Cloud Foundry user """ # Delete from Cloud Controller api_delete_endpoint = '/v2/users/%s' % self.guid self.client.api_request(endpoint=api_delete_endpoint, method='delete') # Delete from UAA uaa_delete_endpoint = '/Users/%s' % self.guid return self.client.uaa_request( endpoint=uaa_delete_endpoint, method='delete' ) def get_associated_workspace_for(self, role): """ Returns the workspace for which the user have the stored role """ endpoint = "/v2/users/{0}/{1}".format(self.guid, role) workspaces = self.client.api_request(endpoint=endpoint) return workspaces.json() def summary(self): """ Returns the workspace for which the user have the stored role """ endpoint = "/v2/users/{0}/summary".format(self.guid) return self.client.api_request(endpoint=endpoint).json()
class User: def __init__(self, guid, client): self.guid = guid self.client = client def delete(self): """ Delete this Cloud Foundry user """ api_delete_endpoint = '/v2/users/%s' % self.guid self.client.api_request(endpoint=api_delete_endpoint, method='delete') uaa_delete_endpoint = '/Users/%s' % self.guid return self.client.uaa_request(endpoint=uaa_delete_endpoint, method='delete') def get_associated_workspace_for(self, role): """ Returns the workspace for which the user have the stored role """ endpoint = '/v2/users/{0}/{1}'.format(self.guid, role) workspaces = self.client.api_request(endpoint=endpoint) return workspaces.json() def summary(self): """ Returns the workspace for which the user have the stored role """ endpoint = '/v2/users/{0}/summary'.format(self.guid) return self.client.api_request(endpoint=endpoint).json()
# -*- coding: utf-8 -*- class TrieNode: def __init__(self): self.children = {} self.leaf = False class Trie: def __init__(self): self.root = TrieNode() def insert(self, word): current = self.root for char in word: if char not in current.children: current.children[char] = TrieNode() current = current.children[char] current.leaf = True def search(self, word): return self._search(word, self.root, False) def _search(self, word, current, error): for i, char in enumerate(word): if not error: for child in current.children: if self._search(word[i + 1:], current.children[child], char != child): return True return False elif error and char not in current.children: return False current = current.children[char] return current.leaf and error class MagicDictionary: def __init__(self): self.trie = Trie() def buildDict(self, dict): for word in dict: self.trie.insert(word) def search(self, word): return self.trie.search(word) if __name__ == '__main__': obj = MagicDictionary() obj.buildDict(['hello', 'leetcode']) assert not obj.search('hello') assert obj.search('hhllo') assert not obj.search('hllo') assert not obj.search('leetcoded') obj.buildDict(['hello', 'hallo', 'hell', 'leetcoded']) assert obj.search('hello') assert obj.search('hhllo') assert not obj.search('hllo') assert not obj.search('leetcoded')
class Trienode: def __init__(self): self.children = {} self.leaf = False class Trie: def __init__(self): self.root = trie_node() def insert(self, word): current = self.root for char in word: if char not in current.children: current.children[char] = trie_node() current = current.children[char] current.leaf = True def search(self, word): return self._search(word, self.root, False) def _search(self, word, current, error): for (i, char) in enumerate(word): if not error: for child in current.children: if self._search(word[i + 1:], current.children[child], char != child): return True return False elif error and char not in current.children: return False current = current.children[char] return current.leaf and error class Magicdictionary: def __init__(self): self.trie = trie() def build_dict(self, dict): for word in dict: self.trie.insert(word) def search(self, word): return self.trie.search(word) if __name__ == '__main__': obj = magic_dictionary() obj.buildDict(['hello', 'leetcode']) assert not obj.search('hello') assert obj.search('hhllo') assert not obj.search('hllo') assert not obj.search('leetcoded') obj.buildDict(['hello', 'hallo', 'hell', 'leetcoded']) assert obj.search('hello') assert obj.search('hhllo') assert not obj.search('hllo') assert not obj.search('leetcoded')
class Solution(object): def countPoints(self, points, queries): """ :type points: List[List[int]] :type queries: List[List[int]] :rtype: List[int] """ qP = [] for q in queries: count = 0 for p in points: if(sqrt(pow(q[0] - p[0],2) + pow(q[1] - p[1], 2)) <= float(q[2])): count += 1 qP.append(count) return qP
class Solution(object): def count_points(self, points, queries): """ :type points: List[List[int]] :type queries: List[List[int]] :rtype: List[int] """ q_p = [] for q in queries: count = 0 for p in points: if sqrt(pow(q[0] - p[0], 2) + pow(q[1] - p[1], 2)) <= float(q[2]): count += 1 qP.append(count) return qP
class ActionRow: def __init__(self, components: list): self.base = {"type": 1, "components": [component.base for component in components]} class SelectMenuOption: def __init__(self, label: str, value, description: str ='', emoji: dict = {}): self.base = {"label": label, "description": description, "value": value, "emoji":emoji} class SelectMenu: def __init__(self, custom_id, options): self.base = {"type": 3, "custom_id": custom_id, "options": [opt.base for opt in options if isinstance(opt, SelectMenuOption)]} class ButtonStyle: PRIMARY = 1 SECONDARY = 2 SUCCESS = 3 DANGER = 4 LINK = 5 class Button: def __init__(self, custom_id, style: int = ButtonStyle.PRIMARY, label: str = '', url: str = None, emoji: dict = None, disabled: bool = False): self.base = {"type": 2, "style": style, "label": label, "custom_id": custom_id, "disabled": disabled} if emoji is not None: self.base['emoji'] = emoji if style == ButtonStyle.LINK and url is not None: self.base['url'] = url
class Actionrow: def __init__(self, components: list): self.base = {'type': 1, 'components': [component.base for component in components]} class Selectmenuoption: def __init__(self, label: str, value, description: str='', emoji: dict={}): self.base = {'label': label, 'description': description, 'value': value, 'emoji': emoji} class Selectmenu: def __init__(self, custom_id, options): self.base = {'type': 3, 'custom_id': custom_id, 'options': [opt.base for opt in options if isinstance(opt, SelectMenuOption)]} class Buttonstyle: primary = 1 secondary = 2 success = 3 danger = 4 link = 5 class Button: def __init__(self, custom_id, style: int=ButtonStyle.PRIMARY, label: str='', url: str=None, emoji: dict=None, disabled: bool=False): self.base = {'type': 2, 'style': style, 'label': label, 'custom_id': custom_id, 'disabled': disabled} if emoji is not None: self.base['emoji'] = emoji if style == ButtonStyle.LINK and url is not None: self.base['url'] = url
class Node: def __init__(self, key, value): self.key = key self.value = value self.next = None def __str__(self): return f'<Node: ({self.key}, {self.value}, Next: {self.next})>' def __repr__(self): return str(self) class Hash: """ Hash object class. """ def __init__(self): self.buckets_capacity = 60 self.size = 0 self.buckets = [None] * self.buckets_capacity def hash(self, key): hash_sum = 0 # For each character in the key do this # Add (index + length of key) ^ (current char code) # Cap the hash_sum in range [0, self.buckets_capacity - 1] for index, y in enumerate(key): hash_sum += (index + len(key)) ** ord(y) hash_sum = hash_sum % self.buckets_capacity return hash_sum def include(self, key, value): """ Include a new key-value pair in your already existing hash table. Args: - key (str): Any thing can be your key - value (Any): Mention the value associated with your particular key """ index = self.hash(key) node = self.buckets[index] # If the bucket is empty then add the key, value pair if node is None: self.buckets[index] = Node(key, value) return prev = node while node is not None: prev = node node = node.next self.size += 1 prev.next = Node(key, value) def searchFor(self, key): """ Search for a given key. Args: - key (str): Any thing can be your key. Mention the key you want to search for the value associated with it. """ index = self.hash(key) node = self.buckets[index] while node is not None and node.key != key: node = node.next if node is None: return None else: return node.value def removeFor(self, key): """ Remove value associated with some key. Args: - key (str): Mention the key for which you want to delete the value. """ index = self.hash(key) node = self.buckets[index] prev = None # Go to the node for key in the args while node is not None and node.key != key: prev = node node = node.next if node is None: return None else: # we found a key and now deleting the data self.size -= 1 result = node.value if prev is None: self.buckets[index] = node.next else: prev.next = prev.next.next return result
class Node: def __init__(self, key, value): self.key = key self.value = value self.next = None def __str__(self): return f'<Node: ({self.key}, {self.value}, Next: {self.next})>' def __repr__(self): return str(self) class Hash: """ Hash object class. """ def __init__(self): self.buckets_capacity = 60 self.size = 0 self.buckets = [None] * self.buckets_capacity def hash(self, key): hash_sum = 0 for (index, y) in enumerate(key): hash_sum += (index + len(key)) ** ord(y) hash_sum = hash_sum % self.buckets_capacity return hash_sum def include(self, key, value): """ Include a new key-value pair in your already existing hash table. Args: - key (str): Any thing can be your key - value (Any): Mention the value associated with your particular key """ index = self.hash(key) node = self.buckets[index] if node is None: self.buckets[index] = node(key, value) return prev = node while node is not None: prev = node node = node.next self.size += 1 prev.next = node(key, value) def search_for(self, key): """ Search for a given key. Args: - key (str): Any thing can be your key. Mention the key you want to search for the value associated with it. """ index = self.hash(key) node = self.buckets[index] while node is not None and node.key != key: node = node.next if node is None: return None else: return node.value def remove_for(self, key): """ Remove value associated with some key. Args: - key (str): Mention the key for which you want to delete the value. """ index = self.hash(key) node = self.buckets[index] prev = None while node is not None and node.key != key: prev = node node = node.next if node is None: return None else: self.size -= 1 result = node.value if prev is None: self.buckets[index] = node.next else: prev.next = prev.next.next return result
f_no = 1 s_no = 2 print(f_no) print(s_no) result = 2 while True: t_no = f_no + s_no if t_no >= 4000000: break if t_no % 2 == 0: result += t_no # result = result + t_no print(t_no) f_no = s_no s_no = t_no print() print("Sum of even numbers till 4000000 is ", result)
f_no = 1 s_no = 2 print(f_no) print(s_no) result = 2 while True: t_no = f_no + s_no if t_no >= 4000000: break if t_no % 2 == 0: result += t_no print(t_no) f_no = s_no s_no = t_no print() print('Sum of even numbers till 4000000 is ', result)
# @file Search in Rotated Sorted ArrayII # @brief Given a sorted rotated array, search for target # https://leetcode.com/problems/search-in-rotated-sorted-array-ii ''' Follow up for "Search in Rotated Sorted Array": What if duplicates are allowed? Would this affect the run-time complexity? How and why? Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Write a function to determine if a given target is in the array. The array may contain duplicates. ''' # avg time complexity: O(log n), worst case time complexity: O(n) - if everything is a duplicate # space complexity: O(1) def search(self, nums, target): """ :type nums: List[int] :type target: int :rtype: bool """ b, e = 0, len(nums)-1 while b <= e: mid = b + (e-b)/2 if nums[mid] == target: return True if nums[b] < nums[mid]: if target >= nums[b] and target < nums[mid]: e = mid - 1 else: b = mid + 1 elif nums[mid] < nums[e]: if target <= nums[e] and target >= nums[mid]: b = mid + 1 else: e = mid - 1 elif nums[b] != target: b += 1 else: e -= 1 return False
""" Follow up for "Search in Rotated Sorted Array": What if duplicates are allowed? Would this affect the run-time complexity? How and why? Suppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Write a function to determine if a given target is in the array. The array may contain duplicates. """ def search(self, nums, target): """ :type nums: List[int] :type target: int :rtype: bool """ (b, e) = (0, len(nums) - 1) while b <= e: mid = b + (e - b) / 2 if nums[mid] == target: return True if nums[b] < nums[mid]: if target >= nums[b] and target < nums[mid]: e = mid - 1 else: b = mid + 1 elif nums[mid] < nums[e]: if target <= nums[e] and target >= nums[mid]: b = mid + 1 else: e = mid - 1 elif nums[b] != target: b += 1 else: e -= 1 return False
class Bidict(dict): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.inverse = {} for key, value in self.items(): self.inverse.setdefault(value, []).append(key) def __setitem__(self, key, value): if key in self: self.inverse[self[key]].remove(key) super().__setitem__(key, value) self.inverse.setdefault(value, []).append(key) def __delitem__(self, key): self.inverse.setdefault(self[key], []).remove(key) if self[key] in self.inverse and not self.inverse[self[key]]: del self.inverse[self[key]] super().__delitem__(key)
class Bidict(dict): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) self.inverse = {} for (key, value) in self.items(): self.inverse.setdefault(value, []).append(key) def __setitem__(self, key, value): if key in self: self.inverse[self[key]].remove(key) super().__setitem__(key, value) self.inverse.setdefault(value, []).append(key) def __delitem__(self, key): self.inverse.setdefault(self[key], []).remove(key) if self[key] in self.inverse and (not self.inverse[self[key]]): del self.inverse[self[key]] super().__delitem__(key)
L=[] for i in range(int(input())): L.append([i+1]+list(map(int,input().split()))) L.sort(key = lambda t : t[3]) L.sort(key = lambda t : t[2]) L.sort(key = lambda t: 700-t[1]) print(L[0][0])
l = [] for i in range(int(input())): L.append([i + 1] + list(map(int, input().split()))) L.sort(key=lambda t: t[3]) L.sort(key=lambda t: t[2]) L.sort(key=lambda t: 700 - t[1]) print(L[0][0])
# ====================================================================== # Seating System # Advent of Code 2020 Day 11 -- Eric Wastl -- https://adventofcode.com # # Python implementation by Dr. Dean Earl Wright III # ====================================================================== # ====================================================================== # c o n w a y . p y # ====================================================================== "A solver for the Advent of Code 2020 Day 11 puzzle" # ---------------------------------------------------------------------- # import # ---------------------------------------------------------------------- # ---------------------------------------------------------------------- # constants # ---------------------------------------------------------------------- FLOOR = '.' EMPTY = 'L' OCCUP = '#' DELTA = [ (0, 1), (1, 0), (0, -1), (-1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1), ] # ====================================================================== # Conway # ====================================================================== class Conway(object): # pylint: disable=R0902, R0205 "Object for Seating System" def __init__(self, text=None, part2=False): # 1. Set the initial values self.part2 = part2 self.text = text self.rows = 0 self.cols = 0 self.rnds = 0 self.seats = set() self.current = set() self.previous = None self.limit = 4 if part2: self.limit = 5 # 2. Process text (if any) if text is not None and len(text) > 0: self.process_text(text) def process_text(self, text): "Get location of the seats" self.rows = len(text) self.cols = len(text[0]) self.seats = set() for row, line in enumerate(text): assert len(line) == self.cols for col, space in enumerate(line): if space == EMPTY: self.seats.add((col, row)) def fill_all_seats(self): "Butts in seats" self.previous = set() self.current = set() for location in self.seats: self.current.add(location) self.rnds = 1 def count_occupied(self): "Return total number of occupied seats" return len(self.current) def adjacent(self, loc): "Return the number of adjacent occupied seats" result = 0 for delta in DELTA: if self.nearby(loc, delta): result += 1 return result def nearby(self, loc, delta): "Returns True if the nearby seat is occupied" # 1. Determine the adjacent location nloc = (loc[0] + delta[0], loc[1] + delta[1]) # 2. Part one only cares about that location if not self.part2: return nloc in self.current # 3. Part 2 takes a longer view while self.in_bounds(nloc): if nloc in self.current: return True if nloc in self.seats: return False nloc = (nloc[0] + delta[0], nloc[1] + delta[1]) return False def in_bounds(self, loc): "Returns True is location is in the seating area" col, row = loc if col < 0 or row < 0 or col >= self.cols or row >= self.rows: return False return True def next_round(self): "Ring a round the rosy" # 1. Save the current status self.previous = self.current.copy() # 2. Start with a clean slate nxt = set() # 3. See if an occupied seat stays occupied for loc in self.current: if self.adjacent(loc) < self.limit: nxt.add(loc) # 4. See if an empty seat gets filled for loc in self.seats: if loc not in self.current: if self.adjacent(loc) == 0: nxt.add(loc) # 5. Finish the round self.current = nxt self.rnds += 1 def unchanged(self): "Returns True if there have been no changes in seating" return self.current == self.previous def run_until_no_change(self): "Run the simulation until no change in seating and return the number of seats" self.fill_all_seats() while not self.unchanged(): self.next_round() return self.count_occupied() def __str__(self): result = [] for row in range(self.rows): line = [] for col in range(self.cols): loc = (col, row) if loc not in self.seats: line.append(FLOOR) elif loc in self.current: line.append(OCCUP) else: line.append(EMPTY) result.append(''.join(line)) return '\n'.join(result) def part_one(self, verbose=False, limit=0): "Returns the solution for part one" # 1. Return the solution for part one return self.run_until_no_change() def part_two(self, verbose=False, limit=0): "Returns the solution for part two" # 1. Return the solution for part two return self.run_until_no_change() # ---------------------------------------------------------------------- # module initialization # ---------------------------------------------------------------------- if __name__ == '__main__': pass # ====================================================================== # end c o n w a y . p y end # ======================================================================
"""A solver for the Advent of Code 2020 Day 11 puzzle""" floor = '.' empty = 'L' occup = '#' delta = [(0, 1), (1, 0), (0, -1), (-1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] class Conway(object): """Object for Seating System""" def __init__(self, text=None, part2=False): self.part2 = part2 self.text = text self.rows = 0 self.cols = 0 self.rnds = 0 self.seats = set() self.current = set() self.previous = None self.limit = 4 if part2: self.limit = 5 if text is not None and len(text) > 0: self.process_text(text) def process_text(self, text): """Get location of the seats""" self.rows = len(text) self.cols = len(text[0]) self.seats = set() for (row, line) in enumerate(text): assert len(line) == self.cols for (col, space) in enumerate(line): if space == EMPTY: self.seats.add((col, row)) def fill_all_seats(self): """Butts in seats""" self.previous = set() self.current = set() for location in self.seats: self.current.add(location) self.rnds = 1 def count_occupied(self): """Return total number of occupied seats""" return len(self.current) def adjacent(self, loc): """Return the number of adjacent occupied seats""" result = 0 for delta in DELTA: if self.nearby(loc, delta): result += 1 return result def nearby(self, loc, delta): """Returns True if the nearby seat is occupied""" nloc = (loc[0] + delta[0], loc[1] + delta[1]) if not self.part2: return nloc in self.current while self.in_bounds(nloc): if nloc in self.current: return True if nloc in self.seats: return False nloc = (nloc[0] + delta[0], nloc[1] + delta[1]) return False def in_bounds(self, loc): """Returns True is location is in the seating area""" (col, row) = loc if col < 0 or row < 0 or col >= self.cols or (row >= self.rows): return False return True def next_round(self): """Ring a round the rosy""" self.previous = self.current.copy() nxt = set() for loc in self.current: if self.adjacent(loc) < self.limit: nxt.add(loc) for loc in self.seats: if loc not in self.current: if self.adjacent(loc) == 0: nxt.add(loc) self.current = nxt self.rnds += 1 def unchanged(self): """Returns True if there have been no changes in seating""" return self.current == self.previous def run_until_no_change(self): """Run the simulation until no change in seating and return the number of seats""" self.fill_all_seats() while not self.unchanged(): self.next_round() return self.count_occupied() def __str__(self): result = [] for row in range(self.rows): line = [] for col in range(self.cols): loc = (col, row) if loc not in self.seats: line.append(FLOOR) elif loc in self.current: line.append(OCCUP) else: line.append(EMPTY) result.append(''.join(line)) return '\n'.join(result) def part_one(self, verbose=False, limit=0): """Returns the solution for part one""" return self.run_until_no_change() def part_two(self, verbose=False, limit=0): """Returns the solution for part two""" return self.run_until_no_change() if __name__ == '__main__': pass
# # PySNMP MIB module BENU-TWAG-STATS-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/BENU-TWAG-STATS-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:37:34 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ValueSizeConstraint", "ConstraintsIntersection") benuWAG, = mibBuilder.importSymbols("BENU-WAG-MIB", "benuWAG") NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance") Unsigned32, Counter32, IpAddress, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, Counter64, ObjectIdentity, iso, ModuleIdentity, TimeTicks, MibIdentifier, NotificationType, Integer32 = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "Counter32", "IpAddress", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "Counter64", "ObjectIdentity", "iso", "ModuleIdentity", "TimeTicks", "MibIdentifier", "NotificationType", "Integer32") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") benuTWagStatsMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7)) benuTWagStatsMIB.setRevisions(('2016-07-19 00:00', '2016-07-27 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: benuTWagStatsMIB.setRevisionsDescriptions(('Initial Version', 'Added counter bTWagPmip6DeletedDueToLmaInitBriMsg to indicate subs del by lma',)) if mibBuilder.loadTexts: benuTWagStatsMIB.setLastUpdated('201607270000Z') if mibBuilder.loadTexts: benuTWagStatsMIB.setOrganization('Benu Networks,Inc') if mibBuilder.loadTexts: benuTWagStatsMIB.setContactInfo('Benu Networks,Inc Corporate Headquarters 300 Concord Road, Suite 110 Billerica, MA 01821 USA Tel: +1 978-223-4700 Fax: +1 978-362-1908 Email: info@benunets.com') if mibBuilder.loadTexts: benuTWagStatsMIB.setDescription('This MIB module defines statistics of Benu Wireless Access Gateway. Copyright (C) 2012 by Benu Networks, Inc. All rights reserved.') bTWagNotifications = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0)) if mibBuilder.loadTexts: bTWagNotifications.setStatus('current') if mibBuilder.loadTexts: bTWagNotifications.setDescription('TWAG notifications are defined in this branch.') bTWagS2aSubscriberMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1)) if mibBuilder.loadTexts: bTWagS2aSubscriberMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberMIBObjects.setDescription('TWAG S2a subscriber statistics are defined in this branch.') bTWagS2aSubscriberNotifObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 2)) if mibBuilder.loadTexts: bTWagS2aSubscriberNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberNotifObjects.setDescription('Notifications of TWAG S2a subscriber statistics are defined in this branch.') bTWagS2aStatsMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3)) if mibBuilder.loadTexts: bTWagS2aStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aStatsMIBObjects.setDescription('TWAG s2a interface statistics are defined in this branch.') bTWagS2aNotifObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 4)) if mibBuilder.loadTexts: bTWagS2aNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aNotifObjects.setDescription('Notifications of TWAG s2a interface statistics are defined in this branch.') bTWagGTPStatsMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 5)) if mibBuilder.loadTexts: bTWagGTPStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGTPStatsMIBObjects.setDescription('TWAG GTP statistics are defined in this branch.') bTWagGTPNotifObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6)) if mibBuilder.loadTexts: bTWagGTPNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGTPNotifObjects.setDescription('Notifications of TWAG GTP statistics are defined in this branch.') bTWagGnGpSubscriberMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7)) if mibBuilder.loadTexts: bTWagGnGpSubscriberMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberMIBObjects.setDescription('TWAG GnGp subscriber statistics are defined in this branch.') bTWagGnGpSubscriberNotifObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 8)) if mibBuilder.loadTexts: bTWagGnGpSubscriberNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberNotifObjects.setDescription('Notifications of TWAG GnGp subscriber statistics are defined in this branch.') bTWagGnGpStatsMIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9)) if mibBuilder.loadTexts: bTWagGnGpStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpStatsMIBObjects.setDescription('TWAG GnGp interface statistics are defined in this branch.') bTWagGnGpNotifObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 10)) if mibBuilder.loadTexts: bTWagGnGpNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpNotifObjects.setDescription('Notifications of TWAG GnGp interface statistics are defined in this branch.') bTWagPmip6MIBObjects = ObjectIdentity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11)) if mibBuilder.loadTexts: bTWagPmip6MIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6MIBObjects.setDescription('TWAG Pmip6 statistics are defined in this branch.') bTWagGTPCurrentNumOfTunnels = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 5, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGTPCurrentNumOfTunnels.setStatus('current') if mibBuilder.loadTexts: bTWagGTPCurrentNumOfTunnels.setDescription('The current number of GTP Tunnels.') bTWagNumCurrentSecureSSIDS2aSubscribers = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDS2aSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDS2aSubscribers.setDescription('The current number of 802.1x subscribers.') bTWagNumPreAuthenticatedS2aSubscribers = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumPreAuthenticatedS2aSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedS2aSubscribers.setDescription('The total number of pre-authenticated subscribers.') bTWagNumCurrentSecureSSIDGnGpSubscribers = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDGnGpSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDGnGpSubscribers.setDescription('The current number of 802.1x subscribers.') bTWagNumPreAuthenticatedGnGpSubscribers = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumPreAuthenticatedGnGpSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedGnGpSubscribers.setDescription('The total number of pre-authenticated subscribers.') bTWagNumPreAuthenticatedPmip6Subscribers = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 1), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumPreAuthenticatedPmip6Subscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedPmip6Subscribers.setDescription('The current total number of pre-authenticated subscribers.') bTWagNumGrePmip6Tunnels = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagNumGrePmip6Tunnels.setStatus('current') if mibBuilder.loadTexts: bTWagNumGrePmip6Tunnels.setDescription('The current total number of Gre Pmip6 tunnels.') bTWagPmip6StatsTable = MibTable((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3), ) if mibBuilder.loadTexts: bTWagPmip6StatsTable.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsTable.setDescription('A list of TWAG Pmip6 statistics.') bTWagPmip6StatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1), ).setIndexNames((0, "BENU-TWAG-STATS-MIB", "bTWagPmip6StatsInterval")) if mibBuilder.loadTexts: bTWagPmip6StatsEntry.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsEntry.setDescription('A logical row in the bTWagPmip6StatsTable.') bTWagPmip6StatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 1), Integer32()) if mibBuilder.loadTexts: bTWagPmip6StatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') bTWagPmip6IntervalDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6IntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6IntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') bTWagPmip6TotalPacketsRxvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvd.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvd.setDescription('The total number of Pmip6 packets received') bTWagPmip6TotalPacketsRxvdError = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvdError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvdError.setDescription('The total number of Pmip6 error packets received') bTWagPmip6TotalPacketHeaderDecodeError = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPacketHeaderDecodeError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketHeaderDecodeError.setDescription('The total number of Pmip6 packet header decode errors') bTWagPmip6TotalPbuSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPbuSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSent.setDescription('The total number of Pmip6 proxy binding update packets sent') bTWagPmip6TotalPbuSendError = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPbuSendError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSendError.setDescription('The total number of Pmip6 proxy binding update packets send error') bTWagPmip6TotalPbaReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalPbaReceived.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbaReceived.setDescription('The total number of Pmip6 proxy binding ack packets received ') bTWagPmip6TotalBriReceived = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalBriReceived.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalBriReceived.setDescription('The total number of Pmip6 binding revocation indication packets received') bTWagPmip6TotalBraSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6TotalBraSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalBraSent.setDescription('The total number of Pmip6 binding revocation ack packets sent') bTWagPmip6HeartBeatReqSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSent.setDescription('The total number of Pmip6 heartbeat request sent') bTWagPmip6HeartBeatRspSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6HeartBeatRspSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatRspSent.setDescription('The total number of Pmip6 heartbeat response sent') bTWagPmip6HeartBeatReqRestartCountMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 13), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqRestartCountMismatch.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqRestartCountMismatch.setDescription('The total number of Pmip6 heartbeat request restart counter mismatch') bTWagPmip6HeartBeatReqSeqMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSeqMismatch.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSeqMismatch.setDescription('The total number of Pmip6 heartbeat request restart sequence mismatch') bTWagPmip6DeletedDueToLmaInitBriMsg = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPmip6DeletedDueToLmaInitBriMsg.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6DeletedDueToLmaInitBriMsg.setDescription('The total number of Pmip6 subscribers deleted due to Lma initiated Bri message') bTWagS2aSubscriberTable = MibTable((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3), ) if mibBuilder.loadTexts: bTWagS2aSubscriberTable.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberTable.setDescription('A list of TWAG S2a subscriber statistics.') bTWagS2aSubscriberEntry = MibTableRow((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1), ).setIndexNames((0, "BENU-TWAG-STATS-MIB", "bTWagS2aSubsStatsInterval")) if mibBuilder.loadTexts: bTWagS2aSubscriberEntry.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberEntry.setDescription('A logical row in the bTWagS2aSubscriberTable.') bTWagS2aSubsStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 1), Integer32()) if mibBuilder.loadTexts: bTWagS2aSubsStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') bTWagS2aSubsIntervalDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsIntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') bTWagSecureSSIDS2aSubsAdded = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagSecureSSIDS2aSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagSecureSSIDS2aSubsAdded.setDescription('The total number of secure SSID S2a subscribers added') bTWagPreAuthenticatedS2aSubsAdded = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPreAuthenticatedS2aSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagPreAuthenticatedS2aSubsAdded.setDescription('The total number of pre authenticated S2a subscribers added') bTWagS2aSubsDeletionsByDMinitiatedByPGW = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsDeletionsByDMinitiatedByPGW.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsDeletionsByDMinitiatedByPGW.setDescription('The total number of S2a subscribers deleted due to PGW initiated Disconnect Message') bTWagS2aSubsGtpSessionCreateFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsGtpSessionCreateFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsGtpSessionCreateFailed.setDescription('The total number of S2a GTP subscriber session creation failed') bTWagS2aSubsCSRQSendFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsCSRQSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsCSRQSendFailed.setDescription('The total number of CSRQ message send failed for S2a subscribers.') bTWagS2aSubsInvalidGtpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsInvalidGtpVersion.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsInvalidGtpVersion.setDescription('The total number of subscribers encountered with invalid GTP version') bTWagS2aSubsRadiusMissingMandatoryParams = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusMissingMandatoryParams.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMissingMandatoryParams.setDescription('The total number of subscribers with missing mandatory params in radius messages. ') bTWagS2aSubsRadiusInvalidPGWIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusInvalidPGWIPAddr.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusInvalidPGWIPAddr.setDescription('The total number of subscriber with invalid PGW IP address in radius messages. ') bTWagS2aSubsRadiusMSISDN = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusMSISDN.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMSISDN.setDescription('The total number of subscriber with MSISDN received in radius messages. ') bTWagS2aSubsRadiusQoSProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 13), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusQoSProfile.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusQoSProfile.setDescription('The total number of subscriber with QoS Profile received in radius messages. ') bTWagS2aSubsRadiusGBRQoS = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusGBRQoS.setDescription('The total number of subscriber with GBRQoS received in radius messages. ') bTWagS2aSubsRadiusNonGBRQoS = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusNonGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusNonGBRQoS.setDescription('The total number of subscriber with NonGBRQoS received in radius messages. ') bTWagS2aSubsGtpIPAddFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 16), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsGtpIPAddFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsGtpIPAddFailed.setDescription('The total number of subscriber for whom GTP IP Add failed ') bTWagS2aSubsRadiusEapAkaHash = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 17), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSubsRadiusEapAkaHash.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusEapAkaHash.setDescription('The total number of subscriber authenticated via EAP-AKA HASH') bTWagS2aTable = MibTable((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1), ) if mibBuilder.loadTexts: bTWagS2aTable.setStatus('current') if mibBuilder.loadTexts: bTWagS2aTable.setDescription('A list of TWAG S2a interface statistics.') bTWagS2aEntry = MibTableRow((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1), ).setIndexNames((0, "BENU-TWAG-STATS-MIB", "bTWagS2aStatsInterval")) if mibBuilder.loadTexts: bTWagS2aEntry.setStatus('current') if mibBuilder.loadTexts: bTWagS2aEntry.setDescription('A logical row in the bTWagS2aTable.') bTWagS2aStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 1), Integer32()) if mibBuilder.loadTexts: bTWagS2aStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagS2aStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') bTWagS2aIntervalDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagS2aIntervalDuration.setDescription('Duration of statistics accumulation interval in minutes.') bTWagS2aSessCreateReqSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessCreateReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateReqSent.setDescription('The total number of Create Session Requests(CSRQ) initiated by the TWAG during the measurement interval.') bTWagS2aSessCreateRespRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessCreateRespRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRcvd.setDescription('The total number of Create Session Responses(CSRP) received by the TWAG during the measurement interval.') bTWagS2aSessCreateRespAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessCreateRespAccepted.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespAccepted.setDescription('The total number of Create Session Responses with cause REQUEST_ACCEPTED received by the TWAG during the measurement interval.') bTWagS2aSessCreateRespRej = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessCreateRespRej.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRej.setDescription('The total number of Create Session Responses with cause REJECT received by the TWAG during the measurement interval.') bTWagS2aSessDelReqSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessDelReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelReqSent.setDescription('The total number of Delete Session Requests initiated by the TWAG during the measurement interval.') bTWagS2aSessDelRespRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessDelRespRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelRespRcvd.setDescription('The total number of delete Session Response messages received during measurement interval.') bTWagS2aSessDelRespRejRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aSessDelRespRejRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelRespRejRcvd.setDescription('The total number of delete Session Response messages received with cause REJECT during measurement interval.') bTWagS2aDBRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aDBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aDBRQRcvd.setDescription('The total number of Delete Bearer Request(DBRQ) messages received during measurement interval.') bTWagS2aDBRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aDBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aDBRPSent.setDescription('The total number of Delete Bearer Response(DBRP) messages sent during measurement interval.') bTWagS2aCBRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aCBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aCBRQRcvd.setDescription('The total number of Create Bearer Request(CBRQ) messages received during measurement interval.') bTWagS2aCBRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 13), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aCBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aCBRPSent.setDescription('The total number of Create Bearer Response(CBRP) messages sent during measurement interval.') bTWagS2aUBRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aUBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aUBRQRcvd.setDescription('The total number of Update Bearer Request(UBRQ) messages received during measurement interval.') bTWagS2aUBRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagS2aUBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aUBRPSent.setDescription('The total number of Update Bearer Response(UBRP) messages sent during measurement interval.') bTWagGnGpSubscriberTable = MibTable((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3), ) if mibBuilder.loadTexts: bTWagGnGpSubscriberTable.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberTable.setDescription('A list of TWAG subscriber statistics.') bTWagGnGpSubscriberEntry = MibTableRow((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1), ).setIndexNames((0, "BENU-TWAG-STATS-MIB", "bTWagGnGpSubsStatsInterval")) if mibBuilder.loadTexts: bTWagGnGpSubscriberEntry.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberEntry.setDescription('A logical row in the bTWagGnGpSubscriberTable.') bTWagGnGpSubsStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 1), Integer32()) if mibBuilder.loadTexts: bTWagGnGpSubsStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') bTWagGnGpSubsIntervalDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsIntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') bTWagSecureSSIDGnGpSubsAdded = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagSecureSSIDGnGpSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagSecureSSIDGnGpSubsAdded.setDescription('The total number of secure SSID GnGp subscribers added') bTWagPreAuthenticatedGnGpSubsAdded = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagPreAuthenticatedGnGpSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagPreAuthenticatedGnGpSubsAdded.setDescription('The total number of pre authenticated GnGp subscribers added') bTWagGnGpSubsDeletionsByDMinitiatedByGGSN = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsDeletionsByDMinitiatedByGGSN.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsDeletionsByDMinitiatedByGGSN.setDescription('The total number of GnGp subscribers deleted due to GGSN initiated Disconnect Message') bTWagGnGpSubsGtpSessionCreateFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsGtpSessionCreateFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsGtpSessionCreateFailed.setDescription('The total number of GnGp GTP subscriber session creation failed') bTWagGnGpSubsCPCRQSendFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsCPCRQSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsCPCRQSendFailed.setDescription('The total number of CSRQ message send failed for GnGp subscribers.') bTWagGnGpSubsPDPCtxSendFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsPDPCtxSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsPDPCtxSendFailed.setDescription('The total number of CPCQ QoS message send failed for GnGp subscribers.') bTWagGnGpSubsInvalidGtpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsInvalidGtpVersion.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsInvalidGtpVersion.setDescription('The total number of subscribers encountered with invalid GTP version') bTWagGnGpSubsRadiusMissingMandatoryParams = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMissingMandatoryParams.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMissingMandatoryParams.setDescription('The total number of subscribers with missing mandatory params in radius messages. ') bTWagGnGpSubsRadiusInvalidGGSNIPAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusInvalidGGSNIPAddr.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusInvalidGGSNIPAddr.setDescription('The total number of subscriber with invalid PGW IP address in radius messages. ') bTWagGnGpSubsRadiusMSISDN = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMSISDN.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMSISDN.setDescription('The total number of subscriber with MSISDN received in radius messages. ') bTWagGnGpSubsRadiusQoSProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 13), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusQoSProfile.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusQoSProfile.setDescription('The total number of subscriber with QoS Profile received in radius messages. ') bTWagGnGpSubsRadiusGBRQoS = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusGBRQoS.setDescription('The total number of subscriber with GBRQoS received in radius messages. ') bTWagGnGpSubsRadiusNonGBRQoS = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusNonGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusNonGBRQoS.setDescription('The total number of subscriber with NonGBRQoS received in radius messages. ') bTWagGnGpSubsGtpIPAddFailed = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 16), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsGtpIPAddFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsGtpIPAddFailed.setDescription('The total number of subscriber for whom GTP IP Add failed ') bTWagGnGpSubsRadiusEapAkaHash = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 17), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpSubsRadiusEapAkaHash.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusEapAkaHash.setDescription('The total number of subscriber authenticated via EAP-AKA HASH') bTWagGnGpTable = MibTable((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1), ) if mibBuilder.loadTexts: bTWagGnGpTable.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpTable.setDescription('A list of TWAG GnGp interface statistics.') bTWagGnGpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1), ).setIndexNames((0, "BENU-TWAG-STATS-MIB", "bTWagGnGpStatsInterval")) if mibBuilder.loadTexts: bTWagGnGpEntry.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpEntry.setDescription('A logical row in the bTWagGnGpTable.') bTWagGnGpStatsInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 1), Integer32()) if mibBuilder.loadTexts: bTWagGnGpStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') bTWagGnGpIntervalDuration = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpIntervalDuration.setDescription('Duration of statistics accumulation interval in minutes.') bTWagGnGpCPCRQSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRQSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRQSent.setDescription('The total number of Create PDP Context requests(CPCRQ) initiated by the TWAG during the measurement interval.') bTWagGnGpCPCRPRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRPRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPRcvd.setDescription('The total number of Create PDP Context Responses(CPCRP) received by the TWAG during the measurement interval.') bTWagGnGpCPCRPAccepted = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 5), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRPAccepted.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPAccepted.setDescription('The total number of Create PDP Context Responses(CPCRP) with cause REQUEST_ACCEPTED received by the TWAG during the measurement interval.') bTWagGnGpCPCRPRej = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 6), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRPRej.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPRej.setDescription('The total number of Create PDP Context Responses(CPCRP) with cause REJECT received by the TWAG during the measurement interval.') bTWagGnGpDPCRQSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpDPCRQSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRQSent.setDescription('The total number of Delete PDP Context Requests(DPCRQ) initiated by the TWAG during the measurement interval.') bTWagGnGpDPCRPRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 8), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpDPCRPRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPRcvd.setDescription('The total number of Delete PDP Context Response(DPCRP) messages received during measurement interval.') bTWagGnGpDPCRPRejRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 9), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpDPCRPRejRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPRejRcvd.setDescription('The total number of Delete PDP Context Response(DPCRP) messages received with cause REJECT during measurement interval.') bTWagGnGpDPCRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 10), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpDPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRQRcvd.setDescription('The total number of Delete PDP Context Request(DPCRQ) messages received during measurement interval.') bTWagGnGpDPCRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpDPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPSent.setDescription('The total number of Delete PDP Context Response(DPCRP) messages sent during measurement interval.') bTWagGnGpCPCRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 12), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRQRcvd.setDescription('The total number of Create PDP Context Request(CPCRQ) messages received during measurement interval.') bTWagGnGpCPCRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 13), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpCPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPSent.setDescription('The total number of Create PDP Context Response(CPCRP) messages sent during measurement interval.') bTWagGnGpUPCRQRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpUPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpUPCRQRcvd.setDescription('The total number of Update PDP Conetxt Request(UPCRQ) messages received during measurement interval.') bTWagGnGpUPCRPSent = MibTableColumn((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 15), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: bTWagGnGpUPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpUPCRPSent.setDescription('The total number of Update PDP Context Response(UPCRP) messages sent during measurement interval.') bTWagGTPMaxNumOfTunnels = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 1), Unsigned32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: bTWagGTPMaxNumOfTunnels.setStatus('current') if mibBuilder.loadTexts: bTWagGTPMaxNumOfTunnels.setDescription('Max Number of GTP-U that can exist at a given time. Any new GTP-U request beyond this number will be rejected') bTWagGTPHighThreshold = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 2), Unsigned32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: bTWagGTPHighThreshold.setStatus('current') if mibBuilder.loadTexts: bTWagGTPHighThreshold.setDescription('The high threshold for number of GTP-U that can exist at any given time . If a bTWagGTPLowThresholdReached event has been generated , and the value number of GTP-U in use has exceeded the value of bTWagGTPHighThreshold, then a bTWagGTPHighThresholdReached event will be generated. No more bTWagGTPHighThresholdReached events will be generated until the value for number of tunnels in use becomes equal to or less than the value of bTWagGTPLowThreshold.') bTWagGTPLowThreshold = MibScalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 3), Unsigned32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: bTWagGTPLowThreshold.setStatus('current') if mibBuilder.loadTexts: bTWagGTPLowThreshold.setDescription('The Lower threshold for number of GTP-U that can exist at any given time . If a bTWagGTPHighThresholdReached event has been generated , and the value number of tunnels in use falls below the value of bTWagGTPLowThreshold, then a bTWagGTPLowThresholdReached event will be generated. No more bTWagGTPLowThresholdReached events will be generated until the value for number of tunnels in use becomes equal to or greater than the value of bTWagGTPHighThreshold.') bTWagGTPHighThresholdReached = NotificationType((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0, 1)).setObjects(("BENU-TWAG-STATS-MIB", "bTWagGTPMaxNumOfTunnels"), ("BENU-TWAG-STATS-MIB", "bTWagGTPHighThreshold")) if mibBuilder.loadTexts: bTWagGTPHighThresholdReached.setStatus('current') if mibBuilder.loadTexts: bTWagGTPHighThresholdReached.setDescription('This notification signifies that the current number of GTP-U has risen above the value of bTWagGTPHighThreshold.') bTWagGTPLowThresholdReached = NotificationType((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0, 2)).setObjects(("BENU-TWAG-STATS-MIB", "bTWagGTPMaxNumOfTunnels"), ("BENU-TWAG-STATS-MIB", "bTWagGTPLowThreshold")) if mibBuilder.loadTexts: bTWagGTPLowThresholdReached.setStatus('current') if mibBuilder.loadTexts: bTWagGTPLowThresholdReached.setDescription('This notification signifies that the current number of GTP-U has fallen below the value of bTWagGTPLowThreshold.') mibBuilder.exportSymbols("BENU-TWAG-STATS-MIB", bTWagPmip6HeartBeatReqSent=bTWagPmip6HeartBeatReqSent, bTWagGnGpUPCRQRcvd=bTWagGnGpUPCRQRcvd, bTWagS2aSubsGtpIPAddFailed=bTWagS2aSubsGtpIPAddFailed, bTWagS2aSubscriberNotifObjects=bTWagS2aSubscriberNotifObjects, bTWagGnGpSubsRadiusMSISDN=bTWagGnGpSubsRadiusMSISDN, bTWagPmip6TotalPacketsRxvd=bTWagPmip6TotalPacketsRxvd, bTWagNotifications=bTWagNotifications, bTWagGnGpSubsDeletionsByDMinitiatedByGGSN=bTWagGnGpSubsDeletionsByDMinitiatedByGGSN, bTWagSecureSSIDGnGpSubsAdded=bTWagSecureSSIDGnGpSubsAdded, bTWagS2aSubsRadiusMissingMandatoryParams=bTWagS2aSubsRadiusMissingMandatoryParams, bTWagGnGpSubsRadiusQoSProfile=bTWagGnGpSubsRadiusQoSProfile, bTWagNumPreAuthenticatedS2aSubscribers=bTWagNumPreAuthenticatedS2aSubscribers, bTWagGnGpDPCRPSent=bTWagGnGpDPCRPSent, bTWagPmip6TotalPbaReceived=bTWagPmip6TotalPbaReceived, bTWagS2aSessDelReqSent=bTWagS2aSessDelReqSent, bTWagS2aSubsRadiusQoSProfile=bTWagS2aSubsRadiusQoSProfile, bTWagGnGpNotifObjects=bTWagGnGpNotifObjects, bTWagPmip6TotalPbuSendError=bTWagPmip6TotalPbuSendError, bTWagNumPreAuthenticatedPmip6Subscribers=bTWagNumPreAuthenticatedPmip6Subscribers, bTWagGTPCurrentNumOfTunnels=bTWagGTPCurrentNumOfTunnels, bTWagS2aSubsDeletionsByDMinitiatedByPGW=bTWagS2aSubsDeletionsByDMinitiatedByPGW, bTWagGnGpDPCRPRejRcvd=bTWagGnGpDPCRPRejRcvd, bTWagPmip6HeartBeatRspSent=bTWagPmip6HeartBeatRspSent, bTWagS2aSubscriberEntry=bTWagS2aSubscriberEntry, bTWagGnGpSubscriberTable=bTWagGnGpSubscriberTable, bTWagS2aIntervalDuration=bTWagS2aIntervalDuration, bTWagS2aStatsInterval=bTWagS2aStatsInterval, bTWagPreAuthenticatedGnGpSubsAdded=bTWagPreAuthenticatedGnGpSubsAdded, bTWagS2aSubscriberTable=bTWagS2aSubscriberTable, bTWagGnGpSubscriberNotifObjects=bTWagGnGpSubscriberNotifObjects, bTWagS2aUBRQRcvd=bTWagS2aUBRQRcvd, bTWagGnGpCPCRPAccepted=bTWagGnGpCPCRPAccepted, bTWagNumCurrentSecureSSIDS2aSubscribers=bTWagNumCurrentSecureSSIDS2aSubscribers, bTWagGnGpDPCRQRcvd=bTWagGnGpDPCRQRcvd, bTWagGTPMaxNumOfTunnels=bTWagGTPMaxNumOfTunnels, bTWagS2aSubsRadiusGBRQoS=bTWagS2aSubsRadiusGBRQoS, bTWagGnGpSubscriberMIBObjects=bTWagGnGpSubscriberMIBObjects, bTWagS2aDBRPSent=bTWagS2aDBRPSent, bTWagGnGpStatsMIBObjects=bTWagGnGpStatsMIBObjects, bTWagS2aCBRPSent=bTWagS2aCBRPSent, bTWagS2aSubscriberMIBObjects=bTWagS2aSubscriberMIBObjects, bTWagGnGpSubsRadiusMissingMandatoryParams=bTWagGnGpSubsRadiusMissingMandatoryParams, bTWagS2aSessCreateRespRej=bTWagS2aSessCreateRespRej, bTWagS2aSubsRadiusNonGBRQoS=bTWagS2aSubsRadiusNonGBRQoS, bTWagGTPHighThreshold=bTWagGTPHighThreshold, bTWagGnGpSubsGtpIPAddFailed=bTWagGnGpSubsGtpIPAddFailed, bTWagGnGpUPCRPSent=bTWagGnGpUPCRPSent, bTWagS2aUBRPSent=bTWagS2aUBRPSent, bTWagS2aNotifObjects=bTWagS2aNotifObjects, bTWagGnGpCPCRQRcvd=bTWagGnGpCPCRQRcvd, bTWagGnGpSubsRadiusEapAkaHash=bTWagGnGpSubsRadiusEapAkaHash, bTWagS2aSubsRadiusMSISDN=bTWagS2aSubsRadiusMSISDN, bTWagGnGpDPCRQSent=bTWagGnGpDPCRQSent, bTWagPmip6StatsInterval=bTWagPmip6StatsInterval, benuTWagStatsMIB=benuTWagStatsMIB, bTWagS2aStatsMIBObjects=bTWagS2aStatsMIBObjects, bTWagPmip6TotalBriReceived=bTWagPmip6TotalBriReceived, bTWagNumPreAuthenticatedGnGpSubscribers=bTWagNumPreAuthenticatedGnGpSubscribers, bTWagGnGpSubsStatsInterval=bTWagGnGpSubsStatsInterval, bTWagPmip6HeartBeatReqRestartCountMismatch=bTWagPmip6HeartBeatReqRestartCountMismatch, bTWagS2aSubsStatsInterval=bTWagS2aSubsStatsInterval, bTWagPreAuthenticatedS2aSubsAdded=bTWagPreAuthenticatedS2aSubsAdded, bTWagGnGpSubsIntervalDuration=bTWagGnGpSubsIntervalDuration, bTWagS2aSubsCSRQSendFailed=bTWagS2aSubsCSRQSendFailed, bTWagS2aSessDelRespRejRcvd=bTWagS2aSessDelRespRejRcvd, bTWagGnGpDPCRPRcvd=bTWagGnGpDPCRPRcvd, bTWagPmip6StatsTable=bTWagPmip6StatsTable, PYSNMP_MODULE_ID=benuTWagStatsMIB, bTWagS2aSessCreateRespAccepted=bTWagS2aSessCreateRespAccepted, bTWagPmip6StatsEntry=bTWagPmip6StatsEntry, bTWagGnGpTable=bTWagGnGpTable, bTWagS2aDBRQRcvd=bTWagS2aDBRQRcvd, bTWagS2aTable=bTWagS2aTable, bTWagGnGpCPCRQSent=bTWagGnGpCPCRQSent, bTWagGnGpSubsRadiusNonGBRQoS=bTWagGnGpSubsRadiusNonGBRQoS, bTWagNumGrePmip6Tunnels=bTWagNumGrePmip6Tunnels, bTWagSecureSSIDS2aSubsAdded=bTWagSecureSSIDS2aSubsAdded, bTWagGnGpIntervalDuration=bTWagGnGpIntervalDuration, bTWagS2aSubsGtpSessionCreateFailed=bTWagS2aSubsGtpSessionCreateFailed, bTWagGnGpSubsInvalidGtpVersion=bTWagGnGpSubsInvalidGtpVersion, bTWagPmip6TotalPbuSent=bTWagPmip6TotalPbuSent, bTWagGnGpStatsInterval=bTWagGnGpStatsInterval, bTWagS2aSubsIntervalDuration=bTWagS2aSubsIntervalDuration, bTWagGnGpSubsGtpSessionCreateFailed=bTWagGnGpSubsGtpSessionCreateFailed, bTWagPmip6TotalPacketHeaderDecodeError=bTWagPmip6TotalPacketHeaderDecodeError, bTWagPmip6TotalPacketsRxvdError=bTWagPmip6TotalPacketsRxvdError, bTWagPmip6TotalBraSent=bTWagPmip6TotalBraSent, bTWagGnGpCPCRPRej=bTWagGnGpCPCRPRej, bTWagPmip6DeletedDueToLmaInitBriMsg=bTWagPmip6DeletedDueToLmaInitBriMsg, bTWagGnGpSubsPDPCtxSendFailed=bTWagGnGpSubsPDPCtxSendFailed, bTWagS2aSubsRadiusInvalidPGWIPAddr=bTWagS2aSubsRadiusInvalidPGWIPAddr, bTWagGTPLowThreshold=bTWagGTPLowThreshold, bTWagGnGpSubsCPCRQSendFailed=bTWagGnGpSubsCPCRQSendFailed, bTWagGTPStatsMIBObjects=bTWagGTPStatsMIBObjects, bTWagPmip6HeartBeatReqSeqMismatch=bTWagPmip6HeartBeatReqSeqMismatch, bTWagS2aSessDelRespRcvd=bTWagS2aSessDelRespRcvd, bTWagS2aSessCreateRespRcvd=bTWagS2aSessCreateRespRcvd, bTWagS2aSessCreateReqSent=bTWagS2aSessCreateReqSent, bTWagGnGpSubsRadiusInvalidGGSNIPAddr=bTWagGnGpSubsRadiusInvalidGGSNIPAddr, bTWagGTPLowThresholdReached=bTWagGTPLowThresholdReached, bTWagGTPNotifObjects=bTWagGTPNotifObjects, bTWagS2aSubsInvalidGtpVersion=bTWagS2aSubsInvalidGtpVersion, bTWagGTPHighThresholdReached=bTWagGTPHighThresholdReached, bTWagPmip6MIBObjects=bTWagPmip6MIBObjects, bTWagGnGpSubscriberEntry=bTWagGnGpSubscriberEntry, bTWagGnGpSubsRadiusGBRQoS=bTWagGnGpSubsRadiusGBRQoS, bTWagS2aSubsRadiusEapAkaHash=bTWagS2aSubsRadiusEapAkaHash, bTWagGnGpEntry=bTWagGnGpEntry, bTWagS2aCBRQRcvd=bTWagS2aCBRQRcvd, bTWagGnGpCPCRPRcvd=bTWagGnGpCPCRPRcvd, bTWagS2aEntry=bTWagS2aEntry, bTWagNumCurrentSecureSSIDGnGpSubscribers=bTWagNumCurrentSecureSSIDGnGpSubscribers, bTWagGnGpCPCRPSent=bTWagGnGpCPCRPSent, bTWagPmip6IntervalDuration=bTWagPmip6IntervalDuration)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, constraints_union, single_value_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection') (benu_wag,) = mibBuilder.importSymbols('BENU-WAG-MIB', 'benuWAG') (notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance') (unsigned32, counter32, ip_address, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, counter64, object_identity, iso, module_identity, time_ticks, mib_identifier, notification_type, integer32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'Counter32', 'IpAddress', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'Counter64', 'ObjectIdentity', 'iso', 'ModuleIdentity', 'TimeTicks', 'MibIdentifier', 'NotificationType', 'Integer32') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') benu_t_wag_stats_mib = module_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7)) benuTWagStatsMIB.setRevisions(('2016-07-19 00:00', '2016-07-27 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: benuTWagStatsMIB.setRevisionsDescriptions(('Initial Version', 'Added counter bTWagPmip6DeletedDueToLmaInitBriMsg to indicate subs del by lma')) if mibBuilder.loadTexts: benuTWagStatsMIB.setLastUpdated('201607270000Z') if mibBuilder.loadTexts: benuTWagStatsMIB.setOrganization('Benu Networks,Inc') if mibBuilder.loadTexts: benuTWagStatsMIB.setContactInfo('Benu Networks,Inc Corporate Headquarters 300 Concord Road, Suite 110 Billerica, MA 01821 USA Tel: +1 978-223-4700 Fax: +1 978-362-1908 Email: info@benunets.com') if mibBuilder.loadTexts: benuTWagStatsMIB.setDescription('This MIB module defines statistics of Benu Wireless Access Gateway. Copyright (C) 2012 by Benu Networks, Inc. All rights reserved.') b_t_wag_notifications = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0)) if mibBuilder.loadTexts: bTWagNotifications.setStatus('current') if mibBuilder.loadTexts: bTWagNotifications.setDescription('TWAG notifications are defined in this branch.') b_t_wag_s2a_subscriber_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1)) if mibBuilder.loadTexts: bTWagS2aSubscriberMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberMIBObjects.setDescription('TWAG S2a subscriber statistics are defined in this branch.') b_t_wag_s2a_subscriber_notif_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 2)) if mibBuilder.loadTexts: bTWagS2aSubscriberNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberNotifObjects.setDescription('Notifications of TWAG S2a subscriber statistics are defined in this branch.') b_t_wag_s2a_stats_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3)) if mibBuilder.loadTexts: bTWagS2aStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aStatsMIBObjects.setDescription('TWAG s2a interface statistics are defined in this branch.') b_t_wag_s2a_notif_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 4)) if mibBuilder.loadTexts: bTWagS2aNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagS2aNotifObjects.setDescription('Notifications of TWAG s2a interface statistics are defined in this branch.') b_t_wag_gtp_stats_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 5)) if mibBuilder.loadTexts: bTWagGTPStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGTPStatsMIBObjects.setDescription('TWAG GTP statistics are defined in this branch.') b_t_wag_gtp_notif_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6)) if mibBuilder.loadTexts: bTWagGTPNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGTPNotifObjects.setDescription('Notifications of TWAG GTP statistics are defined in this branch.') b_t_wag_gn_gp_subscriber_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7)) if mibBuilder.loadTexts: bTWagGnGpSubscriberMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberMIBObjects.setDescription('TWAG GnGp subscriber statistics are defined in this branch.') b_t_wag_gn_gp_subscriber_notif_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 8)) if mibBuilder.loadTexts: bTWagGnGpSubscriberNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberNotifObjects.setDescription('Notifications of TWAG GnGp subscriber statistics are defined in this branch.') b_t_wag_gn_gp_stats_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9)) if mibBuilder.loadTexts: bTWagGnGpStatsMIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpStatsMIBObjects.setDescription('TWAG GnGp interface statistics are defined in this branch.') b_t_wag_gn_gp_notif_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 10)) if mibBuilder.loadTexts: bTWagGnGpNotifObjects.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpNotifObjects.setDescription('Notifications of TWAG GnGp interface statistics are defined in this branch.') b_t_wag_pmip6_mib_objects = object_identity((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11)) if mibBuilder.loadTexts: bTWagPmip6MIBObjects.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6MIBObjects.setDescription('TWAG Pmip6 statistics are defined in this branch.') b_t_wag_gtp_current_num_of_tunnels = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 5, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGTPCurrentNumOfTunnels.setStatus('current') if mibBuilder.loadTexts: bTWagGTPCurrentNumOfTunnels.setDescription('The current number of GTP Tunnels.') b_t_wag_num_current_secure_ssids2a_subscribers = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDS2aSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDS2aSubscribers.setDescription('The current number of 802.1x subscribers.') b_t_wag_num_pre_authenticated_s2a_subscribers = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedS2aSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedS2aSubscribers.setDescription('The total number of pre-authenticated subscribers.') b_t_wag_num_current_secure_ssid_gn_gp_subscribers = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDGnGpSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumCurrentSecureSSIDGnGpSubscribers.setDescription('The current number of 802.1x subscribers.') b_t_wag_num_pre_authenticated_gn_gp_subscribers = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedGnGpSubscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedGnGpSubscribers.setDescription('The total number of pre-authenticated subscribers.') b_t_wag_num_pre_authenticated_pmip6_subscribers = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 1), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedPmip6Subscribers.setStatus('current') if mibBuilder.loadTexts: bTWagNumPreAuthenticatedPmip6Subscribers.setDescription('The current total number of pre-authenticated subscribers.') b_t_wag_num_gre_pmip6_tunnels = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagNumGrePmip6Tunnels.setStatus('current') if mibBuilder.loadTexts: bTWagNumGrePmip6Tunnels.setDescription('The current total number of Gre Pmip6 tunnels.') b_t_wag_pmip6_stats_table = mib_table((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3)) if mibBuilder.loadTexts: bTWagPmip6StatsTable.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsTable.setDescription('A list of TWAG Pmip6 statistics.') b_t_wag_pmip6_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1)).setIndexNames((0, 'BENU-TWAG-STATS-MIB', 'bTWagPmip6StatsInterval')) if mibBuilder.loadTexts: bTWagPmip6StatsEntry.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsEntry.setDescription('A logical row in the bTWagPmip6StatsTable.') b_t_wag_pmip6_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 1), integer32()) if mibBuilder.loadTexts: bTWagPmip6StatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6StatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') b_t_wag_pmip6_interval_duration = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6IntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6IntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') b_t_wag_pmip6_total_packets_rxvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvd.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvd.setDescription('The total number of Pmip6 packets received') b_t_wag_pmip6_total_packets_rxvd_error = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvdError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketsRxvdError.setDescription('The total number of Pmip6 error packets received') b_t_wag_pmip6_total_packet_header_decode_error = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPacketHeaderDecodeError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPacketHeaderDecodeError.setDescription('The total number of Pmip6 packet header decode errors') b_t_wag_pmip6_total_pbu_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSent.setDescription('The total number of Pmip6 proxy binding update packets sent') b_t_wag_pmip6_total_pbu_send_error = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSendError.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbuSendError.setDescription('The total number of Pmip6 proxy binding update packets send error') b_t_wag_pmip6_total_pba_received = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalPbaReceived.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalPbaReceived.setDescription('The total number of Pmip6 proxy binding ack packets received ') b_t_wag_pmip6_total_bri_received = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalBriReceived.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalBriReceived.setDescription('The total number of Pmip6 binding revocation indication packets received') b_t_wag_pmip6_total_bra_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6TotalBraSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6TotalBraSent.setDescription('The total number of Pmip6 binding revocation ack packets sent') b_t_wag_pmip6_heart_beat_req_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSent.setDescription('The total number of Pmip6 heartbeat request sent') b_t_wag_pmip6_heart_beat_rsp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6HeartBeatRspSent.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatRspSent.setDescription('The total number of Pmip6 heartbeat response sent') b_t_wag_pmip6_heart_beat_req_restart_count_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 13), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqRestartCountMismatch.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqRestartCountMismatch.setDescription('The total number of Pmip6 heartbeat request restart counter mismatch') b_t_wag_pmip6_heart_beat_req_seq_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSeqMismatch.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6HeartBeatReqSeqMismatch.setDescription('The total number of Pmip6 heartbeat request restart sequence mismatch') b_t_wag_pmip6_deleted_due_to_lma_init_bri_msg = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 11, 3, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPmip6DeletedDueToLmaInitBriMsg.setStatus('current') if mibBuilder.loadTexts: bTWagPmip6DeletedDueToLmaInitBriMsg.setDescription('The total number of Pmip6 subscribers deleted due to Lma initiated Bri message') b_t_wag_s2a_subscriber_table = mib_table((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3)) if mibBuilder.loadTexts: bTWagS2aSubscriberTable.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberTable.setDescription('A list of TWAG S2a subscriber statistics.') b_t_wag_s2a_subscriber_entry = mib_table_row((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1)).setIndexNames((0, 'BENU-TWAG-STATS-MIB', 'bTWagS2aSubsStatsInterval')) if mibBuilder.loadTexts: bTWagS2aSubscriberEntry.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubscriberEntry.setDescription('A logical row in the bTWagS2aSubscriberTable.') b_t_wag_s2a_subs_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 1), integer32()) if mibBuilder.loadTexts: bTWagS2aSubsStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') b_t_wag_s2a_subs_interval_duration = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsIntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') b_t_wag_secure_ssids2a_subs_added = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagSecureSSIDS2aSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagSecureSSIDS2aSubsAdded.setDescription('The total number of secure SSID S2a subscribers added') b_t_wag_pre_authenticated_s2a_subs_added = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPreAuthenticatedS2aSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagPreAuthenticatedS2aSubsAdded.setDescription('The total number of pre authenticated S2a subscribers added') b_t_wag_s2a_subs_deletions_by_d_minitiated_by_pgw = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsDeletionsByDMinitiatedByPGW.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsDeletionsByDMinitiatedByPGW.setDescription('The total number of S2a subscribers deleted due to PGW initiated Disconnect Message') b_t_wag_s2a_subs_gtp_session_create_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsGtpSessionCreateFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsGtpSessionCreateFailed.setDescription('The total number of S2a GTP subscriber session creation failed') b_t_wag_s2a_subs_csrq_send_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsCSRQSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsCSRQSendFailed.setDescription('The total number of CSRQ message send failed for S2a subscribers.') b_t_wag_s2a_subs_invalid_gtp_version = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsInvalidGtpVersion.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsInvalidGtpVersion.setDescription('The total number of subscribers encountered with invalid GTP version') b_t_wag_s2a_subs_radius_missing_mandatory_params = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMissingMandatoryParams.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMissingMandatoryParams.setDescription('The total number of subscribers with missing mandatory params in radius messages. ') b_t_wag_s2a_subs_radius_invalid_pgwip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusInvalidPGWIPAddr.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusInvalidPGWIPAddr.setDescription('The total number of subscriber with invalid PGW IP address in radius messages. ') b_t_wag_s2a_subs_radius_msisdn = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMSISDN.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusMSISDN.setDescription('The total number of subscriber with MSISDN received in radius messages. ') b_t_wag_s2a_subs_radius_qo_s_profile = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 13), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusQoSProfile.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusQoSProfile.setDescription('The total number of subscriber with QoS Profile received in radius messages. ') b_t_wag_s2a_subs_radius_gbr_qo_s = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusGBRQoS.setDescription('The total number of subscriber with GBRQoS received in radius messages. ') b_t_wag_s2a_subs_radius_non_gbr_qo_s = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusNonGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusNonGBRQoS.setDescription('The total number of subscriber with NonGBRQoS received in radius messages. ') b_t_wag_s2a_subs_gtp_ip_add_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 16), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsGtpIPAddFailed.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsGtpIPAddFailed.setDescription('The total number of subscriber for whom GTP IP Add failed ') b_t_wag_s2a_subs_radius_eap_aka_hash = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 1, 3, 1, 17), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSubsRadiusEapAkaHash.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSubsRadiusEapAkaHash.setDescription('The total number of subscriber authenticated via EAP-AKA HASH') b_t_wag_s2a_table = mib_table((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1)) if mibBuilder.loadTexts: bTWagS2aTable.setStatus('current') if mibBuilder.loadTexts: bTWagS2aTable.setDescription('A list of TWAG S2a interface statistics.') b_t_wag_s2a_entry = mib_table_row((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1)).setIndexNames((0, 'BENU-TWAG-STATS-MIB', 'bTWagS2aStatsInterval')) if mibBuilder.loadTexts: bTWagS2aEntry.setStatus('current') if mibBuilder.loadTexts: bTWagS2aEntry.setDescription('A logical row in the bTWagS2aTable.') b_t_wag_s2a_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 1), integer32()) if mibBuilder.loadTexts: bTWagS2aStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagS2aStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') b_t_wag_s2a_interval_duration = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagS2aIntervalDuration.setDescription('Duration of statistics accumulation interval in minutes.') b_t_wag_s2a_sess_create_req_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessCreateReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateReqSent.setDescription('The total number of Create Session Requests(CSRQ) initiated by the TWAG during the measurement interval.') b_t_wag_s2a_sess_create_resp_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRcvd.setDescription('The total number of Create Session Responses(CSRP) received by the TWAG during the measurement interval.') b_t_wag_s2a_sess_create_resp_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessCreateRespAccepted.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespAccepted.setDescription('The total number of Create Session Responses with cause REQUEST_ACCEPTED received by the TWAG during the measurement interval.') b_t_wag_s2a_sess_create_resp_rej = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRej.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessCreateRespRej.setDescription('The total number of Create Session Responses with cause REJECT received by the TWAG during the measurement interval.') b_t_wag_s2a_sess_del_req_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessDelReqSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelReqSent.setDescription('The total number of Delete Session Requests initiated by the TWAG during the measurement interval.') b_t_wag_s2a_sess_del_resp_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessDelRespRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelRespRcvd.setDescription('The total number of delete Session Response messages received during measurement interval.') b_t_wag_s2a_sess_del_resp_rej_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aSessDelRespRejRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aSessDelRespRejRcvd.setDescription('The total number of delete Session Response messages received with cause REJECT during measurement interval.') b_t_wag_s2a_dbrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aDBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aDBRQRcvd.setDescription('The total number of Delete Bearer Request(DBRQ) messages received during measurement interval.') b_t_wag_s2a_dbrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aDBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aDBRPSent.setDescription('The total number of Delete Bearer Response(DBRP) messages sent during measurement interval.') b_t_wag_s2a_cbrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aCBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aCBRQRcvd.setDescription('The total number of Create Bearer Request(CBRQ) messages received during measurement interval.') b_t_wag_s2a_cbrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 13), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aCBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aCBRPSent.setDescription('The total number of Create Bearer Response(CBRP) messages sent during measurement interval.') b_t_wag_s2a_ubrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aUBRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagS2aUBRQRcvd.setDescription('The total number of Update Bearer Request(UBRQ) messages received during measurement interval.') b_t_wag_s2a_ubrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 3, 1, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagS2aUBRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagS2aUBRPSent.setDescription('The total number of Update Bearer Response(UBRP) messages sent during measurement interval.') b_t_wag_gn_gp_subscriber_table = mib_table((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3)) if mibBuilder.loadTexts: bTWagGnGpSubscriberTable.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberTable.setDescription('A list of TWAG subscriber statistics.') b_t_wag_gn_gp_subscriber_entry = mib_table_row((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1)).setIndexNames((0, 'BENU-TWAG-STATS-MIB', 'bTWagGnGpSubsStatsInterval')) if mibBuilder.loadTexts: bTWagGnGpSubscriberEntry.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubscriberEntry.setDescription('A logical row in the bTWagGnGpSubscriberTable.') b_t_wag_gn_gp_subs_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 1), integer32()) if mibBuilder.loadTexts: bTWagGnGpSubsStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') b_t_wag_gn_gp_subs_interval_duration = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsIntervalDuration.setDescription('Duration of statistics interval (or reporting period) in minutes') b_t_wag_secure_ssid_gn_gp_subs_added = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagSecureSSIDGnGpSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagSecureSSIDGnGpSubsAdded.setDescription('The total number of secure SSID GnGp subscribers added') b_t_wag_pre_authenticated_gn_gp_subs_added = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagPreAuthenticatedGnGpSubsAdded.setStatus('current') if mibBuilder.loadTexts: bTWagPreAuthenticatedGnGpSubsAdded.setDescription('The total number of pre authenticated GnGp subscribers added') b_t_wag_gn_gp_subs_deletions_by_d_minitiated_by_ggsn = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsDeletionsByDMinitiatedByGGSN.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsDeletionsByDMinitiatedByGGSN.setDescription('The total number of GnGp subscribers deleted due to GGSN initiated Disconnect Message') b_t_wag_gn_gp_subs_gtp_session_create_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsGtpSessionCreateFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsGtpSessionCreateFailed.setDescription('The total number of GnGp GTP subscriber session creation failed') b_t_wag_gn_gp_subs_cpcrq_send_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsCPCRQSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsCPCRQSendFailed.setDescription('The total number of CSRQ message send failed for GnGp subscribers.') b_t_wag_gn_gp_subs_pdp_ctx_send_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsPDPCtxSendFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsPDPCtxSendFailed.setDescription('The total number of CPCQ QoS message send failed for GnGp subscribers.') b_t_wag_gn_gp_subs_invalid_gtp_version = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsInvalidGtpVersion.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsInvalidGtpVersion.setDescription('The total number of subscribers encountered with invalid GTP version') b_t_wag_gn_gp_subs_radius_missing_mandatory_params = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMissingMandatoryParams.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMissingMandatoryParams.setDescription('The total number of subscribers with missing mandatory params in radius messages. ') b_t_wag_gn_gp_subs_radius_invalid_ggsnip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusInvalidGGSNIPAddr.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusInvalidGGSNIPAddr.setDescription('The total number of subscriber with invalid PGW IP address in radius messages. ') b_t_wag_gn_gp_subs_radius_msisdn = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMSISDN.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusMSISDN.setDescription('The total number of subscriber with MSISDN received in radius messages. ') b_t_wag_gn_gp_subs_radius_qo_s_profile = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 13), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusQoSProfile.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusQoSProfile.setDescription('The total number of subscriber with QoS Profile received in radius messages. ') b_t_wag_gn_gp_subs_radius_gbr_qo_s = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusGBRQoS.setDescription('The total number of subscriber with GBRQoS received in radius messages. ') b_t_wag_gn_gp_subs_radius_non_gbr_qo_s = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusNonGBRQoS.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusNonGBRQoS.setDescription('The total number of subscriber with NonGBRQoS received in radius messages. ') b_t_wag_gn_gp_subs_gtp_ip_add_failed = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 16), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsGtpIPAddFailed.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsGtpIPAddFailed.setDescription('The total number of subscriber for whom GTP IP Add failed ') b_t_wag_gn_gp_subs_radius_eap_aka_hash = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 7, 3, 1, 17), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusEapAkaHash.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpSubsRadiusEapAkaHash.setDescription('The total number of subscriber authenticated via EAP-AKA HASH') b_t_wag_gn_gp_table = mib_table((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1)) if mibBuilder.loadTexts: bTWagGnGpTable.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpTable.setDescription('A list of TWAG GnGp interface statistics.') b_t_wag_gn_gp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1)).setIndexNames((0, 'BENU-TWAG-STATS-MIB', 'bTWagGnGpStatsInterval')) if mibBuilder.loadTexts: bTWagGnGpEntry.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpEntry.setDescription('A logical row in the bTWagGnGpTable.') b_t_wag_gn_gp_stats_interval = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 1), integer32()) if mibBuilder.loadTexts: bTWagGnGpStatsInterval.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpStatsInterval.setDescription('The interval during which the measurements are accumlated. Interval index 1 indicates the latest interval for which statistics accumulation is completed. Older the statistics, greater the interval index value. In a system supporting a history of n intervals with interval count 1 and interval count n, the most and the least recent intervals respectively, the following apply at the end of an interval: - statistics for interval count n are discarded - the statistics for interval count i become statistics for interval count i + 1, where 1 <= i < n - current statistics become statistics for interval count 1.') b_t_wag_gn_gp_interval_duration = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpIntervalDuration.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpIntervalDuration.setDescription('Duration of statistics accumulation interval in minutes.') b_t_wag_gn_gp_cpcrq_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRQSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRQSent.setDescription('The total number of Create PDP Context requests(CPCRQ) initiated by the TWAG during the measurement interval.') b_t_wag_gn_gp_cpcrp_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRPRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPRcvd.setDescription('The total number of Create PDP Context Responses(CPCRP) received by the TWAG during the measurement interval.') b_t_wag_gn_gp_cpcrp_accepted = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 5), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRPAccepted.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPAccepted.setDescription('The total number of Create PDP Context Responses(CPCRP) with cause REQUEST_ACCEPTED received by the TWAG during the measurement interval.') b_t_wag_gn_gp_cpcrp_rej = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 6), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRPRej.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPRej.setDescription('The total number of Create PDP Context Responses(CPCRP) with cause REJECT received by the TWAG during the measurement interval.') b_t_wag_gn_gp_dpcrq_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpDPCRQSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRQSent.setDescription('The total number of Delete PDP Context Requests(DPCRQ) initiated by the TWAG during the measurement interval.') b_t_wag_gn_gp_dpcrp_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 8), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpDPCRPRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPRcvd.setDescription('The total number of Delete PDP Context Response(DPCRP) messages received during measurement interval.') b_t_wag_gn_gp_dpcrp_rej_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 9), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpDPCRPRejRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPRejRcvd.setDescription('The total number of Delete PDP Context Response(DPCRP) messages received with cause REJECT during measurement interval.') b_t_wag_gn_gp_dpcrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 10), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpDPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRQRcvd.setDescription('The total number of Delete PDP Context Request(DPCRQ) messages received during measurement interval.') b_t_wag_gn_gp_dpcrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpDPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpDPCRPSent.setDescription('The total number of Delete PDP Context Response(DPCRP) messages sent during measurement interval.') b_t_wag_gn_gp_cpcrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 12), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRQRcvd.setDescription('The total number of Create PDP Context Request(CPCRQ) messages received during measurement interval.') b_t_wag_gn_gp_cpcrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 13), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpCPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpCPCRPSent.setDescription('The total number of Create PDP Context Response(CPCRP) messages sent during measurement interval.') b_t_wag_gn_gp_upcrq_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpUPCRQRcvd.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpUPCRQRcvd.setDescription('The total number of Update PDP Conetxt Request(UPCRQ) messages received during measurement interval.') b_t_wag_gn_gp_upcrp_sent = mib_table_column((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 9, 1, 1, 15), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: bTWagGnGpUPCRPSent.setStatus('current') if mibBuilder.loadTexts: bTWagGnGpUPCRPSent.setDescription('The total number of Update PDP Context Response(UPCRP) messages sent during measurement interval.') b_t_wag_gtp_max_num_of_tunnels = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 1), unsigned32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: bTWagGTPMaxNumOfTunnels.setStatus('current') if mibBuilder.loadTexts: bTWagGTPMaxNumOfTunnels.setDescription('Max Number of GTP-U that can exist at a given time. Any new GTP-U request beyond this number will be rejected') b_t_wag_gtp_high_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 2), unsigned32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: bTWagGTPHighThreshold.setStatus('current') if mibBuilder.loadTexts: bTWagGTPHighThreshold.setDescription('The high threshold for number of GTP-U that can exist at any given time . If a bTWagGTPLowThresholdReached event has been generated , and the value number of GTP-U in use has exceeded the value of bTWagGTPHighThreshold, then a bTWagGTPHighThresholdReached event will be generated. No more bTWagGTPHighThresholdReached events will be generated until the value for number of tunnels in use becomes equal to or less than the value of bTWagGTPLowThreshold.') b_t_wag_gtp_low_threshold = mib_scalar((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 6, 3), unsigned32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: bTWagGTPLowThreshold.setStatus('current') if mibBuilder.loadTexts: bTWagGTPLowThreshold.setDescription('The Lower threshold for number of GTP-U that can exist at any given time . If a bTWagGTPHighThresholdReached event has been generated , and the value number of tunnels in use falls below the value of bTWagGTPLowThreshold, then a bTWagGTPLowThresholdReached event will be generated. No more bTWagGTPLowThresholdReached events will be generated until the value for number of tunnels in use becomes equal to or greater than the value of bTWagGTPHighThreshold.') b_t_wag_gtp_high_threshold_reached = notification_type((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0, 1)).setObjects(('BENU-TWAG-STATS-MIB', 'bTWagGTPMaxNumOfTunnels'), ('BENU-TWAG-STATS-MIB', 'bTWagGTPHighThreshold')) if mibBuilder.loadTexts: bTWagGTPHighThresholdReached.setStatus('current') if mibBuilder.loadTexts: bTWagGTPHighThresholdReached.setDescription('This notification signifies that the current number of GTP-U has risen above the value of bTWagGTPHighThreshold.') b_t_wag_gtp_low_threshold_reached = notification_type((1, 3, 6, 1, 4, 1, 39406, 2, 1, 7, 0, 2)).setObjects(('BENU-TWAG-STATS-MIB', 'bTWagGTPMaxNumOfTunnels'), ('BENU-TWAG-STATS-MIB', 'bTWagGTPLowThreshold')) if mibBuilder.loadTexts: bTWagGTPLowThresholdReached.setStatus('current') if mibBuilder.loadTexts: bTWagGTPLowThresholdReached.setDescription('This notification signifies that the current number of GTP-U has fallen below the value of bTWagGTPLowThreshold.') mibBuilder.exportSymbols('BENU-TWAG-STATS-MIB', bTWagPmip6HeartBeatReqSent=bTWagPmip6HeartBeatReqSent, bTWagGnGpUPCRQRcvd=bTWagGnGpUPCRQRcvd, bTWagS2aSubsGtpIPAddFailed=bTWagS2aSubsGtpIPAddFailed, bTWagS2aSubscriberNotifObjects=bTWagS2aSubscriberNotifObjects, bTWagGnGpSubsRadiusMSISDN=bTWagGnGpSubsRadiusMSISDN, bTWagPmip6TotalPacketsRxvd=bTWagPmip6TotalPacketsRxvd, bTWagNotifications=bTWagNotifications, bTWagGnGpSubsDeletionsByDMinitiatedByGGSN=bTWagGnGpSubsDeletionsByDMinitiatedByGGSN, bTWagSecureSSIDGnGpSubsAdded=bTWagSecureSSIDGnGpSubsAdded, bTWagS2aSubsRadiusMissingMandatoryParams=bTWagS2aSubsRadiusMissingMandatoryParams, bTWagGnGpSubsRadiusQoSProfile=bTWagGnGpSubsRadiusQoSProfile, bTWagNumPreAuthenticatedS2aSubscribers=bTWagNumPreAuthenticatedS2aSubscribers, bTWagGnGpDPCRPSent=bTWagGnGpDPCRPSent, bTWagPmip6TotalPbaReceived=bTWagPmip6TotalPbaReceived, bTWagS2aSessDelReqSent=bTWagS2aSessDelReqSent, bTWagS2aSubsRadiusQoSProfile=bTWagS2aSubsRadiusQoSProfile, bTWagGnGpNotifObjects=bTWagGnGpNotifObjects, bTWagPmip6TotalPbuSendError=bTWagPmip6TotalPbuSendError, bTWagNumPreAuthenticatedPmip6Subscribers=bTWagNumPreAuthenticatedPmip6Subscribers, bTWagGTPCurrentNumOfTunnels=bTWagGTPCurrentNumOfTunnels, bTWagS2aSubsDeletionsByDMinitiatedByPGW=bTWagS2aSubsDeletionsByDMinitiatedByPGW, bTWagGnGpDPCRPRejRcvd=bTWagGnGpDPCRPRejRcvd, bTWagPmip6HeartBeatRspSent=bTWagPmip6HeartBeatRspSent, bTWagS2aSubscriberEntry=bTWagS2aSubscriberEntry, bTWagGnGpSubscriberTable=bTWagGnGpSubscriberTable, bTWagS2aIntervalDuration=bTWagS2aIntervalDuration, bTWagS2aStatsInterval=bTWagS2aStatsInterval, bTWagPreAuthenticatedGnGpSubsAdded=bTWagPreAuthenticatedGnGpSubsAdded, bTWagS2aSubscriberTable=bTWagS2aSubscriberTable, bTWagGnGpSubscriberNotifObjects=bTWagGnGpSubscriberNotifObjects, bTWagS2aUBRQRcvd=bTWagS2aUBRQRcvd, bTWagGnGpCPCRPAccepted=bTWagGnGpCPCRPAccepted, bTWagNumCurrentSecureSSIDS2aSubscribers=bTWagNumCurrentSecureSSIDS2aSubscribers, bTWagGnGpDPCRQRcvd=bTWagGnGpDPCRQRcvd, bTWagGTPMaxNumOfTunnels=bTWagGTPMaxNumOfTunnels, bTWagS2aSubsRadiusGBRQoS=bTWagS2aSubsRadiusGBRQoS, bTWagGnGpSubscriberMIBObjects=bTWagGnGpSubscriberMIBObjects, bTWagS2aDBRPSent=bTWagS2aDBRPSent, bTWagGnGpStatsMIBObjects=bTWagGnGpStatsMIBObjects, bTWagS2aCBRPSent=bTWagS2aCBRPSent, bTWagS2aSubscriberMIBObjects=bTWagS2aSubscriberMIBObjects, bTWagGnGpSubsRadiusMissingMandatoryParams=bTWagGnGpSubsRadiusMissingMandatoryParams, bTWagS2aSessCreateRespRej=bTWagS2aSessCreateRespRej, bTWagS2aSubsRadiusNonGBRQoS=bTWagS2aSubsRadiusNonGBRQoS, bTWagGTPHighThreshold=bTWagGTPHighThreshold, bTWagGnGpSubsGtpIPAddFailed=bTWagGnGpSubsGtpIPAddFailed, bTWagGnGpUPCRPSent=bTWagGnGpUPCRPSent, bTWagS2aUBRPSent=bTWagS2aUBRPSent, bTWagS2aNotifObjects=bTWagS2aNotifObjects, bTWagGnGpCPCRQRcvd=bTWagGnGpCPCRQRcvd, bTWagGnGpSubsRadiusEapAkaHash=bTWagGnGpSubsRadiusEapAkaHash, bTWagS2aSubsRadiusMSISDN=bTWagS2aSubsRadiusMSISDN, bTWagGnGpDPCRQSent=bTWagGnGpDPCRQSent, bTWagPmip6StatsInterval=bTWagPmip6StatsInterval, benuTWagStatsMIB=benuTWagStatsMIB, bTWagS2aStatsMIBObjects=bTWagS2aStatsMIBObjects, bTWagPmip6TotalBriReceived=bTWagPmip6TotalBriReceived, bTWagNumPreAuthenticatedGnGpSubscribers=bTWagNumPreAuthenticatedGnGpSubscribers, bTWagGnGpSubsStatsInterval=bTWagGnGpSubsStatsInterval, bTWagPmip6HeartBeatReqRestartCountMismatch=bTWagPmip6HeartBeatReqRestartCountMismatch, bTWagS2aSubsStatsInterval=bTWagS2aSubsStatsInterval, bTWagPreAuthenticatedS2aSubsAdded=bTWagPreAuthenticatedS2aSubsAdded, bTWagGnGpSubsIntervalDuration=bTWagGnGpSubsIntervalDuration, bTWagS2aSubsCSRQSendFailed=bTWagS2aSubsCSRQSendFailed, bTWagS2aSessDelRespRejRcvd=bTWagS2aSessDelRespRejRcvd, bTWagGnGpDPCRPRcvd=bTWagGnGpDPCRPRcvd, bTWagPmip6StatsTable=bTWagPmip6StatsTable, PYSNMP_MODULE_ID=benuTWagStatsMIB, bTWagS2aSessCreateRespAccepted=bTWagS2aSessCreateRespAccepted, bTWagPmip6StatsEntry=bTWagPmip6StatsEntry, bTWagGnGpTable=bTWagGnGpTable, bTWagS2aDBRQRcvd=bTWagS2aDBRQRcvd, bTWagS2aTable=bTWagS2aTable, bTWagGnGpCPCRQSent=bTWagGnGpCPCRQSent, bTWagGnGpSubsRadiusNonGBRQoS=bTWagGnGpSubsRadiusNonGBRQoS, bTWagNumGrePmip6Tunnels=bTWagNumGrePmip6Tunnels, bTWagSecureSSIDS2aSubsAdded=bTWagSecureSSIDS2aSubsAdded, bTWagGnGpIntervalDuration=bTWagGnGpIntervalDuration, bTWagS2aSubsGtpSessionCreateFailed=bTWagS2aSubsGtpSessionCreateFailed, bTWagGnGpSubsInvalidGtpVersion=bTWagGnGpSubsInvalidGtpVersion, bTWagPmip6TotalPbuSent=bTWagPmip6TotalPbuSent, bTWagGnGpStatsInterval=bTWagGnGpStatsInterval, bTWagS2aSubsIntervalDuration=bTWagS2aSubsIntervalDuration, bTWagGnGpSubsGtpSessionCreateFailed=bTWagGnGpSubsGtpSessionCreateFailed, bTWagPmip6TotalPacketHeaderDecodeError=bTWagPmip6TotalPacketHeaderDecodeError, bTWagPmip6TotalPacketsRxvdError=bTWagPmip6TotalPacketsRxvdError, bTWagPmip6TotalBraSent=bTWagPmip6TotalBraSent, bTWagGnGpCPCRPRej=bTWagGnGpCPCRPRej, bTWagPmip6DeletedDueToLmaInitBriMsg=bTWagPmip6DeletedDueToLmaInitBriMsg, bTWagGnGpSubsPDPCtxSendFailed=bTWagGnGpSubsPDPCtxSendFailed, bTWagS2aSubsRadiusInvalidPGWIPAddr=bTWagS2aSubsRadiusInvalidPGWIPAddr, bTWagGTPLowThreshold=bTWagGTPLowThreshold, bTWagGnGpSubsCPCRQSendFailed=bTWagGnGpSubsCPCRQSendFailed, bTWagGTPStatsMIBObjects=bTWagGTPStatsMIBObjects, bTWagPmip6HeartBeatReqSeqMismatch=bTWagPmip6HeartBeatReqSeqMismatch, bTWagS2aSessDelRespRcvd=bTWagS2aSessDelRespRcvd, bTWagS2aSessCreateRespRcvd=bTWagS2aSessCreateRespRcvd, bTWagS2aSessCreateReqSent=bTWagS2aSessCreateReqSent, bTWagGnGpSubsRadiusInvalidGGSNIPAddr=bTWagGnGpSubsRadiusInvalidGGSNIPAddr, bTWagGTPLowThresholdReached=bTWagGTPLowThresholdReached, bTWagGTPNotifObjects=bTWagGTPNotifObjects, bTWagS2aSubsInvalidGtpVersion=bTWagS2aSubsInvalidGtpVersion, bTWagGTPHighThresholdReached=bTWagGTPHighThresholdReached, bTWagPmip6MIBObjects=bTWagPmip6MIBObjects, bTWagGnGpSubscriberEntry=bTWagGnGpSubscriberEntry, bTWagGnGpSubsRadiusGBRQoS=bTWagGnGpSubsRadiusGBRQoS, bTWagS2aSubsRadiusEapAkaHash=bTWagS2aSubsRadiusEapAkaHash, bTWagGnGpEntry=bTWagGnGpEntry, bTWagS2aCBRQRcvd=bTWagS2aCBRQRcvd, bTWagGnGpCPCRPRcvd=bTWagGnGpCPCRPRcvd, bTWagS2aEntry=bTWagS2aEntry, bTWagNumCurrentSecureSSIDGnGpSubscribers=bTWagNumCurrentSecureSSIDGnGpSubscribers, bTWagGnGpCPCRPSent=bTWagGnGpCPCRPSent, bTWagPmip6IntervalDuration=bTWagPmip6IntervalDuration)
class utils: def __init__(self): pass def readFile(self, fileName): pass
class Utils: def __init__(self): pass def read_file(self, fileName): pass
pole = [1, 2, 5, -1, 3] maximum = pole[0] i = 1 while i < len(pole): maximum = max(maximum, pole[i]) i += 1 print(maximum)
pole = [1, 2, 5, -1, 3] maximum = pole[0] i = 1 while i < len(pole): maximum = max(maximum, pole[i]) i += 1 print(maximum)
""" This package contains the DIRECT tools, a set of tkinter tools for exploring and manipulating the Panda3D scene graph. By default, these are disabled, but they can be explicitly enabled using the following PRC configuration:: want-directtools true want-tk true """
""" This package contains the DIRECT tools, a set of tkinter tools for exploring and manipulating the Panda3D scene graph. By default, these are disabled, but they can be explicitly enabled using the following PRC configuration:: want-directtools true want-tk true """
class Solution: def findDisappearedNumbers(self, nums): # since num in nums belongs to [1, len(nums)], we just need loop i from 1 to len(nums) and check if i in nums. # But the time complexity of checking whether an item in a list is O(n). We need O(1). So make a list to a set. length = len(nums) nums = set(nums) return [i for i in range(1, length+1) if i not in nums] print(Solution().findDisappearedNumbers([4,3,2,7,8,2,3,1]))
class Solution: def find_disappeared_numbers(self, nums): length = len(nums) nums = set(nums) return [i for i in range(1, length + 1) if i not in nums] print(solution().findDisappearedNumbers([4, 3, 2, 7, 8, 2, 3, 1]))
# declaring random seed randomseed = 0 C, H, W = 3,112,112 input_resize = 171,128# test_batch_size = 1 m1_path = 'models/model_CNN_94.pth' m2_path = 'models/model_my_fc6_94.pth' m3_path = 'models/model_score_regressor_94.pth' m4_path = 'models/model_dive_classifier_94.pth' c3d_path = 'models/c3d.pickle' with_dive_classification = False with_caption = False max_epochs = 100 model_ckpt_interval = 1 # in epochs base_learning_rate = 0.0001 temporal_stride = 16 BUCKET_NAME = 'aqa-diving' BUCKET_WEIGHT_FC6 = 'model_my_fc6_94.pth' BUCKET_WEIGHT_CNN = 'model_CNN_94.pth' BUCKET_WEIGHT_SCORE_REG = 'model_score_regressor_94.pth' BUCKET_WEIGHT_DIV_CLASS = 'model_dive_classifier_94.pth'
randomseed = 0 (c, h, w) = (3, 112, 112) input_resize = (171, 128) test_batch_size = 1 m1_path = 'models/model_CNN_94.pth' m2_path = 'models/model_my_fc6_94.pth' m3_path = 'models/model_score_regressor_94.pth' m4_path = 'models/model_dive_classifier_94.pth' c3d_path = 'models/c3d.pickle' with_dive_classification = False with_caption = False max_epochs = 100 model_ckpt_interval = 1 base_learning_rate = 0.0001 temporal_stride = 16 bucket_name = 'aqa-diving' bucket_weight_fc6 = 'model_my_fc6_94.pth' bucket_weight_cnn = 'model_CNN_94.pth' bucket_weight_score_reg = 'model_score_regressor_94.pth' bucket_weight_div_class = 'model_dive_classifier_94.pth'
class _DoublyLinkedBase: class _Node: __slots__ = '_element', '_prev', '_next' def __init__(self, element, prev, next): self._element = element self._prev = prev self._next = next def __init__(self): self._header = self._Node(None, None, None) self._trailer = self._Node(None, None, None) self._header._next = self._trailer self._trailer._prev = self._header self._size = 0 def __len__(self): return self._size def is_empty(self): return self._size == 0 def _insert_between(self, e, predecessor, successor): newest = self._Node(e, predecessor, successor) predecessor._next = newest successor._prev = newest self._size += 1 return newest def _delete_node(self, node): predecessor = node._prev successor = node._next predecessor._next = successor successor._prev = predecessor self._size -= 1 element = node._element node._prev = node._next = node._element = None return element class LinkedDeque(_DoublyLinkedBase): def first(self): if self.is_empty(): raise Empty('Deque is empty') return self._header._next._element def last(self): if self.is_empty(): raise Empty('Deque is empty') return self._trailer._prev._element def insert_first(self, e): self._insert_between(e, self._header, self._header._next) def insert_last(self, e): self._insert_between(e, self._trailer._prev, self._trailer) def delete_first(self): if self.is_empty(): raise Empty('Deque is empty') return self._delete_node(self._header._next) def delete_last(self): if self.is_empty(): raise Empty('Deque is empty') return self._delete_node(self._trailer._prev)
class _Doublylinkedbase: class _Node: __slots__ = ('_element', '_prev', '_next') def __init__(self, element, prev, next): self._element = element self._prev = prev self._next = next def __init__(self): self._header = self._Node(None, None, None) self._trailer = self._Node(None, None, None) self._header._next = self._trailer self._trailer._prev = self._header self._size = 0 def __len__(self): return self._size def is_empty(self): return self._size == 0 def _insert_between(self, e, predecessor, successor): newest = self._Node(e, predecessor, successor) predecessor._next = newest successor._prev = newest self._size += 1 return newest def _delete_node(self, node): predecessor = node._prev successor = node._next predecessor._next = successor successor._prev = predecessor self._size -= 1 element = node._element node._prev = node._next = node._element = None return element class Linkeddeque(_DoublyLinkedBase): def first(self): if self.is_empty(): raise empty('Deque is empty') return self._header._next._element def last(self): if self.is_empty(): raise empty('Deque is empty') return self._trailer._prev._element def insert_first(self, e): self._insert_between(e, self._header, self._header._next) def insert_last(self, e): self._insert_between(e, self._trailer._prev, self._trailer) def delete_first(self): if self.is_empty(): raise empty('Deque is empty') return self._delete_node(self._header._next) def delete_last(self): if self.is_empty(): raise empty('Deque is empty') return self._delete_node(self._trailer._prev)
class TV: def __init__(self): self.__mysonytvprice = 55000 def mysell(self): print("The Selling Price is : {}".format(self.__mysonytvprice)) def myMaxPrice(self, myprice): self.__mysonytvprice = myprice myobj = TV() myobj.mysell() # trying to change the price myobj.__mysonytvprice = 56000 myobj.mysell() myobj.myMaxPrice(54000) myobj.mysell()
class Tv: def __init__(self): self.__mysonytvprice = 55000 def mysell(self): print('The Selling Price is : {}'.format(self.__mysonytvprice)) def my_max_price(self, myprice): self.__mysonytvprice = myprice myobj = tv() myobj.mysell() myobj.__mysonytvprice = 56000 myobj.mysell() myobj.myMaxPrice(54000) myobj.mysell()
f1 = open("../../../prachi/kbi/kbi-pytorch/hits_id/fb15k_hits_10_pred.txt",'r').readlines() f2 = open("../../../prachi/kbi/kbi-pytorch/hits_id/fb15k_hits_10_true.txt",'r').readlines() f3 = open("fb15k_hits10_not_hits1_pred.txt",'w') for i in range(len(f1)): if(f1[i]!=f2[i]): print(f1[i].strip(),file=f3) f3.close()
f1 = open('../../../prachi/kbi/kbi-pytorch/hits_id/fb15k_hits_10_pred.txt', 'r').readlines() f2 = open('../../../prachi/kbi/kbi-pytorch/hits_id/fb15k_hits_10_true.txt', 'r').readlines() f3 = open('fb15k_hits10_not_hits1_pred.txt', 'w') for i in range(len(f1)): if f1[i] != f2[i]: print(f1[i].strip(), file=f3) f3.close()
#!/usr/bin/env python # Copyright 2010 Google Inc. All Rights Reserved. """GRR Rapid Response Framework."""
"""GRR Rapid Response Framework."""
# Returned function def mult_by_x(x): def inner(y): return y * x return inner # Global? def alt_mult_by_x(x): return alt_inner def alt_inner(y): return y * x # Called function def apply(f, x): return f(x) def id(x): return x # print(id(id)(id(13))) def combine_funcs(op): def combined(f, g): def val(x): return op(f(x), g(x)) return val return combined
def mult_by_x(x): def inner(y): return y * x return inner def alt_mult_by_x(x): return alt_inner def alt_inner(y): return y * x def apply(f, x): return f(x) def id(x): return x def combine_funcs(op): def combined(f, g): def val(x): return op(f(x), g(x)) return val return combined
############################################## # DESCRIPTION : Format Based Steganography # # Algorithm : Open space encoding # # Author : Kishore # ############################################## def to_ascii(charector): # a method to convert charector into ascii int assert type(charector) == str return ord(charector) def to_str(ascii): # a method to convert ascii int into ascii char assert type(ascii) == int return chr(ascii) def to_binary(ascii): # a method to convert ascii int into binary string value assert type(ascii) == int return "{0:08b}".format(ascii) def to_int(binary): # a method to convert binary string value into ascii int assert type(binary) == str return int(binary, 2) def encode_handling(file_name, binary, encoded_file_name = 'none'): # a method to take file name and binary string with opetional encoding file name # returns a binary string value and optional text file for encoding . opener = open(file_name) file = opener.read().splitlines() sentences = [file[i].split(' ') for i in range(len(file))] words = '' count = 0 length_of_binary = len(binary) for row in range(len(file)): for col in range(len(sentences[row])): try: words+=sentences[row][col] if count>=length_of_binary: pass elif int(binary[count]) == 1: words+=' ' else: words+=' ' count+=1 except: print(count, ' this is problem.',length_of_binary) opener.close() if encoded_file_name != 'none': encoded_file = open(encoded_file_name, 'w') encoded_file.write(words) encoded_file.close() return binary def decode_handling(encoded_file_name): # a method to open encoded file and return binary string value of hidden text file = open(encoded_file_name) read = file.read() binary = '' prev = False for i in range(1, len(read)-1): if read[i]==' ' and read[i+1]==' ': i+=1 binary+='1' prev = True continue elif read[i]==' ': if prev: prev=False continue else: binary+='0' else: pass return binary def encode(): binary_sentence = '' ascii_sentence = [] sentence = input('Enter the sentence you want to Encode : ') # sentence to ASCII for i in iter(sentence): ascii_sentence.append(to_ascii(i)) assert type(ascii_sentence)==list # ASCII to Binary for i in ascii_sentence: binary_sentence+=to_binary(i) # File Handling file_name = input(" Enter the file to encrypt : ") encoded_file_name = input("Enter the file name of encoded text to save as : ") encode_binary = encode_handling(file_name= file_name,binary=binary_sentence,encoded_file_name= encoded_file_name) def decode(): decoded_sentences = '' # decode Method Handling encoded_file_name = input('Enter the file name to decrypt : ') decode_binary = decode_handling(encoded_file_name= encoded_file_name) # Binary to ASCII int_sentence = [] for i in range(0,len(decode_binary)-8,8): if to_int(decode_binary[i:i+8]) == 0: break else: int_sentence.append(to_int(decode_binary[i:i+8])) int_sentence.append(to_int(decode_binary[len(decode_binary)-8:])) # forming sentences for i in int_sentence: try: decoded_sentences+=to_str(i) except: print(int_sentence[1], ' is out of range for chr().') break print("output after decoding is ", decoded_sentences) def main(): session = input('Enter 1 to encode or 2 to decode : ') # call encode if session == '1': encode() elif session == '2': decode() else: main() if __name__ == "__main__": main()
def to_ascii(charector): assert type(charector) == str return ord(charector) def to_str(ascii): assert type(ascii) == int return chr(ascii) def to_binary(ascii): assert type(ascii) == int return '{0:08b}'.format(ascii) def to_int(binary): assert type(binary) == str return int(binary, 2) def encode_handling(file_name, binary, encoded_file_name='none'): opener = open(file_name) file = opener.read().splitlines() sentences = [file[i].split(' ') for i in range(len(file))] words = '' count = 0 length_of_binary = len(binary) for row in range(len(file)): for col in range(len(sentences[row])): try: words += sentences[row][col] if count >= length_of_binary: pass elif int(binary[count]) == 1: words += ' ' else: words += ' ' count += 1 except: print(count, ' this is problem.', length_of_binary) opener.close() if encoded_file_name != 'none': encoded_file = open(encoded_file_name, 'w') encoded_file.write(words) encoded_file.close() return binary def decode_handling(encoded_file_name): file = open(encoded_file_name) read = file.read() binary = '' prev = False for i in range(1, len(read) - 1): if read[i] == ' ' and read[i + 1] == ' ': i += 1 binary += '1' prev = True continue elif read[i] == ' ': if prev: prev = False continue else: binary += '0' else: pass return binary def encode(): binary_sentence = '' ascii_sentence = [] sentence = input('Enter the sentence you want to Encode : ') for i in iter(sentence): ascii_sentence.append(to_ascii(i)) assert type(ascii_sentence) == list for i in ascii_sentence: binary_sentence += to_binary(i) file_name = input(' Enter the file to encrypt : ') encoded_file_name = input('Enter the file name of encoded text to save as : ') encode_binary = encode_handling(file_name=file_name, binary=binary_sentence, encoded_file_name=encoded_file_name) def decode(): decoded_sentences = '' encoded_file_name = input('Enter the file name to decrypt : ') decode_binary = decode_handling(encoded_file_name=encoded_file_name) int_sentence = [] for i in range(0, len(decode_binary) - 8, 8): if to_int(decode_binary[i:i + 8]) == 0: break else: int_sentence.append(to_int(decode_binary[i:i + 8])) int_sentence.append(to_int(decode_binary[len(decode_binary) - 8:])) for i in int_sentence: try: decoded_sentences += to_str(i) except: print(int_sentence[1], ' is out of range for chr().') break print('output after decoding is ', decoded_sentences) def main(): session = input('Enter 1 to encode or 2 to decode : ') if session == '1': encode() elif session == '2': decode() else: main() if __name__ == '__main__': main()
""" cmd.do('distance ${1:dist3}, ${2:/rcsb074137//B/IOD`605/I`B}, ${3:/rcsb074137//B/IOD`605/I`A}') """ cmd.do('distance dist3, /rcsb074137//B/IOD`605/I`B, /rcsb074137//B/IOD`605/I`A') # Description: H-bond distances. # Source: placeHolder
""" cmd.do('distance ${1:dist3}, ${2:/rcsb074137//B/IOD`605/I`B}, ${3:/rcsb074137//B/IOD`605/I`A}') """ cmd.do('distance dist3, /rcsb074137//B/IOD`605/I`B, /rcsb074137//B/IOD`605/I`A')
def GetRoutes(area): query = 'select distinct Route from [dimensions].[wells] where [Area] = \'' + area + '\'' return query def GetWells(area, route): query = 'select distinct WellName from [dimensions].[wells] where [Route] = \'' + route + '\' and [Area] = \'' + area + '\'' return query
def get_routes(area): query = "select distinct Route from [dimensions].[wells] where [Area] = '" + area + "'" return query def get_wells(area, route): query = "select distinct WellName from [dimensions].[wells] where [Route] = '" + route + "' and [Area] = '" + area + "'" return query
# Problem: https://www.hackerrank.com/challenges/diagonal-difference/problem # Score: 10 a = [] result = 0 for i in range(int(input())): a = list(map(int, input().split())) result += a[i] - a[- 1 - i] print(abs(result))
a = [] result = 0 for i in range(int(input())): a = list(map(int, input().split())) result += a[i] - a[-1 - i] print(abs(result))
# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # # Utilities for interacting with Hive. class HiveDbWrapper(object): """ A wrapper class for using `with` guards with databases created through Hive ensuring deletion even if an exception occurs. """ def __init__(self, hive, db_name): self.hive = hive self.db_name = db_name def __enter__(self): self.hive.run_stmt_in_hive( 'create database if not exists ' + self.db_name) return self.db_name def __exit__(self, typ, value, traceback): self.hive.run_stmt_in_hive( 'drop database if exists %s cascade' % self.db_name) class HiveTableWrapper(object): """ A wrapper class for using `with` guards with tables created through Hive ensuring deletion even if an exception occurs. """ def __init__(self, hive, table_name, table_spec): self.hive = hive self.table_name = table_name self.table_spec = table_spec def __enter__(self): self.hive.run_stmt_in_hive( 'create table if not exists %s %s' % (self.table_name, self.table_spec)) return self.table_name def __exit__(self, typ, value, traceback): self.hive.run_stmt_in_hive('drop table if exists %s' % self.table_name)
class Hivedbwrapper(object): """ A wrapper class for using `with` guards with databases created through Hive ensuring deletion even if an exception occurs. """ def __init__(self, hive, db_name): self.hive = hive self.db_name = db_name def __enter__(self): self.hive.run_stmt_in_hive('create database if not exists ' + self.db_name) return self.db_name def __exit__(self, typ, value, traceback): self.hive.run_stmt_in_hive('drop database if exists %s cascade' % self.db_name) class Hivetablewrapper(object): """ A wrapper class for using `with` guards with tables created through Hive ensuring deletion even if an exception occurs. """ def __init__(self, hive, table_name, table_spec): self.hive = hive self.table_name = table_name self.table_spec = table_spec def __enter__(self): self.hive.run_stmt_in_hive('create table if not exists %s %s' % (self.table_name, self.table_spec)) return self.table_name def __exit__(self, typ, value, traceback): self.hive.run_stmt_in_hive('drop table if exists %s' % self.table_name)
sm.removeEscapeButton() sm.setSpeakerID(1102102) sm.sendNext("THERE YOU ARE! I told you not to move! You're going to pay for that. Maybe not today, maybe not tomorrow, but one day, when you're on a particularly annoying mission, know that I've secretly arranged it. Now get back to the Drill Hall!") sm.startQuest(parentID) sm.warp(130030105, 0)
sm.removeEscapeButton() sm.setSpeakerID(1102102) sm.sendNext("THERE YOU ARE! I told you not to move! You're going to pay for that. Maybe not today, maybe not tomorrow, but one day, when you're on a particularly annoying mission, know that I've secretly arranged it. Now get back to the Drill Hall!") sm.startQuest(parentID) sm.warp(130030105, 0)
CSS_STYLE = """ .kts {{ line-height: 1.6; }} .kts * {{ box-sizing: content-box; }} .kts-wrapper {{ display: inline-flex; flex-direction: column; background-color: {first}; padding: 10px; border-radius: 20px; }} .kts-wrapper-border {{ border: 0px solid {second}; }} .kts-pool {{ display: flex; flex-wrap: wrap; background-color: {second}; padding: 5px; border-radius: 20px; margin: 5px; }} .kts-field {{ text-align: left; border-radius: 15px; padding: 5px 15px; margin: 5px; display: inline-block; }} .kts-field-bg {{ background-color: {second}; }} .kts-field-bold {{ font-weight: bold; }} .kts-field-third {{ color: {third}; }} .kts-field-accent {{ color: {accent}; }} .kts-field-bg:hover {{ background-color: {fourth}; }} .kts-annotation {{ text-align: left; margin-left: 20px; margin-bottom: -5px; display: inline-block; color: {third}; }} .kts-title {{ text-align: center; display: inline-block; font-weight: bold; color: {third}; }} .kts-code {{ background-color: {second}; text-align: left; border-radius: 15px; padding: 0.5em 15px; margin: 5px; color: white; display: inline-block; }} .kts-code:hover {{ background-color: {fourth}; }} .kts-code > pre {{ background-color: {second}; overflow: auto; white-space: pre-wrap; }} .kts-code:hover > pre {{ background-color: {fourth}; }} .kts-output {{ background-color: {second}; text-align: left; border-radius: 15px; padding: 5px 15px; margin: 5px; font-weight: bold; font-family: monospace; color: {accent}; overflow: auto; max-height: 4.8em; display: flex; flex-direction: column-reverse; }} .kts-df {{ background-color: {second}; text-align: left; border-radius: 15px; padding: 5px 15px; margin: 5px; display: inline-block; color: {accent}; }} .kts-title-with-cross {{ display: grid; grid-template-columns: 1em auto 1em; margin-left: 5px; margin-right: 5px; }} .kts-cross-circle {{ background-color: {second}; width: 1em; height: 1em; position: relative; border-radius: 50%; cursor: pointer; z-index: 2; margin-top: 2px; max-width: none; }} .kts-cross-before, .kts-cross-after {{ background-color: {third}; content: ''; position: absolute; width: 0.75em; height: 2px; border-radius: 0; top: calc((1em - 2px) / 2); z-index: 0; }} .kts-cross-before {{ -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); transform: rotate(-45deg); left: calc(1em / 8); }} .kts-cross-after {{ -webkit-transform: rotate(-135deg); -moz-transform: rotate(-135deg); transform: rotate(-135deg); right: calc(1em / 8); }} #kts-hidden {{ display: none }} .kts-thumbnail {{ margin: 0; cursor: pointer; }} .kts-thumbnail-first {{ background-color: {first}; }} .kts-thumbnail-second {{ background-color: {second}; }} #kts-collapsible {{ -webkit-transition: max-height {anim_height}, padding {anim_padding}; -moz-transition: max-height {anim_height}, padding {anim_padding}; -ms-transition: max-height {anim_height}, padding {anim_padding}; -o-transition: max-height {anim_height}, padding {anim_padding}; transition: max-height {anim_height}, padding {anim_padding}; padding: 0; margin: 2px; align-self: flex-start; max-height: 100px; overflow: hidden; }} .kts-check {{ display: none; }} .kts-check:checked + #kts-collapsible {{ padding: 10px; max-height: {max_height_expanded}; }} .kts-check:checked + #kts-collapsible > #kts-hidden {{ display: inline-flex; }} .kts-check:checked + #kts-collapsible > .kts-thumbnail {{ display: none; }} .kts-check:checked + .kts-wrapper-border {{ border: 2px solid {second}; }} .kts-check-outer {{ display: none; }} .kts-check-outer:checked + #kts-collapsible {{ padding: 10px; max-height: {max_height_expanded}; }} .kts-check-outer:checked + #kts-collapsible > #kts-hidden {{ display: inline-flex; }} .kts-check-outer:checked + #kts-collapsible > .kts-thumbnail {{ display: none; }} .kts-check-outer:checked + .kts-wrapper-border {{ border: 2px solid {second}; }} .kts-inner-wrapper {{ flex-direction: column; }} .kts-progressbar-wrapper {{ display: flex; flex-direction: row; align-items: center; height: 1.6em; }} .kts-progressbar-outer {{ box-sizing: padding-box; display: flex; flex-direction: row; background-color: {second}; align-items: center; padding: 3px; border-radius: 15px; width: 100%; }} .kts-progressbar-inner {{ background-color: {third}; height: 0.7em; border-radius: 15px; }} .kts-hbar-container {{ display: block; position: relative; height: min(calc(100% - 3px), 1.5em); margin: 2px; }} .kts-hbar {{ position: absolute; display: inline-block; background-color: {third}; text-align: left; height: 100%; border-radius: 15px; }} .kts-hbar-line {{ position: absolute; display: inline-block; background-color: {accent}; text-align: left; height: 1px; top: 50%; }} .kts-inner-column {{ display: flex; flex-direction: column; padding: auto; }} .kts-row {{ display: flex; flex-direction: row; }} .kts-hoverable-line, .kts-hoverable-line * {{ pointer-events: all; transition: all 0.1s ease-out; }} .kts-hoverable-line:hover * {{ stroke: {second_accent}; stroke-width: 10; }} """
css_style = "\n.kts {{\n line-height: 1.6;\n}}\n.kts * {{\n box-sizing: content-box;\n}}\n.kts-wrapper {{\n display: inline-flex;\n flex-direction: column;\n background-color: {first};\n padding: 10px;\n border-radius: 20px;\n}}\n.kts-wrapper-border {{\n border: 0px solid {second};\n}}\n.kts-pool {{\n display: flex;\n flex-wrap: wrap;\n background-color: {second};\n padding: 5px;\n border-radius: 20px;\n margin: 5px;\n}}\n.kts-field {{\n text-align: left;\n border-radius: 15px;\n padding: 5px 15px;\n margin: 5px;\n display: inline-block;\n}}\n.kts-field-bg {{\n background-color: {second};\n}}\n.kts-field-bold {{\n font-weight: bold;\n}}\n.kts-field-third {{\n color: {third};\n}}\n.kts-field-accent {{\n color: {accent};\n}}\n.kts-field-bg:hover {{\n background-color: {fourth};\n}}\n.kts-annotation {{\n text-align: left;\n margin-left: 20px;\n margin-bottom: -5px;\n display: inline-block;\n color: {third};\n}}\n.kts-title {{\n text-align: center;\n display: inline-block;\n font-weight: bold;\n color: {third};\n}}\n.kts-code {{\n background-color: {second};\n text-align: left;\n border-radius: 15px;\n padding: 0.5em 15px;\n margin: 5px;\n color: white;\n display: inline-block;\n}}\n.kts-code:hover {{\n background-color: {fourth};\n}}\n.kts-code > pre {{\n background-color: {second};\n overflow: auto;\n white-space: pre-wrap;\n}}\n.kts-code:hover > pre {{\n background-color: {fourth};\n}}\n.kts-output {{\n background-color: {second};\n text-align: left;\n border-radius: 15px;\n padding: 5px 15px;\n margin: 5px;\n font-weight: bold;\n font-family: monospace;\n color: {accent};\n overflow: auto;\n max-height: 4.8em;\n display: flex;\n flex-direction: column-reverse;\n}}\n\n.kts-df {{\n background-color: {second};\n text-align: left;\n border-radius: 15px;\n padding: 5px 15px;\n margin: 5px;\n display: inline-block;\n color: {accent};\n}}\n\n.kts-title-with-cross {{\n display: grid;\n grid-template-columns: 1em auto 1em;\n margin-left: 5px;\n margin-right: 5px;\n}}\n.kts-cross-circle {{\n background-color: {second};\n width: 1em;\n height: 1em;\n position: relative;\n border-radius: 50%;\n cursor: pointer;\n z-index: 2;\n margin-top: 2px;\n max-width: none;\n}}\n.kts-cross-before,\n.kts-cross-after {{\n background-color: {third};\n content: '';\n position: absolute;\n width: 0.75em;\n height: 2px;\n border-radius: 0;\n top: calc((1em - 2px) / 2);\n z-index: 0;\n}}\n.kts-cross-before {{\n -webkit-transform: rotate(-45deg);\n -moz-transform: rotate(-45deg);\n transform: rotate(-45deg);\n left: calc(1em / 8);\n}}\n.kts-cross-after {{\n -webkit-transform: rotate(-135deg);\n -moz-transform: rotate(-135deg);\n transform: rotate(-135deg);\n right: calc(1em / 8);\n}}\n\n#kts-hidden {{\n display: none\n}}\n.kts-thumbnail {{\n margin: 0;\n cursor: pointer;\n}}\n.kts-thumbnail-first {{\n background-color: {first};\n}}\n.kts-thumbnail-second {{\n background-color: {second};\n}}\n#kts-collapsible {{\n -webkit-transition: max-height {anim_height}, padding {anim_padding}; \n -moz-transition: max-height {anim_height}, padding {anim_padding}; \n -ms-transition: max-height {anim_height}, padding {anim_padding}; \n -o-transition: max-height {anim_height}, padding {anim_padding}; \n transition: max-height {anim_height}, padding {anim_padding}; \n \n padding: 0;\n margin: 2px;\n align-self: flex-start;\n max-height: 100px;\n overflow: hidden;\n}}\n.kts-check {{\n display: none;\n}}\n.kts-check:checked + #kts-collapsible {{\n padding: 10px;\n max-height: {max_height_expanded};\n}}\n.kts-check:checked + #kts-collapsible > #kts-hidden {{\n display: inline-flex;\n}}\n.kts-check:checked + #kts-collapsible > .kts-thumbnail {{\n display: none;\n}}\n.kts-check:checked + .kts-wrapper-border {{\n border: 2px solid {second};\n}}\n.kts-check-outer {{\n display: none;\n}}\n.kts-check-outer:checked + #kts-collapsible {{\n padding: 10px;\n max-height: {max_height_expanded};\n}}\n.kts-check-outer:checked + #kts-collapsible > #kts-hidden {{\n display: inline-flex;\n}}\n.kts-check-outer:checked + #kts-collapsible > .kts-thumbnail {{\n display: none;\n}}\n.kts-check-outer:checked + .kts-wrapper-border {{\n border: 2px solid {second};\n}}\n.kts-inner-wrapper {{\n flex-direction: column;\n}}\n\n.kts-progressbar-wrapper {{\n display: flex;\n flex-direction: row;\n align-items: center;\n height: 1.6em;\n}}\n\n.kts-progressbar-outer {{\n box-sizing: padding-box;\n display: flex;\n flex-direction: row;\n background-color: {second};\n align-items: center;\n padding: 3px;\n border-radius: 15px;\n width: 100%;\n}}\n\n.kts-progressbar-inner {{\n background-color: {third};\n height: 0.7em;\n border-radius: 15px;\n}}\n\n.kts-hbar-container {{\n display: block;\n position: relative;\n height: min(calc(100% - 3px), 1.5em);\n margin: 2px;\n}}\n.kts-hbar {{\n position: absolute;\n display: inline-block;\n background-color: {third};\n text-align: left;\n height: 100%;\n border-radius: 15px;\n}}\n.kts-hbar-line {{\n position: absolute;\n display: inline-block;\n background-color: {accent};\n text-align: left;\n height: 1px;\n top: 50%;\n}}\n\n.kts-inner-column {{\n display: flex;\n flex-direction: column;\n padding: auto;\n}}\n.kts-row {{\n display: flex;\n flex-direction: row;\n}}\n\n.kts-hoverable-line, .kts-hoverable-line * {{\n pointer-events: all;\n transition: all 0.1s ease-out;\n}}\n\n.kts-hoverable-line:hover * {{\n stroke: {second_accent};\n stroke-width: 10;\n}}\n"
t = int(input()) for i in range(t): n,m,k = map(int,input().split()) l = list(map(int,input().split())) x = {} for j in range(n): x[j] = [] for j in range(n): temp = l[j] x[temp-1].append(j+1) print(x) j=0 me = l[0] while m>0 and j+1<=me: m-=len(x[j]) print(m) k-=1 j+=1 if j-1>me: print("YES") elif j==me and m<0: print("MAYBE") else: print("NO")
t = int(input()) for i in range(t): (n, m, k) = map(int, input().split()) l = list(map(int, input().split())) x = {} for j in range(n): x[j] = [] for j in range(n): temp = l[j] x[temp - 1].append(j + 1) print(x) j = 0 me = l[0] while m > 0 and j + 1 <= me: m -= len(x[j]) print(m) k -= 1 j += 1 if j - 1 > me: print('YES') elif j == me and m < 0: print('MAYBE') else: print('NO')
class PaginationHelper(): ''' Help keep track of pagination for the web UI, in terms of correct offsets ''' def __init__(self, bare_route, offset, interval=20, num_items=None): self.bare_route = bare_route self.interval = interval self.num_items = num_items if offset % interval or offset < 0: offset = 0 self.offset = offset @property def prev_url(self): if self.offset == self.interval: return self.bare_route elif self.offset >= self.interval: return self.bare_route + '/pos/%d' % (self.offset - self.interval) @property def next_url(self): if (self.offset + self.interval) > self.num_items: return False return self.bare_route + '/pos/%d' % (self.offset + self.interval)
class Paginationhelper: """ Help keep track of pagination for the web UI, in terms of correct offsets """ def __init__(self, bare_route, offset, interval=20, num_items=None): self.bare_route = bare_route self.interval = interval self.num_items = num_items if offset % interval or offset < 0: offset = 0 self.offset = offset @property def prev_url(self): if self.offset == self.interval: return self.bare_route elif self.offset >= self.interval: return self.bare_route + '/pos/%d' % (self.offset - self.interval) @property def next_url(self): if self.offset + self.interval > self.num_items: return False return self.bare_route + '/pos/%d' % (self.offset + self.interval)
""" #### Generic "Writer" The ResultsWriter has been written s.t. it can be easily replaced if the way in which we would like to write results changes. For example, in the future we may want to replace the ResultsWriter with a writer to an SQL database or flat file system. Regardless of the "Writer" that is used, the remaining portion of the code should be able to exist without change while the only thing that will change will be this package. No matter which "Writer" is used, a "Writer" will probably have some sort of username associated with it that will map to a client. A "Writer" will abstract away all writes AND reads to a DB, flat file, file system, etc.. #### This "Writer": ResultsWriter The "ResultsWriter" handles all writes AND reads to a specific, statically defined, directory structure. """ class ResultsWriter: # Initialize a Results Writer with a path def __init__(self, db_path): self.db_path = db_path def createNewUserDirectory(self, username): pass
""" #### Generic "Writer" The ResultsWriter has been written s.t. it can be easily replaced if the way in which we would like to write results changes. For example, in the future we may want to replace the ResultsWriter with a writer to an SQL database or flat file system. Regardless of the "Writer" that is used, the remaining portion of the code should be able to exist without change while the only thing that will change will be this package. No matter which "Writer" is used, a "Writer" will probably have some sort of username associated with it that will map to a client. A "Writer" will abstract away all writes AND reads to a DB, flat file, file system, etc.. #### This "Writer": ResultsWriter The "ResultsWriter" handles all writes AND reads to a specific, statically defined, directory structure. """ class Resultswriter: def __init__(self, db_path): self.db_path = db_path def create_new_user_directory(self, username): pass
class TestingError(BaseException): pass class MisnamedFunctionError(TestingError): pass class TestNotFoundError(TestingError): pass class SolutionNotFoundError(TestingError): pass
class Testingerror(BaseException): pass class Misnamedfunctionerror(TestingError): pass class Testnotfounderror(TestingError): pass class Solutionnotfounderror(TestingError): pass
""" ### What is Bucket Sort ? Bucket sort is a comparison sort algorithm that operates on elements by dividing them into different buckets and then sorting these buckets individually. Each bucket is sorted individually using a separate sorting algorithm or by applying the bucket sort algorithm recursively. Bucket sort is mainly useful when the input is uniformly distributed over a range. #### Assume one has the following problem in front of them: One has been given a large array of floating point integers lying uniformly between the lower and upper bound. This array now needs to be sorted. A simple way to solve this problem would be to use another sorting algorithm such as Merge sort, Heap Sort or Quick Sort. However, these algorithms guarantee a best case time complexity of O(NlogN). However, using bucket sort, the above task can be completed in O(N) time. #### Psuedo Code ``` void bucketSort(float[] a,int n) { for(each floating integer 'x' in n) { insert x into bucket[n*x]; } for(each bucket) { sort(bucket); } } ``` ### Time Complexity: If one assumes that insertion in a bucket takes O(1) time, then steps 1 and 2 of the above algorithm clearly take O(n) time. """ def bucket_sort(array): largest = max(array) length = len(array) size = largest/length buckets = [[] for _ in range(length)] for i in range(length): j = int(array[i]/size) if j != length: buckets[j].append(array[i]) else: buckets[length - 1].append(array[i]) for i in range(length): insertion_sort(buckets[i]) result = [] for i in range(length): result = result + buckets[i] return result def insertion_sort(array): for i in range(1, len(array)): temp = array[i] j = i - 1 while (j >= 0 and temp < array[j]): array[j + 1] = array[j] j = j - 1 array[j + 1] = temp def sort(array): return bucket_sort(array)
""" ### What is Bucket Sort ? Bucket sort is a comparison sort algorithm that operates on elements by dividing them into different buckets and then sorting these buckets individually. Each bucket is sorted individually using a separate sorting algorithm or by applying the bucket sort algorithm recursively. Bucket sort is mainly useful when the input is uniformly distributed over a range. #### Assume one has the following problem in front of them: One has been given a large array of floating point integers lying uniformly between the lower and upper bound. This array now needs to be sorted. A simple way to solve this problem would be to use another sorting algorithm such as Merge sort, Heap Sort or Quick Sort. However, these algorithms guarantee a best case time complexity of O(NlogN). However, using bucket sort, the above task can be completed in O(N) time. #### Psuedo Code ``` void bucketSort(float[] a,int n) { for(each floating integer 'x' in n) { insert x into bucket[n*x]; } for(each bucket) { sort(bucket); } } ``` ### Time Complexity: If one assumes that insertion in a bucket takes O(1) time, then steps 1 and 2 of the above algorithm clearly take O(n) time. """ def bucket_sort(array): largest = max(array) length = len(array) size = largest / length buckets = [[] for _ in range(length)] for i in range(length): j = int(array[i] / size) if j != length: buckets[j].append(array[i]) else: buckets[length - 1].append(array[i]) for i in range(length): insertion_sort(buckets[i]) result = [] for i in range(length): result = result + buckets[i] return result def insertion_sort(array): for i in range(1, len(array)): temp = array[i] j = i - 1 while j >= 0 and temp < array[j]: array[j + 1] = array[j] j = j - 1 array[j + 1] = temp def sort(array): return bucket_sort(array)
# # 1763. Longest Nice Substring # # Q: https://leetcode.com/problems/longest-nice-substring/ # A: https://leetcode.com/problems/longest-nice-substring/discuss/1074560/Kt-Js-Py3-Cpp-Recursive # class Solution: def longestNiceSubstring(self, s: str) -> str: best = '' def go(s): nonlocal best seen = set(s) isNice = lambda c: c.lower() in seen and c.upper() in seen for i in range(len(s)): if not isNice(s[i]): go(s[:i]); go(s[i + 1:]) return if len(best) < len(s): best = s go(s) return best
class Solution: def longest_nice_substring(self, s: str) -> str: best = '' def go(s): nonlocal best seen = set(s) is_nice = lambda c: c.lower() in seen and c.upper() in seen for i in range(len(s)): if not is_nice(s[i]): go(s[:i]) go(s[i + 1:]) return if len(best) < len(s): best = s go(s) return best
# -*- coding: utf-8 -*- """ Created on Mon Oct 4 10:59:09 2021 @author: shubhransu """ a=[] for i in range(0,5): k = int(input()) a.append(k) print(max(a))
""" Created on Mon Oct 4 10:59:09 2021 @author: shubhransu """ a = [] for i in range(0, 5): k = int(input()) a.append(k) print(max(a))
#frequency function for cities (could be used for all of the columns) def freq_function(col): city = [] for item in col: for j in item: city.append(j) freq= {x:city.count(x) for x in city} sorted_freq = {k: v for k, v in sorted(freq.items(), key=lambda item: item[1], reverse=True)} return sorted_freq
def freq_function(col): city = [] for item in col: for j in item: city.append(j) freq = {x: city.count(x) for x in city} sorted_freq = {k: v for (k, v) in sorted(freq.items(), key=lambda item: item[1], reverse=True)} return sorted_freq
""" Given scores of N athletes, find their relative ranks and the people with the top three highest scores, who will be awarded medals: "Gold Medal", "Silver Medal" and "Bronze Medal". Example 1: Input: [5, 4, 3, 2, 1] Output: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"] Explanation: The first three athletes got the top three highest scores, so they got "Gold Medal", "Silver Medal" and "Bronze Medal". For the left two athletes, you just need to output their relative ranks according to their scores. Note: N is a positive integer and won't exceed 10,000. All the scores of athletes are guaranteed to be unique. """ def findRelativeRanks(nums): """ :type nums: List[int] :rtype: List[str] """ nums_sort = sorted(nums)[::-1] ranks = ['Gold Medal', 'Silver Medal', 'Bronze Medal'] + [str(i + 1) for i in range(3, len(nums_sort))] d = {n: r for n, r in zip(nums_sort, ranks)} return [d[n] for n in nums] def test_findRelativeRanks(): expected = ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"] actual = findRelativeRanks([5, 4, 3, 2, 1]) for s, t in zip(expected, actual): assert s == t, '{} vs {}'.format(s, t) expected = ["Gold Medal", "5", "Bronze Medal", "Silver Medal", "4"] actual = findRelativeRanks([10, 3, 8, 9, 4]) for s, t in zip(expected, actual): assert s == t, '{} vs {}'.format(s, t) if __name__ == '__main__': test_findRelativeRanks()
""" Given scores of N athletes, find their relative ranks and the people with the top three highest scores, who will be awarded medals: "Gold Medal", "Silver Medal" and "Bronze Medal". Example 1: Input: [5, 4, 3, 2, 1] Output: ["Gold Medal", "Silver Medal", "Bronze Medal", "4", "5"] Explanation: The first three athletes got the top three highest scores, so they got "Gold Medal", "Silver Medal" and "Bronze Medal". For the left two athletes, you just need to output their relative ranks according to their scores. Note: N is a positive integer and won't exceed 10,000. All the scores of athletes are guaranteed to be unique. """ def find_relative_ranks(nums): """ :type nums: List[int] :rtype: List[str] """ nums_sort = sorted(nums)[::-1] ranks = ['Gold Medal', 'Silver Medal', 'Bronze Medal'] + [str(i + 1) for i in range(3, len(nums_sort))] d = {n: r for (n, r) in zip(nums_sort, ranks)} return [d[n] for n in nums] def test_find_relative_ranks(): expected = ['Gold Medal', 'Silver Medal', 'Bronze Medal', '4', '5'] actual = find_relative_ranks([5, 4, 3, 2, 1]) for (s, t) in zip(expected, actual): assert s == t, '{} vs {}'.format(s, t) expected = ['Gold Medal', '5', 'Bronze Medal', 'Silver Medal', '4'] actual = find_relative_ranks([10, 3, 8, 9, 4]) for (s, t) in zip(expected, actual): assert s == t, '{} vs {}'.format(s, t) if __name__ == '__main__': test_find_relative_ranks()
class solution: def max_distance(A): if len(A) < 2: return 0 A.sort() pre = A[0] max_gap = float("-inf") for i in A: max_gap = max(max_gap, i - pre) pre = i return max_gap print(solution.max_distance([3, 5, 4, 2]))
class Solution: def max_distance(A): if len(A) < 2: return 0 A.sort() pre = A[0] max_gap = float('-inf') for i in A: max_gap = max(max_gap, i - pre) pre = i return max_gap print(solution.max_distance([3, 5, 4, 2]))
# Casting an integer to a string # EXPECTED OUTPUT: # case5.py: x -> int # case5.py: y -> int # case5.py: z -> int # case5.py: my_function() -> str def my_function(): x = 5 y = 10 z = x + y return str(z)
def my_function(): x = 5 y = 10 z = x + y return str(z)
letterFrequency = { "E": 12.0, "T": 9.10, "A": 8.12, "O": 7.68, "I": 7.31, "N": 6.95, "S": 6.28, "R": 6.02, "H": 5.92, "D": 4.32, "L": 3.98, "U": 2.88, "C": 2.71, "M": 2.61, "F": 2.30, "Y": 2.11, "W": 2.09, "G": 2.03, "P": 1.82, "B": 1.49, "V": 1.11, "K": 0.69, "X": 0.17, "Q": 0.11, "J": 0.10, "Z": 0.07, } def get_concidences_list(message): """ create shifted messages from each message and in each shited message compare the positions of the letters to the original cipher and if it match increament the concidences by 1 e.x message-> iloveyou iloveyo ilovey ... so in the first shifted message we comapre (l,i) (o,l) (v,o) (e,v) .... and if letter in the original message match with letter in the shifted text we increament the concidence by 1 """ concidences = list() for i in range(1, len(message)): li = message[0 : len(message) - i] print(li) concidences.insert(i - 1, 0) for j in range(i, len(message)): if li[j - i] == message[j]: concidences[i - 1] += 1 return concidences concidences_list = get_concidences_list(message) print(concidences_list) def get_the_highest_concidences(concidences): sorted_concidences = concidences.copy() sorted_concidences.sort(reverse=True) print(sorted_concidences) return sorted_concidences def get_the_key_length(sorted_concidences, concidences_list): max_peak = sorted_concidences[0] key_length = 0 find_highest = False for i in concidences_list: if i == max_peak and key_length == 0: key_length += 1 find_highest = True elif i == max_peak: break elif find_highest: key_length += 1 return key_length def slice_the_cipher_text(message, key_length): list_of_splited_litters = [message[i : i + key_length] for i in range(0, len(message), key_length)] print(list_of_splited_litters) return list_of_splited_litters def slice_each_letter_of_key(list_of_splited_litters, key_length): di = dict() i = 0 for word in list_of_splited_litters: i = 0 for letter in word: if i > key_length: i = 0 s = di.get(i + 1, 0) if s == 0: di[i + 1] = [letter] else: di[i + 1] = di[i + 1] + [letter] i += 1 print(di) return di
letter_frequency = {'E': 12.0, 'T': 9.1, 'A': 8.12, 'O': 7.68, 'I': 7.31, 'N': 6.95, 'S': 6.28, 'R': 6.02, 'H': 5.92, 'D': 4.32, 'L': 3.98, 'U': 2.88, 'C': 2.71, 'M': 2.61, 'F': 2.3, 'Y': 2.11, 'W': 2.09, 'G': 2.03, 'P': 1.82, 'B': 1.49, 'V': 1.11, 'K': 0.69, 'X': 0.17, 'Q': 0.11, 'J': 0.1, 'Z': 0.07} def get_concidences_list(message): """ create shifted messages from each message and in each shited message compare the positions of the letters to the original cipher and if it match increament the concidences by 1 e.x message-> iloveyou iloveyo ilovey ... so in the first shifted message we comapre (l,i) (o,l) (v,o) (e,v) .... and if letter in the original message match with letter in the shifted text we increament the concidence by 1 """ concidences = list() for i in range(1, len(message)): li = message[0:len(message) - i] print(li) concidences.insert(i - 1, 0) for j in range(i, len(message)): if li[j - i] == message[j]: concidences[i - 1] += 1 return concidences concidences_list = get_concidences_list(message) print(concidences_list) def get_the_highest_concidences(concidences): sorted_concidences = concidences.copy() sorted_concidences.sort(reverse=True) print(sorted_concidences) return sorted_concidences def get_the_key_length(sorted_concidences, concidences_list): max_peak = sorted_concidences[0] key_length = 0 find_highest = False for i in concidences_list: if i == max_peak and key_length == 0: key_length += 1 find_highest = True elif i == max_peak: break elif find_highest: key_length += 1 return key_length def slice_the_cipher_text(message, key_length): list_of_splited_litters = [message[i:i + key_length] for i in range(0, len(message), key_length)] print(list_of_splited_litters) return list_of_splited_litters def slice_each_letter_of_key(list_of_splited_litters, key_length): di = dict() i = 0 for word in list_of_splited_litters: i = 0 for letter in word: if i > key_length: i = 0 s = di.get(i + 1, 0) if s == 0: di[i + 1] = [letter] else: di[i + 1] = di[i + 1] + [letter] i += 1 print(di) return di
animals = ['bear' , 'python 3.6' , 'peacock' , 'kangroo' , 'whale' , 'zebra'] print(f"The animal at 1 is the 2nd animal and is a {animals[1]}.") print(f"The third (3rd) animal is at 2 and is a {animals[2]}.") print(f"The first (1st) animal is at 0 and is a {animals[0]}.") print(f"The animal at 3 is the forth animal and is a animal {animals[3]}.") print(f"The fifth (5th) animal is at 4 and is a {animals[4]}.") print(f"The animal at 2 is the 3rd animal and is {animals[2]}.") print(f"The sixth (6th) animal is at 5 and is a {animals[5]}.") print(f"The animal at 4 is the 5th and is a {animals[4]}.")
animals = ['bear', 'python 3.6', 'peacock', 'kangroo', 'whale', 'zebra'] print(f'The animal at 1 is the 2nd animal and is a {animals[1]}.') print(f'The third (3rd) animal is at 2 and is a {animals[2]}.') print(f'The first (1st) animal is at 0 and is a {animals[0]}.') print(f'The animal at 3 is the forth animal and is a animal {animals[3]}.') print(f'The fifth (5th) animal is at 4 and is a {animals[4]}.') print(f'The animal at 2 is the 3rd animal and is {animals[2]}.') print(f'The sixth (6th) animal is at 5 and is a {animals[5]}.') print(f'The animal at 4 is the 5th and is a {animals[4]}.')
#inputArray is the input dataset #x is the searching integer in the array def binarySearch(inputArray,x): if (inputArray[-1] > x): mid = len(inputArray)//2 # get the mid index of the inputArray if (inputArray[mid] == x): #check it the with the searching number return true #if yes return true if (inputArray[mid] > x): return binarySearch(inputArray[:mid],x) return binarySearch(inputArray[mid:],x) else: return false
def binary_search(inputArray, x): if inputArray[-1] > x: mid = len(inputArray) // 2 if inputArray[mid] == x: return true if inputArray[mid] > x: return binary_search(inputArray[:mid], x) return binary_search(inputArray[mid:], x) else: return false
WALL = 'w' FOOD = 'f' SNAKEBODY = 'b' SNAKEHEAD = 'h' width = 5 height = 10 board = [[0 for i in range(width)] for j in range(height)] board[0][0] = 5 print(board)
wall = 'w' food = 'f' snakebody = 'b' snakehead = 'h' width = 5 height = 10 board = [[0 for i in range(width)] for j in range(height)] board[0][0] = 5 print(board)
#program to compute the values of n n = float(input( 'Enter the values of n.\n')) Values = (n+(n*n)+(n*n*n)) print(f'Sample value of n is {n}') print(f'The expected result:{Values} ')
n = float(input('Enter the values of n.\n')) values = n + n * n + n * n * n print(f'Sample value of n is {n}') print(f'The expected result:{Values} ')
# problem name: Array Shrinking # problem link: https://codeforces.com/contest/1312/problem/E # contest link: https://codeforces.com/contest/1312 # time: (?) # author: reyad # other_tags: greedy # this solution style is a bit different for this problem than most of the cf solutions # so i'm providing a tutorial link to the solution # tutorial link: https://codeforces.com/blog/entry/74759 n = int(input()) b = [int(_) for _ in input().split()] e = [[-1] * (n+1) for _ in range(2002)] d = [[] for _ in range(n)] for i, v in enumerate(b): e[v][i] = i d[i].append(i) for v in range(1, 2002): for i in range(n): j = e[v][i] h = e[v][j+1] if j != -1 else -1 if j != -1 and h != -1: e[v+1][i] = h d[i].append(h) a = [_ for _ in range(1, n+1)] for s in range(n): for e in d[s]: a[e] = min(a[e], a[s-1]+1 if s > 0 else 1) print(a[n-1])
n = int(input()) b = [int(_) for _ in input().split()] e = [[-1] * (n + 1) for _ in range(2002)] d = [[] for _ in range(n)] for (i, v) in enumerate(b): e[v][i] = i d[i].append(i) for v in range(1, 2002): for i in range(n): j = e[v][i] h = e[v][j + 1] if j != -1 else -1 if j != -1 and h != -1: e[v + 1][i] = h d[i].append(h) a = [_ for _ in range(1, n + 1)] for s in range(n): for e in d[s]: a[e] = min(a[e], a[s - 1] + 1 if s > 0 else 1) print(a[n - 1])
""" x = "its global" def fantastic(): print("about") global x x= 230 def lamented(): print("Sad") y = input() if y == "fantastic": fantastic() else: lamented() k = 5j print(type(k)) """ """ lst = [1,2,3,4,5,6,7,8,9, 12,12,23,34,435,6,56,34,23,45,7678,3] for x in lst: print(x) lst.append(777) print(lst) team = { "leader" : { "name" : "Fahad", "batch" : 13 }, "commander" : { "name" : "Shakil", "batch" : 24, 55 : "Ok" } } print(team['commander'][55]) battalion_1 = { "cic" : "xxxx", "rank" : "Lt. Colonel" } battalion_2 = { "cic" : "yyy", "rank" : "Lt. Colonel" } battalion_3 = { "cic" : "zzz", "rank" : "Lt. Colonel" } battalion_4 = { "cic" : "ggg", "rank" : "Lt. Colonel" } battalion_5 = { "cic" : "hhh", "rank" : "Lt. Colonel" } regiment = { "battalion_1" : battalion_1, "battalion_2" : battalion_2, "battalion_3" : battalion_3, "battalion_4" : battalion_4, "battalion_5" : battalion_5, } print(regiment["battalion_3"]["cic"]) a = 33 b = 33 print("A") if a<b else print("AB") if a==b else print("B") if a == b: pass # scontinue in c while a>0: print(a) a -= 1 adj = ["red", "big", "tasty"] fruits = ["apple", "banana", "cherry"] for x in adj: for y in fruits: print(x,y) print("\n") def fruit(*x): print(x[1]) fruit("apple", "banana", "cherry") def fruiit(**x): print(x) fruiit(a = "apple", b = "banana", c = "cherry") def country(name = "Bangladesh"): print(name) country("Germany") country() def recurse(n): if n<0: return else: recurse(n-1) print(n) recurse(10) x = 1111111 y = 3333333 z = 55555 txt = "ggggggggggg {} ggggggggg {} ggggggggggg {}" print(txt.format(x, y, z)) txt = "ggggggggggg {1} ggggggggg {2} ggggggggggg {0}" print(txt.format(x, y, z)) txt = "ggggggggggg {1} ggggggggg {2:.5f} ggggggggggg {0}" print(txt.format(x, y, z)) m = 10 print(type(m)) t = 187687654564658970978909869576453 print(type(t)) n = 5 r = m % n q = m / n print(r) print(q) if(m%n == 0): print("Ok") # a = list(map(int, input().split())) def double(i): return 5*i a=() a = input() r = map(double, a) print(list(r)) def return_int(i): return int(i) a = () a = input() r = map(return_int, a) t = list(r) print(t) print(t[1]) x, y = input().split() x = int(x) y = int(y) print(x) print(y) print() m = list(map(int, input().split())) print(m) a = list(map(int, input().split())) print(a) while True: try: x = input() print(x) except EOFError: break while True: try: print(input()) except EOFError: break x = 90 y = 0 whil try: result = x / y except ZeroDivisionError: print("You can't divide s") def avg(n): if not n: return none return sum(n)/len(n) if __name__ == "__main__": l = [1,2,3,4,5] print(avg(l)) lst = [9,5,2,2,4,1,0,8] lst.sort() print(lst) while True: n,q = input().split() n = int(n) q = int(q) lst_n = [] lst_q = [] if (n == 0) and (q == 0): break else: for i in range(n): x = int(input()) lst_n.append(x) lst_n.sort() print(lst_n) for i in range(q): x = int(input()) lst_q.append(x) def search(lst, x): i = 0 n = len(lst) while(i < n): if lst[i] == x: return i i += 1 return -1 lst_n = [2,2,3,3,4,4,5,10,11,13] lst_q = [3,2,4,8,10] #lst_q = [2] for i in lst_q: print(i) index = search(lst_n, i) index = int(index) print(index) if index == -1: print("{} not found".format(i)) else: print("{} found at {}".format(i, index+1)) print(' '.join(str(x) for x in lst_n)) l = [] if not l: print("not") strg = "abracadabra" lst = list(strg) lst[5] = 'k' lst = "".join(lst) print(type(lst)) print(ord('9')) """
""" x = "its global" def fantastic(): print("about") global x x= 230 def lamented(): print("Sad") y = input() if y == "fantastic": fantastic() else: lamented() k = 5j print(type(k)) """ '\n\nlst = [1,2,3,4,5,6,7,8,9, 12,12,23,34,435,6,56,34,23,45,7678,3]\n\nfor x in lst:\n\tprint(x)\n\n\nlst.append(777)\nprint(lst)\n\n\n\nteam = {\n\t"leader" : {\n\t\t"name" : "Fahad",\n\t\t"batch" : 13\n\t},\n\t"commander" : {\n\t\t"name" : "Shakil",\n\t\t"batch" : 24,\n\t\t55 : "Ok"\n\t} \n}\n\nprint(team[\'commander\'][55])\n\nbattalion_1 = {\n\t"cic" : "xxxx",\n\t"rank" : "Lt. Colonel"\n}\nbattalion_2 = {\n\t"cic" : "yyy",\n\t"rank" : "Lt. Colonel"\n}\nbattalion_3 = {\n\t"cic" : "zzz",\n\t"rank" : "Lt. Colonel"\n}\nbattalion_4 = {\n\t"cic" : "ggg",\n\t"rank" : "Lt. Colonel"\n}\nbattalion_5 = {\n\t"cic" : "hhh",\n\t"rank" : "Lt. Colonel"\n}\n\nregiment = {\n\t"battalion_1" : battalion_1,\n\t"battalion_2" : battalion_2,\n\t"battalion_3" : battalion_3,\n\t"battalion_4" : battalion_4,\n\t"battalion_5" : battalion_5,\n}\n\n\nprint(regiment["battalion_3"]["cic"])\n\na = 33\nb = 33\n\nprint("A") if a<b else print("AB") if a==b else print("B")\n\nif a == b:\n\tpass # scontinue in c\n\nwhile a>0:\n\tprint(a)\n\ta -= 1\n\n\n\nadj = ["red", "big", "tasty"]\nfruits = ["apple", "banana", "cherry"]\n\n\nfor x in adj:\n\tfor y in fruits:\n\t\tprint(x,y)\n\tprint("\n")\n\ndef fruit(*x):\n\tprint(x[1])\n\n\nfruit("apple", "banana", "cherry")\n\ndef fruiit(**x):\n\tprint(x)\n\n\nfruiit(a = "apple", b = "banana", c = "cherry")\n\ndef country(name = "Bangladesh"):\n\tprint(name)\n\ncountry("Germany")\ncountry()\n\n\n\ndef recurse(n):\n\tif n<0:\n\t\treturn\n\n\telse:\n\t\trecurse(n-1)\n\t\tprint(n)\n\t\t\n\nrecurse(10)\n\nx = 1111111\ny = 3333333\nz = 55555\ntxt = "ggggggggggg {} ggggggggg {} ggggggggggg {}"\nprint(txt.format(x, y, z))\n\ntxt = "ggggggggggg {1} ggggggggg {2} ggggggggggg {0}"\nprint(txt.format(x, y, z))\n\ntxt = "ggggggggggg {1} ggggggggg {2:.5f} ggggggggggg {0}"\nprint(txt.format(x, y, z))\n\nm = 10\nprint(type(m))\n\nt = 187687654564658970978909869576453\nprint(type(t))\n\nn = 5\n\nr = m % n\nq = m / n\nprint(r)\nprint(q)\n\nif(m%n == 0):\n\tprint("Ok")\n\n\n\n\n# a = list(map(int, input().split()))\n\ndef double(i):\n\treturn 5*i\n\na=()\na = input()\nr = map(double, a)\n\nprint(list(r))\n\n\ndef return_int(i):\n\treturn int(i)\n\na = ()\na = input()\nr = map(return_int, a)\nt = list(r)\nprint(t)\nprint(t[1])\n\n\nx, y = input().split() \nx = int(x)\ny = int(y)\nprint(x) \nprint(y) \n\nprint()\n\nm = list(map(int, input().split())) \nprint(m) \n\na = list(map(int, input().split()))\nprint(a) \n\nwhile True:\n\ttry:\n\t x = input()\n\t print(x)\n except EOFError:\n break\n\n\n\nwhile True:\n\ttry:\n\t\tprint(input())\n\texcept EOFError:\n\t\tbreak\n\n\t\t\n\n\nx = 90\ny = 0\nwhil\ntry:\n\tresult = x / y\nexcept ZeroDivisionError:\n\tprint("You can\'t divide s")\n\n\n\ndef avg(n):\n\tif not n:\n\t\treturn none\n\n\treturn sum(n)/len(n)\n\n\nif __name__ == "__main__":\n\n\tl = [1,2,3,4,5]\n\tprint(avg(l))\n\n\n\n\nlst = [9,5,2,2,4,1,0,8]\nlst.sort()\nprint(lst)\n\n\n\nwhile True:\n\tn,q = input().split()\n\tn = int(n)\n\tq = int(q)\n\tlst_n = []\n\tlst_q = []\n\tif (n == 0) and (q == 0):\n\t\tbreak\n\telse:\n\t\tfor i in range(n):\n\t\t\tx = int(input())\n\t\t\tlst_n.append(x)\n\t\tlst_n.sort()\n\n\t\tprint(lst_n)\n\n\t\tfor i in range(q):\n\t\t\tx = int(input())\n\t\t\tlst_q.append(x)\n\n\n\n\ndef search(lst, x):\n\ti = 0\n\tn = len(lst)\n\twhile(i < n):\n\t\tif lst[i] == x:\n\t\t\treturn i\n\t\ti += 1\n\treturn -1\nlst_n = [2,2,3,3,4,4,5,10,11,13]\nlst_q = [3,2,4,8,10]\n#lst_q = [2]\nfor i in lst_q:\n\tprint(i)\n\tindex = search(lst_n, i) \n\tindex = int(index)\n\tprint(index)\n\tif index == -1:\n\t\tprint("{} not found".format(i))\n\telse:\n\t\tprint("{} found at {}".format(i, index+1))\n\n\n print(\' \'.join(str(x) for x in lst_n))\n\n\nl = []\nif not l:\n\tprint("not")\n\n\n\n\n\nstrg = "abracadabra"\nlst = list(strg)\n\nlst[5] = \'k\'\nlst = "".join(lst)\n\n\nprint(type(lst))\n\n\n\nprint(ord(\'9\'))\n\n'
""" CloudConvert exceptions classes. """ class CloudConvertError(Exception): """ Basic CloudConvert exceptions class. """ pass class MissingFileException(CloudConvertError): """Raises when file to conversion is missed. """ pass class WrongRequestDataException(CloudConvertError): """Raises when some data in request sending to cloudconvert service are missed. """ pass class WrongResourceException(CloudConvertError): """Raises when given resource URL is wrong. """ pass class FilesCountException(CloudConvertError): """Raises when too many files are sent in one request """
""" CloudConvert exceptions classes. """ class Cloudconverterror(Exception): """ Basic CloudConvert exceptions class. """ pass class Missingfileexception(CloudConvertError): """Raises when file to conversion is missed. """ pass class Wrongrequestdataexception(CloudConvertError): """Raises when some data in request sending to cloudconvert service are missed. """ pass class Wrongresourceexception(CloudConvertError): """Raises when given resource URL is wrong. """ pass class Filescountexception(CloudConvertError): """Raises when too many files are sent in one request """
class colored: def __init__(self, text, color='\033[1000m', highlight='\033[1000m', effect='\033[1000m'): self.text = text none = '\033[1000m' #---- color ---- Lred = '\033[91m' red = '\033[31m' Lblue = '\033[94m' blue = '\033[34m' Lgreen = '\033[92m' green = '\033[32m' yellow = '\033[93m' cyan = '\033[96m' Lcyan = '\033[36m' pink = '\033[95m' gray = '\033[90m' Lgray = '\033[37m' black = '\033[30m' purple = '\033[35m' orange = '\033[33m' if color == "red": self.color = red elif color == "blue": self.color = blue elif color == "green": self.color = green elif color == "yellow": self.color = yellow elif color == "pink": self.color = pink elif color == "gray": self.color = gray elif color == "purple": self.color = purple elif color == "cyan": self.color = cyan elif color == "black": self.color = black elif color == "orange": self.color = orange elif color == "Lred": self.color = Lred elif color == "Lcyan": self.color = Lcyan elif color == "Lgreen": self.color = Lgreen elif color == "Lblue": self.color = Lblue elif color == "Lgray": self.color = Lgray else: self.color = none #---- highlight ---- on_Lred = '\033[101m' on_Lblue = '\033[104m' on_Lgreen = '\033[102m' on_black = '\033[40m' on_red = '\033[41m' on_blue = '\033[44m' on_green = '\033[42m' on_yellow = '\033[103m' on_Lcyan = '\033[106m' on_cyan = '\033[46m' on_pink = '\033[105m' on_Lgray = '\033[47m' on_gray = '\033[100m' on_white = '\033[107m' on_orange = '\033[43m' on_purple = '\033[45m' if highlight == "on_red": self.highlight = on_red elif highlight == "on_blue": self.highlight = on_blue elif highlight == "on_green": self.highlight = on_green elif highlight == "on_yellow": self.highlight = on_yellow elif highlight == "on_pink": self.highlight = on_pink elif highlight == "on_gray": self.highlight = on_gray elif highlight == "on_white": self.highlight = on_white elif highlight == "on_Lblue": self.highlight = on_Lblue elif highlight == "on_Lgreen": self.highlight = on_Lgreen elif highlight == "on_Lred": self.highlight = on_Lred elif highlight == "on_black": self.highlight = on_black elif highlight == "on_Lgray": self.highlight = on_Lgray elif highlight == "on_orange": self.highlight = on_orange elif highlight == "on_purple": self.highlight = on_purple elif highlight == "on_Lcyan": self.highlight = on_Lcyan elif highlight == "on_cyan": self.highlight = on_cyan else: self.highlight = none #---- effect ---- bold = '\033[1m' underline = '\033[4m' if effect == "bold": self.effect = bold elif effect == "underline": self.effect = underline else: self.effect = none def __repr__(self): return self.color + self.highlight + self.effect + self.text + '\033[0m'
class Colored: def __init__(self, text, color='\x1b[1000m', highlight='\x1b[1000m', effect='\x1b[1000m'): self.text = text none = '\x1b[1000m' lred = '\x1b[91m' red = '\x1b[31m' lblue = '\x1b[94m' blue = '\x1b[34m' lgreen = '\x1b[92m' green = '\x1b[32m' yellow = '\x1b[93m' cyan = '\x1b[96m' lcyan = '\x1b[36m' pink = '\x1b[95m' gray = '\x1b[90m' lgray = '\x1b[37m' black = '\x1b[30m' purple = '\x1b[35m' orange = '\x1b[33m' if color == 'red': self.color = red elif color == 'blue': self.color = blue elif color == 'green': self.color = green elif color == 'yellow': self.color = yellow elif color == 'pink': self.color = pink elif color == 'gray': self.color = gray elif color == 'purple': self.color = purple elif color == 'cyan': self.color = cyan elif color == 'black': self.color = black elif color == 'orange': self.color = orange elif color == 'Lred': self.color = Lred elif color == 'Lcyan': self.color = Lcyan elif color == 'Lgreen': self.color = Lgreen elif color == 'Lblue': self.color = Lblue elif color == 'Lgray': self.color = Lgray else: self.color = none on__lred = '\x1b[101m' on__lblue = '\x1b[104m' on__lgreen = '\x1b[102m' on_black = '\x1b[40m' on_red = '\x1b[41m' on_blue = '\x1b[44m' on_green = '\x1b[42m' on_yellow = '\x1b[103m' on__lcyan = '\x1b[106m' on_cyan = '\x1b[46m' on_pink = '\x1b[105m' on__lgray = '\x1b[47m' on_gray = '\x1b[100m' on_white = '\x1b[107m' on_orange = '\x1b[43m' on_purple = '\x1b[45m' if highlight == 'on_red': self.highlight = on_red elif highlight == 'on_blue': self.highlight = on_blue elif highlight == 'on_green': self.highlight = on_green elif highlight == 'on_yellow': self.highlight = on_yellow elif highlight == 'on_pink': self.highlight = on_pink elif highlight == 'on_gray': self.highlight = on_gray elif highlight == 'on_white': self.highlight = on_white elif highlight == 'on_Lblue': self.highlight = on_Lblue elif highlight == 'on_Lgreen': self.highlight = on_Lgreen elif highlight == 'on_Lred': self.highlight = on_Lred elif highlight == 'on_black': self.highlight = on_black elif highlight == 'on_Lgray': self.highlight = on_Lgray elif highlight == 'on_orange': self.highlight = on_orange elif highlight == 'on_purple': self.highlight = on_purple elif highlight == 'on_Lcyan': self.highlight = on_Lcyan elif highlight == 'on_cyan': self.highlight = on_cyan else: self.highlight = none bold = '\x1b[1m' underline = '\x1b[4m' if effect == 'bold': self.effect = bold elif effect == 'underline': self.effect = underline else: self.effect = none def __repr__(self): return self.color + self.highlight + self.effect + self.text + '\x1b[0m'
# Algo's described clearly on the following link # https://math.stackexchange.com/questions/60742/finding-the-n-th-lexicographic-permutation-of-a-string def nth_permutation(alpha, n): # alpha is the list of item, and # n is the nth permutation, that is to be found out perm = [] t = len(alpha) fact = [1 for i in range(t)] for i in range(2, t): fact[i] = fact[i-1]*i for i in range(t-1, 0, -1): if n % fact[i]: p = int(n // fact[i]) perm.append(alpha[p]) n %= fact[i] del alpha[p] else: p = int((n // fact[i]) - 1) n -= (p * fact[i]) perm.append(alpha[p]) del alpha[p] perm.append(alpha[0]) del alpha[:] return perm if __name__ == '__main__': alpha = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] print('I/P:', alpha) ans = nth_permutation(alpha, 1000000) print('O/P:', ans)
def nth_permutation(alpha, n): perm = [] t = len(alpha) fact = [1 for i in range(t)] for i in range(2, t): fact[i] = fact[i - 1] * i for i in range(t - 1, 0, -1): if n % fact[i]: p = int(n // fact[i]) perm.append(alpha[p]) n %= fact[i] del alpha[p] else: p = int(n // fact[i] - 1) n -= p * fact[i] perm.append(alpha[p]) del alpha[p] perm.append(alpha[0]) del alpha[:] return perm if __name__ == '__main__': alpha = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] print('I/P:', alpha) ans = nth_permutation(alpha, 1000000) print('O/P:', ans)
class Solution: def subsets(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ n=len(nums) sub=[] for i in range(2**n): #l=[0 for k in range(n)] k=i p=[] for j in range(n): if (k & 1): p.append(nums[j]) k>>=1 sub.append(p) return sub
class Solution: def subsets(self, nums): """ :type nums: List[int] :rtype: List[List[int]] """ n = len(nums) sub = [] for i in range(2 ** n): k = i p = [] for j in range(n): if k & 1: p.append(nums[j]) k >>= 1 sub.append(p) return sub
#Que 14 Bigger Number (x,y) x= int(input('Enter first Number :- ')) y= int(input('Enter second Number :- ')) def Big_Number(x,y): if x>y: print ("Bigger Number is :- ",x) if y>x: print ("Bigger Number is :- ",y) Big_Number(x,y)
x = int(input('Enter first Number :- ')) y = int(input('Enter second Number :- ')) def big__number(x, y): if x > y: print('Bigger Number is :- ', x) if y > x: print('Bigger Number is :- ', y) big__number(x, y)
# coding=utf-8 __author__ = 'mlaptev' if __name__ == "__main__": input_array = sorted([int(i) for i in input().split()]) amount = 0 for i in range(len(input_array) - 1): if input_array[i] == input_array[i+1]: amount += 1 elif amount > 0: print(input_array[i], end=' ') amount = 0 else: amount = 0 if amount > 0: print(input_array[-1], end=' ')
__author__ = 'mlaptev' if __name__ == '__main__': input_array = sorted([int(i) for i in input().split()]) amount = 0 for i in range(len(input_array) - 1): if input_array[i] == input_array[i + 1]: amount += 1 elif amount > 0: print(input_array[i], end=' ') amount = 0 else: amount = 0 if amount > 0: print(input_array[-1], end=' ')
{ 'targets': [{ 'target_name': 'meow_hash_node', 'cflags': [ '-fno-exceptions', '-O3', '-mavx', '-maes', '-msse4' ], 'cflags_cc!': [ '-fno-exceptions', '-O3', '-mavx', '-maes', '-msse4' ], 'sources': [ 'lib/cpp/meow_hash_native_stream.cpp', 'lib/cpp/main.cpp' ], 'include_dirs': [ "<!@(node -p \"require('node-addon-api').include\")", "lib/include/", "lib/headers/" ], 'dependencies': [ "<!(node -p \"require('node-addon-api').gyp\")" ], 'libraries': [], 'defines': [ 'NAPI_DISABLE_CPP_EXCEPTIONS', 'NAPI_EXPERIMENTAL' ], 'conditions': [ [ 'OS=="mac"', { 'xcode_settings': { 'OTHER_CFLAGS': [ '-mavx', '-maes', '-O3', '-msse4.1' ] }, } ] ] }] }
{'targets': [{'target_name': 'meow_hash_node', 'cflags': ['-fno-exceptions', '-O3', '-mavx', '-maes', '-msse4'], 'cflags_cc!': ['-fno-exceptions', '-O3', '-mavx', '-maes', '-msse4'], 'sources': ['lib/cpp/meow_hash_native_stream.cpp', 'lib/cpp/main.cpp'], 'include_dirs': ['<!@(node -p "require(\'node-addon-api\').include")', 'lib/include/', 'lib/headers/'], 'dependencies': ['<!(node -p "require(\'node-addon-api\').gyp")'], 'libraries': [], 'defines': ['NAPI_DISABLE_CPP_EXCEPTIONS', 'NAPI_EXPERIMENTAL'], 'conditions': [['OS=="mac"', {'xcode_settings': {'OTHER_CFLAGS': ['-mavx', '-maes', '-O3', '-msse4.1']}}]]}]}
#!/usr/bin/env python3 # @Time : 17-9-2 01:53 # @Author : Wavky Huang # @Contact : master@wavky.com # @File : job.py """ Process information of the job. """ class Job: def __init__(self, required_manhour=0, daily_work_hours=0, hourly_pay=0, max_daily_overhours=0): """ Define your job's condition. :param required_manhour: monthly manhour required by company :param daily_work_hours: daily work hours required by company :param hourly_pay: hourly pay offers by company :param max_daily_overhours: how many hours you can work overtime per day, while minus means unlimited """ self.required_manhour = required_manhour self.daily_work_hours = daily_work_hours self.hourly_pay = hourly_pay self.max_daily_overhours = max_daily_overhours if max_daily_overhours < 0: self.max_daily_overhours = 24 - daily_work_hours if daily_work_hours + max_daily_overhours > 24: self.max_daily_overhours = 24 - daily_work_hours print("daily_work_hours + max_daily_overhours > 24, max_daily_overhours has been set to {0}.".format( self.max_daily_overhours)) def __str__(self): return "Current Job: \t Require manhour = {0} \t Daily work hours = {1} \n\ \t\t Hourly pay = {2} \t\t Max daily overhours = {3}".format(self.required_manhour, self.daily_work_hours, self.hourly_pay, self.max_daily_overhours) def __repr__(self): return self.__str__()
""" Process information of the job. """ class Job: def __init__(self, required_manhour=0, daily_work_hours=0, hourly_pay=0, max_daily_overhours=0): """ Define your job's condition. :param required_manhour: monthly manhour required by company :param daily_work_hours: daily work hours required by company :param hourly_pay: hourly pay offers by company :param max_daily_overhours: how many hours you can work overtime per day, while minus means unlimited """ self.required_manhour = required_manhour self.daily_work_hours = daily_work_hours self.hourly_pay = hourly_pay self.max_daily_overhours = max_daily_overhours if max_daily_overhours < 0: self.max_daily_overhours = 24 - daily_work_hours if daily_work_hours + max_daily_overhours > 24: self.max_daily_overhours = 24 - daily_work_hours print('daily_work_hours + max_daily_overhours > 24, max_daily_overhours has been set to {0}.'.format(self.max_daily_overhours)) def __str__(self): return 'Current Job: \t Require manhour = {0} \t Daily work hours = {1} \n\t\t Hourly pay = {2} \t\t Max daily overhours = {3}'.format(self.required_manhour, self.daily_work_hours, self.hourly_pay, self.max_daily_overhours) def __repr__(self): return self.__str__()
class ErrorResponse: ''' This class handles if an Exception isreturn in a function. ''' def __init__(self): self.__error_response = self.__default_error_response def __default_error_response(self, req, res, error_messages=None): res.send_json({ "errors": error_messages }) def override(self): def handler(callback): self.__error_response = callback return handler def call(self, req, res, error_messages): self.__error_response(req, res, error_messages)
class Errorresponse: """ This class handles if an Exception isreturn in a function. """ def __init__(self): self.__error_response = self.__default_error_response def __default_error_response(self, req, res, error_messages=None): res.send_json({'errors': error_messages}) def override(self): def handler(callback): self.__error_response = callback return handler def call(self, req, res, error_messages): self.__error_response(req, res, error_messages)
# dataset settings dataset_type = 'ICCV09Dataset' data_root = 'data/custom/iccv09Data' img_norm_cfg = dict( mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) crop_size = (512, 512) # reduce crop size to avoid cuda memory issue, have to match with model input (if fine-tune from a pretrained model) img_scale = (320, 240) train_pipeline = [ dict(type='LoadImageFromFile'), dict(type='LoadAnnotations'), dict(type='Resize', img_scale=img_scale, ratio_range=(1., 1.5)), # imagine scale better larger than crop size after resized dict(type='RandomCrop', crop_size=crop_size, cat_max_ratio=0.75), dict(type='RandomFlip', prob=0.5), dict(type='PhotoMetricDistortion'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size=crop_size, pad_val=0, seg_pad_val=255), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_semantic_seg']), ] test_pipeline = [ dict(type='LoadImageFromFile'), dict( type='MultiScaleFlipAug', img_scale=img_scale, # img_ratios=[0.5, 0.75, 1.0, 1.25, 1.5, 1.75], flip=False, transforms=[ dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img']), ]) ] data = dict( samples_per_gpu=2, # batch size workers_per_gpu=0, train=dict( type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/train.txt', pipeline=train_pipeline), val=dict( type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/val.txt', pipeline=test_pipeline), test=dict( type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/test.txt', pipeline=test_pipeline))
dataset_type = 'ICCV09Dataset' data_root = 'data/custom/iccv09Data' img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True) crop_size = (512, 512) img_scale = (320, 240) train_pipeline = [dict(type='LoadImageFromFile'), dict(type='LoadAnnotations'), dict(type='Resize', img_scale=img_scale, ratio_range=(1.0, 1.5)), dict(type='RandomCrop', crop_size=crop_size, cat_max_ratio=0.75), dict(type='RandomFlip', prob=0.5), dict(type='PhotoMetricDistortion'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size=crop_size, pad_val=0, seg_pad_val=255), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_semantic_seg'])] test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', img_scale=img_scale, flip=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img'])])] data = dict(samples_per_gpu=2, workers_per_gpu=0, train=dict(type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/train.txt', pipeline=train_pipeline), val=dict(type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/val.txt', pipeline=test_pipeline), test=dict(type=dataset_type, data_root=data_root, img_dir='images', ann_dir='annotes', split='splits/test.txt', pipeline=test_pipeline))
# Enter your code here. Read input from STDIN. Print output to STDOUT r = int(input("Enter no of matrix rows : ")) #c = input("Enter no of matrix column") A = [] max = 0 for i in range(r): a = [] row_list = input("Enter row "+str(i+1)+" columns : ") a=list(map(int,row_list.split())) A.append(a) if len(A[i])>max: max = len(A[i]) print('Original Matrix : ',A) print('Maximum columns : ',max) for i in range(r): D = [0 for k in range(max)] D[0:len(A[i])] = A[i] A[i] = D print('Final Matrix : ',A)
r = int(input('Enter no of matrix rows : ')) a = [] max = 0 for i in range(r): a = [] row_list = input('Enter row ' + str(i + 1) + ' columns : ') a = list(map(int, row_list.split())) A.append(a) if len(A[i]) > max: max = len(A[i]) print('Original Matrix : ', A) print('Maximum columns : ', max) for i in range(r): d = [0 for k in range(max)] D[0:len(A[i])] = A[i] A[i] = D print('Final Matrix : ', A)
numbers = input().split(' ') sorted_numbers = sorted(numbers) reversed_numbers = list(reversed(sorted_numbers)) result = [print(x, end='') for x in reversed_numbers]
numbers = input().split(' ') sorted_numbers = sorted(numbers) reversed_numbers = list(reversed(sorted_numbers)) result = [print(x, end='') for x in reversed_numbers]
ACCOUNT_ID = '75ce4cee-6829-4274-80e1-77e89559ddfb' JOB_CONFIG = { 'image': 'registry.console.elementai.com/eai.issam/ssh', 'data': ['c76999a2-05e7-4dcb-aef3-5da30b6c502c:/mnt/home', '20552761-b5f3-4027-9811-d0f2f50a3e60:/mnt/results', '9b4589c8-1b4d-4761-835b-474469b77153:/mnt/datasets'], 'preemptable':True, 'resources': { 'cpu': 4, 'mem': 8, 'gpu': 1 }, 'interactive': False, }
account_id = '75ce4cee-6829-4274-80e1-77e89559ddfb' job_config = {'image': 'registry.console.elementai.com/eai.issam/ssh', 'data': ['c76999a2-05e7-4dcb-aef3-5da30b6c502c:/mnt/home', '20552761-b5f3-4027-9811-d0f2f50a3e60:/mnt/results', '9b4589c8-1b4d-4761-835b-474469b77153:/mnt/datasets'], 'preemptable': True, 'resources': {'cpu': 4, 'mem': 8, 'gpu': 1}, 'interactive': False}
# Definition for singly-linked list. class ListNode: def __init__(self, x): self.val = x self.next = None class Solution: def getIntersectionNode(self, headA: ListNode, headB: ListNode) -> ListNode: cursorA, cursorB = headA, headB while cursorA != cursorB: cursorA = cursorA.next if cursorA else headB cursorB = cursorB.next if cursorB else headA return cursorA
class Listnode: def __init__(self, x): self.val = x self.next = None class Solution: def get_intersection_node(self, headA: ListNode, headB: ListNode) -> ListNode: (cursor_a, cursor_b) = (headA, headB) while cursorA != cursorB: cursor_a = cursorA.next if cursorA else headB cursor_b = cursorB.next if cursorB else headA return cursorA
class DataGridViewDataErrorEventArgs(DataGridViewCellCancelEventArgs): """ Provides data for the System.Windows.Forms.DataGridView.DataError event. DataGridViewDataErrorEventArgs(exception: Exception,columnIndex: int,rowIndex: int,context: DataGridViewDataErrorContexts) """ @staticmethod def __new__(self, exception, columnIndex, rowIndex, context): """ __new__(cls: type,exception: Exception,columnIndex: int,rowIndex: int,context: DataGridViewDataErrorContexts) """ pass Context = property(lambda self: object(), lambda self, v: None, lambda self: None) """Gets details about the state of the System.Windows.Forms.DataGridView when the error occurred. Get: Context(self: DataGridViewDataErrorEventArgs) -> DataGridViewDataErrorContexts """ Exception = property(lambda self: object(), lambda self, v: None, lambda self: None) """Gets the exception that represents the error. Get: Exception(self: DataGridViewDataErrorEventArgs) -> Exception """ ThrowException = property( lambda self: object(), lambda self, v: None, lambda self: None ) """Gets or sets a value indicating whether to throw the exception after the System.Windows.Forms.DataGridViewDataErrorEventHandler delegate is finished with it. Get: ThrowException(self: DataGridViewDataErrorEventArgs) -> bool Set: ThrowException(self: DataGridViewDataErrorEventArgs)=value """
class Datagridviewdataerroreventargs(DataGridViewCellCancelEventArgs): """ Provides data for the System.Windows.Forms.DataGridView.DataError event. DataGridViewDataErrorEventArgs(exception: Exception,columnIndex: int,rowIndex: int,context: DataGridViewDataErrorContexts) """ @staticmethod def __new__(self, exception, columnIndex, rowIndex, context): """ __new__(cls: type,exception: Exception,columnIndex: int,rowIndex: int,context: DataGridViewDataErrorContexts) """ pass context = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets details about the state of the System.Windows.Forms.DataGridView when the error occurred.\n\n\n\nGet: Context(self: DataGridViewDataErrorEventArgs) -> DataGridViewDataErrorContexts\n\n\n\n' exception = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets the exception that represents the error.\n\n\n\nGet: Exception(self: DataGridViewDataErrorEventArgs) -> Exception\n\n\n\n' throw_exception = property(lambda self: object(), lambda self, v: None, lambda self: None) 'Gets or sets a value indicating whether to throw the exception after the System.Windows.Forms.DataGridViewDataErrorEventHandler delegate is finished with it.\n\n\n\nGet: ThrowException(self: DataGridViewDataErrorEventArgs) -> bool\n\n\n\nSet: ThrowException(self: DataGridViewDataErrorEventArgs)=value\n\n'
#!/usr/bin/env python3 countryList = ["Unites States", "Russian Federation", "Germany", "Ireland"] capitalLetters = [ country[0] for country in countryList ] for i in range(len(capitalLetters)): lineToPrint = str.join(" stands for ", [capitalLetters[i], countryList[i]]) print(lineToPrint)
country_list = ['Unites States', 'Russian Federation', 'Germany', 'Ireland'] capital_letters = [country[0] for country in countryList] for i in range(len(capitalLetters)): line_to_print = str.join(' stands for ', [capitalLetters[i], countryList[i]]) print(lineToPrint)
n = int(input()) test_list = [] q = 0 for i in range(n): entr = list(map(int, input().split())) if 0 <= entr[0] <= 100 and 0 <= entr[1] <= 100: test_list.append(entr) for tests in test_list: if tests[0] > tests[1]: q += tests[1] # if l > c: # q += l - c print(q)
n = int(input()) test_list = [] q = 0 for i in range(n): entr = list(map(int, input().split())) if 0 <= entr[0] <= 100 and 0 <= entr[1] <= 100: test_list.append(entr) for tests in test_list: if tests[0] > tests[1]: q += tests[1] print(q)
def main(): determine_powerconsumption('src/december03/diagnostics.txt') def determine_powerconsumption(diagnostics): counter = [0] * 24 position = 0 with open(diagnostics, 'r') as diagnostics: for diagnostic in diagnostics: for position in range(12): if diagnostic[position:position + 1] == "1": counter[position] += 1 else: counter[position + 12] += 1 gamma_rate_binary = [0] * 12 for position in range(12): if counter[position] >= counter[position + 12]: gamma_rate_binary[position] = 1 gamma_rate = ''.join(map(str, gamma_rate_binary)) flipbinary = gamma_rate.replace('1', 'p') flipbinary = flipbinary.replace('0', '1') epsilon_rate = flipbinary.replace('p', '0') print("The power consumption of the submarine is ", int(gamma_rate, 2) * int(epsilon_rate, 2)) if __name__ == "__main__": main()
def main(): determine_powerconsumption('src/december03/diagnostics.txt') def determine_powerconsumption(diagnostics): counter = [0] * 24 position = 0 with open(diagnostics, 'r') as diagnostics: for diagnostic in diagnostics: for position in range(12): if diagnostic[position:position + 1] == '1': counter[position] += 1 else: counter[position + 12] += 1 gamma_rate_binary = [0] * 12 for position in range(12): if counter[position] >= counter[position + 12]: gamma_rate_binary[position] = 1 gamma_rate = ''.join(map(str, gamma_rate_binary)) flipbinary = gamma_rate.replace('1', 'p') flipbinary = flipbinary.replace('0', '1') epsilon_rate = flipbinary.replace('p', '0') print('The power consumption of the submarine is ', int(gamma_rate, 2) * int(epsilon_rate, 2)) if __name__ == '__main__': main()
class Solution: def trap(self, height: List[int]) -> int: if not height: return 0 ans = 0 l = 0 r = len(height) - 1 maxL = height[l] maxR = height[r] while l < r: if maxL < maxR: ans += maxL - height[l] l += 1 maxL = max(maxL, height[l]) else: ans += maxR - height[r] r -= 1 maxR = max(maxR, height[r]) return ans
class Solution: def trap(self, height: List[int]) -> int: if not height: return 0 ans = 0 l = 0 r = len(height) - 1 max_l = height[l] max_r = height[r] while l < r: if maxL < maxR: ans += maxL - height[l] l += 1 max_l = max(maxL, height[l]) else: ans += maxR - height[r] r -= 1 max_r = max(maxR, height[r]) return ans
class Solution: def fractionToDecimal(self, numerator: int, denominator: int) -> str: # is 0 if not numerator or not denominator: return "0" ans = "" # negative if (numerator < 0) != (denominator < 0): ans += '-' # to positive numerator = abs( numerator ) denominator = abs( denominator ) remainder = numerator % denominator ans += str(numerator // denominator) # whole integer if remainder == 0 : return ans ans += "." remainder_hash = {} while remainder != 0: if remainder in remainder_hash: ans = ans[:remainder_hash[remainder]] + "(" + ans[remainder_hash[remainder]:] + ")" break remainder_hash[remainder] = len(ans) remainder *= 10 ans += str(remainder // denominator) remainder %= denominator return ans
class Solution: def fraction_to_decimal(self, numerator: int, denominator: int) -> str: if not numerator or not denominator: return '0' ans = '' if (numerator < 0) != (denominator < 0): ans += '-' numerator = abs(numerator) denominator = abs(denominator) remainder = numerator % denominator ans += str(numerator // denominator) if remainder == 0: return ans ans += '.' remainder_hash = {} while remainder != 0: if remainder in remainder_hash: ans = ans[:remainder_hash[remainder]] + '(' + ans[remainder_hash[remainder]:] + ')' break remainder_hash[remainder] = len(ans) remainder *= 10 ans += str(remainder // denominator) remainder %= denominator return ans
_base_config_ = ["base.py"] generator = dict( use_norm=True, style_cfg=dict( type="SemanticStyleEncoder", encoder_modulator="SPADE", decoder_modulator="SPADE",middle_modulator="SPADE", nhidden=256), use_cse=False ) discriminator=dict(pred_only_cse=True) loss = dict( gan_criterion=dict(type="fpn_cse", l1_weight=1, lambda_real=1, lambda_fake=0) )
_base_config_ = ['base.py'] generator = dict(use_norm=True, style_cfg=dict(type='SemanticStyleEncoder', encoder_modulator='SPADE', decoder_modulator='SPADE', middle_modulator='SPADE', nhidden=256), use_cse=False) discriminator = dict(pred_only_cse=True) loss = dict(gan_criterion=dict(type='fpn_cse', l1_weight=1, lambda_real=1, lambda_fake=0))
class Doc: date = None def __init__(self, title, content, data_src): self.title = title self.content = content self.data_src = data_src
class Doc: date = None def __init__(self, title, content, data_src): self.title = title self.content = content self.data_src = data_src
# https://www.hackerrank.com/challenges/python-mod-divmod/problem if __name__ == '__main__': number1 = int(input()) number2 = int(input()) division_oldWays = number1 // number2 division_mod_oldWays = number1 % number2 division_modernWays = number1.__divmod__(number2) print(division_oldWays) print(division_mod_oldWays) print(division_modernWays)
if __name__ == '__main__': number1 = int(input()) number2 = int(input()) division_old_ways = number1 // number2 division_mod_old_ways = number1 % number2 division_modern_ways = number1.__divmod__(number2) print(division_oldWays) print(division_mod_oldWays) print(division_modernWays)
data_list = input().split(' -> ') names_dict = {} while not data_list[0] == 'end': name = data_list[0] tokens = data_list[1].split(', ') if tokens[0].isdigit(): if name not in names_dict.keys(): names_dict[name] = [] else: names_dict[name].extend(tokens) else: if tokens[0] in names_dict.keys(): if name not in names_dict.keys(): names_dict[name] = [] names_dict[name].extend(names_dict[tokens[0]]) data_list = input().split(' -> ')
data_list = input().split(' -> ') names_dict = {} while not data_list[0] == 'end': name = data_list[0] tokens = data_list[1].split(', ') if tokens[0].isdigit(): if name not in names_dict.keys(): names_dict[name] = [] else: names_dict[name].extend(tokens) elif tokens[0] in names_dict.keys(): if name not in names_dict.keys(): names_dict[name] = [] names_dict[name].extend(names_dict[tokens[0]]) data_list = input().split(' -> ')
#!/usr/bin/python def lagFib(): k=1 mod=1000000 d=[None] while True: tmp = None if k <= 55: tmp = (100003 - 200003*k + 300007*k*k*k) % mod else: tmp = (d[32]+d.pop(1)) % mod d.append(tmp) yield tmp k+=1
def lag_fib(): k = 1 mod = 1000000 d = [None] while True: tmp = None if k <= 55: tmp = (100003 - 200003 * k + 300007 * k * k * k) % mod else: tmp = (d[32] + d.pop(1)) % mod d.append(tmp) yield tmp k += 1
class CleanData(): def __init__(self): pass def clear_question_marks(self, df): df = df[df['horsepower'] != '?'] df.astype({"horsepower": float}) return df def drop_unused_columns(self, df): return df.drop(['mpg', 'car_name'], axis=1) def drop_car_name(self, df): return df.drop(['car_name'], axis=1)
class Cleandata: def __init__(self): pass def clear_question_marks(self, df): df = df[df['horsepower'] != '?'] df.astype({'horsepower': float}) return df def drop_unused_columns(self, df): return df.drop(['mpg', 'car_name'], axis=1) def drop_car_name(self, df): return df.drop(['car_name'], axis=1)
__author__ = 'Sphinx' """ Original newhsganalysis dependency lists import os import io import glob import errno import copy import json import numpy as np from scipy.optimize import curve_fit import scipy.interpolate as spi import scipy.optimize as spo import scipy.fftpack as fft import matplotlib.pyplot as plt import scipy.ndimage as ndimage import itertools as itt """
__author__ = 'Sphinx' '\nOriginal newhsganalysis dependency lists\n\nimport os\nimport io\nimport glob\nimport errno\nimport copy\nimport json\nimport numpy as np\nfrom scipy.optimize import curve_fit\nimport scipy.interpolate as spi\nimport scipy.optimize as spo\nimport scipy.fftpack as fft\nimport matplotlib.pyplot as plt\nimport scipy.ndimage as ndimage\nimport itertools as itt\n'
s={} def update_s(s): s.update({"a":1}) print(s) update_s(s) print(s) class A: def __init__(self): self.test() @property def val(self): print("call val") return 1 def test(self): self.val a=A()
s = {} def update_s(s): s.update({'a': 1}) print(s) update_s(s) print(s) class A: def __init__(self): self.test() @property def val(self): print('call val') return 1 def test(self): self.val a = a()
# # PySNMP MIB module PDN-CROSSCONNECT-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-CROSSCONNECT-MIB # Produced by pysmi-0.3.4 at Mon Apr 29 20:29:22 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueSizeConstraint, ValueRangeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion") crossConnect, = mibBuilder.importSymbols("PDN-HEADER-MIB", "crossConnect") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") IpAddress, Unsigned32, Counter32, Gauge32, iso, Bits, Integer32, Counter64, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, NotificationType, ObjectIdentity, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "IpAddress", "Unsigned32", "Counter32", "Gauge32", "iso", "Bits", "Integer32", "Counter64", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "NotificationType", "ObjectIdentity", "TimeTicks") TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString") devDs1FracTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1), ) if mibBuilder.loadTexts: devDs1FracTable.setStatus('mandatory') devDs1FracEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1), ).setIndexNames((0, "PDN-CROSSCONNECT-MIB", "devDs1FracIndex"), (0, "PDN-CROSSCONNECT-MIB", "devDs1FracNumber")) if mibBuilder.loadTexts: devDs1FracEntry.setStatus('mandatory') devDs1FracIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: devDs1FracIndex.setStatus('mandatory') devDs1FracNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readonly") if mibBuilder.loadTexts: devDs1FracNumber.setStatus('mandatory') devDs1FracIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDs1FracIfIndex.setStatus('mandatory') devDs1FracIfFracNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 31))).setMaxAccess("readwrite") if mibBuilder.loadTexts: devDs1FracIfFracNumber.setStatus('mandatory') devSyncDataPortAssignTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2), ) if mibBuilder.loadTexts: devSyncDataPortAssignTable.setStatus('mandatory') devSyncDataPortAssignEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1), ).setIndexNames((0, "PDN-CROSSCONNECT-MIB", "devSyncDataPortAssignIndex")) if mibBuilder.loadTexts: devSyncDataPortAssignEntry.setStatus('mandatory') devSyncDataPortAssignIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: devSyncDataPortAssignIndex.setStatus('mandatory') devSyncDataPortAssignRate = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 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))).clone(namedValues=NamedValues(("rate56or64", 1), ("rate112or128", 2), ("rate168or192", 3), ("rate224or256", 4), ("rate280or320", 5), ("rate336or384", 6), ("rate392or448", 7), ("rate448or512", 8), ("rate504or576", 9), ("rate560or640", 10), ("rate616or704", 11), ("rate672or768", 12), ("rate728or832", 13), ("rate784or896", 14), ("rate840or960", 15), ("rate896or1024", 16), ("rate952or1088", 17), ("rate1008or1152", 18), ("rate1064or1216", 19), ("rate1120or1280", 20), ("rate1176or1344", 21), ("rate1232or1408", 22), ("rate1288or1472", 23), ("rate1344or1536", 24)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: devSyncDataPortAssignRate.setStatus('mandatory') devSyncDataPortAssignIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1, 3), Integer32()).setMaxAccess("readwrite") if mibBuilder.loadTexts: devSyncDataPortAssignIfIndex.setStatus('mandatory') devCrossConUtility = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4)) devCrossConClear = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("idle", 1), ("inprogress", 2), ("clear", 3)))).setMaxAccess("readwrite") if mibBuilder.loadTexts: devCrossConClear.setStatus('mandatory') devCrossConTableLastChange = MibScalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4, 2), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: devCrossConTableLastChange.setStatus('mandatory') mibBuilder.exportSymbols("PDN-CROSSCONNECT-MIB", devSyncDataPortAssignRate=devSyncDataPortAssignRate, devCrossConClear=devCrossConClear, devSyncDataPortAssignIfIndex=devSyncDataPortAssignIfIndex, devSyncDataPortAssignIndex=devSyncDataPortAssignIndex, devCrossConTableLastChange=devCrossConTableLastChange, devDs1FracEntry=devDs1FracEntry, devDs1FracIfFracNumber=devDs1FracIfFracNumber, devSyncDataPortAssignEntry=devSyncDataPortAssignEntry, devDs1FracNumber=devDs1FracNumber, devDs1FracTable=devDs1FracTable, devDs1FracIfIndex=devDs1FracIfIndex, devSyncDataPortAssignTable=devSyncDataPortAssignTable, devCrossConUtility=devCrossConUtility, devDs1FracIndex=devDs1FracIndex)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, value_range_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion') (cross_connect,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'crossConnect') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (ip_address, unsigned32, counter32, gauge32, iso, bits, integer32, counter64, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, notification_type, object_identity, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'IpAddress', 'Unsigned32', 'Counter32', 'Gauge32', 'iso', 'Bits', 'Integer32', 'Counter64', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'NotificationType', 'ObjectIdentity', 'TimeTicks') (textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString') dev_ds1_frac_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1)) if mibBuilder.loadTexts: devDs1FracTable.setStatus('mandatory') dev_ds1_frac_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1)).setIndexNames((0, 'PDN-CROSSCONNECT-MIB', 'devDs1FracIndex'), (0, 'PDN-CROSSCONNECT-MIB', 'devDs1FracNumber')) if mibBuilder.loadTexts: devDs1FracEntry.setStatus('mandatory') dev_ds1_frac_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: devDs1FracIndex.setStatus('mandatory') dev_ds1_frac_number = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readonly') if mibBuilder.loadTexts: devDs1FracNumber.setStatus('mandatory') dev_ds1_frac_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDs1FracIfIndex.setStatus('mandatory') dev_ds1_frac_if_frac_number = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 31))).setMaxAccess('readwrite') if mibBuilder.loadTexts: devDs1FracIfFracNumber.setStatus('mandatory') dev_sync_data_port_assign_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2)) if mibBuilder.loadTexts: devSyncDataPortAssignTable.setStatus('mandatory') dev_sync_data_port_assign_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1)).setIndexNames((0, 'PDN-CROSSCONNECT-MIB', 'devSyncDataPortAssignIndex')) if mibBuilder.loadTexts: devSyncDataPortAssignEntry.setStatus('mandatory') dev_sync_data_port_assign_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: devSyncDataPortAssignIndex.setStatus('mandatory') dev_sync_data_port_assign_rate = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24))).clone(namedValues=named_values(('rate56or64', 1), ('rate112or128', 2), ('rate168or192', 3), ('rate224or256', 4), ('rate280or320', 5), ('rate336or384', 6), ('rate392or448', 7), ('rate448or512', 8), ('rate504or576', 9), ('rate560or640', 10), ('rate616or704', 11), ('rate672or768', 12), ('rate728or832', 13), ('rate784or896', 14), ('rate840or960', 15), ('rate896or1024', 16), ('rate952or1088', 17), ('rate1008or1152', 18), ('rate1064or1216', 19), ('rate1120or1280', 20), ('rate1176or1344', 21), ('rate1232or1408', 22), ('rate1288or1472', 23), ('rate1344or1536', 24)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: devSyncDataPortAssignRate.setStatus('mandatory') dev_sync_data_port_assign_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 2, 1, 3), integer32()).setMaxAccess('readwrite') if mibBuilder.loadTexts: devSyncDataPortAssignIfIndex.setStatus('mandatory') dev_cross_con_utility = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4)) dev_cross_con_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('idle', 1), ('inprogress', 2), ('clear', 3)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: devCrossConClear.setStatus('mandatory') dev_cross_con_table_last_change = mib_scalar((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 7, 4, 2), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: devCrossConTableLastChange.setStatus('mandatory') mibBuilder.exportSymbols('PDN-CROSSCONNECT-MIB', devSyncDataPortAssignRate=devSyncDataPortAssignRate, devCrossConClear=devCrossConClear, devSyncDataPortAssignIfIndex=devSyncDataPortAssignIfIndex, devSyncDataPortAssignIndex=devSyncDataPortAssignIndex, devCrossConTableLastChange=devCrossConTableLastChange, devDs1FracEntry=devDs1FracEntry, devDs1FracIfFracNumber=devDs1FracIfFracNumber, devSyncDataPortAssignEntry=devSyncDataPortAssignEntry, devDs1FracNumber=devDs1FracNumber, devDs1FracTable=devDs1FracTable, devDs1FracIfIndex=devDs1FracIfIndex, devSyncDataPortAssignTable=devSyncDataPortAssignTable, devCrossConUtility=devCrossConUtility, devDs1FracIndex=devDs1FracIndex)
cont = 1 def linha(): print('=' * 30) def titulo(msg): print('=' * 30) print(f'{msg:^30}') print('=' * 30) def opc(msg): global cont print(f'{cont} - \033[34m{msg}\033[m') cont = cont + 1
cont = 1 def linha(): print('=' * 30) def titulo(msg): print('=' * 30) print(f'{msg:^30}') print('=' * 30) def opc(msg): global cont print(f'{cont} - \x1b[34m{msg}\x1b[m') cont = cont + 1
# boop specific events boop_events = ["on_tick", "on_select", "on_activate", "on_decativate", "on_movecamera", "on_mouseover", "on_impulse"] class EventStateHolder(object): """This object is meant to hold event state. It is passed to ever event handler when the event triggers.""" # Any client may indicate that they've handled the event by setting to True handled = False # Set by the window when the event is issued window = None registry = None # Set by the scene manager when the event is issued. scene_manager = None # Set by the scene scene = None # set by ComponentHost when it passes the event (immediate parent) container = None
boop_events = ['on_tick', 'on_select', 'on_activate', 'on_decativate', 'on_movecamera', 'on_mouseover', 'on_impulse'] class Eventstateholder(object): """This object is meant to hold event state. It is passed to ever event handler when the event triggers.""" handled = False window = None registry = None scene_manager = None scene = None container = None
""" Connect Core App Contains "Base" Template & Static Assets """
""" Connect Core App Contains "Base" Template & Static Assets """
class SubOperation: def diferenca(self, number1, number2): return number1 - number2
class Suboperation: def diferenca(self, number1, number2): return number1 - number2
Names = { "Shakeel": "1735-2015", "Usman": "2370-2015", "Sohail": "1432-2015" } print("ID for Shakeel is " + Names["Shakeel"]) for k,v in Names.items(): print(k,v)
names = {'Shakeel': '1735-2015', 'Usman': '2370-2015', 'Sohail': '1432-2015'} print('ID for Shakeel is ' + Names['Shakeel']) for (k, v) in Names.items(): print(k, v)
#!/usr/bin/env python3 # -*- coding: utf-8 -*- def fact(n): if n == 1: return 1 else: return n * fact(n-1) def facte(n): return facter(n, 1) def facter(num, result): if num == 1: return result return facter(num - 1, num * result) print(fact(6)) print(fact(100)) print(facte(6)) print(facte(100))
def fact(n): if n == 1: return 1 else: return n * fact(n - 1) def facte(n): return facter(n, 1) def facter(num, result): if num == 1: return result return facter(num - 1, num * result) print(fact(6)) print(fact(100)) print(facte(6)) print(facte(100))
n = int(input()) def is_Prime(n): is_Prime = True if n > 1: for i in range(2,n): if n % i == 0: is_Prime = False break else: is_Prime = False return is_Prime def next_prime(n): aux = n while aux >= n: if is_Prime(aux) == True: return aux break else: aux += 1 def fact(n): prod = 1 if n == 0 or n == 1: return prod else: for i in range(2,n+1): prod *= i return prod series_sum = 0 series = '' for i in range(1,n+1): if i == 1: series += ('%.f!' % i) + ('/%.f' % 1) series_sum += 1 elif i == n: series += ('%.f!' % i) + ('/%.f' % next_prime(i)) series_sum += fact(i)/next_prime(i) else: series += ('%.f!' % i) + ('/%.f + ' % next_prime(i)) series_sum += fact(i)/next_prime(i) if series == '1!/1 + ': series = '1!/1' print(series) print('%.2f' % series_sum)
n = int(input()) def is__prime(n): is__prime = True if n > 1: for i in range(2, n): if n % i == 0: is__prime = False break else: is__prime = False return is_Prime def next_prime(n): aux = n while aux >= n: if is__prime(aux) == True: return aux break else: aux += 1 def fact(n): prod = 1 if n == 0 or n == 1: return prod else: for i in range(2, n + 1): prod *= i return prod series_sum = 0 series = '' for i in range(1, n + 1): if i == 1: series += '%.f!' % i + '/%.f' % 1 series_sum += 1 elif i == n: series += '%.f!' % i + '/%.f' % next_prime(i) series_sum += fact(i) / next_prime(i) else: series += '%.f!' % i + '/%.f + ' % next_prime(i) series_sum += fact(i) / next_prime(i) if series == '1!/1 + ': series = '1!/1' print(series) print('%.2f' % series_sum)
filter_cfg = dict( type='OneEuroFilter', min_cutoff=0.004, beta=0.7, )
filter_cfg = dict(type='OneEuroFilter', min_cutoff=0.004, beta=0.7)
# # PySNMP MIB module Nortel-Magellan-Passport-GeneralVcInterfaceMIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Nortel-Magellan-Passport-GeneralVcInterfaceMIB # Produced by pysmi-0.3.4 at Wed May 1 14:27:25 2019 # On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4 # Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15) # ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint") InterfaceIndex, DisplayString, Counter32, RowStatus, Unsigned32, Integer32, Gauge32, RowPointer, StorageType = mibBuilder.importSymbols("Nortel-Magellan-Passport-StandardTextualConventionsMIB", "InterfaceIndex", "DisplayString", "Counter32", "RowStatus", "Unsigned32", "Integer32", "Gauge32", "RowPointer", "StorageType") EnterpriseDateAndTime, NonReplicated, DashedHexString, AsciiString, DigitString, HexString, Hex, Link = mibBuilder.importSymbols("Nortel-Magellan-Passport-TextualConventionsMIB", "EnterpriseDateAndTime", "NonReplicated", "DashedHexString", "AsciiString", "DigitString", "HexString", "Hex", "Link") components, passportMIBs = mibBuilder.importSymbols("Nortel-Magellan-Passport-UsefulDefinitionsMIB", "components", "passportMIBs") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Counter64, IpAddress, Counter32, MibIdentifier, TimeTicks, iso, Integer32, NotificationType, Unsigned32, MibScalar, MibTable, MibTableRow, MibTableColumn, Gauge32, ModuleIdentity, ObjectIdentity, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "Counter64", "IpAddress", "Counter32", "MibIdentifier", "TimeTicks", "iso", "Integer32", "NotificationType", "Unsigned32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Gauge32", "ModuleIdentity", "ObjectIdentity", "Bits") DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention") generalVcInterfaceMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58)) gvcIf = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107)) gvcIfRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1), ) if mibBuilder.loadTexts: gvcIfRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIf components.') gvcIfRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatusEntry.setDescription('A single entry in the table represents a single gvcIf component.') gvcIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIf components. These components can be added and deleted.') gvcIfComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStorageType.setDescription('This variable represents the storage type value for the gvcIf tables.') gvcIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 15))) if mibBuilder.loadTexts: gvcIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfIndex.setDescription('This variable represents the index for the gvcIf tables.') gvcIfCidDataTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30), ) if mibBuilder.loadTexts: gvcIfCidDataTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCidDataTable.setDescription("This group contains the attribute for a component's Customer Identifier (CID). Refer to the attribute description for a detailed explanation of CIDs.") gvcIfCidDataEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfCidDataEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCidDataEntry.setDescription('An entry in the gvcIfCidDataTable.') gvcIfCustomerIdentifier = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30, 1, 1), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 8191), ))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfCustomerIdentifier.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCustomerIdentifier.setDescription("This attribute holds the Customer Identifier (CID). Every component has a CID. If a component has a cid attribute, the component's CID is the provisioned value of that attribute; otherwise the component inherits the CID of its parent. The top- level component has a CID of 0. Every operator session also has a CID, which is the CID provisioned for the operator's user ID. An operator will see only the stream data for components having a matching CID. Also, the operator will be allowed to issue commands for only those components which have a matching CID. An operator CID of 0 is used to identify the Network Manager (referred to as 'NetMan' in DPN). This CID matches the CID of any component. Values 1 to 8191 inclusive (equivalent to 'basic CIDs' in DPN) may be assigned to specific customers.") gvcIfProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31), ) if mibBuilder.loadTexts: gvcIfProvTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfProvTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvcIfProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfProvEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfProvEntry.setDescription('An entry in the gvcIfProvTable.') gvcIfLogicalProcessor = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfLogicalProcessor.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLogicalProcessor.setDescription('This attribute specifies the logical processor on which the General VC Interface service is running.') gvcIfMaxActiveLinkStation = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 5000)).clone(100)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfMaxActiveLinkStation.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfMaxActiveLinkStation.setDescription('This attribute specifies the total number of link station connections that can be active on this service instance. In total maxActiveLinkStation determines the maximum number of Lcn components which may exist at a given time. Once this number is reached no calls will be initiated or accepted by this service instance.') gvcIfStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32), ) if mibBuilder.loadTexts: gvcIfStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStateTable.setDescription('This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvcIfStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStateEntry.setDescription('An entry in the gvcIfStateTable.') gvcIfAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvcIfOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvcIfUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvcIfOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33), ) if mibBuilder.loadTexts: gvcIfOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOpTable.setDescription('This group contains the operational attributes of the GvcIf component.') gvcIfOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOpEntry.setDescription('An entry in the gvcIfOpTable.') gvcIfActiveLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfActiveLinkStations.setDescription('This attribute indicates the number of active link station connections on this service instance at the time of the query. It includes the link stations using the Qllc, the Frame-Relay BAN and the Frame-Relay BNN connections.') gvcIfIssueLcnClearAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('disallowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfIssueLcnClearAlarm.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfIssueLcnClearAlarm.setDescription('This attribute indicates whether alarm issuing is allowed or disallowed whenever an Lcn is cleared. Alarm issuing should be allowed only for monitoring problems.') gvcIfActiveQllcCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfActiveQllcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfActiveQllcCalls.setDescription('This attribute indicates the number of active Qllc calls on this service instance at the time of the query. It includes incoming and outgoing calls.') gvcIfStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34), ) if mibBuilder.loadTexts: gvcIfStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStatsTable.setDescription('This group contains the statistics for the GvcIf component.') gvcIfStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex")) if mibBuilder.loadTexts: gvcIfStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStatsEntry.setDescription('An entry in the gvcIfStatsTable.') gvcIfCallsToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfCallsToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsToNetwork.setDescription('This attribute counts the number of Qllc and Frame-Relay calls initiated by this interface into the subnet, including successful and failed calls. When the maximum count is exceeded the count wraps to zero.') gvcIfCallsFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfCallsFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsFromNetwork.setDescription('This attribute counts the number of Qllc and Frame-Relay calls received from the subnet by this interface, including successful and failed calls. When the maximum count is exceeded the count wraps to zero.') gvcIfCallsRefusedByNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfCallsRefusedByNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsRefusedByNetwork.setDescription('This attribute counts the number of outgoing Qllc and Frame-Relay calls refused by the subnetwork. When the maximum count is exceeded the count wraps to zero.') gvcIfCallsRefusedByInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfCallsRefusedByInterface.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsRefusedByInterface.setDescription('This attribute counts the number of incoming Qllc and Frame-Relay calls refused by the interface. When the maximum count is exceeded the count wraps to zero.') gvcIfPeakActiveLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfPeakActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfPeakActiveLinkStations.setDescription('This attribute indicates the maximum value of concurrently active link station connections since the service became active.') gvcIfBcastFramesDiscarded = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfBcastFramesDiscarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfBcastFramesDiscarded.setDescription('This attribute counts the number of broadcast frames that have been discarded because they do not meet one of the following criterias: - the source MAC address does not match the instance of at least one SourceMACFilter component, - the destination MAC address does not match the instance of at least one DestinationMACFilter component. When the maximum count is exceeded the count wraps to zero.') gvcIfDiscardedQllcCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDiscardedQllcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDiscardedQllcCalls.setDescription('This attribute indicates the number of Qllc calls that are discarded because the maxActiveLinkStation threshold is exceeded. When the maximum count is exceeded the count wraps to zero.') gvcIfDc = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2)) gvcIfDcRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1), ) if mibBuilder.loadTexts: gvcIfDcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDc components.') gvcIfDcRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcMacIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcSapIndex")) if mibBuilder.loadTexts: gvcIfDcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDc component.') gvcIfDcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDc components. These components can be added and deleted.') gvcIfDcComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcStorageType.setDescription('This variable represents the storage type value for the gvcIfDc tables.') gvcIfDcMacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDcMacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcMacIndex.setDescription('This variable represents an index for the gvcIfDc tables.') gvcIfDcSapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 254))) if mibBuilder.loadTexts: gvcIfDcSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcSapIndex.setDescription('This variable represents an index for the gvcIfDc tables.') gvcIfDcOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10), ) if mibBuilder.loadTexts: gvcIfDcOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcOptionsTable.setDescription('This group defines attributes associated with direct call. It defines complete connection in terms of path and call options. This connection can be permanent (pvc) or switched (svc). It can have facilities. The total number of bytes of facilities including the facility codes, and all of the facility data from all of the four classes of facilities: CCITT_Facilities DTE_Facilities National_Facilities International_Facilities must not exceed 512 bytes.') gvcIfDcOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcMacIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcSapIndex")) if mibBuilder.loadTexts: gvcIfDcOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcOptionsEntry.setDescription('An entry in the gvcIfDcOptionsTable.') gvcIfDcRemoteNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcRemoteNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRemoteNpi.setDescription('This attribute specifies the remote Numbering Plan Indicator (Npi) used in the remoteDna.') gvcIfDcRemoteDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcRemoteDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRemoteDna.setDescription('This attribute specifies the Data Network Address (Dna) of the remote. This is the called (destination) DTE address (Dna) to which this direct call will be sent. Initially, the called DTE address attribute must be present, that is, there must be a valid destination address. However, it may be possible in the future to configure the direct call with a mnemonic address, in which case, this attribute will contain a zero-length Dna, and the mnemonic address will be carried as one of the facilities.') gvcIfDcUserData = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 8), HexString().subtype(subtypeSpec=ValueSizeConstraint(0, 128)).clone(hexValue="C3000000")).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcUserData.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcUserData.setDescription("This attribute contains the user data which is appended to the call request packet that is presented to the called (destination) DTE. User data can be a 0 to 128 byte string for fast select calls; otherwise, it is 0 to 16 byte string. Fast select calls are indicated as such using the X.25 ITU-T CCITT facility for 'Reverse Charging'. The length of the user data attribute is not verified during service provisioning. If more than 16 bytes of user data is specified on a call without the fast select option, then the call is cleared with a clear cause of 'local procedure error', and a diagnostic code of 39 (as defined in ITU-T (CCITT) X.25).") gvcIfDcTransferPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 9, 255))).clone(namedValues=NamedValues(("normal", 0), ("high", 9), ("useDnaDefTP", 255))).clone('useDnaDefTP')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcTransferPriority.setDescription('This attribute specifies the default transfer priority to network for all outgoing calls using this particular Dna. It can overRide the outDefaultTransferPriority provisioned in the Dna component. The transfer priority is a preference specified by an application according to its time-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. The transfer priority in Passport determines two things in use: trunk queue (among interrupting, delay, throughput), and routing metric (between delay and throughput). The following table details each transfer priority. The default of outDefaultTransferPriority is useDnaDefTP.') gvcIfDcDiscardPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 3))).clone(namedValues=NamedValues(("normal", 0), ("high", 1), ("useDnaDefPriority", 3))).clone('useDnaDefPriority')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcDiscardPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcDiscardPriority.setDescription('This attribute specifies the discard priority for outgoing call using this DLCI. The discard priority has three provisioning values: normal, high, and useDnaDefPriority. Traffic with normal priority are discarded first than the traffic with high priority. The Dna default value (provisioned by outDefaultPriority) is taken if this attribute is set to the value useDnaDefPriority. The default of discardPriority is useDnaDefPriority.') gvcIfDcCfaTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490), ) if mibBuilder.loadTexts: gvcIfDcCfaTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaTable.setDescription("This is the i'th CCITT facility required for this direct call. Within the provisioning system, the user specifies the facility code along with the facility parameters. The facility is represented internally as a hexadecimal string following the X.25 CCITT representation for facility data. The user specifies the facility code when adding, changing or deleting a facility. The upper two bits of the facility code indicate the class of facility. From the class of the facility, one can derive the number of bytes of facility data, as follows: Class A - 1 byte of fax data Class B - 2 bytes of fax data Class C - 3 bytes of fax data Class D - variable length of fax data.") gvcIfDcCfaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcMacIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcSapIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDcCfaIndex")) if mibBuilder.loadTexts: gvcIfDcCfaEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaEntry.setDescription('An entry in the gvcIfDcCfaTable.') gvcIfDcCfaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 1), ValueRangeConstraint(2, 2), ValueRangeConstraint(3, 3), ValueRangeConstraint(4, 4), ValueRangeConstraint(9, 9), ValueRangeConstraint(66, 66), ValueRangeConstraint(67, 67), ValueRangeConstraint(68, 68), ValueRangeConstraint(71, 71), ValueRangeConstraint(72, 72), ValueRangeConstraint(73, 73), ValueRangeConstraint(196, 196), ValueRangeConstraint(198, 198), ))) if mibBuilder.loadTexts: gvcIfDcCfaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaIndex.setDescription('This variable represents the index for the gvcIfDcCfaTable.') gvcIfDcCfaValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 2), HexString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDcCfaValue.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaValue.setDescription('This variable represents an individual value for the gvcIfDcCfaTable.') gvcIfDcCfaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: gvcIfDcCfaRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the gvcIfDcCfaTable.') gvcIfRDnaMap = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3)) gvcIfRDnaMapRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1), ) if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfRDnaMap components.') gvcIfRDnaMapRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRDnaMapNpiIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRDnaMapDnaIndex")) if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfRDnaMap component.') gvcIfRDnaMapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRDnaMapRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfRDnaMap components. These components can be added and deleted.') gvcIfRDnaMapComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRDnaMapComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfRDnaMapStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRDnaMapStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapStorageType.setDescription('This variable represents the storage type value for the gvcIfRDnaMap tables.') gvcIfRDnaMapNpiIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1)))) if mibBuilder.loadTexts: gvcIfRDnaMapNpiIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapNpiIndex.setDescription('This variable represents an index for the gvcIfRDnaMap tables.') gvcIfRDnaMapDnaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 11), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))) if mibBuilder.loadTexts: gvcIfRDnaMapDnaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapDnaIndex.setDescription('This variable represents an index for the gvcIfRDnaMap tables.') gvcIfRDnaMapLanAdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10), ) if mibBuilder.loadTexts: gvcIfRDnaMapLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvcIfRDnaMapLanAdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRDnaMapNpiIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRDnaMapDnaIndex")) if mibBuilder.loadTexts: gvcIfRDnaMapLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapLanAdEntry.setDescription('An entry in the gvcIfRDnaMapLanAdTable.') gvcIfRDnaMapMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRDnaMapMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvcIfRDnaMapSap = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(2, 254)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRDnaMapSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvcIfLcn = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4)) gvcIfLcnRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1), ) if mibBuilder.loadTexts: gvcIfLcnRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfLcn components.') gvcIfLcnRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex")) if mibBuilder.loadTexts: gvcIfLcnRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfLcn component.') gvcIfLcnRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfLcn components. These components cannot be added nor deleted.') gvcIfLcnComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfLcnStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStorageType.setDescription('This variable represents the storage type value for the gvcIfLcn tables.') gvcIfLcnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))) if mibBuilder.loadTexts: gvcIfLcnIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnIndex.setDescription('This variable represents the index for the gvcIfLcn tables.') gvcIfLcnStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11), ) if mibBuilder.loadTexts: gvcIfLcnStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStateTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvcIfLcnStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex")) if mibBuilder.loadTexts: gvcIfLcnStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStateEntry.setDescription('An entry in the gvcIfLcnStateTable.') gvcIfLcnAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvcIfLcnOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvcIfLcnUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvcIfLcnLcnCIdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12), ) if mibBuilder.loadTexts: gvcIfLcnLcnCIdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnLcnCIdTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group indicates the information about the LAN circuit.') gvcIfLcnLcnCIdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex")) if mibBuilder.loadTexts: gvcIfLcnLcnCIdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnLcnCIdEntry.setDescription('An entry in the gvcIfLcnLcnCIdTable.') gvcIfLcnCircuitId = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12, 1, 1), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnCircuitId.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnCircuitId.setDescription('This attribute indicates the component name of the Vr/n Sna SnaCircuitEntry which represents this connection in the SNA DLR service. This component contains operational data about the LAN circuit.') gvcIfLcnOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13), ) if mibBuilder.loadTexts: gvcIfLcnOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group contains the operational Lcn attributes.') gvcIfLcnOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex")) if mibBuilder.loadTexts: gvcIfLcnOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperEntry.setDescription('An entry in the gvcIfLcnOperTable.') gvcIfLcnState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("idle", 0), ("localDeviceCalling", 1), ("remoteDeviceCalling", 2), ("callUp", 3), ("serviceInitiatedClear", 4), ("localDeviceClearing", 5), ("remoteDeviceClearing", 6), ("terminating", 7), ("deviceMonitoring", 8), ("deviceMonitoringSuspended", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnState.setDescription('This attribute indicates the logical channel internal state.') gvcIfLcnDnaMap = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 2), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnDnaMap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnDnaMap.setDescription('This attribute indicates the component name of the Ddm, Sdm or Ldev which contains the MAC address of the device being monitored by this Lcn.') gvcIfLcnSourceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnSourceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnSourceMac.setDescription('This attribute indicates the source MAC address inserted by this LCN in the SA field of the 802.5 frames sent to the local ring.') gvcIfLcnVc = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2)) gvcIfLcnVcRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1), ) if mibBuilder.loadTexts: gvcIfLcnVcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfLcnVc components.') gvcIfLcnVcRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnVcIndex")) if mibBuilder.loadTexts: gvcIfLcnVcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfLcnVc component.') gvcIfLcnVcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfLcnVc components. These components cannot be added nor deleted.') gvcIfLcnVcComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfLcnVcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStorageType.setDescription('This variable represents the storage type value for the gvcIfLcnVc tables.') gvcIfLcnVcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfLcnVcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIndex.setDescription('This variable represents the index for the gvcIfLcnVc tables.') gvcIfLcnVcCadTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10), ) if mibBuilder.loadTexts: gvcIfLcnVcCadTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCadTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group represents operational call data related to General Vc. It can be displayed only for General Vc which is created by application.') gvcIfLcnVcCadEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnVcIndex")) if mibBuilder.loadTexts: gvcIfLcnVcCadEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCadEntry.setDescription('An entry in the gvcIfLcnVcCadTable.') gvcIfLcnVcType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("svc", 0), ("pvc", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcType.setDescription('This attribute displays the type of call, pvc or svc. type is provided at provisioning time.') gvcIfLcnVcState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("creating", 0), ("readyP1", 1), ("dteWaitingP2", 2), ("dceWaitingP3", 3), ("dataTransferP4", 4), ("unsupportedP5", 5), ("dteClearRequestP6", 6), ("dceClearIndicationP7", 7), ("termination", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcState.setDescription('This attribute displays the state of call control. P5 state is not supported but is listed for completness. Transitions from one state to another take very short time. state most often displayed is dataTransferP4.') gvcIfLcnVcPreviousState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("creating", 0), ("readyP1", 1), ("dteWaitingP2", 2), ("dceWaitingP3", 3), ("dataTransferP4", 4), ("unsupportedP5", 5), ("dteClearRequestP6", 6), ("dceClearIndicationP7", 7), ("termination", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPreviousState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPreviousState.setDescription('This attribute displays the previous state of call control. This is a valuable field to determine how the processing is progressing.') gvcIfLcnVcDiagnosticCode = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvcIfLcnVcPreviousDiagnosticCode = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPreviousDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPreviousDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvcIfLcnVcCalledNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCalledNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the called end.') gvcIfLcnVcCalledDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 7), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCalledDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledDna.setDescription('This attribute displays the Data Network Address (Dna) of the called (destination) DTE to which this call is sent. This address if defined at recieving end will complete Vc connection.') gvcIfLcnVcCalledLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCalledLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledLcn.setDescription('This attribute displays the Logical Channel Number of the called end. It is valid only after both ends of Vc exchanged relevant information.') gvcIfLcnVcCallingNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCallingNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the calling end.') gvcIfLcnVcCallingDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCallingDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingDna.setDescription('This attribute displays the Data Network Address (Dna) of the calling end.') gvcIfLcnVcCallingLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCallingLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingLcn.setDescription('This attribute displays the Logical Channel Number of the calling end.') gvcIfLcnVcAccountingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("yes", 0), ("no", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnabled.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnabled.setDescription('This attribute indicates that this optional section of accounting record is suppressed or permitted. If accountingEnabled is yes, conditions for generation of accounting record were met. These conditions include billing options, vc recovery conditions and Module wide accounting data options.') gvcIfLcnVcFastSelectCall = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("no", 0), ("yes", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcFastSelectCall.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcFastSelectCall.setDescription('This attribute displays that this is a fast select call.') gvcIfLcnVcLocalRxPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("unknown", 0), ("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcLocalRxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxPktSize.setDescription('This attribute displays the locally negotiated size of send packets.') gvcIfLcnVcLocalTxPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("unknown", 0), ("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcLocalTxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxPktSize.setDescription('This attribute displays the locally negotiated size of send packets.') gvcIfLcnVcLocalTxWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 16), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcLocalTxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxWindowSize.setDescription('This attribute displays the send window size provided on incoming call packets or the default when a call request packet does not explicitly provide the window size.') gvcIfLcnVcLocalRxWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 17), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 127))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcLocalRxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxWindowSize.setDescription('This attribute displays the receive window size provided on incoming call packets or the default when a call request does not explicitly provide the window sizes.') gvcIfLcnVcPathReliability = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("high", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPathReliability.setDescription('This attribute displays the path reliability.') gvcIfLcnVcAccountingEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("callingEnd", 0), ("calledEnd", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnd.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnd.setDescription('This attribute indicates if this end should generate an accounting record. Normally, callingEnd is the end to generate an accounting record.') gvcIfLcnVcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("high", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPriority.setDescription('This attribute displays whether the call is a normal or a high priority call.') gvcIfLcnVcSegmentSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSegmentSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentSize.setDescription('This attribute displays the segment size (in bytes) used on the call. It is used to calculate the number of segments transmitted and received.') gvcIfLcnVcSubnetTxPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("unknown", 0), ("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxPktSize.setDescription('This attribute displays the locally negotiated size of the data packets on this Vc.') gvcIfLcnVcSubnetTxWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 24), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxWindowSize.setDescription('This attribute displays the current send window size of Vc.') gvcIfLcnVcSubnetRxPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("unknown", 0), ("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxPktSize.setDescription('This attribute displays the locally negotiated size of receive packets.') gvcIfLcnVcSubnetRxWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 26), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxWindowSize.setDescription('This attribute displays the receive window size provided on incoming call packets and to the default when a call request does not explicitly provide the window sizes.') gvcIfLcnVcMaxSubnetPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcMaxSubnetPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcMaxSubnetPktSize.setDescription('This attribute displays the maximum packet size allowed on Vc.') gvcIfLcnVcTransferPriorityToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 9))).clone(namedValues=NamedValues(("normal", 0), ("high", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityToNetwork.setDescription('This attribute displays the priority in which data is transferred to the network. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, the routing metric is set to throughput.') gvcIfLcnVcTransferPriorityFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 9))).clone(namedValues=NamedValues(("normal", 0), ("high", 9)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityFromNetwork.setDescription('This attribute displays the priority in which data is transferred from the network. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, and the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, and the routing metric is set to throughput.') gvcIfLcnVcIntdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11), ) if mibBuilder.loadTexts: gvcIfLcnVcIntdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIntdTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group defines display of interval data collected by Vc. Data in this group is variable and may depend on time when this display command is issued.') gvcIfLcnVcIntdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnVcIndex")) if mibBuilder.loadTexts: gvcIfLcnVcIntdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIntdEntry.setDescription('An entry in the gvcIfLcnVcIntdTable.') gvcIfLcnVcCallReferenceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 1), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcCallReferenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallReferenceNumber.setDescription('This attribute displays the call reference number which is a unique number generated by the switch.The same Call Reference Number is stored in the interval data (accounting record) at both ends of the call. It can be used as one of the attributes in matching duplicate records generated at each end of the call.') gvcIfLcnVcElapsedTimeTillNow = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcElapsedTimeTillNow.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcElapsedTimeTillNow.setDescription('This attribute displays the elapsed time representing the period of this interval data. It is elapsed time in 0.1 second increments since Vc started.') gvcIfLcnVcSegmentsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSegmentsRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsRx.setDescription('This attribute displays the number of segments received at the time command was issued. This is the segment received count maintained by accounting at each end of the Vc. This counter is updated only when the packet cannot be successfully delivered out of the sink Vc and to the sink AP Conditions in which packets may be discarded by the sink Vc include: missing packets due to subnet discards, segmentation protocol violations due to subnet discard, duplicated and out-of-ranged packets and packets that arrive while Vc is in path recovery state.') gvcIfLcnVcSegmentsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSegmentsSent.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsSent.setDescription('This attribute displays the number of segments sent at the time command was issued. This is the segment sent count maintained by accounting at the source Vc. Vc only counts packets that Vc thinks can be delivered successfully into the subnet. In reality, these packets may be dropped by trunking, for instance. This counter is not updated when splitting fails, when Vc is in a path recovery state, when packet forwarding fails to forward this packet and when subsequent packets have to be discarded as we want to minimize the chance of out-of-sequence and do not intentionally send out-of- sequenced packets into the subnet.') gvcIfLcnVcStartTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcStartTime.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStartTime.setDescription('This attribute displays the start time of this interval period. If Vc spans 12 hour time or time of day change startTime reflects new time as recorded at 12 hour periods or time of day changes.') gvcIfLcnVcStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12), ) if mibBuilder.loadTexts: gvcIfLcnVcStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStatsTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** ... Statistics(Stats) This group defines general attributes collected by general Vc. The purpose of Vc attributes is to aid end users and verification people to understand the Vc internal behavior. This is particularly useful when the network has experienced abnormality and we want to isolate problems and pinpoint trouble spots. Attributes are collected on a per Vc basis. Until a need is identified, statistics are not collected at a processor level. Each attribute is stored in a 32 bit field and is initialized to zero when a Vc enters into the data transfer state. When a PVC is disconnected and then connected again, the attributes will be reset. Attributes cannot be reset through other methods.') gvcIfLcnVcStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfLcnVcIndex")) if mibBuilder.loadTexts: gvcIfLcnVcStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStatsEntry.setDescription('An entry in the gvcIfLcnVcStatsTable.') gvcIfLcnVcAckStackingTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcAckStackingTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAckStackingTimeouts.setDescription('This attribute counts the number of ack stacking timer expiries. It is used as an indicator of the acknowledgment behavior across the subnet when ack stacking is in effect. If it expires often, usually this means end users will experience longer delay. The ack stacking timer specifies how long the Vc will wait before finally sending the subnet acknowledgment. if this attribute is set to a value of 0, then the Vc will automatically return acknowledgment packets without delay. If this attribute is set to a value other than zero, then the Vc will wait for this amount of time in an attempt to piggyback the acknowledgment packet on another credit or data packet. If the Vc cannot piggyback the acknowledgment packet within this time, then the packet is returned without piggybacking.') gvcIfLcnVcOutOfRangeFrmFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcOutOfRangeFrmFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcOutOfRangeFrmFromSubnet.setDescription('This attribute counts the number of subnet frames discarded due to the sequence number being out of range. Two Categories apply for the General Vc 1) lost Acks (previous Range) 2) unexpected Packets (next Range) Vc internally maintains its own sequence number of packet order and sequencing. Due to packet retransmission, Vc may receive duplicate packets that have the same Vc internal sequence number. Only 1 copy is accepted by the Vc and other copies of the same packets are detected through this count. This attribute can be used to record the frequency of packet retransmission due to Vc and other part of the subnet.') gvcIfLcnVcDuplicatesFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcDuplicatesFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcDuplicatesFromSubnet.setDescription('This attribute counts the number of subnet packets discarded due to duplication. It is used to detect software error fault or duplication caused by retransmitting.') gvcIfLcnVcFrmRetryTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcFrmRetryTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcFrmRetryTimeouts.setDescription('This attribute counts the number of frames which have retransmission time-out. If packets from Vc into the subnet are discarded by the subnet, the source Vc will not receive any acknowledgment. The retransmission timer then expires and packets will be retransmitted again. Note that the Vc idle probe may be retransmitted and is included in this count. This statistics does not show the distribution of how many times packets are retransmitted (e.g. first retransmission results in successful packet forwarding).') gvcIfLcnVcPeakRetryQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPeakRetryQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakRetryQueueSize.setDescription('This attribute indicates the peak size of the retransmission queue. This attribute is used as an indicator of the acknowledgment behavior across the subnet. It records the largest body of unacknowledged packets.') gvcIfLcnVcPeakOoSeqQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqQueueSize.setDescription('This attribute indicates the peak size of the out of sequence queue. This attribute is used as an indicator of the sequencing behavior across the subnet. It records the largest body of out of sequence packets.') gvcIfLcnVcPeakOoSeqFrmForwarded = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqFrmForwarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqFrmForwarded.setDescription('This attribute indicates the peak size of the sequence packet queue. This attribute is used as an indicator of the sequencing behavior across the subnet. It records the largest body of out of sequence packets, which by the receipt of an expected packet have been transformed to expected packets. The number of times this peak is reached is not recorded as it is traffic dependent.') gvcIfLcnVcPeakStackedAcksRx = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcPeakStackedAcksRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakStackedAcksRx.setDescription('This attribute indicates the peak size of wait acks. This attribute is used as an indicator of the acknowledgment behavior across the subnet. It records the largest collective acknowledgment.') gvcIfLcnVcSubnetRecoveries = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcSubnetRecoveries.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRecoveries.setDescription('This attribute counts the number of successful Vc recovery attempts. This attribute is used as an indicator of how many times the Vc path is broken but can be recovered. This attribute is useful to record the number of network path failures.') gvcIfLcnVcWindowClosuresToSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresToSubnet.setDescription('This attribute counts the number of window closures to subnet. A packet may have been sent into the subnet but its acknowledgment from the remote Vc has not yet been received. This is a 8 bit sequence number.This number is useful in detecting whether the Vc is sending any packet into the subnet.') gvcIfLcnVcWindowClosuresFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresFromSubnet.setDescription('This attribute counts the number of window closures from subnet. This attribute is useful in detecting whether the Vc is receiving any packet from the subnet.') gvcIfLcnVcWrTriggers = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfLcnVcWrTriggers.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWrTriggers.setDescription('This attribute displays the number of times the Vc stays within the W-R region. The W-R region is a value used to determined the timing of credit transmission. Should the current window size be beneath this value, the credits will be transmitted immediately. Otherwise, they will be transmitted later with actual data. The wrTriggers statistic is therefore used to analyze the flow control and credit mechanism.') gvcIfDna = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5)) gvcIfDnaRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1), ) if mibBuilder.loadTexts: gvcIfDnaRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDna components.') gvcIfDnaRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex")) if mibBuilder.loadTexts: gvcIfDnaRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDna component.') gvcIfDnaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDna components. These components can be added and deleted.') gvcIfDnaComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaStorageType.setDescription('This variable represents the storage type value for the gvcIfDna tables.') gvcIfDnaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 99))) if mibBuilder.loadTexts: gvcIfDnaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIndex.setDescription('This variable represents the index for the gvcIfDna tables.') gvcIfDnaAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11), ) if mibBuilder.loadTexts: gvcIfDnaAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAddrTable.setDescription('This group contains attributes common to all DNAs. Every DNA used in the network is defined with this group of 2 attributes, a string of address digits and a NPI.') gvcIfDnaAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex")) if mibBuilder.loadTexts: gvcIfDnaAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAddrEntry.setDescription('An entry in the gvcIfDnaAddrTable.') gvcIfDnaNumberingPlanIndicator = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaNumberingPlanIndicator.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaNumberingPlanIndicator.setDescription('This attribute indicates the Numbering Plan Indicator (NPI) of the Dna that is entered. Address may belong to X.121 or E.164 plans.') gvcIfDnaDataNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDataNetworkAddress.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDataNetworkAddress.setDescription('This attribute contains digits which form the unique identifier of the customer interface. It can be compared (approximation only) to telephone number where the telephone number identifies a unique telephone set. Dna digits are selected and assigned by network operators.') gvcIfDnaOutgoingOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12), ) if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsTable.setDescription('This group defines call options of a Dna for calls which are made out of the interface represented by Dna.') gvcIfDnaOutgoingOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex")) if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsEntry.setDescription('An entry in the gvcIfDnaOutgoingOptionsTable.') gvcIfDnaOutDefaultPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("high", 1))).clone('normal')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaOutDefaultPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPriority.setDescription('This attribute, if set to normal indicates that the default priority for outgoing calls (from the DTE to the network) for this particular Dna is normal priority - if the priority is not specified by the DTE. If this attribute is set to high then the default priority for outgoing calls using this particular Dna is high priority. This option can also be included in X.25 signalling, in which case it will be overruled.') gvcIfDnaOutDefaultPathSensitivity = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("throughput", 0), ("delay", 1))).clone('throughput')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathSensitivity.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathSensitivity.setDescription('This attribute specifies the default class of routing for delay/ throughput sensitive routing for all outgoing calls (from the DTE to the network)for this particular Dna. The chosen default class of routing applies to all outgoing calls established using this Dna, and applies to the packets travelling in both directions on all outgoing calls (local to remote, and remote to local). For incoming calls, the default class of routing is chosen by the calling party (as opposed to DPN, where either end of the call can choose the default routing class). This attribute, if set to a value of throughput, indicates that the default class of routing is throughput sensitive routing. If set to a value of delay, then the default class of routing is delay sensitive routing. In the future, the class of routing sensitivity may be overridden at the calling end of the call as follows: The default class of routing sensitivity can be overridden by the DTE in the call request packet through the TDS&I (Transit Delay Selection & Indication) if the DTE supports this facility. Whether or not the DTE is permitted to signal the TDS&I facility will depend on the DTE (i.e.: TDS&I is supported in X.25 only), and will depend on whether the port is configured to permit the TDS&I facility. In Passport, the treatment of DTE facilities (for example, NUI, RPOA, and TDS&I) not fully defined yet since it is not required. At the point in time when it is required, the parameter to control whether or not the DTE is permitted to signal the TDS&I will be in a Facility Treatment component. Currently, the default is to disallow the TDS&I facility from the DTE.') gvcIfDnaOutDefaultPathReliability = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("high", 0), ("normal", 1))).clone('high')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathReliability.setDescription('This attribute specifies the default class of routing for reliability routing for all outgoing calls (from the DTE to the network) this particular Dna. The chosen default class of routing applies to all outgoing calls established using this Dna, and applies to the packets travelling in both directions on all outgoing calls (local to remote, and remote to local). For incoming calls, the default class of routing is chosen by the calling party (as opposed to DPN, where either end of the call can choose the default routing class). This attribute, if set to a value of normal, indicates that the default class of routing is normal reliability routing. If set to a value of high, then the default class of routing is high reliability routing. High reliability is the standard choice for most DPN and Passport services. It usually indicates that packets are overflowed or retransmitted at various routing levels. Typically high reliability results in duplication and disordering of packets in the network when errors are detected or during link congestion. However, the Vc handles the duplication and disordering to ensure that packets are delivered to the DTE properly. For the Frame Relay service, duplication of packets is not desired, in which case, normal reliability may be chosen as the preferred class of routing.') gvcIfDnaOutAccess = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaOutAccess.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutAccess.setDescription("This attribute is an extension of the Closed User Group (CUG), as follows: This attribute, if set to a value of allowed indicates that outgoing calls (from the DTE to the network) the open (non-CUG) of the network are permitted. It also permits outgoing calls to DTEs that have Incoming Access capabilities. If set to a value of disallowed, then such calls cannot be made using this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Closed User Group with Outgoing Access' feature for Dnas in that outgoing access is granted if this attribute is set to a value of allowed.") gvcIfDnaDefaultTransferPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 9))).clone(namedValues=NamedValues(("normal", 0), ("high", 9))).clone('normal')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultTransferPriority.setDescription('This attribute specifies the default transfer priority to network for all outgoing calls using this particular Dna. It can be overRide by the transferPriority provisioned in the DLCI Direct Call sub- component. The transfer priority is a preference specified by an application according to its time-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. The transfer priority in Passport determines two things in use: trunk queue (among interrupting, delay, throughput), and routing metric (between delay and throughput). The following table descibes the details of each transfer priority: The default of outDefaultTransferPriority is normal.') gvcIfDnaTransferPriorityOverRide = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("no", 0), ("yes", 1))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaTransferPriorityOverRide.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaTransferPriorityOverRide.setDescription('When this attribute is set to yes in the call request, the called end will use the calling end provisioning data on transfer priority to override its own provisioning data. If it is set no, the called end will use its own provisioning data on transfer priority. The default of outTransferPriorityOverRide is yes.') gvcIfDnaIncomingOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13), ) if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsTable.setDescription('IncomingOptions defines set of options for incoming calls. These options are used for calls arriving to the interface represented by Dna. For calls originated from the interface, IncomingOptions attributes are not used.') gvcIfDnaIncomingOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex")) if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsEntry.setDescription('An entry in the gvcIfDnaIncomingOptionsTable.') gvcIfDnaIncCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncCalls.setDescription("This attribute, if set to a value of allowed indicates that incoming calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then incoming calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Incoming Calls Barred' feature for Dnas in that incoming calls are barred if this attribute is set to a value of disallowed. Either outCalls, or incCalls (or both) be set to a value of allowed for this Dna to be usable.") gvcIfDnaIncHighPriorityReverseCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncHighPriorityReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncHighPriorityReverseCharge.setDescription("This attribute, if set to a value of allowed indicates that incoming high priority, reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute, together with the incNormalPriorityReverseChargeCalls attribute corresponds to the CCITT 'Reverse Charging Acceptance' feature for Dnas in that reverse charged calls are accepted if both attributes are set to a value of allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.") gvcIfDnaIncNormalPriorityReverseCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncNormalPriorityReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncNormalPriorityReverseCharge.setDescription("This attribute, if set to a value of allowed indicates that incoming normal priority, reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute, together with the incHighPriorityReverseChargeCalls attribute corresponds to the CCITT 'Reverse Charging Acceptance' feature for Dnas in that reverse charged calls are accepted if both attributes are set to a value of allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.") gvcIfDnaIncIntlNormalCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncIntlNormalCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncIntlNormalCharge.setDescription('This attribute, if set to a value of allowed indicates that incoming international normal charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute also currently controls access to/from the E.164 numbering plan, and if set to a value of allowed, then cross- numbering plan calls (also normal charged) allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvcIfDnaIncIntlReverseCharge = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncIntlReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncIntlReverseCharge.setDescription('This attribute, if set to a value of allowed indicates that incoming international reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute also currently controls access to/from the E.164 numbering plan, and if set to a value of allowed, then cross- numbering plan calls (also normal charged) allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvcIfDnaIncSameService = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaIncSameService.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncSameService.setDescription('This attribute, if set to a value of allowed indicates that incoming calls from the same service type (e.g.: X.25, ITI, SNA) (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvcIfDnaIncAccess = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaIncAccess.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncAccess.setDescription("This attribute is an extension of the Closed User Group (CUG), as follows: This attribute, if set to a value of allowed indicates that incoming calls (from the network to the DTE) the open (non-CUG) of the network are permitted. It also permits incoming calls from DTEs that have Outgoing Access capabilities. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Closed User Group with Incoming Access' feature for Dnas in that incoming access is granted if this attribute is set to a value of allowed.") gvcIfDnaCallOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14), ) if mibBuilder.loadTexts: gvcIfDnaCallOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCallOptionsTable.setDescription('CallOptions group defines additional options for calls not related directly to direction of a call.') gvcIfDnaCallOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex")) if mibBuilder.loadTexts: gvcIfDnaCallOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCallOptionsEntry.setDescription('An entry in the gvcIfDnaCallOptionsTable.') gvcIfDnaServiceCategory = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32))).clone(namedValues=NamedValues(("gsp", 0), ("x25", 1), ("enhancedIti", 2), ("ncs", 3), ("mlti", 4), ("sm", 5), ("ici", 6), ("dsp3270", 7), ("iam", 8), ("mlhi", 9), ("term3270", 10), ("iti", 11), ("bsi", 13), ("hostIti", 14), ("x75", 15), ("hdsp3270", 16), ("api3201", 20), ("sdlc", 21), ("snaMultiHost", 22), ("redirectionServ", 23), ("trSnaTpad", 24), ("offnetNui", 25), ("gasServer", 26), ("vapServer", 28), ("vapAgent", 29), ("frameRelay", 30), ("ipiVc", 31), ("gvcIf", 32))).clone('gvcIf')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaServiceCategory.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaServiceCategory.setDescription('This attribute is assigned for each different type of service within which this Dna is configured. It is placed into the Service Category attribute in the accounting record by both ends of the Vc.') gvcIfDnaPacketSizes = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(2, 2)).setFixedLength(2).clone(hexValue="ff80")).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaPacketSizes.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaPacketSizes.setDescription('This attribute indicates the allowable packet sizes supported for call setup using this Dna. CCITT recommends that packet size 128 always be supported. Description of bits: n16(0) n32(1) n64(2) n128(3) n256(4) n512(5) n1024(6) n2048(7) n4096(8)') gvcIfDnaDefaultRecvFrmNetworkPacketSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12))).clone('n4096')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkPacketSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkPacketSize.setDescription('This attribute indicates the default local receive packet size from network to DTE for all calls using this particular Dna.') gvcIfDnaDefaultSendToNetworkPacketSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=NamedValues(("n16", 4), ("n32", 5), ("n64", 6), ("n128", 7), ("n256", 8), ("n512", 9), ("n1024", 10), ("n2048", 11), ("n4096", 12))).clone('n4096')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkPacketSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkPacketSize.setDescription('This attribute indicates the default local send packet size from DTE to network for all calls using this particular Dna.') gvcIfDnaDefaultRecvFrmNetworkThruputClass = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(13)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkThruputClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkThruputClass.setDescription('This attribute indicates the default receive throughput class for all calls using this particular Dna.') gvcIfDnaDefaultSendToNetworkThruputClass = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 15)).clone(13)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkThruputClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkThruputClass.setDescription('This attribute indicates the default send throughput class for all calls using this particular Dna.') gvcIfDnaDefaultRecvFrmNetworkWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkWindowSize.setDescription('This attribute indicates the default number of data packets that can be received by the DTE from the DCE before more packets can be received. This view is oriented with respect to the DTE.') gvcIfDnaDefaultSendToNetworkWindowSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkWindowSize.setDescription('This attribute indicates the number of data packets that can be transmitted from the DTE to the DCE and must be acknowledged before more packets can be transmitted.') gvcIfDnaPacketSizeNegotiation = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("endToEnd", 0), ("local", 1))).clone('local')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaPacketSizeNegotiation.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaPacketSizeNegotiation.setDescription('This attribute, if set to local indicates that packet sizes can be negotiated locally at the interface irrespective of the remote interface. If set to endtoEnd, then local negotiation is not permitted and packet sizes are negotiated between 2 ends of Vc.') gvcIfDnaCugFormat = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("basic", 0), ("extended", 1))).clone('basic')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugFormat.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugFormat.setDescription('This attribute specifies which Cug format is used when DTE signals CUG indices, basic or extended. This attribute, if set to extended indicates that the DTE signals and receives CUG indices in extended CUG format. If set to a value of basic, then the DTE signals and receives CUG indices in the basic CUG format.') gvcIfDnaAccountClass = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 16), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaAccountClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAccountClass.setDescription('This attribute specifies the accounting class which is reserved for network operations usage. Its value is returned in the accounting record in the local and remote service type attributes. Use of this attribute is decided by network operator and it is an arbitrary number.') gvcIfDnaAccountCollection = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 17), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 1)).setFixedLength(1).clone(hexValue="80")).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaAccountCollection.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAccountCollection.setDescription('This attribute indicates that accounting records are to be collected by the network for the various reasons: billing, test, study, auditing. The last of the parameters, force, indicates that accounting records are to be collected irrespective of other collection reasons. If none of these reasons are set, then accounting will be suppressed. Description of bits: bill(0) test(1) study(2) audit(3) force(4)') gvcIfDnaServiceExchange = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 18), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaServiceExchange.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaServiceExchange.setDescription('This attribute is an arbitrary number, entered by the network operator. The value of serviceExchange is included in the accounting record generated by Vc.') gvcIfDnaCug = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2)) gvcIfDnaCugRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1), ) if mibBuilder.loadTexts: gvcIfDnaCugRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaCug components.') gvcIfDnaCugRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaCugIndex")) if mibBuilder.loadTexts: gvcIfDnaCugRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaCug component.') gvcIfDnaCugRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaCug components. These components can be added and deleted.') gvcIfDnaCugComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaCugComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaCugStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaCugStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaCug tables.') gvcIfDnaCugIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))) if mibBuilder.loadTexts: gvcIfDnaCugIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugIndex.setDescription('This variable represents the index for the gvcIfDnaCug tables.') gvcIfDnaCugCugOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10), ) if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsTable.setDescription('Attributes in this group defines ClosedUserGroup options associated with interlockCode. Dnas with the same Cug (interlockCode) make calls within this group. Various combinations which permit or prevent calls in the same Cug group are defined here.') gvcIfDnaCugCugOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaCugIndex")) if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsEntry.setDescription('An entry in the gvcIfDnaCugCugOptionsTable.') gvcIfDnaCugType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("national", 0), ("international", 1))).clone('national')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugType.setDescription('This attribute specifies the Cug type - the Cug is either a national Cug, or an international Cug. International closed user groups are usually established between DTEs for which there is an X.75 Gateway between; whereas national closed user groups are usually established between DTEs for which there is no X.75 Gateway between. (National Cugs cannot normally traverse an X.75 Gateway). If this attribute is set to national, then the Cug is a national Cug, in which case, the dnic should be left at its default value since it is not part of a national Cug. If this attribute is set to international, then the Cug is an international Cug, in which case, the dnic should be set appropriately as part of the Cug interlockCode.') gvcIfDnaCugDnic = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4).clone(hexValue="30303030")).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugDnic.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugDnic.setDescription('This attribute specifies the dnic (Data Network ID Code) the Cug by which packet networks are identified. This attribute is not applicable if the Cug is a national Cug, as specified by the Cug type attribute. There are usually 1 or 2 dnics assigned per country, for public networks. The U.S. is an exception where each BOC has a dnic. Also, a group of private networks can have its own dnic. dnic value is not an arbitrary number. It is assigned by international agreement and controlled by CCITT.') gvcIfDnaCugInterlockCode = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugInterlockCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugInterlockCode.setDescription('This attribute specifies the Cug identifier of a national or international Cug call. It is an arbitrary number and it also can be called Cug in some descriptions. Interfaces (Dnas) with this number can make calls to Dnas with the same interlockCode.') gvcIfDnaCugPreferential = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("no", 0), ("yes", 1))).clone('no')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugPreferential.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugPreferential.setDescription('This attribute, if set to yes indicates that this Cug is the preferential Cug, in which case it will be used during the call establishment phase if the DTE has not explicitly specified a Cug index in the call request packet. If set to no, then this Cug is not the preferential Cug. Only one of the Cugs associated with a particular Dna can be the preferential Cug - only one Cug can have this attribute set to yes.') gvcIfDnaCugOutCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugOutCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugOutCalls.setDescription("This attribute, if set to allowed indicates that outgoing calls (from the DTE into the network) be made using this particular Cug. If set to a value of disallowed, then outgoing calls cannot be made using this Cug - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Outgoing Calls Barred' feature for Cugs in that outgoing calls are barred if this attribute is set to a value of disallowed.") gvcIfDnaCugIncCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disallowed", 0), ("allowed", 1))).clone('allowed')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugIncCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugIncCalls.setDescription("This attribute, if set to allowed indicates that incoming calls (from the network to the DTE) be made using this particular Cug. If set to disallowed, then incoming calls cannot be made using this Cug - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Incoming Calls Barred' feature for Cugs in that incoming calls are barred if this attribute is set to a value of disallowed.") gvcIfDnaCugPrivileged = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("no", 0), ("yes", 1))).clone('yes')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaCugPrivileged.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugPrivileged.setDescription('This attribute, if set to yes indicates that this Cug is a privileged Cug. In DPN, at least one side of a call setup within a Cug must have the Cug as a privileged Cug. If set to no, then the Cug is not privileged. If both the local DTE and the remote DTE subscribe to the Cug, but it is not privileged, then the call will be cleared. This attribute is typically used for a host DTE which must accept calls from many other DTEs in which case the other DTEs cannot call one another, but can call the host. In this example, the host would have the privileged Cug, and the other DTEs would belong to the same Cug, but it would not be privileged.') gvcIfDnaHgM = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3)) gvcIfDnaHgMRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1), ) if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaHgM components.') gvcIfDnaHgMRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMIndex")) if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaHgM component.') gvcIfDnaHgMRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaHgMRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaHgM components. These components can be added and deleted.') gvcIfDnaHgMComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaHgMStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaHgM tables.') gvcIfDnaHgMIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDnaHgMIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIndex.setDescription('This variable represents the index for the gvcIfDnaHgM tables.') gvcIfDnaHgMIfTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10), ) if mibBuilder.loadTexts: gvcIfDnaHgMIfTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIfTable.setDescription('This group contains the interface parameters between the HuntGroupMember and the Hunt Group server.') gvcIfDnaHgMIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMIndex")) if mibBuilder.loadTexts: gvcIfDnaHgMIfEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIfEntry.setDescription('An entry in the gvcIfDnaHgMIfTable.') gvcIfDnaHgMAvailabilityUpdateThreshold = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096)).clone(1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityUpdateThreshold.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityUpdateThreshold.setDescription('This attribute indicates the number of channels that have to be freed or occupied before the Availability Message Packet (AMP) is sent to the Hunt Group Server informing it of the status of this interface.') gvcIfDnaHgMOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11), ) if mibBuilder.loadTexts: gvcIfDnaHgMOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMOpTable.setDescription('This group contains the operational attributes of the HuntGroupMember component.') gvcIfDnaHgMOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMIndex")) if mibBuilder.loadTexts: gvcIfDnaHgMOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMOpEntry.setDescription('An entry in the gvcIfDnaHgMOpTable.') gvcIfDnaHgMAvailabilityDelta = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-4096, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityDelta.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityDelta.setDescription('This attribute indicates the net change in the available link station connections since the last Availability Message Packet (AMP) was sent to the Hunt Group. Once the absolute value of this attribute reaches the availabilityUpdateThreshold an AMP is sent to the host and the availabilityDelta is reset to 0. If this attribute is positive it means an increase of the number of available link station connections. If it is negative it means a decrease in the number of available link station connections.') gvcIfDnaHgMMaxAvailableLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMMaxAvailableLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMMaxAvailableLinkStations.setDescription('This attribute indicates the maximum number of available link station connections that can be established by this HuntGroupMember.') gvcIfDnaHgMAvailableLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMAvailableLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailableLinkStations.setDescription('This attribute indicates the number of available link station connections reported to the hunt group in the Availability Message Packet (AMP). It is incremented by the application when a link station connection is freed and decremented when a link station connection is occupied.') gvcIfDnaHgMHgAddr = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2)) gvcIfDnaHgMHgAddrRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1), ) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaHgMHgAddr components.') gvcIfDnaHgMHgAddrRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMHgAddrIndex")) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaHgMHgAddr component.') gvcIfDnaHgMHgAddrRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaHgMHgAddr components. These components can be added and deleted.') gvcIfDnaHgMHgAddrComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaHgMHgAddrStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaHgMHgAddr tables.') gvcIfDnaHgMHgAddrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1))) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrIndex.setDescription('This variable represents the index for the gvcIfDnaHgMHgAddr tables.') gvcIfDnaHgMHgAddrAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10), ) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrTable.setDescription('This group contains attributes common to all DNAs. Every DNA used in the network is defined with this group of 2 attributes. String of address digits complemented by the NPI.') gvcIfDnaHgMHgAddrAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaHgMHgAddrIndex")) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrEntry.setDescription('An entry in the gvcIfDnaHgMHgAddrAddrTable.') gvcIfDnaHgMHgAddrNumberingPlanIndicator = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrNumberingPlanIndicator.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrNumberingPlanIndicator.setDescription('This attribute indicates the Numbering Plan Indicator (NPI) the Dna that is entered. Address may belong to X.121 or E.164 plans.') gvcIfDnaHgMHgAddrDataNetworkAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1, 2), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrDataNetworkAddress.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrDataNetworkAddress.setDescription('This attribute contains digits which form unique identifier of the customer interface. It can be compared (approximation only) telephone number where phone number identifies unique telephone set. Dna digits are selected and assigned by network operators.') gvcIfDnaDdm = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4)) gvcIfDnaDdmRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1), ) if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaDdm components.') gvcIfDnaDdmRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaDdmIndex")) if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaDdm component.') gvcIfDnaDdmRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaDdm components. These components can be added and deleted.') gvcIfDnaDdmComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaDdmStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaDdm tables.') gvcIfDnaDdmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDnaDdmIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmIndex.setDescription('This variable represents the index for the gvcIfDnaDdm tables.') gvcIfDnaDdmLanAdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10), ) if mibBuilder.loadTexts: gvcIfDnaDdmLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvcIfDnaDdmLanAdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaDdmIndex")) if mibBuilder.loadTexts: gvcIfDnaDdmLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLanAdEntry.setDescription('An entry in the gvcIfDnaDdmLanAdTable.') gvcIfDnaDdmMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvcIfDnaDdmSap = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(2, 254)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvcIfDnaDdmDmoTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11), ) if mibBuilder.loadTexts: gvcIfDnaDdmDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDmoTable.setDescription('This group defines the device monitoring options.') gvcIfDnaDdmDmoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaDdmIndex")) if mibBuilder.loadTexts: gvcIfDnaDdmDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDmoEntry.setDescription('An entry in the gvcIfDnaDdmDmoTable.') gvcIfDnaDdmDeviceMonitoring = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvcIfDnaDdmClearVcsWhenUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvcIfDnaDdmDeviceMonitoringTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)).clone(15)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaDdmTestResponseTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaDdmMaximumTestRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaDdmMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaDdmDevOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12), ) if mibBuilder.loadTexts: gvcIfDnaDdmDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvcIfDnaDdmDevOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaDdmIndex")) if mibBuilder.loadTexts: gvcIfDnaDdmDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDevOpEntry.setDescription('An entry in the gvcIfDnaDdmDevOpTable.') gvcIfDnaDdmDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("unreachable", 0), ("reachable", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvcIfDnaDdmActiveLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvcIfDnaDdmLastTimeUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 3), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvcIfDnaDdmLastTimeReachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvcIfDnaDdmDeviceUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvcIfDnaDdmMonitoringLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaDdmMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvcIfDnaSdm = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5)) gvcIfDnaSdmRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1), ) if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaSdm components.') gvcIfDnaSdmRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaSdmIndex")) if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaSdm component.') gvcIfDnaSdmRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaSdm components. These components can be added and deleted.') gvcIfDnaSdmComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDnaSdmStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaSdm tables.') gvcIfDnaSdmIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))) if mibBuilder.loadTexts: gvcIfDnaSdmIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmIndex.setDescription('This variable represents the index for the gvcIfDnaSdm tables.') gvcIfDnaSdmLanAdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10), ) if mibBuilder.loadTexts: gvcIfDnaSdmLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvcIfDnaSdmLanAdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaSdmIndex")) if mibBuilder.loadTexts: gvcIfDnaSdmLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLanAdEntry.setDescription('An entry in the gvcIfDnaSdmLanAdTable.') gvcIfDnaSdmMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvcIfDnaSdmSap = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1, 3), Hex().subtype(subtypeSpec=ValueRangeConstraint(2, 254)).clone(4)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvcIfDnaSdmDmoTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11), ) if mibBuilder.loadTexts: gvcIfDnaSdmDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDmoTable.setDescription('This group defines the device monitoring options.') gvcIfDnaSdmDmoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaSdmIndex")) if mibBuilder.loadTexts: gvcIfDnaSdmDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDmoEntry.setDescription('An entry in the gvcIfDnaSdmDmoTable.') gvcIfDnaSdmDeviceMonitoring = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvcIfDnaSdmClearVcsWhenUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvcIfDnaSdmDeviceMonitoringTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)).clone(15)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaSdmTestResponseTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaSdmMaximumTestRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDnaSdmMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDnaSdmDevOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12), ) if mibBuilder.loadTexts: gvcIfDnaSdmDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvcIfDnaSdmDevOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDnaSdmIndex")) if mibBuilder.loadTexts: gvcIfDnaSdmDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDevOpEntry.setDescription('An entry in the gvcIfDnaSdmDevOpTable.') gvcIfDnaSdmDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("unreachable", 0), ("reachable", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvcIfDnaSdmActiveLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvcIfDnaSdmLastTimeUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 3), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvcIfDnaSdmLastTimeReachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvcIfDnaSdmDeviceUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvcIfDnaSdmMonitoringLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDnaSdmMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvcIfRg = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6)) gvcIfRgRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1), ) if mibBuilder.loadTexts: gvcIfRgRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfRg components.') gvcIfRgRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRgIndex")) if mibBuilder.loadTexts: gvcIfRgRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfRg component.') gvcIfRgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRgRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfRg components. These components can be added and deleted.') gvcIfRgComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRgComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfRgStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRgStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgStorageType.setDescription('This variable represents the storage type value for the gvcIfRg tables.') gvcIfRgIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 0))) if mibBuilder.loadTexts: gvcIfRgIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIndex.setDescription('This variable represents the index for the gvcIfRg tables.') gvcIfRgIfEntryTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10), ) if mibBuilder.loadTexts: gvcIfRgIfEntryTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfEntryTable.setDescription('This group contains the provisionable attributes for the ifEntry.') gvcIfRgIfEntryEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRgIndex")) if mibBuilder.loadTexts: gvcIfRgIfEntryEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfEntryEntry.setDescription('An entry in the gvcIfRgIfEntryTable.') gvcIfRgIfAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3))).clone('up')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRgIfAdminStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfAdminStatus.setDescription('The desired state of the interface. The up state indicates the interface is operational. The down state indicates the interface is not operational. The testing state indicates that no operational packets can be passed.') gvcIfRgIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1, 2), InterfaceIndex().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRgIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfIndex.setDescription('This is the index for the IfEntry. Its value is automatically initialized during the provisioning process.') gvcIfRgProvTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11), ) if mibBuilder.loadTexts: gvcIfRgProvTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgProvTable.setDescription('This group contains the provisioned attributes in the remote group component.') gvcIfRgProvEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRgIndex")) if mibBuilder.loadTexts: gvcIfRgProvEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgProvEntry.setDescription('An entry in the gvcIfRgProvTable.') gvcIfRgLinkToProtocolPort = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11, 1, 1), Link()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfRgLinkToProtocolPort.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgLinkToProtocolPort.setDescription('This attribute specifies a two way link between this GvcIf RemoteGroup and a VirtualRouter/n ProtocolPort/name component which enables the communication between WAN addressable devices and LAN addressable devices.') gvcIfRgOperStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12), ) if mibBuilder.loadTexts: gvcIfRgOperStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgOperStatusTable.setDescription('This group includes the Operational Status attribute. This attribute defines the current operational state of this component.') gvcIfRgOperStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfRgIndex")) if mibBuilder.loadTexts: gvcIfRgOperStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgOperStatusEntry.setDescription('An entry in the gvcIfRgOperStatusTable.') gvcIfRgSnmpOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("testing", 3))).clone('up')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfRgSnmpOperStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgSnmpOperStatus.setDescription('The current state of the interface. The up state indicates the interface is operational and capable of forwarding packets. The down state indicates the interface is not operational, thus unable to forward packets. testing state indicates that no operational packets can be passed.') gvcIfDlci = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7)) gvcIfDlciRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1), ) if mibBuilder.loadTexts: gvcIfDlciRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlci components.') gvcIfDlciRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlci component.') gvcIfDlciRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlci components. These components can be added and deleted.') gvcIfDlciComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStorageType.setDescription('This variable represents the storage type value for the gvcIfDlci tables.') gvcIfDlciIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 4095))) if mibBuilder.loadTexts: gvcIfDlciIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciIndex.setDescription('This variable represents the index for the gvcIfDlci tables.') gvcIfDlciStateTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10), ) if mibBuilder.loadTexts: gvcIfDlciStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStateTable.setDescription('This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvcIfDlciStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStateEntry.setDescription('An entry in the gvcIfDlciStateTable.') gvcIfDlciAdminState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("locked", 0), ("unlocked", 1), ("shuttingDown", 2))).clone('unlocked')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvcIfDlciOperationalState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvcIfDlciUsageState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("idle", 0), ("active", 1), ("busy", 2))).clone('idle')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvcIfDlciAbitTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11), ) if mibBuilder.loadTexts: gvcIfDlciAbitTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAbitTable.setDescription('This group contains the A-Bit status information for this Data Link Connection Identifier. A-Bit status information is only applicable for PVCs. For SVCs, the values of attributes under this group are all notApplicable.') gvcIfDlciAbitEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciAbitEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAbitEntry.setDescription('An entry in the gvcIfDlciAbitTable.') gvcIfDlciABitStatusFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("inactive", 0), ("active", 1), ("notApplicable", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciABitStatusFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitStatusFromNetwork.setDescription('This attribute indicates the most recent A-bit status received from the subnet. The A-bit status is part of the LMI protocol. It indicates willingness to accept data from the Protocol Port associated with this GvcIf. When an inactive status is sent out, the Frame Relay service discards any data offered from the Protocol Port. When an active status is sent out, the Frame Relay service tries to process all data offered from the Protocol Port.') gvcIfDlciABitReasonFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("notApplicable", 0), ("remoteUserSignaled", 1), ("localLmiError", 2), ("remoteLmiError", 3), ("localLinkDown", 4), ("remoteLinkDown", 5), ("pvcDown", 6)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciABitReasonFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitReasonFromNetwork.setDescription('This attribute indicates the reason (if any) for an inactive status to be sent to the Protocol Port associated with this GvcIf. This reason is notapplicable for an active status.') gvcIfDlciABitStatusToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("inactive", 0), ("active", 1), ("notApplicable", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciABitStatusToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitStatusToNetwork.setDescription('This attribute indicates the most recent A-Bit status sent from this GvcIf to the subnet.') gvcIfDlciABitReasonToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 4, 7))).clone(namedValues=NamedValues(("notApplicable", 0), ("remoteUserSignaled", 1), ("localLmiError", 2), ("localLinkDown", 4), ("missingFromLmiReport", 7)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciABitReasonToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitReasonToNetwork.setDescription('This attribute indicates the reason (if any) for an inactive status to be sent to the subnet from this GvcIf. This reason is not applicable for an active status.') gvcIfDlciStatsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12), ) if mibBuilder.loadTexts: gvcIfDlciStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStatsTable.setDescription('This group contains the operational statistics for the DLCI.') gvcIfDlciStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStatsEntry.setDescription('An entry in the gvcIfDlciStatsTable.') gvcIfDlciFrmFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciFrmFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmFromNetwork.setDescription('This attribute counts the frames received from the subnet and sent to the Protocol Port associated with this GvcIf. When the maximum count is exceeded the count wraps to zero.') gvcIfDlciFrmToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 2), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciFrmToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmToNetwork.setDescription('This attribute counts the frames sent to the subnet. When the maximum count is exceeded the count wraps to zero.') gvcIfDlciFrmDiscardToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 3), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciFrmDiscardToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmDiscardToNetwork.setDescription('This attribute counts the frames which were received from the Protocol Port and discarded due to the aBitStatusFromNetwork being in an inactive state. When this count exceeds the maximum, it wraps to zero.') gvcIfDlciFramesWithUnknownSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 4), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciFramesWithUnknownSaps.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFramesWithUnknownSaps.setDescription('This attribute counts the number of frames received from the subnet on a BNN DLCI VC containing an (lSap,rSap) pair that does not match any SapMapping component index.') gvcIfDlciOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13), ) if mibBuilder.loadTexts: gvcIfDlciOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperTable.setDescription('This group contains the Dlci operational attributes.') gvcIfDlciOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperEntry.setDescription('An entry in the gvcIfDlciOperTable.') gvcIfDlciEncapsulationType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("ban", 0), ("bnn", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciEncapsulationType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciEncapsulationType.setDescription('This attribute indicates the encapsulation type used on this Dlci. ban indicates that SNA frames exchanged on the VC are encapsulated in RFC 1490 BAN format. ban indicates that SNA frames exchanged on the VC are encapsulated in RFC 1490 BNN format.') gvcIfDlciLocalDeviceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 2), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLocalDeviceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLocalDeviceMac.setDescription('This attribute indicates the MAC of the device located on this side of the VC, normally the host device. This address is inserted in the Destination Address (DA) field of the 802.5 frames sent, typically to a Token Ring interface. This address is expected in the SA field of the frames received from the local LAN. When this attribute is not empty All Route Explorer (ARE) and Single Route Explorer (SRE) frames received from the local LAN must have the SA field matching it, otherwise they are discarded.') gvcIfDlciRemoteDeviceMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 3), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciRemoteDeviceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRemoteDeviceMac.setDescription('This attribute indicates the MAC of the device located at the far end of the VC. This is normally the host device. This address is inserted in the source address (SA) field of the 802.5 frames sent typically on a token ring interface. This address is expected in the destination address (DA) field of the 802.5 frames received, typically from a token ring interface. When this attribute is defined All Route Explorer (ARE) and Single Route Explorer (SRE) frames received from the local LAN must have the DA field matching it, otherwise they are discarded.') gvcIfDlciSpOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14), ) if mibBuilder.loadTexts: gvcIfDlciSpOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpOpTable.setDescription('This group contains the actual service parameters in use for this instance of Dlci.') gvcIfDlciSpOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex")) if mibBuilder.loadTexts: gvcIfDlciSpOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpOpEntry.setDescription('An entry in the gvcIfDlciSpOpTable.') gvcIfDlciRateEnforcement = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1))).clone('off')).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRateEnforcement.setDescription('This attribute indicates whether rate enforcement is in use for this Dlci.') gvcIfDlciCommittedInformationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 2), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciCommittedInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciCommittedInformationRate.setDescription('This attribute indicates the current effective committed information rate (cir) in bits per second (bit/s). cir is the rate at which the network agrees to transfer data with Discard Eligiblity indication DE=0 under normal conditions. This attribute should be ignored when rateEnforcement is off.') gvcIfDlciCommittedBurstSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 3), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciCommittedBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciCommittedBurstSize.setDescription('This attribute indicates the committed burst size (bc) in bits. bc is the amount of data that the network agrees to transfer under normal conditions over a measurement interval (t). bc is used for data with Discard Eligibility indication DE=0. DE=1 data does not use bc at all, excessBurstSize if is used instead. This attribute should be ignored when rateEnforcement is off.') gvcIfDlciExcessInformationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciExcessInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciExcessInformationRate.setDescription('This attribute indicates the current effective excess information rate (eir) in bits per second (bit/s). eir is the rate at which the network agrees to transfer data with Discard Eligibility indication DE=1 under normal conditions. DE can be set by the user or the network. DE indication of a data frame is set to 1 by the network after cir has been exceeded while eir is still available for data transfer.') gvcIfDlciExcessBurstSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 2048000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciExcessBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciExcessBurstSize.setDescription('This attribute indicates the excess burst size (be) in bits. be is the amount of uncommitted data that the network will attempt to deliver over measurement interval (t). Data marked DE=1 by the user or by the network is accounted for here. This attribute should be ignored when rateEnforcement is off.') gvcIfDlciMeasurementInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 6), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 25500))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciMeasurementInterval.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciMeasurementInterval.setDescription('This attribute indicates the time interval (in milliseconds) over which rates and burst sizes are measured. This attribute should be ignored when rateEnforcement is off.') gvcIfDlciDc = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2)) gvcIfDlciDcRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1), ) if mibBuilder.loadTexts: gvcIfDlciDcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciDc components.') gvcIfDlciDcRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciDcIndex")) if mibBuilder.loadTexts: gvcIfDlciDcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciDc component.') gvcIfDlciDcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciDcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciDc components. These components cannot be added nor deleted.') gvcIfDlciDcComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciDcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciDcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciDcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciDc tables.') gvcIfDlciDcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciDcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcIndex.setDescription('This variable represents the index for the gvcIfDlciDc tables.') gvcIfDlciDcOptionsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10), ) if mibBuilder.loadTexts: gvcIfDlciDcOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcOptionsTable.setDescription('Options group defines attributes associated with direct call. It defines complete connection in terms of path and call options. This connection can be permanent (PVC).') gvcIfDlciDcOptionsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciDcIndex")) if mibBuilder.loadTexts: gvcIfDlciDcOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcOptionsEntry.setDescription('An entry in the gvcIfDlciDcOptionsTable.') gvcIfDlciDcRemoteNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1))).clone('x121')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcRemoteNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteNpi.setDescription('This attribute specifies the numbering plan used in the remoteDna.') gvcIfDlciDcRemoteDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 4), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcRemoteDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDna.setDescription('This attribute specifies the Data Network Address (Dna) of the remote. This is the called (destination) DTE address (Dna) to which this direct call will be sent.') gvcIfDlciDcRemoteDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcRemoteDlci.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDlci.setDescription('This attribute specifies the remote DLCI (Logical Channel Number) - it is used only for PVCs, where attribute type is set to permanentMaster or permanentSlave or permanentBackupSlave.') gvcIfDlciDcType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("permanentMaster", 1), ("permanentSlave", 2), ("permanentBackupSlave", 3), ("permanentSlaveWithBackup", 4))).clone('permanentMaster')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcType.setDescription('This attribute specifies the type of Vc call: permanentMaster, permanentSlave, permanentSlaveWithBackup, permanentBackupSlave. If the value is set to permanentMaster, then a permanent connection will be established between 2 ends. The remote end must be defined as a permanentSlave, permanentBackupSlave or permanentSlaveWithBackup. The connection cannot be established if the remote end is defined as anything else. The end defined as permanentMaster always initiates the calls. It will attempt to call once per minute. If the value is set to permanentSlave then a permanent connection will be established between 2 ends. The remote end must be defined as a permanentMaster. The connection cannot be established if the remote end is defined as anything else. The permanentSlave end will attempt to call once per minute. If the value is set to permanentSlaveWithBackup then a permanent connection will be established between the 2 ends . The remote end must be defined as a permanentMaster. The Connection cannot be established if the remote end is defined as anything else. The permanentSlaveWithBackup end will attempt to call once per minute. If the value is set to permanentBackupSlave then a permanent connection will be established between the 2 ends only if the permanentMaster end is disconnected from the permanentSlaveWithBackup end and a backup call is established by the redirection system. If the permanentSlaveWithBackup interface becomes visible again, the permanentBackupSlave end is disconnected and the permanentSlaveWithBackup end is reconnected to the permanentMaster end. The permanentBackupSlave end does not try to establish pvc call.') gvcIfDlciDcTransferPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 9, 255))).clone(namedValues=NamedValues(("normal", 0), ("high", 9), ("useDnaDefTP", 255))).clone('useDnaDefTP')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcTransferPriority.setDescription('This attribute specifies the transfer priority to network for the outgoing calls using this particular DLCI. It overRides the defaultTransferPriority provisioned in its associated Dna component. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, the routing metric is set to throughput. The default of transferPriority is useDnaDefTP. It means using the provisioning value under defaultTransferPriority of its associated Dna for this DLCI.') gvcIfDlciDcDiscardPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 3))).clone(namedValues=NamedValues(("normal", 0), ("high", 1), ("useDnaDefPriority", 3))).clone('useDnaDefPriority')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcDiscardPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcDiscardPriority.setDescription('This attribute specifies the discard priority for outgoing call using this DLCI. The discard priority has three provisioning values: normal, high, and useDnaDefPriority. Traffic with normal priority is discarded first than the traffic with high priority. The Dna default value (provisioned by outDefaultPriority) is taken if this attribute is set to the value useDnaDefPriority. The default of discardPriority is useDnaDefPriority.') gvcIfDlciDcNfaTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482), ) if mibBuilder.loadTexts: gvcIfDlciDcNfaTable.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaTable.setDescription('Two explicit attributes discardPriority and transferPriority are created to replace H.01 and H.30 in the group VcsDirectCallOptionsProv of this file. The migrate escape here (DcComponent::migrateFaxEscape) propagates the old provisioning data under H.01 and H.30 into discardPriority and transferPriority. The rule of the above propagation are: 0 in H.01 is equivalent to discardPriority 0; 1 in H.01 is equivalent to discardPriority 1. And 0 in H.30 is equivalent to transferPriority normal; 1 in H.30 is equivalent to transferPriority high. Please refer to discardPriority and transferPriority for more information on how to use them.') gvcIfDlciDcNfaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciDcIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciDcNfaIndex")) if mibBuilder.loadTexts: gvcIfDlciDcNfaEntry.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaEntry.setDescription('An entry in the gvcIfDlciDcNfaTable.') gvcIfDlciDcNfaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(1, 1), ValueRangeConstraint(48, 48), ))) if mibBuilder.loadTexts: gvcIfDlciDcNfaIndex.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaIndex.setDescription('This variable represents the index for the gvcIfDlciDcNfaTable.') gvcIfDlciDcNfaValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 2), HexString().subtype(subtypeSpec=ValueSizeConstraint(0, 128))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciDcNfaValue.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaValue.setDescription('This variable represents an individual value for the gvcIfDlciDcNfaTable.') gvcIfDlciDcNfaRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 3), RowStatus()).setMaxAccess("writeonly") if mibBuilder.loadTexts: gvcIfDlciDcNfaRowStatus.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the gvcIfDlciDcNfaTable.') gvcIfDlciVc = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3)) gvcIfDlciVcRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1), ) if mibBuilder.loadTexts: gvcIfDlciVcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciVc components.') gvcIfDlciVcRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcIndex")) if mibBuilder.loadTexts: gvcIfDlciVcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciVc component.') gvcIfDlciVcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciVc components. These components cannot be added nor deleted.') gvcIfDlciVcComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciVcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciVc tables.') gvcIfDlciVcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciVcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIndex.setDescription('This variable represents the index for the gvcIfDlciVc tables.') gvcIfDlciVcCadTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10), ) if mibBuilder.loadTexts: gvcIfDlciVcCadTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCadTable.setDescription('This group represents operational call data related to Frame Relay Vc. It can be displayed only for Frame Relay Vc which is created by application.') gvcIfDlciVcCadEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcIndex")) if mibBuilder.loadTexts: gvcIfDlciVcCadEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCadEntry.setDescription('An entry in the gvcIfDlciVcCadTable.') gvcIfDlciVcType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("svc", 0), ("pvc", 1), ("spvc", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcType.setDescription('This attribute displays the type of call, pvc,svc or spvc.') gvcIfDlciVcState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("creating", 0), ("readyP1", 1), ("dteWaitingP2", 2), ("dceWaitingP3", 3), ("dataTransferP4", 4), ("unsupportedP5", 5), ("dteClearRequestP6", 6), ("dceClearIndicationP7", 7), ("termination", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcState.setDescription('This attribute displays the state of call control. P5 state is not supported but is listed for completness. Transitions from one state to another take very short time. state most often displayed is dataTransferP4.') gvcIfDlciVcPreviousState = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("creating", 0), ("readyP1", 1), ("dteWaitingP2", 2), ("dceWaitingP3", 3), ("dataTransferP4", 4), ("unsupportedP5", 5), ("dteClearRequestP6", 6), ("dceClearIndicationP7", 7), ("termination", 8)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPreviousState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPreviousState.setDescription('This attribute displays the previous state of call control. This is a valuable field to determine how the processing is progressing.') gvcIfDlciVcDiagnosticCode = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvcIfDlciVcPreviousDiagnosticCode = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPreviousDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPreviousDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvcIfDlciVcCalledNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCalledNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the called end.') gvcIfDlciVcCalledDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 7), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCalledDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledDna.setDescription('This attribute displays the Data Network Address (Dna) of the called (destination) DTE to which this call is sent. This address if defined at recieving end will complete Vc connection.') gvcIfDlciVcCalledLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCalledLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledLcn.setDescription('This attribute displays the Logical Channel Number of the called end. It is valid only after both ends of Vc exchanged relevant information.') gvcIfDlciVcCallingNpi = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("x121", 0), ("e164", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCallingNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the calling end.') gvcIfDlciVcCallingDna = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 10), DigitString().subtype(subtypeSpec=ValueSizeConstraint(1, 15))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCallingDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingDna.setDescription('This attribute displays the Data Network Address (Dna) of the calling end.') gvcIfDlciVcCallingLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCallingLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingLcn.setDescription('This attribute displays the Logical Channel Number of the calling end.') gvcIfDlciVcAccountingEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("yes", 0), ("no", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnabled.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnabled.setDescription('This attribute indicates that this optional section of accounting record is suppressed or permitted. If accountingEnabled is yes, conditions for generation of accounting record were met. These conditions include billing options, vc recovery conditions and Module wide accounting data options.') gvcIfDlciVcFastSelectCall = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("no", 0), ("yes", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcFastSelectCall.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFastSelectCall.setDescription('This attribute displays that this is a fast select call.') gvcIfDlciVcPathReliability = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("high", 0), ("normal", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPathReliability.setDescription('This attribute displays the path reliability.') gvcIfDlciVcAccountingEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("callingEnd", 0), ("calledEnd", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnd.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnd.setDescription('This attribute indicates if this end should generate an accounting record. Normally, callingEnd is the end to generate an accounting record.') gvcIfDlciVcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("normal", 0), ("high", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPriority.setDescription('This attribute displays whether the call is a normal or a high priority call.') gvcIfDlciVcSegmentSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcSegmentSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentSize.setDescription('This attribute displays the segment size (in bytes) used on the call. It is used to calculate the number of segments transmitted and received.') gvcIfDlciVcMaxSubnetPktSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 27), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4096))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcMaxSubnetPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcMaxSubnetPktSize.setDescription('This attribute indicates the maximum packet size allowed on the Vc.') gvcIfDlciVcRcosToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("throughput", 0), ("delay", 1), ("multimedia", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcRcosToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRcosToNetwork.setDescription('This attribute indicates the routing metric routing class of service to the network.') gvcIfDlciVcRcosFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("throughput", 0), ("delay", 1), ("multimedia", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcRcosFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRcosFromNetwork.setDescription('This attribute displays the routing metric Routing Class of Service from the Network.') gvcIfDlciVcEmissionPriorityToNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("normal", 0), ("high", 1), ("interrupting", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityToNetwork.setDescription('This attribute displays the network internal emission priotity to the network.') gvcIfDlciVcEmissionPriorityFromNetwork = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("normal", 0), ("high", 1), ("interrupting", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityFromNetwork.setDescription('This attribute displays the network internal emission priotity from the network.') gvcIfDlciVcDataPath = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 32), AsciiString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcDataPath.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDataPath.setDescription('This attribute indicates the data path used by the connection. The data path is provisioned in Dna and DirectCall components. The displayed value of this attribute can be different from the provisioned value. If the connection is using dprsOnly data path, the string dprsOnly is displayed. (dynamic packet routing system) If the connection is using dprsMcsOnly data path, the string dprsMcsOnly is displayed. If the connection is using dprsMcsFirst data path, the string dprsMcsFirst is displayed.') gvcIfDlciVcIntdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11), ) if mibBuilder.loadTexts: gvcIfDlciVcIntdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIntdTable.setDescription('This group defines display of interval data collected by Vc. Data in this group is variable and may depend on time when this display command is issued.') gvcIfDlciVcIntdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcIndex")) if mibBuilder.loadTexts: gvcIfDlciVcIntdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIntdEntry.setDescription('An entry in the gvcIfDlciVcIntdTable.') gvcIfDlciVcCallReferenceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 1), Hex().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCallReferenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallReferenceNumber.setDescription('This attribute displays the call reference number which is a unique number generated by the switch.The same Call Reference Number is stored in the interval data (accounting record) at both ends of the call. It can be used as one of the attributes in matching duplicate records generated at each end of the call.') gvcIfDlciVcElapsedTimeTillNow = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcElapsedTimeTillNow.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcElapsedTimeTillNow.setDescription('This attribute displays the elapsed time representing the period of this interval data. It is elapsed time in 0.1 second increments since Vc started.') gvcIfDlciVcSegmentsRx = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcSegmentsRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsRx.setDescription('This attribute displays the number of segments received at the time command was issued. This is the segment received count maintained by accounting at each end of the Vc. This counter is updated only when the packet cannot be successfully delivered out of the sink Vc and to the sink AP Conditions in which packets may be discarded by the sink Vc include: missing packets due to subnet discards, segmentation protocol violations due to subnet discard, duplicated and out-of-ranged packets and packets that arrive while Vc is in path recovery state.') gvcIfDlciVcSegmentsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcSegmentsSent.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsSent.setDescription('This attribute displays the number of segments sent at the time command was issued. This is the segment sent count maintained by accounting at the source Vc. Vc only counts packets that Vc thinks can be delivered successfully into the subnet. In reality, these packets may be dropped by trunking, for instance. This counter is not updated when splitting fails, when Vc is in a path recovery state, when packet forwarding fails to forward this packet and when subsequent packets have to be discarded as we want to minimize the chance of out-of-sequence and do not intentionally send out-of- sequenced packets into the subnet.') gvcIfDlciVcStartTime = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 5), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcStartTime.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcStartTime.setDescription('This attribute displays the start time of this interval period. If Vc spans 12 hour time or time of day change startTime reflects new time as recorded at 12 hour periods or time of day changes.') gvcIfDlciVcFrdTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12), ) if mibBuilder.loadTexts: gvcIfDlciVcFrdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrdTable.setDescription('This group defines Frame Relay attributes collected by Frame Relay Vc. The purpose of Vc attributes is to aid end users and verification people to understand the Vc internal behavior. This is particularly useful when the network has experienced abnormality and we want to isolate problems and pinpoint trouble spots. Attributes are collected on a per Vc basis. Until a need is identified, statistics are not collected at a processor level. Each attribute is stored in a 32 bit field and is initialized to zero when a Vc enters into the data transfer state. When a PVC is disconnected and then connected again, the attributes will be reset. Attributes cannot be reset through other methods. Frame Relay Vc uses a best effort data packet delivery protocol and a different packet segmentation and combination methods from the General Vc. The Frame Relay Vc uses the same call setup and control mechanism (e.g. the support of non-flow control data packets) as in a General Vc. Most General Vc statistics and internal variables are used in a Frame Relay Vc and are displayed by software developers') gvcIfDlciVcFrdEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcIndex")) if mibBuilder.loadTexts: gvcIfDlciVcFrdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrdEntry.setDescription('An entry in the gvcIfDlciVcFrdTable.') gvcIfDlciVcFrmCongestedToSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcFrmCongestedToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrmCongestedToSubnet.setDescription('This attribute displays the number of frames from link discarded due to lack of resources. It keeps track of the number of frames from link that have to be discarded. The discard reasons include insufficient memory for splitting the frame into smaller subnet packet size.') gvcIfDlciVcCannotForwardToSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCannotForwardToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCannotForwardToSubnet.setDescription('This attribute displays the number of discarded packets that can not be forwarded into the subnet because of subnet congestion. Number of frames from link discarded due to failure in forwarding a packet from Vc into the subnet.- This attribute is increased when packet forwarding fails to forward a packet into the subnet. If a frame is split into multiple subnet packets and a partial packet has to be discarded, all subsequent partial packets that have not yet been delivered to the subnet will be discarded as well.') gvcIfDlciVcNotDataXferToSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferToSubnet.setDescription('This attribute records the number of frames from link discarded when the Vc tries to recover from internal path failure.') gvcIfDlciVcOutOfRangeFrmFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcOutOfRangeFrmFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOutOfRangeFrmFromSubnet.setDescription('This attribute displays the number of frames from subnet discarded due to out of sequence range for arriving too late.') gvcIfDlciVcCombErrorsFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcCombErrorsFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCombErrorsFromSubnet.setDescription('This attribute records the number of subnet packets discarded at the sink Vc due to the Vc segmentation and combination protocol error. Usually, this occurs when the subnet discards packets and thus this statistics can be used to guest the number of subnet packets that are not delivered to the Vc. It cannot be used as an actual measure because some subnet packets may have been delivered to Vc but have to be discarded because these are partial packets to a frame in which some other partial packets have not been properly delivered to Vc') gvcIfDlciVcDuplicatesFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcDuplicatesFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDuplicatesFromSubnet.setDescription('This attribute displays the number of subnet packets discarded due to duplication. Although packets are not retransmitted by the Frame Relay Vc, it is possible for the subnet to retransmit packets. When packets are out-of-sequenced and copies of the same packets arrive, then this attribute is increased.') gvcIfDlciVcNotDataXferFromSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferFromSubnet.setDescription('This attribute displays the number of subnet packets discarded when data transfer is suspended in Vc recovery.') gvcIfDlciVcFrmLossTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 9), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcFrmLossTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrmLossTimeouts.setDescription('This attribute displays the number of lost frame timer expiries. When this count is excessive, the network is very congested and packets have been discarded in the subnet.') gvcIfDlciVcOoSeqByteCntExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcOoSeqByteCntExceeded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqByteCntExceeded.setDescription('This attribute displays the number times that the out of sequence byte threshold is exceeded. When the threshold is exceeded, this condition is treated as if the loss frame timer has expired and all frames queued at the sink Vc are delivered to the AP. We need to keep this count to examine if the threshold is engineered properly. This should be used in conjunction with the peak value of out-of- sequenced queue and the number of times the loss frame timer has expired. This count should be relatively small when compared with loss frame timer expiry count.') gvcIfDlciVcPeakOoSeqPktCount = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqPktCount.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqPktCount.setDescription('This attribute displays the frame relay peak packet count of the out of sequence queue. This attribute records the maximum queue length of the out-of-sequenced queue. The counter can be used to deduce the message buffer requirement on a Vc.') gvcIfDlciVcPeakOoSeqFrmForwarded = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 12), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqFrmForwarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqFrmForwarded.setDescription('This attribute displays the frame relay peak size of the sequence packet queue. The subnet may deliver packets out-of- sequenced. These packets are then queued in an out-of-sequenced queue, waiting for a packet with the expected sequence number to come. When that packet arrives, this attribute records the maximum number of packets that were out-of-sequenced, but now have become in-sequenced. The statistics is used to measure expected queue size due to normal subnet packet disorder (not due to subnet packet discard). Current implementation also uses this statistics to set a maximum size for the out-of-sequenced queue.') gvcIfDlciVcSendSequenceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 13), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcSendSequenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSendSequenceNumber.setDescription("This attribute displays the Vc internal packet's send sequence number. Note that a 'packet' in this context, may be either a user data packet, or an OAM frame.") gvcIfDlciVcPktRetryTimeouts = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 15), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPktRetryTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPktRetryTimeouts.setDescription('This attribute displays the number of packets which have retransmission time-outs. When this count is excessive, the network is very congested and packets have been discarded in the subnet.') gvcIfDlciVcPeakRetryQueueSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 16), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPeakRetryQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakRetryQueueSize.setDescription('This attribute displays the peak size of retransmission queue. This attribute is used as an indicator of the acknowledgment behavior across the subnet. Records the largest body of unacknowledged packets.') gvcIfDlciVcSubnetRecoveries = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 17), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcSubnetRecoveries.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSubnetRecoveries.setDescription('This attribute displays the number of successful Vc recovery attempts.') gvcIfDlciVcOoSeqPktCntExceeded = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 19), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcOoSeqPktCntExceeded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqPktCntExceeded.setDescription('This attribute displays the number times that the out of sequence packet threshold is exceeded. When the threshold is exceeded, this condition is treated as if the loss frame timer has expired and all frames queued at the sink Vc are delivered to the AP. We need to keep this count to examine if the threshold is engineered properly. This should be used in conjunction with the peak value of out-of- sequenced queue and the number of times the loss frame timer has expired. This count should be relatively small when compared with loss frame timer expiry count.') gvcIfDlciVcPeakOoSeqByteCount = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 20), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqByteCount.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqByteCount.setDescription('This attribute displays the frame relay peak byte count of the out of sequence queue. This attribute records the maximum queue length of the out-of-sequenced queue. The counter can be used to deduce the message buffer requirement on a Vc.') gvcIfDlciVcDmepTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417), ) if mibBuilder.loadTexts: gvcIfDlciVcDmepTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepTable.setDescription('This attribute displays the data path used by the connection. Data path is provisioned in Dna and DirectCall components. If the connection is using dprsOnly data path, this attribute is empty. If the connection is using dprsMcsOnly or dprsMcsFirst data path, this attribute displays component name of the dprsMcsEndPoint.') gvcIfDlciVcDmepEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciVcDmepValue")) if mibBuilder.loadTexts: gvcIfDlciVcDmepEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepEntry.setDescription('An entry in the gvcIfDlciVcDmepTable.') gvcIfDlciVcDmepValue = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417, 1, 1), RowPointer()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciVcDmepValue.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepValue.setDescription('This variable represents both the value and the index for the gvcIfDlciVcDmepTable.') gvcIfDlciSp = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4)) gvcIfDlciSpRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1), ) if mibBuilder.loadTexts: gvcIfDlciSpRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciSp components.') gvcIfDlciSpRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSpIndex")) if mibBuilder.loadTexts: gvcIfDlciSpRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSp component.') gvcIfDlciSpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSp components. These components can be added and deleted.') gvcIfDlciSpComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSpComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciSpStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSpStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSp tables.') gvcIfDlciSpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciSpIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpIndex.setDescription('This variable represents the index for the gvcIfDlciSp tables.') gvcIfDlciSpParmsTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11), ) if mibBuilder.loadTexts: gvcIfDlciSpParmsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpParmsTable.setDescription('This group contains the provisionable attributes for the Data Link Connection Identifier. These attributes reflect the service parameters specific to this instance of Dlci.') gvcIfDlciSpParmsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSpIndex")) if mibBuilder.loadTexts: gvcIfDlciSpParmsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpParmsEntry.setDescription('An entry in the gvcIfDlciSpParmsTable.') gvcIfDlciSpRateEnforcement = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1))).clone('on')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRateEnforcement.setDescription('This attribute specifies whether rate enforcement is to be used on this DLCI. Turning on rate enforcement means that the data sent from the service to the virtual circuit is subjected to rate control.') gvcIfDlciSpCommittedInformationRate = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50000000)).clone(64000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpCommittedInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpCommittedInformationRate.setDescription('This attribute specifies the committed information rate (cir) in bits per second (bit/s). When rateEnforcement is set to on, cir is the rate at which the network agrees to transfer information under normal conditions. This rate is measured over a measurement interval (t) that is determined internally based on cir and the committed burst size (bc). An exception to this occurs when cir is provisioned to be zero, in which case the measurement interval (t) must be provisioned explicitly. This attribute is ignored when rateEnforcement is off. If rateEnforcement is on and this attribute is 0, bc must also be 0.') gvcIfDlciSpCommittedBurstSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50000000)).clone(64000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpCommittedBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpCommittedBurstSize.setDescription('This attribute specifies the committed burst size (bc) in bits. bc is the amount of data that a network agrees to transfer under normal conditions over a measurement interval (t). Data marked DE=1 is not accounted for in bc. This attribute is ignored when rateEnforcement is off. If rateEnforcement is on and this attribute is 0, cir must also be 0.') gvcIfDlciSpExcessBurstSize = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 50000000))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpExcessBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpExcessBurstSize.setDescription('This attribute specifies the excess burst size (be) in bits. be is the amount of uncommitted data that the network will attempt to deliver over measurement interval (t). Data marked DE=1 by the user or by the network is accounted for here. cir, bc, and be cannot all be 0 when rateEnforcement is on.') gvcIfDlciSpMeasurementInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 25500))).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciSpMeasurementInterval.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpMeasurementInterval.setDescription('This attribute specifies the time interval (in milliseconds) over which rates and burst sizes are measured. When cir and bc are 0 and rateEnforcement is on, this attribute must be provisioned. When cir and bc are non-zero, the time interval is internally calculated. In that situation, this attribute is ignored, and is not representative of the time interval. This attribute is also ignored when rateEnforcement is off. If rateEnforcement is on and both cir and bc are 0, this field must be non-zero.') gvcIfDlciBnn = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5)) gvcIfDlciBnnRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1), ) if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciBnn components.') gvcIfDlciBnnRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciBnnIndex")) if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciBnn component.') gvcIfDlciBnnRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciBnnRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciBnn components. These components can be added and deleted.') gvcIfDlciBnnComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciBnnComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciBnnStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciBnnStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciBnn tables.') gvcIfDlciBnnIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciBnnIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnIndex.setDescription('This variable represents the index for the gvcIfDlciBnn tables.') gvcIfDlciLdev = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6)) gvcIfDlciLdevRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1), ) if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciLdev components.') gvcIfDlciLdevRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciLdevIndex")) if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciLdev component.') gvcIfDlciLdevRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciLdev components. These components can be added and deleted.') gvcIfDlciLdevComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciLdevStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciLdev tables.') gvcIfDlciLdevIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciLdevIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevIndex.setDescription('This variable represents the index for the gvcIfDlciLdev tables.') gvcIfDlciLdevAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10), ) if mibBuilder.loadTexts: gvcIfDlciLdevAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevAddrTable.setDescription('This group defines the LAN MAC address.') gvcIfDlciLdevAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciLdevIndex")) if mibBuilder.loadTexts: gvcIfDlciLdevAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevAddrEntry.setDescription('An entry in the gvcIfDlciLdevAddrTable.') gvcIfDlciLdevMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMac.setDescription('This attribute specifies the MAC of the device located on this side of the PVC, normally the host device. This address is inserted in the Destination Address (DA) field of the 802.5 frames sent typically to a Token Ring interface.') gvcIfDlciLdevDevOpTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11), ) if mibBuilder.loadTexts: gvcIfDlciLdevDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvcIfDlciLdevDevOpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciLdevIndex")) if mibBuilder.loadTexts: gvcIfDlciLdevDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDevOpEntry.setDescription('An entry in the gvcIfDlciLdevDevOpTable.') gvcIfDlciLdevDeviceStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("unreachable", 0), ("reachable", 1)))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvcIfDlciLdevActiveLinkStations = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 5000))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvcIfDlciLdevLastTimeUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 3), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvcIfDlciLdevLastTimeReachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 4), EnterpriseDateAndTime().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(19, 19), ))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvcIfDlciLdevDeviceUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 5), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvcIfDlciLdevMonitoringLcn = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciLdevMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvcIfDlciLdevDmoTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12), ) if mibBuilder.loadTexts: gvcIfDlciLdevDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDmoTable.setDescription('This group defines the device monitoring options.') gvcIfDlciLdevDmoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciLdevIndex")) if mibBuilder.loadTexts: gvcIfDlciLdevDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDmoEntry.setDescription('An entry in the gvcIfDlciLdevDmoTable.') gvcIfDlciLdevDeviceMonitoring = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvcIfDlciLdevClearVcsWhenUnreachable = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvcIfDlciLdevDeviceMonitoringTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 255)).clone(15)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDlciLdevTestResponseTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDlciLdevMaximumTestRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 100)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciLdevMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvcIfDlciRdev = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7)) gvcIfDlciRdevRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1), ) if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciRdev components.') gvcIfDlciRdevRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciRdevIndex")) if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciRdev component.') gvcIfDlciRdevRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciRdevRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciRdev components. These components can be added and deleted.') gvcIfDlciRdevComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciRdevComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciRdevStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciRdevStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciRdev tables.') gvcIfDlciRdevIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfDlciRdevIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevIndex.setDescription('This variable represents the index for the gvcIfDlciRdev tables.') gvcIfDlciRdevAddrTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10), ) if mibBuilder.loadTexts: gvcIfDlciRdevAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevAddrTable.setDescription('This group defines the LAN MAC address.') gvcIfDlciRdevAddrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciRdevIndex")) if mibBuilder.loadTexts: gvcIfDlciRdevAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevAddrEntry.setDescription('An entry in the gvcIfDlciRdevAddrTable.') gvcIfDlciRdevMac = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10, 1, 1), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDlciRdevMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevMac.setDescription("This attribute specifies the MAC address that must be present in the Destination Address (DA) field of the 802.5 frames received (typically from a Token Ring interface) in order for the SNA DLR interface to copy them across this PVC. The MAC address in the frames is not necessarily the real MAC address of the remote device since it could be re-mapped at the remote end of the PVC using the Ddm or Sdm component or the equivalent mapping on another vendor's equipment.") gvcIfDlciSap = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8)) gvcIfDlciSapRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1), ) if mibBuilder.loadTexts: gvcIfDlciSapRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfDlciSap components.') gvcIfDlciSapRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapLocalSapIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapRemoteSapIndex")) if mibBuilder.loadTexts: gvcIfDlciSapRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSap component.') gvcIfDlciSapRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSap components. These components cannot be added nor deleted.') gvcIfDlciSapComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciSapStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSap tables.') gvcIfDlciSapLocalSapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(4, 4), ValueRangeConstraint(8, 8), ValueRangeConstraint(12, 12), ValueRangeConstraint(16, 16), ValueRangeConstraint(20, 20), ValueRangeConstraint(24, 24), ValueRangeConstraint(28, 28), ValueRangeConstraint(32, 32), ValueRangeConstraint(36, 36), ValueRangeConstraint(40, 40), ValueRangeConstraint(44, 44), ValueRangeConstraint(48, 48), ValueRangeConstraint(52, 52), ValueRangeConstraint(56, 56), ValueRangeConstraint(60, 60), ValueRangeConstraint(64, 64), ValueRangeConstraint(68, 68), ValueRangeConstraint(72, 72), ValueRangeConstraint(76, 76), ValueRangeConstraint(80, 80), ValueRangeConstraint(84, 84), ValueRangeConstraint(88, 88), ValueRangeConstraint(92, 92), ValueRangeConstraint(96, 96), ValueRangeConstraint(100, 100), ValueRangeConstraint(104, 104), ValueRangeConstraint(108, 108), ValueRangeConstraint(112, 112), ValueRangeConstraint(116, 116), ValueRangeConstraint(120, 120), ValueRangeConstraint(124, 124), ValueRangeConstraint(128, 128), ValueRangeConstraint(132, 132), ValueRangeConstraint(136, 136), ValueRangeConstraint(140, 140), ValueRangeConstraint(144, 144), ValueRangeConstraint(148, 148), ValueRangeConstraint(152, 152), ValueRangeConstraint(156, 156), ValueRangeConstraint(160, 160), ValueRangeConstraint(164, 164), ValueRangeConstraint(168, 168), ValueRangeConstraint(172, 172), ValueRangeConstraint(176, 176), ValueRangeConstraint(180, 180), ValueRangeConstraint(184, 184), ValueRangeConstraint(188, 188), ValueRangeConstraint(192, 192), ValueRangeConstraint(196, 196), ValueRangeConstraint(200, 200), ValueRangeConstraint(204, 204), ValueRangeConstraint(208, 208), ValueRangeConstraint(212, 212), ValueRangeConstraint(216, 216), ValueRangeConstraint(220, 220), ValueRangeConstraint(232, 232), ValueRangeConstraint(236, 236), ValueRangeConstraint(248, 248), ValueRangeConstraint(252, 252), ))) if mibBuilder.loadTexts: gvcIfDlciSapLocalSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapLocalSapIndex.setDescription('This variable represents an index for the gvcIfDlciSap tables.') gvcIfDlciSapRemoteSapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(4, 4), ValueRangeConstraint(8, 8), ValueRangeConstraint(12, 12), ValueRangeConstraint(16, 16), ValueRangeConstraint(20, 20), ValueRangeConstraint(24, 24), ValueRangeConstraint(28, 28), ValueRangeConstraint(32, 32), ValueRangeConstraint(36, 36), ValueRangeConstraint(40, 40), ValueRangeConstraint(44, 44), ValueRangeConstraint(48, 48), ValueRangeConstraint(52, 52), ValueRangeConstraint(56, 56), ValueRangeConstraint(60, 60), ValueRangeConstraint(64, 64), ValueRangeConstraint(68, 68), ValueRangeConstraint(72, 72), ValueRangeConstraint(76, 76), ValueRangeConstraint(80, 80), ValueRangeConstraint(84, 84), ValueRangeConstraint(88, 88), ValueRangeConstraint(92, 92), ValueRangeConstraint(96, 96), ValueRangeConstraint(100, 100), ValueRangeConstraint(104, 104), ValueRangeConstraint(108, 108), ValueRangeConstraint(112, 112), ValueRangeConstraint(116, 116), ValueRangeConstraint(120, 120), ValueRangeConstraint(124, 124), ValueRangeConstraint(128, 128), ValueRangeConstraint(132, 132), ValueRangeConstraint(136, 136), ValueRangeConstraint(140, 140), ValueRangeConstraint(144, 144), ValueRangeConstraint(148, 148), ValueRangeConstraint(152, 152), ValueRangeConstraint(156, 156), ValueRangeConstraint(160, 160), ValueRangeConstraint(164, 164), ValueRangeConstraint(168, 168), ValueRangeConstraint(172, 172), ValueRangeConstraint(176, 176), ValueRangeConstraint(180, 180), ValueRangeConstraint(184, 184), ValueRangeConstraint(188, 188), ValueRangeConstraint(192, 192), ValueRangeConstraint(196, 196), ValueRangeConstraint(200, 200), ValueRangeConstraint(204, 204), ValueRangeConstraint(208, 208), ValueRangeConstraint(212, 212), ValueRangeConstraint(216, 216), ValueRangeConstraint(220, 220), ValueRangeConstraint(232, 232), ValueRangeConstraint(236, 236), ValueRangeConstraint(248, 248), ValueRangeConstraint(252, 252), ))) if mibBuilder.loadTexts: gvcIfDlciSapRemoteSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRemoteSapIndex.setDescription('This variable represents an index for the gvcIfDlciSap tables.') gvcIfDlciSapCircuit = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2)) gvcIfDlciSapCircuitRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1), ) if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfDlciSapCircuit components.') gvcIfDlciSapCircuitRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapLocalSapIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapRemoteSapIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapCircuitS1MacIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapCircuitS1SapIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapCircuitS2MacIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDlciSapCircuitS2SapIndex")) if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSapCircuit component.') gvcIfDlciSapCircuitRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 1), RowStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSapCircuit components. These components cannot be added nor deleted.') gvcIfDlciSapCircuitComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapCircuitComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDlciSapCircuitStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDlciSapCircuitStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSapCircuit tables.') gvcIfDlciSapCircuitS1MacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1MacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1MacIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvcIfDlciSapCircuitS1SapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 254))) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1SapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1SapIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvcIfDlciSapCircuitS2MacIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 12), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2MacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2MacIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvcIfDlciSapCircuitS2SapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 254))) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2SapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2SapIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvcIfFrSvc = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8)) gvcIfFrSvcRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1), ) if mibBuilder.loadTexts: gvcIfFrSvcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfFrSvc components.') gvcIfFrSvcRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfFrSvcIndex")) if mibBuilder.loadTexts: gvcIfFrSvcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfFrSvc component.') gvcIfFrSvcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfFrSvcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfFrSvc components. These components can be added and deleted.') gvcIfFrSvcComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfFrSvcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfFrSvcStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfFrSvcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcStorageType.setDescription('This variable represents the storage type value for the gvcIfFrSvc tables.') gvcIfFrSvcIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 10), NonReplicated()) if mibBuilder.loadTexts: gvcIfFrSvcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcIndex.setDescription('This variable represents the index for the gvcIfFrSvc tables.') gvcIfFrSvcProvisionedTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11), ) if mibBuilder.loadTexts: gvcIfFrSvcProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcProvisionedTable.setDescription('This group contains the provisonable parameters for the APPN service Frame Relay SVC calls.') gvcIfFrSvcProvisionedEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfFrSvcIndex")) if mibBuilder.loadTexts: gvcIfFrSvcProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcProvisionedEntry.setDescription('An entry in the gvcIfFrSvcProvisionedTable.') gvcIfFrSvcMaximumFrameRelaySvcs = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 3072)).clone(1000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfFrSvcMaximumFrameRelaySvcs.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcMaximumFrameRelaySvcs.setDescription('This attribute specifies the maximum number of concurrently active Frame Relay SVC calls that are allowed for this service. This attribute does not include the general switched virtual circuits (GSVC).') gvcIfFrSvcRateEnforcement = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("off", 0), ("on", 1))).clone('on')).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfFrSvcRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRateEnforcement.setDescription('This attribute specifies whether rate enforcement is to be used for new Frame Relay SVCs on this service. When rate enforcement is on the rate of data sent by the service to individual Frame Relay SVCs is controlled.') gvcIfFrSvcMaximumCir = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 52000000)).clone(2048000)).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfFrSvcMaximumCir.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcMaximumCir.setDescription('This attribute specifies the maximum rate enforcement CIR (Committed Information Rate) that is allowed for use with the Frame Relay SVCs on this service. During call setup negotiation, if the caller to this service requests a higher CIR value be used, the CIR used is reduced to the value of maximumCir.') gvcIfFrSvcOperationalTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12), ) if mibBuilder.loadTexts: gvcIfFrSvcOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcOperationalTable.setDescription('This group contains the operational attributes for the APPN Frame Relay SVC calls.') gvcIfFrSvcOperationalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfFrSvcIndex")) if mibBuilder.loadTexts: gvcIfFrSvcOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcOperationalEntry.setDescription('An entry in the gvcIfFrSvcOperationalTable.') gvcIfFrSvcCurrentNumberOfSvcCalls = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12, 1, 1), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 3072))).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfFrSvcCurrentNumberOfSvcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcCurrentNumberOfSvcCalls.setDescription('This attribute indicates the number of Frame Relay SVCs currently existing on this service. This attribute does not include the general switched virtual circuits (GSVC).') gvcIfSMacF = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9)) gvcIfSMacFRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1), ) if mibBuilder.loadTexts: gvcIfSMacFRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfSMacF components.') gvcIfSMacFRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfSMacFIndex")) if mibBuilder.loadTexts: gvcIfSMacFRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfSMacF component.') gvcIfSMacFRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfSMacFRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfSMacF components. These components can be added and deleted.') gvcIfSMacFComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfSMacFComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfSMacFStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfSMacFStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFStorageType.setDescription('This variable represents the storage type value for the gvcIfSMacF tables.') gvcIfSMacFIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfSMacFIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFIndex.setDescription('This variable represents the index for the gvcIfSMacF tables.') gvcIfSMacFOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11), ) if mibBuilder.loadTexts: gvcIfSMacFOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFOperTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvcIfSMacFOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfSMacFIndex")) if mibBuilder.loadTexts: gvcIfSMacFOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFOperEntry.setDescription('An entry in the gvcIfSMacFOperTable.') gvcIfSMacFFramesMatchingFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfSMacFFramesMatchingFilter.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFFramesMatchingFilter.setDescription('This attribute counts the number of frames containing a MAC address matching the instance of this component. When the maximum count is exceeded the count wraps to zero.') gvcIfDMacF = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10)) gvcIfDMacFRowStatusTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1), ) if mibBuilder.loadTexts: gvcIfDMacFRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDMacF components.') gvcIfDMacFRowStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDMacFIndex")) if mibBuilder.loadTexts: gvcIfDMacFRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDMacF component.') gvcIfDMacFRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 1), RowStatus()).setMaxAccess("readwrite") if mibBuilder.loadTexts: gvcIfDMacFRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDMacF components. These components can be added and deleted.') gvcIfDMacFComponentName = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 2), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDMacFComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvcIfDMacFStorageType = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 4), StorageType()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDMacFStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFStorageType.setDescription('This variable represents the storage type value for the gvcIfDMacF tables.') gvcIfDMacFIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 10), DashedHexString().subtype(subtypeSpec=ValueSizeConstraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDMacFIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFIndex.setDescription('This variable represents the index for the gvcIfDMacF tables.') gvcIfDMacFOperTable = MibTable((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11), ) if mibBuilder.loadTexts: gvcIfDMacFOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFOperTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvcIfDMacFOperEntry = MibTableRow((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11, 1), ).setIndexNames((0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfIndex"), (0, "Nortel-Magellan-Passport-GeneralVcInterfaceMIB", "gvcIfDMacFIndex")) if mibBuilder.loadTexts: gvcIfDMacFOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFOperEntry.setDescription('An entry in the gvcIfDMacFOperTable.') gvcIfDMacFFramesMatchingFilter = MibTableColumn((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11, 1, 1), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: gvcIfDMacFFramesMatchingFilter.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFFramesMatchingFilter.setDescription('This attribute counts the number of frames containing a MAC address matching the instance of this component. When the maximum count is exceeded the count wraps to zero.') generalVcInterfaceGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1)) generalVcInterfaceGroupBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5)) generalVcInterfaceGroupBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5, 2)) generalVcInterfaceGroupBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5, 2, 2)) generalVcInterfaceCapabilities = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3)) generalVcInterfaceCapabilitiesBE = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5)) generalVcInterfaceCapabilitiesBE01 = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5, 2)) generalVcInterfaceCapabilitiesBE01A = MibIdentifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5, 2, 2)) mibBuilder.exportSymbols("Nortel-Magellan-Passport-GeneralVcInterfaceMIB", gvcIfLcnOperTable=gvcIfLcnOperTable, gvcIfDnaDdmDmoEntry=gvcIfDnaDdmDmoEntry, gvcIfDnaHgM=gvcIfDnaHgM, gvcIfLcnVcAckStackingTimeouts=gvcIfLcnVcAckStackingTimeouts, gvcIfDlciLocalDeviceMac=gvcIfDlciLocalDeviceMac, gvcIfDcCfaIndex=gvcIfDcCfaIndex, gvcIfDnaCugInterlockCode=gvcIfDnaCugInterlockCode, gvcIfDlciVc=gvcIfDlciVc, gvcIfDlciABitReasonToNetwork=gvcIfDlciABitReasonToNetwork, gvcIfRgStorageType=gvcIfRgStorageType, gvcIfRgIfEntryTable=gvcIfRgIfEntryTable, gvcIfRDnaMapLanAdEntry=gvcIfRDnaMapLanAdEntry, gvcIfDnaIncCalls=gvcIfDnaIncCalls, gvcIfDnaCugRowStatusTable=gvcIfDnaCugRowStatusTable, gvcIfIssueLcnClearAlarm=gvcIfIssueLcnClearAlarm, gvcIfDlciRdevAddrEntry=gvcIfDlciRdevAddrEntry, gvcIfDlciSpCommittedInformationRate=gvcIfDlciSpCommittedInformationRate, gvcIfDcRowStatus=gvcIfDcRowStatus, gvcIfDlciSapCircuitComponentName=gvcIfDlciSapCircuitComponentName, gvcIfDMacFRowStatusTable=gvcIfDMacFRowStatusTable, gvcIfLcnVcSegmentsSent=gvcIfLcnVcSegmentsSent, gvcIfDlciStateEntry=gvcIfDlciStateEntry, gvcIfDlciStateTable=gvcIfDlciStateTable, gvcIfLcnVcLocalRxPktSize=gvcIfLcnVcLocalRxPktSize, gvcIfLcnVcDuplicatesFromSubnet=gvcIfLcnVcDuplicatesFromSubnet, gvcIfDnaSdmDeviceMonitoring=gvcIfDnaSdmDeviceMonitoring, gvcIfDlciVcSegmentsRx=gvcIfDlciVcSegmentsRx, gvcIfDcOptionsEntry=gvcIfDcOptionsEntry, gvcIfDiscardedQllcCalls=gvcIfDiscardedQllcCalls, gvcIfDlciDcNfaIndex=gvcIfDlciDcNfaIndex, gvcIfDnaHgMAvailabilityUpdateThreshold=gvcIfDnaHgMAvailabilityUpdateThreshold, gvcIfDlciVcFrmLossTimeouts=gvcIfDlciVcFrmLossTimeouts, gvcIfSMacFOperTable=gvcIfSMacFOperTable, gvcIfLcnStateTable=gvcIfLcnStateTable, gvcIfDnaCugComponentName=gvcIfDnaCugComponentName, gvcIfDnaCugPreferential=gvcIfDnaCugPreferential, gvcIfDlciLdevMac=gvcIfDlciLdevMac, gvcIfDlciVcNotDataXferFromSubnet=gvcIfDlciVcNotDataXferFromSubnet, gvcIfDMacFOperEntry=gvcIfDMacFOperEntry, gvcIfDcOptionsTable=gvcIfDcOptionsTable, gvcIfDlciDcRowStatusEntry=gvcIfDlciDcRowStatusEntry, gvcIfRgProvEntry=gvcIfRgProvEntry, gvcIfDlciVcNotDataXferToSubnet=gvcIfDlciVcNotDataXferToSubnet, gvcIfDlciRdevAddrTable=gvcIfDlciRdevAddrTable, gvcIfLcnVcSegmentsRx=gvcIfLcnVcSegmentsRx, gvcIfLcnVcMaxSubnetPktSize=gvcIfLcnVcMaxSubnetPktSize, gvcIfDnaHgMMaxAvailableLinkStations=gvcIfDnaHgMMaxAvailableLinkStations, gvcIfRDnaMapRowStatusEntry=gvcIfRDnaMapRowStatusEntry, gvcIfDlciSpParmsEntry=gvcIfDlciSpParmsEntry, gvcIfFrSvcRowStatusEntry=gvcIfFrSvcRowStatusEntry, gvcIfDnaHgMComponentName=gvcIfDnaHgMComponentName, gvcIfSMacFIndex=gvcIfSMacFIndex, gvcIfDlciVcCadEntry=gvcIfDlciVcCadEntry, gvcIfCallsFromNetwork=gvcIfCallsFromNetwork, gvcIfDnaDdmRowStatusEntry=gvcIfDnaDdmRowStatusEntry, gvcIfDlciLdevDeviceMonitoringTimer=gvcIfDlciLdevDeviceMonitoringTimer, gvcIfDlciBnnStorageType=gvcIfDlciBnnStorageType, gvcIfDlciLdevRowStatusTable=gvcIfDlciLdevRowStatusTable, gvcIfLcnVcSubnetRecoveries=gvcIfLcnVcSubnetRecoveries, gvcIfLcnVcIndex=gvcIfLcnVcIndex, gvcIfRgIfEntryEntry=gvcIfRgIfEntryEntry, gvcIfDlciVcPeakOoSeqFrmForwarded=gvcIfDlciVcPeakOoSeqFrmForwarded, gvcIfLcnVcCalledLcn=gvcIfLcnVcCalledLcn, gvcIfDnaDefaultRecvFrmNetworkPacketSize=gvcIfDnaDefaultRecvFrmNetworkPacketSize, gvcIfLcnRowStatusTable=gvcIfLcnRowStatusTable, gvcIfDlciLdevComponentName=gvcIfDlciLdevComponentName, gvcIfDcCfaEntry=gvcIfDcCfaEntry, gvcIfLcnVcSubnetRxPktSize=gvcIfLcnVcSubnetRxPktSize, gvcIfDnaIncomingOptionsEntry=gvcIfDnaIncomingOptionsEntry, gvcIfDnaComponentName=gvcIfDnaComponentName, gvcIfDlciRowStatus=gvcIfDlciRowStatus, gvcIfDlciComponentName=gvcIfDlciComponentName, gvcIfDlciVcState=gvcIfDlciVcState, gvcIfDlciVcPathReliability=gvcIfDlciVcPathReliability, gvcIfDlciBnn=gvcIfDlciBnn, gvcIfDlciVcEmissionPriorityFromNetwork=gvcIfDlciVcEmissionPriorityFromNetwork, gvcIfLcnVcLocalTxPktSize=gvcIfLcnVcLocalTxPktSize, gvcIfOperationalState=gvcIfOperationalState, gvcIfLcnVcWrTriggers=gvcIfLcnVcWrTriggers, gvcIfRowStatusTable=gvcIfRowStatusTable, gvcIfDlciOperationalState=gvcIfDlciOperationalState, gvcIfDnaSdmDmoEntry=gvcIfDnaSdmDmoEntry, gvcIfDlciSpStorageType=gvcIfDlciSpStorageType, gvcIfDlciLdevAddrTable=gvcIfDlciLdevAddrTable, gvcIfFrSvcMaximumCir=gvcIfFrSvcMaximumCir, gvcIfLcnVcSubnetTxPktSize=gvcIfLcnVcSubnetTxPktSize, gvcIfDlciSpRateEnforcement=gvcIfDlciSpRateEnforcement, gvcIf=gvcIf, generalVcInterfaceGroupBE01=generalVcInterfaceGroupBE01, gvcIfDnaDdm=gvcIfDnaDdm, gvcIfDMacFRowStatusEntry=gvcIfDMacFRowStatusEntry, gvcIfDlciABitReasonFromNetwork=gvcIfDlciABitReasonFromNetwork, gvcIfDlciOperTable=gvcIfDlciOperTable, gvcIfDlciVcCadTable=gvcIfDlciVcCadTable, gvcIfDlciFrmToNetwork=gvcIfDlciFrmToNetwork, generalVcInterfaceCapabilitiesBE=generalVcInterfaceCapabilitiesBE, gvcIfDnaDefaultTransferPriority=gvcIfDnaDefaultTransferPriority, gvcIfDnaHgMHgAddrAddrEntry=gvcIfDnaHgMHgAddrAddrEntry, gvcIfLcnVcPeakRetryQueueSize=gvcIfLcnVcPeakRetryQueueSize, gvcIfDnaOutgoingOptionsTable=gvcIfDnaOutgoingOptionsTable, gvcIfDlciFramesWithUnknownSaps=gvcIfDlciFramesWithUnknownSaps, gvcIfDlciSapCircuitRowStatus=gvcIfDlciSapCircuitRowStatus, gvcIfDlciUsageState=gvcIfDlciUsageState, gvcIfDcSapIndex=gvcIfDcSapIndex, gvcIfComponentName=gvcIfComponentName, gvcIfSMacFComponentName=gvcIfSMacFComponentName, gvcIfDnaSdmStorageType=gvcIfDnaSdmStorageType, gvcIfDcCfaTable=gvcIfDcCfaTable, gvcIfDlciLdevMaximumTestRetry=gvcIfDlciLdevMaximumTestRetry, gvcIfProvEntry=gvcIfProvEntry, gvcIfLcnVcFastSelectCall=gvcIfLcnVcFastSelectCall, gvcIfDlciDcRowStatusTable=gvcIfDlciDcRowStatusTable, gvcIfDnaTransferPriorityOverRide=gvcIfDnaTransferPriorityOverRide, gvcIfDlciRdevComponentName=gvcIfDlciRdevComponentName, gvcIfDlciVcPeakRetryQueueSize=gvcIfDlciVcPeakRetryQueueSize, gvcIfDlciDcDiscardPriority=gvcIfDlciDcDiscardPriority, gvcIfLcnRowStatus=gvcIfLcnRowStatus, gvcIfLcnVcIntdEntry=gvcIfLcnVcIntdEntry, gvcIfDnaIncNormalPriorityReverseCharge=gvcIfDnaIncNormalPriorityReverseCharge, gvcIfLcnVcWindowClosuresFromSubnet=gvcIfLcnVcWindowClosuresFromSubnet, generalVcInterfaceCapabilities=generalVcInterfaceCapabilities, gvcIfDnaSdmClearVcsWhenUnreachable=gvcIfDnaSdmClearVcsWhenUnreachable, gvcIfDlciExcessInformationRate=gvcIfDlciExcessInformationRate, gvcIfDnaHgMHgAddrRowStatus=gvcIfDnaHgMHgAddrRowStatus, gvcIfLcnVcCadEntry=gvcIfLcnVcCadEntry, gvcIfDnaDefaultRecvFrmNetworkThruputClass=gvcIfDnaDefaultRecvFrmNetworkThruputClass, gvcIfLcnVcIntdTable=gvcIfLcnVcIntdTable, gvcIfLcnVcRowStatusEntry=gvcIfLcnVcRowStatusEntry, gvcIfDc=gvcIfDc, gvcIfRgLinkToProtocolPort=gvcIfRgLinkToProtocolPort, gvcIfDlciSapCircuit=gvcIfDlciSapCircuit, gvcIfDnaDdmDeviceStatus=gvcIfDnaDdmDeviceStatus, gvcIfDnaDdmLanAdEntry=gvcIfDnaDdmLanAdEntry, gvcIfDMacFIndex=gvcIfDMacFIndex, generalVcInterfaceCapabilitiesBE01=generalVcInterfaceCapabilitiesBE01, gvcIfDlciLdevDmoEntry=gvcIfDlciLdevDmoEntry, gvcIfUsageState=gvcIfUsageState, gvcIfDlciVcFrdTable=gvcIfDlciVcFrdTable, gvcIfDlciStatsEntry=gvcIfDlciStatsEntry, gvcIfDnaIncIntlReverseCharge=gvcIfDnaIncIntlReverseCharge, gvcIfDlciSapCircuitS1SapIndex=gvcIfDlciSapCircuitS1SapIndex, gvcIfLcnDnaMap=gvcIfLcnDnaMap, gvcIfDnaSdmDevOpEntry=gvcIfDnaSdmDevOpEntry, gvcIfDnaHgMHgAddrNumberingPlanIndicator=gvcIfDnaHgMHgAddrNumberingPlanIndicator, gvcIfDlciOperEntry=gvcIfDlciOperEntry, gvcIfDlciVcSendSequenceNumber=gvcIfDlciVcSendSequenceNumber, gvcIfDlciSpMeasurementInterval=gvcIfDlciSpMeasurementInterval, gvcIfDnaDdmRowStatusTable=gvcIfDnaDdmRowStatusTable, gvcIfDlciAbitEntry=gvcIfDlciAbitEntry, gvcIfDnaSdmRowStatusTable=gvcIfDnaSdmRowStatusTable, gvcIfLcnVcPeakOoSeqQueueSize=gvcIfLcnVcPeakOoSeqQueueSize, gvcIfDnaRowStatus=gvcIfDnaRowStatus, gvcIfDnaOutgoingOptionsEntry=gvcIfDnaOutgoingOptionsEntry, gvcIfCallsRefusedByNetwork=gvcIfCallsRefusedByNetwork, gvcIfDlci=gvcIfDlci, gvcIfLcnVcLocalRxWindowSize=gvcIfLcnVcLocalRxWindowSize, gvcIfDlciDcNfaRowStatus=gvcIfDlciDcNfaRowStatus, gvcIfDnaHgMHgAddrRowStatusEntry=gvcIfDnaHgMHgAddrRowStatusEntry, gvcIfAdminState=gvcIfAdminState, gvcIfDnaDdmDevOpTable=gvcIfDnaDdmDevOpTable, gvcIfDnaCugRowStatusEntry=gvcIfDnaCugRowStatusEntry, gvcIfCidDataTable=gvcIfCidDataTable, gvcIfDnaHgMHgAddrAddrTable=gvcIfDnaHgMHgAddrAddrTable, gvcIfDnaDdmIndex=gvcIfDnaDdmIndex, gvcIfLcnVcComponentName=gvcIfLcnVcComponentName, gvcIfDnaDdmSap=gvcIfDnaDdmSap, gvcIfDlciLdevAddrEntry=gvcIfDlciLdevAddrEntry, gvcIfLcnVc=gvcIfLcnVc, gvcIfDlciLdevTestResponseTimer=gvcIfDlciLdevTestResponseTimer, gvcIfDlciRowStatusTable=gvcIfDlciRowStatusTable, gvcIfRgRowStatusTable=gvcIfRgRowStatusTable, gvcIfDlciLdevClearVcsWhenUnreachable=gvcIfDlciLdevClearVcsWhenUnreachable, gvcIfDnaPacketSizeNegotiation=gvcIfDnaPacketSizeNegotiation, gvcIfRgOperStatusTable=gvcIfRgOperStatusTable, gvcIfRgIndex=gvcIfRgIndex, gvcIfDlciDcIndex=gvcIfDlciDcIndex, gvcIfDnaSdmLanAdEntry=gvcIfDnaSdmLanAdEntry, gvcIfDcCfaValue=gvcIfDcCfaValue, gvcIfLcnVcPreviousState=gvcIfLcnVcPreviousState, gvcIfDlciLdevActiveLinkStations=gvcIfDlciLdevActiveLinkStations, gvcIfDlciSpOpEntry=gvcIfDlciSpOpEntry, gvcIfDnaHgMHgAddr=gvcIfDnaHgMHgAddr, gvcIfDMacFFramesMatchingFilter=gvcIfDMacFFramesMatchingFilter, gvcIfDnaDefaultRecvFrmNetworkWindowSize=gvcIfDnaDefaultRecvFrmNetworkWindowSize, gvcIfDlciAdminState=gvcIfDlciAdminState, gvcIfDnaSdmLastTimeUnreachable=gvcIfDnaSdmLastTimeUnreachable, gvcIfSMacFOperEntry=gvcIfSMacFOperEntry, gvcIfDlciSapLocalSapIndex=gvcIfDlciSapLocalSapIndex, gvcIfRDnaMap=gvcIfRDnaMap, gvcIfDlciVcRcosToNetwork=gvcIfDlciVcRcosToNetwork, gvcIfDlciLdevDeviceUnreachable=gvcIfDlciLdevDeviceUnreachable, gvcIfDcRowStatusEntry=gvcIfDcRowStatusEntry, gvcIfRgSnmpOperStatus=gvcIfRgSnmpOperStatus, gvcIfDMacFOperTable=gvcIfDMacFOperTable, gvcIfDlciSapCircuitStorageType=gvcIfDlciSapCircuitStorageType, gvcIfDlciVcCallReferenceNumber=gvcIfDlciVcCallReferenceNumber, gvcIfDnaSdmLanAdTable=gvcIfDnaSdmLanAdTable, gvcIfDnaCugIncCalls=gvcIfDnaCugIncCalls, gvcIfDlciVcOoSeqPktCntExceeded=gvcIfDlciVcOoSeqPktCntExceeded, gvcIfDlciVcElapsedTimeTillNow=gvcIfDlciVcElapsedTimeTillNow, gvcIfDlciVcSubnetRecoveries=gvcIfDlciVcSubnetRecoveries, gvcIfFrSvcOperationalTable=gvcIfFrSvcOperationalTable, gvcIfCallsRefusedByInterface=gvcIfCallsRefusedByInterface, gvcIfDlciStatsTable=gvcIfDlciStatsTable, gvcIfDlciDcRemoteDlci=gvcIfDlciDcRemoteDlci, gvcIfIndex=gvcIfIndex, gvcIfLcnUsageState=gvcIfLcnUsageState, gvcIfDlciVcPeakOoSeqPktCount=gvcIfDlciVcPeakOoSeqPktCount, gvcIfDnaSdmDmoTable=gvcIfDnaSdmDmoTable, gvcIfDlciSp=gvcIfDlciSp, gvcIfDlciRdevIndex=gvcIfDlciRdevIndex, gvcIfDlciVcIntdTable=gvcIfDlciVcIntdTable, gvcIfLcnVcCallingLcn=gvcIfLcnVcCallingLcn, gvcIfDnaDdmDeviceUnreachable=gvcIfDnaDdmDeviceUnreachable, gvcIfDnaDdmClearVcsWhenUnreachable=gvcIfDnaDdmClearVcsWhenUnreachable, gvcIfFrSvcRateEnforcement=gvcIfFrSvcRateEnforcement, gvcIfLcnVcTransferPriorityToNetwork=gvcIfLcnVcTransferPriorityToNetwork, gvcIfDnaDdmActiveLinkStations=gvcIfDnaDdmActiveLinkStations, gvcIfDlciVcOutOfRangeFrmFromSubnet=gvcIfDlciVcOutOfRangeFrmFromSubnet, gvcIfDlciDcOptionsTable=gvcIfDlciDcOptionsTable, gvcIfDlciStorageType=gvcIfDlciStorageType, gvcIfRDnaMapComponentName=gvcIfRDnaMapComponentName, gvcIfLcnVcFrmRetryTimeouts=gvcIfLcnVcFrmRetryTimeouts, gvcIfDcDiscardPriority=gvcIfDcDiscardPriority, gvcIfDlciBnnRowStatusEntry=gvcIfDlciBnnRowStatusEntry, gvcIfFrSvcRowStatusTable=gvcIfFrSvcRowStatusTable, gvcIfLcn=gvcIfLcn, gvcIfRDnaMapMac=gvcIfRDnaMapMac, gvcIfDnaDataNetworkAddress=gvcIfDnaDataNetworkAddress, gvcIfDnaCugCugOptionsTable=gvcIfDnaCugCugOptionsTable, gvcIfDlciVcDmepValue=gvcIfDlciVcDmepValue, gvcIfDlciRemoteDeviceMac=gvcIfDlciRemoteDeviceMac, gvcIfDnaHgMHgAddrComponentName=gvcIfDnaHgMHgAddrComponentName, gvcIfDcMacIndex=gvcIfDcMacIndex, gvcIfDnaCugCugOptionsEntry=gvcIfDnaCugCugOptionsEntry, gvcIfDlciRdevMac=gvcIfDlciRdevMac, gvcIfDnaRowStatusTable=gvcIfDnaRowStatusTable, gvcIfDlciSpRowStatus=gvcIfDlciSpRowStatus, gvcIfDnaIncHighPriorityReverseCharge=gvcIfDnaIncHighPriorityReverseCharge, gvcIfDnaCugOutCalls=gvcIfDnaCugOutCalls, gvcIfPeakActiveLinkStations=gvcIfPeakActiveLinkStations, gvcIfDnaCugRowStatus=gvcIfDnaCugRowStatus, gvcIfLcnVcElapsedTimeTillNow=gvcIfLcnVcElapsedTimeTillNow, gvcIfLcnLcnCIdTable=gvcIfLcnLcnCIdTable, gvcIfBcastFramesDiscarded=gvcIfBcastFramesDiscarded, gvcIfDnaDdmDevOpEntry=gvcIfDnaDdmDevOpEntry, gvcIfActiveQllcCalls=gvcIfActiveQllcCalls, gvcIfDnaDdmLastTimeReachable=gvcIfDnaDdmLastTimeReachable, gvcIfFrSvcProvisionedTable=gvcIfFrSvcProvisionedTable, gvcIfLcnVcOutOfRangeFrmFromSubnet=gvcIfLcnVcOutOfRangeFrmFromSubnet, gvcIfDlciABitStatusFromNetwork=gvcIfDlciABitStatusFromNetwork, gvcIfRDnaMapRowStatusTable=gvcIfRDnaMapRowStatusTable, gvcIfDnaCugDnic=gvcIfDnaCugDnic, gvcIfLcnVcPeakOoSeqFrmForwarded=gvcIfLcnVcPeakOoSeqFrmForwarded) mibBuilder.exportSymbols("Nortel-Magellan-Passport-GeneralVcInterfaceMIB", gvcIfDlciSpCommittedBurstSize=gvcIfDlciSpCommittedBurstSize, gvcIfLcnVcCalledDna=gvcIfLcnVcCalledDna, gvcIfDnaHgMHgAddrStorageType=gvcIfDnaHgMHgAddrStorageType, generalVcInterfaceGroup=generalVcInterfaceGroup, gvcIfLcnVcCallingDna=gvcIfLcnVcCallingDna, gvcIfDnaOutAccess=gvcIfDnaOutAccess, gvcIfDlciVcStartTime=gvcIfDlciVcStartTime, gvcIfLcnAdminState=gvcIfLcnAdminState, gvcIfRg=gvcIfRg, gvcIfDlciCommittedInformationRate=gvcIfDlciCommittedInformationRate, gvcIfLcnVcDiagnosticCode=gvcIfLcnVcDiagnosticCode, gvcIfDnaRowStatusEntry=gvcIfDnaRowStatusEntry, gvcIfLogicalProcessor=gvcIfLogicalProcessor, gvcIfDlciVcCombErrorsFromSubnet=gvcIfDlciVcCombErrorsFromSubnet, gvcIfDlciDcRowStatus=gvcIfDlciDcRowStatus, gvcIfLcnVcSubnetRxWindowSize=gvcIfLcnVcSubnetRxWindowSize, gvcIfDlciBnnRowStatusTable=gvcIfDlciBnnRowStatusTable, gvcIfDcRowStatusTable=gvcIfDcRowStatusTable, gvcIfLcnVcAccountingEnd=gvcIfLcnVcAccountingEnd, gvcIfDMacFStorageType=gvcIfDMacFStorageType, gvcIfDlciSapRowStatusTable=gvcIfDlciSapRowStatusTable, gvcIfLcnVcPriority=gvcIfLcnVcPriority, gvcIfFrSvcStorageType=gvcIfFrSvcStorageType, gvcIfDcComponentName=gvcIfDcComponentName, gvcIfDnaSdmDevOpTable=gvcIfDnaSdmDevOpTable, gvcIfDlciAbitTable=gvcIfDlciAbitTable, gvcIfFrSvc=gvcIfFrSvc, gvcIfDnaDdmLanAdTable=gvcIfDnaDdmLanAdTable, gvcIfSMacFRowStatus=gvcIfSMacFRowStatus, gvcIfDlciLdevDeviceStatus=gvcIfDlciLdevDeviceStatus, gvcIfFrSvcRowStatus=gvcIfFrSvcRowStatus, gvcIfDlciVcDiagnosticCode=gvcIfDlciVcDiagnosticCode, gvcIfDnaDdmTestResponseTimer=gvcIfDnaDdmTestResponseTimer, gvcIfDMacF=gvcIfDMacF, gvcIfDnaCallOptionsEntry=gvcIfDnaCallOptionsEntry, gvcIfDnaSdmMonitoringLcn=gvcIfDnaSdmMonitoringLcn, gvcIfDnaServiceExchange=gvcIfDnaServiceExchange, gvcIfRDnaMapSap=gvcIfRDnaMapSap, gvcIfDlciLdevRowStatusEntry=gvcIfDlciLdevRowStatusEntry, gvcIfDnaNumberingPlanIndicator=gvcIfDnaNumberingPlanIndicator, gvcIfOpEntry=gvcIfOpEntry, gvcIfRowStatus=gvcIfRowStatus, gvcIfLcnLcnCIdEntry=gvcIfLcnLcnCIdEntry, gvcIfDnaAccountClass=gvcIfDnaAccountClass, gvcIfDlciDcRemoteDna=gvcIfDlciDcRemoteDna, gvcIfDlciRdevRowStatusTable=gvcIfDlciRdevRowStatusTable, gvcIfLcnVcStatsEntry=gvcIfLcnVcStatsEntry, gvcIfStateEntry=gvcIfStateEntry, gvcIfLcnVcStartTime=gvcIfLcnVcStartTime, gvcIfDlciVcCallingNpi=gvcIfDlciVcCallingNpi, gvcIfDnaOutDefaultPathReliability=gvcIfDnaOutDefaultPathReliability, gvcIfStateTable=gvcIfStateTable, gvcIfDlciLdevIndex=gvcIfDlciLdevIndex, gvcIfRDnaMapDnaIndex=gvcIfRDnaMapDnaIndex, gvcIfDlciVcType=gvcIfDlciVcType, gvcIfLcnCircuitId=gvcIfLcnCircuitId, gvcIfDlciVcFastSelectCall=gvcIfDlciVcFastSelectCall, gvcIfDnaSdmDeviceMonitoringTimer=gvcIfDnaSdmDeviceMonitoringTimer, gvcIfDnaDdmMac=gvcIfDnaDdmMac, gvcIfDnaDdmDmoTable=gvcIfDnaDdmDmoTable, gvcIfDlciDcType=gvcIfDlciDcType, gvcIfDlciBnnRowStatus=gvcIfDlciBnnRowStatus, gvcIfStatsEntry=gvcIfStatsEntry, gvcIfDnaHgMHgAddrDataNetworkAddress=gvcIfDnaHgMHgAddrDataNetworkAddress, gvcIfDnaIncSameService=gvcIfDnaIncSameService, gvcIfDnaOutDefaultPathSensitivity=gvcIfDnaOutDefaultPathSensitivity, gvcIfDlciVcMaxSubnetPktSize=gvcIfDlciVcMaxSubnetPktSize, gvcIfDcUserData=gvcIfDcUserData, gvcIfDcTransferPriority=gvcIfDcTransferPriority, gvcIfDnaDefaultSendToNetworkThruputClass=gvcIfDnaDefaultSendToNetworkThruputClass, gvcIfDnaHgMHgAddrRowStatusTable=gvcIfDnaHgMHgAddrRowStatusTable, gvcIfDcRemoteNpi=gvcIfDcRemoteNpi, gvcIfDnaDdmDeviceMonitoringTimer=gvcIfDnaDdmDeviceMonitoringTimer, gvcIfDlciVcPreviousDiagnosticCode=gvcIfDlciVcPreviousDiagnosticCode, gvcIfDlciVcFrmCongestedToSubnet=gvcIfDlciVcFrmCongestedToSubnet, gvcIfDlciSpParmsTable=gvcIfDlciSpParmsTable, gvcIfDlciVcAccountingEnabled=gvcIfDlciVcAccountingEnabled, gvcIfDlciVcAccountingEnd=gvcIfDlciVcAccountingEnd, gvcIfCallsToNetwork=gvcIfCallsToNetwork, gvcIfDlciExcessBurstSize=gvcIfDlciExcessBurstSize, gvcIfDlciVcEmissionPriorityToNetwork=gvcIfDlciVcEmissionPriorityToNetwork, gvcIfDna=gvcIfDna, gvcIfRDnaMapLanAdTable=gvcIfRDnaMapLanAdTable, gvcIfDnaAccountCollection=gvcIfDnaAccountCollection, gvcIfLcnVcSegmentSize=gvcIfLcnVcSegmentSize, gvcIfRgIfAdminStatus=gvcIfRgIfAdminStatus, gvcIfDlciVcPktRetryTimeouts=gvcIfDlciVcPktRetryTimeouts, gvcIfDlciVcFrdEntry=gvcIfDlciVcFrdEntry, gvcIfDlciLdevMonitoringLcn=gvcIfDlciLdevMonitoringLcn, gvcIfDnaIndex=gvcIfDnaIndex, gvcIfDnaCugStorageType=gvcIfDnaCugStorageType, gvcIfSMacFRowStatusTable=gvcIfSMacFRowStatusTable, gvcIfLcnOperationalState=gvcIfLcnOperationalState, gvcIfDlciSapRemoteSapIndex=gvcIfDlciSapRemoteSapIndex, gvcIfLcnRowStatusEntry=gvcIfLcnRowStatusEntry, gvcIfDlciSapRowStatusEntry=gvcIfDlciSapRowStatusEntry, gvcIfRDnaMapNpiIndex=gvcIfRDnaMapNpiIndex, gvcIfDlciRateEnforcement=gvcIfDlciRateEnforcement, gvcIfDlciSapComponentName=gvcIfDlciSapComponentName, gvcIfLcnVcWindowClosuresToSubnet=gvcIfLcnVcWindowClosuresToSubnet, gvcIfLcnVcState=gvcIfLcnVcState, gvcIfDlciVcComponentName=gvcIfDlciVcComponentName, gvcIfDlciLdevDmoTable=gvcIfDlciLdevDmoTable, gvcIfDlciVcPeakOoSeqByteCount=gvcIfDlciVcPeakOoSeqByteCount, generalVcInterfaceCapabilitiesBE01A=generalVcInterfaceCapabilitiesBE01A, gvcIfDnaCugIndex=gvcIfDnaCugIndex, gvcIfFrSvcIndex=gvcIfFrSvcIndex, gvcIfSMacFRowStatusEntry=gvcIfSMacFRowStatusEntry, gvcIfDlciRowStatusEntry=gvcIfDlciRowStatusEntry, gvcIfDnaDefaultSendToNetworkWindowSize=gvcIfDnaDefaultSendToNetworkWindowSize, gvcIfDlciDcOptionsEntry=gvcIfDlciDcOptionsEntry, gvcIfDlciVcStorageType=gvcIfDlciVcStorageType, gvcIfDnaSdmRowStatus=gvcIfDnaSdmRowStatus, gvcIfDnaIncAccess=gvcIfDnaIncAccess, gvcIfDlciVcDmepTable=gvcIfDlciVcDmepTable, gvcIfDlciLdevDevOpTable=gvcIfDlciLdevDevOpTable, gvcIfDlciLdevLastTimeReachable=gvcIfDlciLdevLastTimeReachable, gvcIfDnaCallOptionsTable=gvcIfDnaCallOptionsTable, gvcIfDnaDdmDeviceMonitoring=gvcIfDnaDdmDeviceMonitoring, gvcIfDnaCugFormat=gvcIfDnaCugFormat, gvcIfRgComponentName=gvcIfRgComponentName, gvcIfDlciBnnComponentName=gvcIfDlciBnnComponentName, gvcIfDnaOutDefaultPriority=gvcIfDnaOutDefaultPriority, gvcIfDnaSdmActiveLinkStations=gvcIfDnaSdmActiveLinkStations, generalVcInterfaceGroupBE=generalVcInterfaceGroupBE, gvcIfDlciDcTransferPriority=gvcIfDlciDcTransferPriority, gvcIfDnaSdmMaximumTestRetry=gvcIfDnaSdmMaximumTestRetry, generalVcInterfaceMIB=generalVcInterfaceMIB, gvcIfDnaHgMRowStatusEntry=gvcIfDnaHgMRowStatusEntry, gvcIfDnaSdmMac=gvcIfDnaSdmMac, gvcIfDnaIncIntlNormalCharge=gvcIfDnaIncIntlNormalCharge, gvcIfDlciEncapsulationType=gvcIfDlciEncapsulationType, gvcIfDlciDcNfaTable=gvcIfDlciDcNfaTable, gvcIfLcnStateEntry=gvcIfLcnStateEntry, gvcIfDlciRdevStorageType=gvcIfDlciRdevStorageType, gvcIfLcnVcCalledNpi=gvcIfLcnVcCalledNpi, gvcIfDnaSdmIndex=gvcIfDnaSdmIndex, gvcIfLcnVcTransferPriorityFromNetwork=gvcIfLcnVcTransferPriorityFromNetwork, gvcIfLcnState=gvcIfLcnState, gvcIfLcnVcPeakStackedAcksRx=gvcIfLcnVcPeakStackedAcksRx, gvcIfDlciSapCircuitS1MacIndex=gvcIfDlciSapCircuitS1MacIndex, gvcIfLcnSourceMac=gvcIfLcnSourceMac, gvcIfDnaServiceCategory=gvcIfDnaServiceCategory, gvcIfOpTable=gvcIfOpTable, gvcIfRgRowStatus=gvcIfRgRowStatus, gvcIfDlciBnnIndex=gvcIfDlciBnnIndex, gvcIfDnaDdmRowStatus=gvcIfDnaDdmRowStatus, gvcIfDlciLdev=gvcIfDlciLdev, gvcIfProvTable=gvcIfProvTable, gvcIfDnaSdmSap=gvcIfDnaSdmSap, gvcIfLcnVcCadTable=gvcIfLcnVcCadTable, gvcIfSMacF=gvcIfSMacF, gvcIfStatsTable=gvcIfStatsTable, gvcIfDlciVcOoSeqByteCntExceeded=gvcIfDlciVcOoSeqByteCntExceeded, gvcIfDlciVcSegmentsSent=gvcIfDlciVcSegmentsSent, gvcIfDnaDdmMaximumTestRetry=gvcIfDnaDdmMaximumTestRetry, gvcIfLcnComponentName=gvcIfLcnComponentName, gvcIfDlciVcCallingLcn=gvcIfDlciVcCallingLcn, gvcIfDlciDcComponentName=gvcIfDlciDcComponentName, gvcIfDnaSdmTestResponseTimer=gvcIfDnaSdmTestResponseTimer, gvcIfDlciVcRcosFromNetwork=gvcIfDlciVcRcosFromNetwork, gvcIfDlciVcIntdEntry=gvcIfDlciVcIntdEntry, gvcIfDlciDc=gvcIfDlciDc, gvcIfDnaSdm=gvcIfDnaSdm, gvcIfDlciVcPriority=gvcIfDlciVcPriority, gvcIfLcnIndex=gvcIfLcnIndex, gvcIfLcnVcRowStatusTable=gvcIfLcnVcRowStatusTable, gvcIfDlciSpExcessBurstSize=gvcIfDlciSpExcessBurstSize, gvcIfLcnVcStatsTable=gvcIfLcnVcStatsTable, gvcIfDlciVcDataPath=gvcIfDlciVcDataPath, gvcIfLcnStorageType=gvcIfLcnStorageType, gvcIfRgIfIndex=gvcIfRgIfIndex, gvcIfActiveLinkStations=gvcIfActiveLinkStations, gvcIfDlciVcRowStatusEntry=gvcIfDlciVcRowStatusEntry, gvcIfDlciSapRowStatus=gvcIfDlciSapRowStatus, gvcIfDnaHgMRowStatus=gvcIfDnaHgMRowStatus, gvcIfDlciSapCircuitRowStatusTable=gvcIfDlciSapCircuitRowStatusTable, gvcIfDlciDcNfaEntry=gvcIfDlciDcNfaEntry, gvcIfDlciVcDuplicatesFromSubnet=gvcIfDlciVcDuplicatesFromSubnet, gvcIfRDnaMapStorageType=gvcIfRDnaMapStorageType, gvcIfDlciSpRowStatusTable=gvcIfDlciSpRowStatusTable, gvcIfDnaSdmRowStatusEntry=gvcIfDnaSdmRowStatusEntry, gvcIfDlciVcIndex=gvcIfDlciVcIndex, gvcIfDMacFComponentName=gvcIfDMacFComponentName, gvcIfDlciABitStatusToNetwork=gvcIfDlciABitStatusToNetwork, gvcIfDlciRdevRowStatusEntry=gvcIfDlciRdevRowStatusEntry, gvcIfDlciLdevLastTimeUnreachable=gvcIfDlciLdevLastTimeUnreachable, gvcIfRgOperStatusEntry=gvcIfRgOperStatusEntry, gvcIfLcnOperEntry=gvcIfLcnOperEntry, gvcIfDlciFrmDiscardToNetwork=gvcIfDlciFrmDiscardToNetwork, gvcIfDnaHgMHgAddrIndex=gvcIfDnaHgMHgAddrIndex, gvcIfDnaDdmMonitoringLcn=gvcIfDnaDdmMonitoringLcn, gvcIfDlciDcStorageType=gvcIfDlciDcStorageType, gvcIfDMacFRowStatus=gvcIfDMacFRowStatus, gvcIfLcnVcCallReferenceNumber=gvcIfLcnVcCallReferenceNumber, gvcIfDlciSpIndex=gvcIfDlciSpIndex, gvcIfDlciSpRowStatusEntry=gvcIfDlciSpRowStatusEntry, gvcIfLcnVcSubnetTxWindowSize=gvcIfLcnVcSubnetTxWindowSize, gvcIfDlciVcCalledNpi=gvcIfDlciVcCalledNpi, gvcIfDnaHgMRowStatusTable=gvcIfDnaHgMRowStatusTable, gvcIfDlciSapCircuitS2SapIndex=gvcIfDlciSapCircuitS2SapIndex, gvcIfMaxActiveLinkStation=gvcIfMaxActiveLinkStation, gvcIfDlciSpOpTable=gvcIfDlciSpOpTable, gvcIfDnaHgMAvailableLinkStations=gvcIfDnaHgMAvailableLinkStations, gvcIfDcStorageType=gvcIfDcStorageType, gvcIfLcnVcAccountingEnabled=gvcIfLcnVcAccountingEnabled, gvcIfDlciSapCircuitRowStatusEntry=gvcIfDlciSapCircuitRowStatusEntry, gvcIfFrSvcOperationalEntry=gvcIfFrSvcOperationalEntry, gvcIfDlciDcRemoteNpi=gvcIfDlciDcRemoteNpi, gvcIfLcnVcType=gvcIfLcnVcType, gvcIfDnaSdmDeviceStatus=gvcIfDnaSdmDeviceStatus, gvcIfDnaCugType=gvcIfDnaCugType, gvcIfDlciSapStorageType=gvcIfDlciSapStorageType, gvcIfDnaHgMIfTable=gvcIfDnaHgMIfTable, gvcIfDlciVcRowStatusTable=gvcIfDlciVcRowStatusTable, gvcIfDnaCugPrivileged=gvcIfDnaCugPrivileged, gvcIfDnaDdmComponentName=gvcIfDnaDdmComponentName, gvcIfDlciRdevRowStatus=gvcIfDlciRdevRowStatus, gvcIfDnaHgMStorageType=gvcIfDnaHgMStorageType, gvcIfDnaAddrEntry=gvcIfDnaAddrEntry, gvcIfDlciVcSegmentSize=gvcIfDlciVcSegmentSize, gvcIfDlciLdevStorageType=gvcIfDlciLdevStorageType, gvcIfDlciCommittedBurstSize=gvcIfDlciCommittedBurstSize, gvcIfDlciVcPreviousState=gvcIfDlciVcPreviousState, gvcIfFrSvcProvisionedEntry=gvcIfFrSvcProvisionedEntry, gvcIfDlciSap=gvcIfDlciSap, gvcIfDlciFrmFromNetwork=gvcIfDlciFrmFromNetwork, gvcIfDlciLdevDevOpEntry=gvcIfDlciLdevDevOpEntry, gvcIfDlciVcCannotForwardToSubnet=gvcIfDlciVcCannotForwardToSubnet, gvcIfDnaIncomingOptionsTable=gvcIfDnaIncomingOptionsTable, gvcIfDnaHgMIndex=gvcIfDnaHgMIndex, gvcIfRgProvTable=gvcIfRgProvTable, gvcIfDnaStorageType=gvcIfDnaStorageType, gvcIfRgRowStatusEntry=gvcIfRgRowStatusEntry, gvcIfDnaHgMIfEntry=gvcIfDnaHgMIfEntry, gvcIfDlciLdevDeviceMonitoring=gvcIfDlciLdevDeviceMonitoring, gvcIfSMacFStorageType=gvcIfSMacFStorageType, gvcIfLcnVcStorageType=gvcIfLcnVcStorageType, gvcIfDlciDcNfaValue=gvcIfDlciDcNfaValue, gvcIfRowStatusEntry=gvcIfRowStatusEntry, gvcIfRDnaMapRowStatus=gvcIfRDnaMapRowStatus, gvcIfDlciSpComponentName=gvcIfDlciSpComponentName, gvcIfFrSvcMaximumFrameRelaySvcs=gvcIfFrSvcMaximumFrameRelaySvcs, gvcIfStorageType=gvcIfStorageType, gvcIfCustomerIdentifier=gvcIfCustomerIdentifier, gvcIfDcCfaRowStatus=gvcIfDcCfaRowStatus, gvcIfDlciMeasurementInterval=gvcIfDlciMeasurementInterval, gvcIfDnaHgMOpEntry=gvcIfDnaHgMOpEntry, gvcIfDlciVcDmepEntry=gvcIfDlciVcDmepEntry, gvcIfDlciRdev=gvcIfDlciRdev, gvcIfDnaAddrTable=gvcIfDnaAddrTable, gvcIfDcRemoteDna=gvcIfDcRemoteDna, gvcIfCidDataEntry=gvcIfCidDataEntry, gvcIfLcnVcLocalTxWindowSize=gvcIfLcnVcLocalTxWindowSize) mibBuilder.exportSymbols("Nortel-Magellan-Passport-GeneralVcInterfaceMIB", gvcIfDnaSdmLastTimeReachable=gvcIfDnaSdmLastTimeReachable, gvcIfDlciVcRowStatus=gvcIfDlciVcRowStatus, gvcIfDlciVcCalledLcn=gvcIfDlciVcCalledLcn, gvcIfDlciVcCalledDna=gvcIfDlciVcCalledDna, gvcIfDlciIndex=gvcIfDlciIndex, gvcIfDnaSdmComponentName=gvcIfDnaSdmComponentName, gvcIfDnaSdmDeviceUnreachable=gvcIfDnaSdmDeviceUnreachable, gvcIfLcnVcRowStatus=gvcIfLcnVcRowStatus, gvcIfSMacFFramesMatchingFilter=gvcIfSMacFFramesMatchingFilter, gvcIfLcnVcPreviousDiagnosticCode=gvcIfLcnVcPreviousDiagnosticCode, gvcIfFrSvcCurrentNumberOfSvcCalls=gvcIfFrSvcCurrentNumberOfSvcCalls, gvcIfDnaHgMAvailabilityDelta=gvcIfDnaHgMAvailabilityDelta, gvcIfLcnVcPathReliability=gvcIfLcnVcPathReliability, gvcIfDnaDdmLastTimeUnreachable=gvcIfDnaDdmLastTimeUnreachable, gvcIfFrSvcComponentName=gvcIfFrSvcComponentName, gvcIfDlciVcCallingDna=gvcIfDlciVcCallingDna, gvcIfDnaCug=gvcIfDnaCug, gvcIfDnaDefaultSendToNetworkPacketSize=gvcIfDnaDefaultSendToNetworkPacketSize, gvcIfDlciSapCircuitS2MacIndex=gvcIfDlciSapCircuitS2MacIndex, gvcIfLcnVcCallingNpi=gvcIfLcnVcCallingNpi, generalVcInterfaceGroupBE01A=generalVcInterfaceGroupBE01A, gvcIfDnaPacketSizes=gvcIfDnaPacketSizes, gvcIfDnaHgMOpTable=gvcIfDnaHgMOpTable, gvcIfDlciLdevRowStatus=gvcIfDlciLdevRowStatus, gvcIfDnaDdmStorageType=gvcIfDnaDdmStorageType)
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, single_value_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint') (interface_index, display_string, counter32, row_status, unsigned32, integer32, gauge32, row_pointer, storage_type) = mibBuilder.importSymbols('Nortel-Magellan-Passport-StandardTextualConventionsMIB', 'InterfaceIndex', 'DisplayString', 'Counter32', 'RowStatus', 'Unsigned32', 'Integer32', 'Gauge32', 'RowPointer', 'StorageType') (enterprise_date_and_time, non_replicated, dashed_hex_string, ascii_string, digit_string, hex_string, hex, link) = mibBuilder.importSymbols('Nortel-Magellan-Passport-TextualConventionsMIB', 'EnterpriseDateAndTime', 'NonReplicated', 'DashedHexString', 'AsciiString', 'DigitString', 'HexString', 'Hex', 'Link') (components, passport_mi_bs) = mibBuilder.importSymbols('Nortel-Magellan-Passport-UsefulDefinitionsMIB', 'components', 'passportMIBs') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (counter64, ip_address, counter32, mib_identifier, time_ticks, iso, integer32, notification_type, unsigned32, mib_scalar, mib_table, mib_table_row, mib_table_column, gauge32, module_identity, object_identity, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter64', 'IpAddress', 'Counter32', 'MibIdentifier', 'TimeTicks', 'iso', 'Integer32', 'NotificationType', 'Unsigned32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Gauge32', 'ModuleIdentity', 'ObjectIdentity', 'Bits') (display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention') general_vc_interface_mib = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58)) gvc_if = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107)) gvc_if_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1)) if mibBuilder.loadTexts: gvcIfRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIf components.') gvc_if_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatusEntry.setDescription('A single entry in the table represents a single gvcIf component.') gvc_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIf components. These components can be added and deleted.') gvc_if_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStorageType.setDescription('This variable represents the storage type value for the gvcIf tables.') gvc_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 15))) if mibBuilder.loadTexts: gvcIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfIndex.setDescription('This variable represents the index for the gvcIf tables.') gvc_if_cid_data_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30)) if mibBuilder.loadTexts: gvcIfCidDataTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCidDataTable.setDescription("This group contains the attribute for a component's Customer Identifier (CID). Refer to the attribute description for a detailed explanation of CIDs.") gvc_if_cid_data_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfCidDataEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCidDataEntry.setDescription('An entry in the gvcIfCidDataTable.') gvc_if_customer_identifier = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 30, 1, 1), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 8191)))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfCustomerIdentifier.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCustomerIdentifier.setDescription("This attribute holds the Customer Identifier (CID). Every component has a CID. If a component has a cid attribute, the component's CID is the provisioned value of that attribute; otherwise the component inherits the CID of its parent. The top- level component has a CID of 0. Every operator session also has a CID, which is the CID provisioned for the operator's user ID. An operator will see only the stream data for components having a matching CID. Also, the operator will be allowed to issue commands for only those components which have a matching CID. An operator CID of 0 is used to identify the Network Manager (referred to as 'NetMan' in DPN). This CID matches the CID of any component. Values 1 to 8191 inclusive (equivalent to 'basic CIDs' in DPN) may be assigned to specific customers.") gvc_if_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31)) if mibBuilder.loadTexts: gvcIfProvTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfProvTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvc_if_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfProvEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfProvEntry.setDescription('An entry in the gvcIfProvTable.') gvc_if_logical_processor = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfLogicalProcessor.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLogicalProcessor.setDescription('This attribute specifies the logical processor on which the General VC Interface service is running.') gvc_if_max_active_link_station = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 31, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 5000)).clone(100)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfMaxActiveLinkStation.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfMaxActiveLinkStation.setDescription('This attribute specifies the total number of link station connections that can be active on this service instance. In total maxActiveLinkStation determines the maximum number of Lcn components which may exist at a given time. Once this number is reached no calls will be initiated or accepted by this service instance.') gvc_if_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32)) if mibBuilder.loadTexts: gvcIfStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStateTable.setDescription('This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvc_if_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStateEntry.setDescription('An entry in the gvcIfStateTable.') gvc_if_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvc_if_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvc_if_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 32, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvc_if_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33)) if mibBuilder.loadTexts: gvcIfOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOpTable.setDescription('This group contains the operational attributes of the GvcIf component.') gvc_if_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfOpEntry.setDescription('An entry in the gvcIfOpTable.') gvc_if_active_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfActiveLinkStations.setDescription('This attribute indicates the number of active link station connections on this service instance at the time of the query. It includes the link stations using the Qllc, the Frame-Relay BAN and the Frame-Relay BNN connections.') gvc_if_issue_lcn_clear_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('disallowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfIssueLcnClearAlarm.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfIssueLcnClearAlarm.setDescription('This attribute indicates whether alarm issuing is allowed or disallowed whenever an Lcn is cleared. Alarm issuing should be allowed only for monitoring problems.') gvc_if_active_qllc_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 33, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfActiveQllcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfActiveQllcCalls.setDescription('This attribute indicates the number of active Qllc calls on this service instance at the time of the query. It includes incoming and outgoing calls.') gvc_if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34)) if mibBuilder.loadTexts: gvcIfStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStatsTable.setDescription('This group contains the statistics for the GvcIf component.') gvc_if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex')) if mibBuilder.loadTexts: gvcIfStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfStatsEntry.setDescription('An entry in the gvcIfStatsTable.') gvc_if_calls_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfCallsToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsToNetwork.setDescription('This attribute counts the number of Qllc and Frame-Relay calls initiated by this interface into the subnet, including successful and failed calls. When the maximum count is exceeded the count wraps to zero.') gvc_if_calls_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfCallsFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsFromNetwork.setDescription('This attribute counts the number of Qllc and Frame-Relay calls received from the subnet by this interface, including successful and failed calls. When the maximum count is exceeded the count wraps to zero.') gvc_if_calls_refused_by_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfCallsRefusedByNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsRefusedByNetwork.setDescription('This attribute counts the number of outgoing Qllc and Frame-Relay calls refused by the subnetwork. When the maximum count is exceeded the count wraps to zero.') gvc_if_calls_refused_by_interface = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfCallsRefusedByInterface.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfCallsRefusedByInterface.setDescription('This attribute counts the number of incoming Qllc and Frame-Relay calls refused by the interface. When the maximum count is exceeded the count wraps to zero.') gvc_if_peak_active_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfPeakActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfPeakActiveLinkStations.setDescription('This attribute indicates the maximum value of concurrently active link station connections since the service became active.') gvc_if_bcast_frames_discarded = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfBcastFramesDiscarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfBcastFramesDiscarded.setDescription('This attribute counts the number of broadcast frames that have been discarded because they do not meet one of the following criterias: - the source MAC address does not match the instance of at least one SourceMACFilter component, - the destination MAC address does not match the instance of at least one DestinationMACFilter component. When the maximum count is exceeded the count wraps to zero.') gvc_if_discarded_qllc_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 34, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDiscardedQllcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDiscardedQllcCalls.setDescription('This attribute indicates the number of Qllc calls that are discarded because the maxActiveLinkStation threshold is exceeded. When the maximum count is exceeded the count wraps to zero.') gvc_if_dc = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2)) gvc_if_dc_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1)) if mibBuilder.loadTexts: gvcIfDcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDc components.') gvc_if_dc_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcMacIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcSapIndex')) if mibBuilder.loadTexts: gvcIfDcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDc component.') gvc_if_dc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDc components. These components can be added and deleted.') gvc_if_dc_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcStorageType.setDescription('This variable represents the storage type value for the gvcIfDc tables.') gvc_if_dc_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDcMacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcMacIndex.setDescription('This variable represents an index for the gvcIfDc tables.') gvc_if_dc_sap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(2, 254))) if mibBuilder.loadTexts: gvcIfDcSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcSapIndex.setDescription('This variable represents an index for the gvcIfDc tables.') gvc_if_dc_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10)) if mibBuilder.loadTexts: gvcIfDcOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcOptionsTable.setDescription('This group defines attributes associated with direct call. It defines complete connection in terms of path and call options. This connection can be permanent (pvc) or switched (svc). It can have facilities. The total number of bytes of facilities including the facility codes, and all of the facility data from all of the four classes of facilities: CCITT_Facilities DTE_Facilities National_Facilities International_Facilities must not exceed 512 bytes.') gvc_if_dc_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcMacIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcSapIndex')) if mibBuilder.loadTexts: gvcIfDcOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcOptionsEntry.setDescription('An entry in the gvcIfDcOptionsTable.') gvc_if_dc_remote_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcRemoteNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRemoteNpi.setDescription('This attribute specifies the remote Numbering Plan Indicator (Npi) used in the remoteDna.') gvc_if_dc_remote_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcRemoteDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcRemoteDna.setDescription('This attribute specifies the Data Network Address (Dna) of the remote. This is the called (destination) DTE address (Dna) to which this direct call will be sent. Initially, the called DTE address attribute must be present, that is, there must be a valid destination address. However, it may be possible in the future to configure the direct call with a mnemonic address, in which case, this attribute will contain a zero-length Dna, and the mnemonic address will be carried as one of the facilities.') gvc_if_dc_user_data = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 8), hex_string().subtype(subtypeSpec=value_size_constraint(0, 128)).clone(hexValue='C3000000')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcUserData.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcUserData.setDescription("This attribute contains the user data which is appended to the call request packet that is presented to the called (destination) DTE. User data can be a 0 to 128 byte string for fast select calls; otherwise, it is 0 to 16 byte string. Fast select calls are indicated as such using the X.25 ITU-T CCITT facility for 'Reverse Charging'. The length of the user data attribute is not verified during service provisioning. If more than 16 bytes of user data is specified on a call without the fast select option, then the call is cleared with a clear cause of 'local procedure error', and a diagnostic code of 39 (as defined in ITU-T (CCITT) X.25).") gvc_if_dc_transfer_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 9, 255))).clone(namedValues=named_values(('normal', 0), ('high', 9), ('useDnaDefTP', 255))).clone('useDnaDefTP')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcTransferPriority.setDescription('This attribute specifies the default transfer priority to network for all outgoing calls using this particular Dna. It can overRide the outDefaultTransferPriority provisioned in the Dna component. The transfer priority is a preference specified by an application according to its time-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. The transfer priority in Passport determines two things in use: trunk queue (among interrupting, delay, throughput), and routing metric (between delay and throughput). The following table details each transfer priority. The default of outDefaultTransferPriority is useDnaDefTP.') gvc_if_dc_discard_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 3))).clone(namedValues=named_values(('normal', 0), ('high', 1), ('useDnaDefPriority', 3))).clone('useDnaDefPriority')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcDiscardPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcDiscardPriority.setDescription('This attribute specifies the discard priority for outgoing call using this DLCI. The discard priority has three provisioning values: normal, high, and useDnaDefPriority. Traffic with normal priority are discarded first than the traffic with high priority. The Dna default value (provisioned by outDefaultPriority) is taken if this attribute is set to the value useDnaDefPriority. The default of discardPriority is useDnaDefPriority.') gvc_if_dc_cfa_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490)) if mibBuilder.loadTexts: gvcIfDcCfaTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaTable.setDescription("This is the i'th CCITT facility required for this direct call. Within the provisioning system, the user specifies the facility code along with the facility parameters. The facility is represented internally as a hexadecimal string following the X.25 CCITT representation for facility data. The user specifies the facility code when adding, changing or deleting a facility. The upper two bits of the facility code indicate the class of facility. From the class of the facility, one can derive the number of bytes of facility data, as follows: Class A - 1 byte of fax data Class B - 2 bytes of fax data Class C - 3 bytes of fax data Class D - variable length of fax data.") gvc_if_dc_cfa_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcMacIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcSapIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDcCfaIndex')) if mibBuilder.loadTexts: gvcIfDcCfaEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaEntry.setDescription('An entry in the gvcIfDcCfaTable.') gvc_if_dc_cfa_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 1), value_range_constraint(2, 2), value_range_constraint(3, 3), value_range_constraint(4, 4), value_range_constraint(9, 9), value_range_constraint(66, 66), value_range_constraint(67, 67), value_range_constraint(68, 68), value_range_constraint(71, 71), value_range_constraint(72, 72), value_range_constraint(73, 73), value_range_constraint(196, 196), value_range_constraint(198, 198)))) if mibBuilder.loadTexts: gvcIfDcCfaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaIndex.setDescription('This variable represents the index for the gvcIfDcCfaTable.') gvc_if_dc_cfa_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 2), hex_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDcCfaValue.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaValue.setDescription('This variable represents an individual value for the gvcIfDcCfaTable.') gvc_if_dc_cfa_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 2, 490, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: gvcIfDcCfaRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDcCfaRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the gvcIfDcCfaTable.') gvc_if_r_dna_map = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3)) gvc_if_r_dna_map_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1)) if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfRDnaMap components.') gvc_if_r_dna_map_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRDnaMapNpiIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRDnaMapDnaIndex')) if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfRDnaMap component.') gvc_if_r_dna_map_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfRDnaMap components. These components can be added and deleted.') gvc_if_r_dna_map_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRDnaMapComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_r_dna_map_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRDnaMapStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapStorageType.setDescription('This variable represents the storage type value for the gvcIfRDnaMap tables.') gvc_if_r_dna_map_npi_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1)))) if mibBuilder.loadTexts: gvcIfRDnaMapNpiIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapNpiIndex.setDescription('This variable represents an index for the gvcIfRDnaMap tables.') gvc_if_r_dna_map_dna_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 1, 1, 11), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))) if mibBuilder.loadTexts: gvcIfRDnaMapDnaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapDnaIndex.setDescription('This variable represents an index for the gvcIfRDnaMap tables.') gvc_if_r_dna_map_lan_ad_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10)) if mibBuilder.loadTexts: gvcIfRDnaMapLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvc_if_r_dna_map_lan_ad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRDnaMapNpiIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRDnaMapDnaIndex')) if mibBuilder.loadTexts: gvcIfRDnaMapLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapLanAdEntry.setDescription('An entry in the gvcIfRDnaMapLanAdTable.') gvc_if_r_dna_map_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRDnaMapMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvc_if_r_dna_map_sap = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 3, 10, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(2, 254)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRDnaMapSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRDnaMapSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvc_if_lcn = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4)) gvc_if_lcn_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1)) if mibBuilder.loadTexts: gvcIfLcnRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfLcn components.') gvc_if_lcn_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex')) if mibBuilder.loadTexts: gvcIfLcnRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfLcn component.') gvc_if_lcn_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfLcn components. These components cannot be added nor deleted.') gvc_if_lcn_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_lcn_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStorageType.setDescription('This variable represents the storage type value for the gvcIfLcn tables.') gvc_if_lcn_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))) if mibBuilder.loadTexts: gvcIfLcnIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnIndex.setDescription('This variable represents the index for the gvcIfLcn tables.') gvc_if_lcn_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11)) if mibBuilder.loadTexts: gvcIfLcnStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStateTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvc_if_lcn_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex')) if mibBuilder.loadTexts: gvcIfLcnStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnStateEntry.setDescription('An entry in the gvcIfLcnStateTable.') gvc_if_lcn_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvc_if_lcn_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvc_if_lcn_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 11, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvc_if_lcn_lcn_c_id_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12)) if mibBuilder.loadTexts: gvcIfLcnLcnCIdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnLcnCIdTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group indicates the information about the LAN circuit.') gvc_if_lcn_lcn_c_id_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex')) if mibBuilder.loadTexts: gvcIfLcnLcnCIdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnLcnCIdEntry.setDescription('An entry in the gvcIfLcnLcnCIdTable.') gvc_if_lcn_circuit_id = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 12, 1, 1), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnCircuitId.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnCircuitId.setDescription('This attribute indicates the component name of the Vr/n Sna SnaCircuitEntry which represents this connection in the SNA DLR service. This component contains operational data about the LAN circuit.') gvc_if_lcn_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13)) if mibBuilder.loadTexts: gvcIfLcnOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group contains the operational Lcn attributes.') gvc_if_lcn_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex')) if mibBuilder.loadTexts: gvcIfLcnOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnOperEntry.setDescription('An entry in the gvcIfLcnOperTable.') gvc_if_lcn_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('idle', 0), ('localDeviceCalling', 1), ('remoteDeviceCalling', 2), ('callUp', 3), ('serviceInitiatedClear', 4), ('localDeviceClearing', 5), ('remoteDeviceClearing', 6), ('terminating', 7), ('deviceMonitoring', 8), ('deviceMonitoringSuspended', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnState.setDescription('This attribute indicates the logical channel internal state.') gvc_if_lcn_dna_map = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 2), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnDnaMap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnDnaMap.setDescription('This attribute indicates the component name of the Ddm, Sdm or Ldev which contains the MAC address of the device being monitored by this Lcn.') gvc_if_lcn_source_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 13, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnSourceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnSourceMac.setDescription('This attribute indicates the source MAC address inserted by this LCN in the SA field of the 802.5 frames sent to the local ring.') gvc_if_lcn_vc = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2)) gvc_if_lcn_vc_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1)) if mibBuilder.loadTexts: gvcIfLcnVcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfLcnVc components.') gvc_if_lcn_vc_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnVcIndex')) if mibBuilder.loadTexts: gvcIfLcnVcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfLcnVc component.') gvc_if_lcn_vc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfLcnVc components. These components cannot be added nor deleted.') gvc_if_lcn_vc_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_lcn_vc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStorageType.setDescription('This variable represents the storage type value for the gvcIfLcnVc tables.') gvc_if_lcn_vc_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfLcnVcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIndex.setDescription('This variable represents the index for the gvcIfLcnVc tables.') gvc_if_lcn_vc_cad_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10)) if mibBuilder.loadTexts: gvcIfLcnVcCadTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCadTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group represents operational call data related to General Vc. It can be displayed only for General Vc which is created by application.') gvc_if_lcn_vc_cad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnVcIndex')) if mibBuilder.loadTexts: gvcIfLcnVcCadEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCadEntry.setDescription('An entry in the gvcIfLcnVcCadTable.') gvc_if_lcn_vc_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('svc', 0), ('pvc', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcType.setDescription('This attribute displays the type of call, pvc or svc. type is provided at provisioning time.') gvc_if_lcn_vc_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('creating', 0), ('readyP1', 1), ('dteWaitingP2', 2), ('dceWaitingP3', 3), ('dataTransferP4', 4), ('unsupportedP5', 5), ('dteClearRequestP6', 6), ('dceClearIndicationP7', 7), ('termination', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcState.setDescription('This attribute displays the state of call control. P5 state is not supported but is listed for completness. Transitions from one state to another take very short time. state most often displayed is dataTransferP4.') gvc_if_lcn_vc_previous_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('creating', 0), ('readyP1', 1), ('dteWaitingP2', 2), ('dceWaitingP3', 3), ('dataTransferP4', 4), ('unsupportedP5', 5), ('dteClearRequestP6', 6), ('dceClearIndicationP7', 7), ('termination', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPreviousState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPreviousState.setDescription('This attribute displays the previous state of call control. This is a valuable field to determine how the processing is progressing.') gvc_if_lcn_vc_diagnostic_code = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvc_if_lcn_vc_previous_diagnostic_code = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPreviousDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPreviousDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvc_if_lcn_vc_called_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCalledNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the called end.') gvc_if_lcn_vc_called_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 7), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCalledDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledDna.setDescription('This attribute displays the Data Network Address (Dna) of the called (destination) DTE to which this call is sent. This address if defined at recieving end will complete Vc connection.') gvc_if_lcn_vc_called_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCalledLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCalledLcn.setDescription('This attribute displays the Logical Channel Number of the called end. It is valid only after both ends of Vc exchanged relevant information.') gvc_if_lcn_vc_calling_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCallingNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the calling end.') gvc_if_lcn_vc_calling_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCallingDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingDna.setDescription('This attribute displays the Data Network Address (Dna) of the calling end.') gvc_if_lcn_vc_calling_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCallingLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallingLcn.setDescription('This attribute displays the Logical Channel Number of the calling end.') gvc_if_lcn_vc_accounting_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('yes', 0), ('no', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnabled.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnabled.setDescription('This attribute indicates that this optional section of accounting record is suppressed or permitted. If accountingEnabled is yes, conditions for generation of accounting record were met. These conditions include billing options, vc recovery conditions and Module wide accounting data options.') gvc_if_lcn_vc_fast_select_call = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('no', 0), ('yes', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcFastSelectCall.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcFastSelectCall.setDescription('This attribute displays that this is a fast select call.') gvc_if_lcn_vc_local_rx_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('unknown', 0), ('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxPktSize.setDescription('This attribute displays the locally negotiated size of send packets.') gvc_if_lcn_vc_local_tx_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('unknown', 0), ('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxPktSize.setDescription('This attribute displays the locally negotiated size of send packets.') gvc_if_lcn_vc_local_tx_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 16), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalTxWindowSize.setDescription('This attribute displays the send window size provided on incoming call packets or the default when a call request packet does not explicitly provide the window size.') gvc_if_lcn_vc_local_rx_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 17), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 127))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcLocalRxWindowSize.setDescription('This attribute displays the receive window size provided on incoming call packets or the default when a call request does not explicitly provide the window sizes.') gvc_if_lcn_vc_path_reliability = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('high', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPathReliability.setDescription('This attribute displays the path reliability.') gvc_if_lcn_vc_accounting_end = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('callingEnd', 0), ('calledEnd', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnd.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAccountingEnd.setDescription('This attribute indicates if this end should generate an accounting record. Normally, callingEnd is the end to generate an accounting record.') gvc_if_lcn_vc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('high', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPriority.setDescription('This attribute displays whether the call is a normal or a high priority call.') gvc_if_lcn_vc_segment_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSegmentSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentSize.setDescription('This attribute displays the segment size (in bytes) used on the call. It is used to calculate the number of segments transmitted and received.') gvc_if_lcn_vc_subnet_tx_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('unknown', 0), ('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxPktSize.setDescription('This attribute displays the locally negotiated size of the data packets on this Vc.') gvc_if_lcn_vc_subnet_tx_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 24), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetTxWindowSize.setDescription('This attribute displays the current send window size of Vc.') gvc_if_lcn_vc_subnet_rx_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('unknown', 0), ('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxPktSize.setDescription('This attribute displays the locally negotiated size of receive packets.') gvc_if_lcn_vc_subnet_rx_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 26), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRxWindowSize.setDescription('This attribute displays the receive window size provided on incoming call packets and to the default when a call request does not explicitly provide the window sizes.') gvc_if_lcn_vc_max_subnet_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcMaxSubnetPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcMaxSubnetPktSize.setDescription('This attribute displays the maximum packet size allowed on Vc.') gvc_if_lcn_vc_transfer_priority_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 9))).clone(namedValues=named_values(('normal', 0), ('high', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityToNetwork.setDescription('This attribute displays the priority in which data is transferred to the network. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, the routing metric is set to throughput.') gvc_if_lcn_vc_transfer_priority_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 10, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 9))).clone(namedValues=named_values(('normal', 0), ('high', 9)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcTransferPriorityFromNetwork.setDescription('This attribute displays the priority in which data is transferred from the network. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, and the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, and the routing metric is set to throughput.') gvc_if_lcn_vc_intd_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11)) if mibBuilder.loadTexts: gvcIfLcnVcIntdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIntdTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This group defines display of interval data collected by Vc. Data in this group is variable and may depend on time when this display command is issued.') gvc_if_lcn_vc_intd_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnVcIndex')) if mibBuilder.loadTexts: gvcIfLcnVcIntdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcIntdEntry.setDescription('An entry in the gvcIfLcnVcIntdTable.') gvc_if_lcn_vc_call_reference_number = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 1), hex().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcCallReferenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcCallReferenceNumber.setDescription('This attribute displays the call reference number which is a unique number generated by the switch.The same Call Reference Number is stored in the interval data (accounting record) at both ends of the call. It can be used as one of the attributes in matching duplicate records generated at each end of the call.') gvc_if_lcn_vc_elapsed_time_till_now = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcElapsedTimeTillNow.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcElapsedTimeTillNow.setDescription('This attribute displays the elapsed time representing the period of this interval data. It is elapsed time in 0.1 second increments since Vc started.') gvc_if_lcn_vc_segments_rx = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsRx.setDescription('This attribute displays the number of segments received at the time command was issued. This is the segment received count maintained by accounting at each end of the Vc. This counter is updated only when the packet cannot be successfully delivered out of the sink Vc and to the sink AP Conditions in which packets may be discarded by the sink Vc include: missing packets due to subnet discards, segmentation protocol violations due to subnet discard, duplicated and out-of-ranged packets and packets that arrive while Vc is in path recovery state.') gvc_if_lcn_vc_segments_sent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsSent.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSegmentsSent.setDescription('This attribute displays the number of segments sent at the time command was issued. This is the segment sent count maintained by accounting at the source Vc. Vc only counts packets that Vc thinks can be delivered successfully into the subnet. In reality, these packets may be dropped by trunking, for instance. This counter is not updated when splitting fails, when Vc is in a path recovery state, when packet forwarding fails to forward this packet and when subsequent packets have to be discarded as we want to minimize the chance of out-of-sequence and do not intentionally send out-of- sequenced packets into the subnet.') gvc_if_lcn_vc_start_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 11, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcStartTime.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStartTime.setDescription('This attribute displays the start time of this interval period. If Vc spans 12 hour time or time of day change startTime reflects new time as recorded at 12 hour periods or time of day changes.') gvc_if_lcn_vc_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12)) if mibBuilder.loadTexts: gvcIfLcnVcStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStatsTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** ... Statistics(Stats) This group defines general attributes collected by general Vc. The purpose of Vc attributes is to aid end users and verification people to understand the Vc internal behavior. This is particularly useful when the network has experienced abnormality and we want to isolate problems and pinpoint trouble spots. Attributes are collected on a per Vc basis. Until a need is identified, statistics are not collected at a processor level. Each attribute is stored in a 32 bit field and is initialized to zero when a Vc enters into the data transfer state. When a PVC is disconnected and then connected again, the attributes will be reset. Attributes cannot be reset through other methods.') gvc_if_lcn_vc_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfLcnVcIndex')) if mibBuilder.loadTexts: gvcIfLcnVcStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcStatsEntry.setDescription('An entry in the gvcIfLcnVcStatsTable.') gvc_if_lcn_vc_ack_stacking_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcAckStackingTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcAckStackingTimeouts.setDescription('This attribute counts the number of ack stacking timer expiries. It is used as an indicator of the acknowledgment behavior across the subnet when ack stacking is in effect. If it expires often, usually this means end users will experience longer delay. The ack stacking timer specifies how long the Vc will wait before finally sending the subnet acknowledgment. if this attribute is set to a value of 0, then the Vc will automatically return acknowledgment packets without delay. If this attribute is set to a value other than zero, then the Vc will wait for this amount of time in an attempt to piggyback the acknowledgment packet on another credit or data packet. If the Vc cannot piggyback the acknowledgment packet within this time, then the packet is returned without piggybacking.') gvc_if_lcn_vc_out_of_range_frm_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcOutOfRangeFrmFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcOutOfRangeFrmFromSubnet.setDescription('This attribute counts the number of subnet frames discarded due to the sequence number being out of range. Two Categories apply for the General Vc 1) lost Acks (previous Range) 2) unexpected Packets (next Range) Vc internally maintains its own sequence number of packet order and sequencing. Due to packet retransmission, Vc may receive duplicate packets that have the same Vc internal sequence number. Only 1 copy is accepted by the Vc and other copies of the same packets are detected through this count. This attribute can be used to record the frequency of packet retransmission due to Vc and other part of the subnet.') gvc_if_lcn_vc_duplicates_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcDuplicatesFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcDuplicatesFromSubnet.setDescription('This attribute counts the number of subnet packets discarded due to duplication. It is used to detect software error fault or duplication caused by retransmitting.') gvc_if_lcn_vc_frm_retry_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcFrmRetryTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcFrmRetryTimeouts.setDescription('This attribute counts the number of frames which have retransmission time-out. If packets from Vc into the subnet are discarded by the subnet, the source Vc will not receive any acknowledgment. The retransmission timer then expires and packets will be retransmitted again. Note that the Vc idle probe may be retransmitted and is included in this count. This statistics does not show the distribution of how many times packets are retransmitted (e.g. first retransmission results in successful packet forwarding).') gvc_if_lcn_vc_peak_retry_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPeakRetryQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakRetryQueueSize.setDescription('This attribute indicates the peak size of the retransmission queue. This attribute is used as an indicator of the acknowledgment behavior across the subnet. It records the largest body of unacknowledged packets.') gvc_if_lcn_vc_peak_oo_seq_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqQueueSize.setDescription('This attribute indicates the peak size of the out of sequence queue. This attribute is used as an indicator of the sequencing behavior across the subnet. It records the largest body of out of sequence packets.') gvc_if_lcn_vc_peak_oo_seq_frm_forwarded = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqFrmForwarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakOoSeqFrmForwarded.setDescription('This attribute indicates the peak size of the sequence packet queue. This attribute is used as an indicator of the sequencing behavior across the subnet. It records the largest body of out of sequence packets, which by the receipt of an expected packet have been transformed to expected packets. The number of times this peak is reached is not recorded as it is traffic dependent.') gvc_if_lcn_vc_peak_stacked_acks_rx = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcPeakStackedAcksRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcPeakStackedAcksRx.setDescription('This attribute indicates the peak size of wait acks. This attribute is used as an indicator of the acknowledgment behavior across the subnet. It records the largest collective acknowledgment.') gvc_if_lcn_vc_subnet_recoveries = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRecoveries.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcSubnetRecoveries.setDescription('This attribute counts the number of successful Vc recovery attempts. This attribute is used as an indicator of how many times the Vc path is broken but can be recovered. This attribute is useful to record the number of network path failures.') gvc_if_lcn_vc_window_closures_to_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresToSubnet.setDescription('This attribute counts the number of window closures to subnet. A packet may have been sent into the subnet but its acknowledgment from the remote Vc has not yet been received. This is a 8 bit sequence number.This number is useful in detecting whether the Vc is sending any packet into the subnet.') gvc_if_lcn_vc_window_closures_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWindowClosuresFromSubnet.setDescription('This attribute counts the number of window closures from subnet. This attribute is useful in detecting whether the Vc is receiving any packet from the subnet.') gvc_if_lcn_vc_wr_triggers = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 4, 2, 12, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfLcnVcWrTriggers.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfLcnVcWrTriggers.setDescription('This attribute displays the number of times the Vc stays within the W-R region. The W-R region is a value used to determined the timing of credit transmission. Should the current window size be beneath this value, the credits will be transmitted immediately. Otherwise, they will be transmitted later with actual data. The wrTriggers statistic is therefore used to analyze the flow control and credit mechanism.') gvc_if_dna = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5)) gvc_if_dna_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1)) if mibBuilder.loadTexts: gvcIfDnaRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDna components.') gvc_if_dna_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex')) if mibBuilder.loadTexts: gvcIfDnaRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDna component.') gvc_if_dna_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDna components. These components can be added and deleted.') gvc_if_dna_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaStorageType.setDescription('This variable represents the storage type value for the gvcIfDna tables.') gvc_if_dna_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 99))) if mibBuilder.loadTexts: gvcIfDnaIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIndex.setDescription('This variable represents the index for the gvcIfDna tables.') gvc_if_dna_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11)) if mibBuilder.loadTexts: gvcIfDnaAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAddrTable.setDescription('This group contains attributes common to all DNAs. Every DNA used in the network is defined with this group of 2 attributes, a string of address digits and a NPI.') gvc_if_dna_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex')) if mibBuilder.loadTexts: gvcIfDnaAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAddrEntry.setDescription('An entry in the gvcIfDnaAddrTable.') gvc_if_dna_numbering_plan_indicator = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaNumberingPlanIndicator.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaNumberingPlanIndicator.setDescription('This attribute indicates the Numbering Plan Indicator (NPI) of the Dna that is entered. Address may belong to X.121 or E.164 plans.') gvc_if_dna_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 11, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDataNetworkAddress.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDataNetworkAddress.setDescription('This attribute contains digits which form the unique identifier of the customer interface. It can be compared (approximation only) to telephone number where the telephone number identifies a unique telephone set. Dna digits are selected and assigned by network operators.') gvc_if_dna_outgoing_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12)) if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsTable.setDescription('This group defines call options of a Dna for calls which are made out of the interface represented by Dna.') gvc_if_dna_outgoing_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex')) if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutgoingOptionsEntry.setDescription('An entry in the gvcIfDnaOutgoingOptionsTable.') gvc_if_dna_out_default_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('high', 1))).clone('normal')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPriority.setDescription('This attribute, if set to normal indicates that the default priority for outgoing calls (from the DTE to the network) for this particular Dna is normal priority - if the priority is not specified by the DTE. If this attribute is set to high then the default priority for outgoing calls using this particular Dna is high priority. This option can also be included in X.25 signalling, in which case it will be overruled.') gvc_if_dna_out_default_path_sensitivity = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('throughput', 0), ('delay', 1))).clone('throughput')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathSensitivity.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathSensitivity.setDescription('This attribute specifies the default class of routing for delay/ throughput sensitive routing for all outgoing calls (from the DTE to the network)for this particular Dna. The chosen default class of routing applies to all outgoing calls established using this Dna, and applies to the packets travelling in both directions on all outgoing calls (local to remote, and remote to local). For incoming calls, the default class of routing is chosen by the calling party (as opposed to DPN, where either end of the call can choose the default routing class). This attribute, if set to a value of throughput, indicates that the default class of routing is throughput sensitive routing. If set to a value of delay, then the default class of routing is delay sensitive routing. In the future, the class of routing sensitivity may be overridden at the calling end of the call as follows: The default class of routing sensitivity can be overridden by the DTE in the call request packet through the TDS&I (Transit Delay Selection & Indication) if the DTE supports this facility. Whether or not the DTE is permitted to signal the TDS&I facility will depend on the DTE (i.e.: TDS&I is supported in X.25 only), and will depend on whether the port is configured to permit the TDS&I facility. In Passport, the treatment of DTE facilities (for example, NUI, RPOA, and TDS&I) not fully defined yet since it is not required. At the point in time when it is required, the parameter to control whether or not the DTE is permitted to signal the TDS&I will be in a Facility Treatment component. Currently, the default is to disallow the TDS&I facility from the DTE.') gvc_if_dna_out_default_path_reliability = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('high', 0), ('normal', 1))).clone('high')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutDefaultPathReliability.setDescription('This attribute specifies the default class of routing for reliability routing for all outgoing calls (from the DTE to the network) this particular Dna. The chosen default class of routing applies to all outgoing calls established using this Dna, and applies to the packets travelling in both directions on all outgoing calls (local to remote, and remote to local). For incoming calls, the default class of routing is chosen by the calling party (as opposed to DPN, where either end of the call can choose the default routing class). This attribute, if set to a value of normal, indicates that the default class of routing is normal reliability routing. If set to a value of high, then the default class of routing is high reliability routing. High reliability is the standard choice for most DPN and Passport services. It usually indicates that packets are overflowed or retransmitted at various routing levels. Typically high reliability results in duplication and disordering of packets in the network when errors are detected or during link congestion. However, the Vc handles the duplication and disordering to ensure that packets are delivered to the DTE properly. For the Frame Relay service, duplication of packets is not desired, in which case, normal reliability may be chosen as the preferred class of routing.') gvc_if_dna_out_access = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaOutAccess.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaOutAccess.setDescription("This attribute is an extension of the Closed User Group (CUG), as follows: This attribute, if set to a value of allowed indicates that outgoing calls (from the DTE to the network) the open (non-CUG) of the network are permitted. It also permits outgoing calls to DTEs that have Incoming Access capabilities. If set to a value of disallowed, then such calls cannot be made using this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Closed User Group with Outgoing Access' feature for Dnas in that outgoing access is granted if this attribute is set to a value of allowed.") gvc_if_dna_default_transfer_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 9))).clone(namedValues=named_values(('normal', 0), ('high', 9))).clone('normal')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultTransferPriority.setDescription('This attribute specifies the default transfer priority to network for all outgoing calls using this particular Dna. It can be overRide by the transferPriority provisioned in the DLCI Direct Call sub- component. The transfer priority is a preference specified by an application according to its time-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. The transfer priority in Passport determines two things in use: trunk queue (among interrupting, delay, throughput), and routing metric (between delay and throughput). The following table descibes the details of each transfer priority: The default of outDefaultTransferPriority is normal.') gvc_if_dna_transfer_priority_over_ride = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 12, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('no', 0), ('yes', 1))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaTransferPriorityOverRide.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaTransferPriorityOverRide.setDescription('When this attribute is set to yes in the call request, the called end will use the calling end provisioning data on transfer priority to override its own provisioning data. If it is set no, the called end will use its own provisioning data on transfer priority. The default of outTransferPriorityOverRide is yes.') gvc_if_dna_incoming_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13)) if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsTable.setDescription('IncomingOptions defines set of options for incoming calls. These options are used for calls arriving to the interface represented by Dna. For calls originated from the interface, IncomingOptions attributes are not used.') gvc_if_dna_incoming_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex')) if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncomingOptionsEntry.setDescription('An entry in the gvcIfDnaIncomingOptionsTable.') gvc_if_dna_inc_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncCalls.setDescription("This attribute, if set to a value of allowed indicates that incoming calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then incoming calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Incoming Calls Barred' feature for Dnas in that incoming calls are barred if this attribute is set to a value of disallowed. Either outCalls, or incCalls (or both) be set to a value of allowed for this Dna to be usable.") gvc_if_dna_inc_high_priority_reverse_charge = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncHighPriorityReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncHighPriorityReverseCharge.setDescription("This attribute, if set to a value of allowed indicates that incoming high priority, reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute, together with the incNormalPriorityReverseChargeCalls attribute corresponds to the CCITT 'Reverse Charging Acceptance' feature for Dnas in that reverse charged calls are accepted if both attributes are set to a value of allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.") gvc_if_dna_inc_normal_priority_reverse_charge = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncNormalPriorityReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncNormalPriorityReverseCharge.setDescription("This attribute, if set to a value of allowed indicates that incoming normal priority, reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute, together with the incHighPriorityReverseChargeCalls attribute corresponds to the CCITT 'Reverse Charging Acceptance' feature for Dnas in that reverse charged calls are accepted if both attributes are set to a value of allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.") gvc_if_dna_inc_intl_normal_charge = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncIntlNormalCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncIntlNormalCharge.setDescription('This attribute, if set to a value of allowed indicates that incoming international normal charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute also currently controls access to/from the E.164 numbering plan, and if set to a value of allowed, then cross- numbering plan calls (also normal charged) allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvc_if_dna_inc_intl_reverse_charge = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncIntlReverseCharge.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncIntlReverseCharge.setDescription('This attribute, if set to a value of allowed indicates that incoming international reverse charged calls (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute also currently controls access to/from the E.164 numbering plan, and if set to a value of allowed, then cross- numbering plan calls (also normal charged) allowed. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvc_if_dna_inc_same_service = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaIncSameService.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncSameService.setDescription('This attribute, if set to a value of allowed indicates that incoming calls from the same service type (e.g.: X.25, ITI, SNA) (from the network to the DTE) be made to this Dna. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute is ignored if the corresponding attribute, incCalls is set to a value of disallowed.') gvc_if_dna_inc_access = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 13, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaIncAccess.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaIncAccess.setDescription("This attribute is an extension of the Closed User Group (CUG), as follows: This attribute, if set to a value of allowed indicates that incoming calls (from the network to the DTE) the open (non-CUG) of the network are permitted. It also permits incoming calls from DTEs that have Outgoing Access capabilities. If set to a value of disallowed, then such calls cannot be made to this Dna - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Closed User Group with Incoming Access' feature for Dnas in that incoming access is granted if this attribute is set to a value of allowed.") gvc_if_dna_call_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14)) if mibBuilder.loadTexts: gvcIfDnaCallOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCallOptionsTable.setDescription('CallOptions group defines additional options for calls not related directly to direction of a call.') gvc_if_dna_call_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex')) if mibBuilder.loadTexts: gvcIfDnaCallOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCallOptionsEntry.setDescription('An entry in the gvcIfDnaCallOptionsTable.') gvc_if_dna_service_category = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 20, 21, 22, 23, 24, 25, 26, 28, 29, 30, 31, 32))).clone(namedValues=named_values(('gsp', 0), ('x25', 1), ('enhancedIti', 2), ('ncs', 3), ('mlti', 4), ('sm', 5), ('ici', 6), ('dsp3270', 7), ('iam', 8), ('mlhi', 9), ('term3270', 10), ('iti', 11), ('bsi', 13), ('hostIti', 14), ('x75', 15), ('hdsp3270', 16), ('api3201', 20), ('sdlc', 21), ('snaMultiHost', 22), ('redirectionServ', 23), ('trSnaTpad', 24), ('offnetNui', 25), ('gasServer', 26), ('vapServer', 28), ('vapAgent', 29), ('frameRelay', 30), ('ipiVc', 31), ('gvcIf', 32))).clone('gvcIf')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaServiceCategory.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaServiceCategory.setDescription('This attribute is assigned for each different type of service within which this Dna is configured. It is placed into the Service Category attribute in the accounting record by both ends of the Vc.') gvc_if_dna_packet_sizes = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(2, 2)).setFixedLength(2).clone(hexValue='ff80')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaPacketSizes.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaPacketSizes.setDescription('This attribute indicates the allowable packet sizes supported for call setup using this Dna. CCITT recommends that packet size 128 always be supported. Description of bits: n16(0) n32(1) n64(2) n128(3) n256(4) n512(5) n1024(6) n2048(7) n4096(8)') gvc_if_dna_default_recv_frm_network_packet_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12))).clone('n4096')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkPacketSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkPacketSize.setDescription('This attribute indicates the default local receive packet size from network to DTE for all calls using this particular Dna.') gvc_if_dna_default_send_to_network_packet_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(4, 5, 6, 7, 8, 9, 10, 11, 12))).clone(namedValues=named_values(('n16', 4), ('n32', 5), ('n64', 6), ('n128', 7), ('n256', 8), ('n512', 9), ('n1024', 10), ('n2048', 11), ('n4096', 12))).clone('n4096')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkPacketSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkPacketSize.setDescription('This attribute indicates the default local send packet size from DTE to network for all calls using this particular Dna.') gvc_if_dna_default_recv_frm_network_thruput_class = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(13)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkThruputClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkThruputClass.setDescription('This attribute indicates the default receive throughput class for all calls using this particular Dna.') gvc_if_dna_default_send_to_network_thruput_class = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 15)).clone(13)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkThruputClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkThruputClass.setDescription('This attribute indicates the default send throughput class for all calls using this particular Dna.') gvc_if_dna_default_recv_frm_network_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultRecvFrmNetworkWindowSize.setDescription('This attribute indicates the default number of data packets that can be received by the DTE from the DCE before more packets can be received. This view is oriented with respect to the DTE.') gvc_if_dna_default_send_to_network_window_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkWindowSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDefaultSendToNetworkWindowSize.setDescription('This attribute indicates the number of data packets that can be transmitted from the DTE to the DCE and must be acknowledged before more packets can be transmitted.') gvc_if_dna_packet_size_negotiation = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('endToEnd', 0), ('local', 1))).clone('local')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaPacketSizeNegotiation.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaPacketSizeNegotiation.setDescription('This attribute, if set to local indicates that packet sizes can be negotiated locally at the interface irrespective of the remote interface. If set to endtoEnd, then local negotiation is not permitted and packet sizes are negotiated between 2 ends of Vc.') gvc_if_dna_cug_format = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('basic', 0), ('extended', 1))).clone('basic')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugFormat.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugFormat.setDescription('This attribute specifies which Cug format is used when DTE signals CUG indices, basic or extended. This attribute, if set to extended indicates that the DTE signals and receives CUG indices in extended CUG format. If set to a value of basic, then the DTE signals and receives CUG indices in the basic CUG format.') gvc_if_dna_account_class = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 16), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaAccountClass.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAccountClass.setDescription('This attribute specifies the accounting class which is reserved for network operations usage. Its value is returned in the accounting record in the local and remote service type attributes. Use of this attribute is decided by network operator and it is an arbitrary number.') gvc_if_dna_account_collection = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 17), octet_string().subtype(subtypeSpec=value_size_constraint(1, 1)).setFixedLength(1).clone(hexValue='80')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaAccountCollection.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaAccountCollection.setDescription('This attribute indicates that accounting records are to be collected by the network for the various reasons: billing, test, study, auditing. The last of the parameters, force, indicates that accounting records are to be collected irrespective of other collection reasons. If none of these reasons are set, then accounting will be suppressed. Description of bits: bill(0) test(1) study(2) audit(3) force(4)') gvc_if_dna_service_exchange = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 14, 1, 18), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaServiceExchange.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaServiceExchange.setDescription('This attribute is an arbitrary number, entered by the network operator. The value of serviceExchange is included in the accounting record generated by Vc.') gvc_if_dna_cug = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2)) gvc_if_dna_cug_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1)) if mibBuilder.loadTexts: gvcIfDnaCugRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaCug components.') gvc_if_dna_cug_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaCugIndex')) if mibBuilder.loadTexts: gvcIfDnaCugRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaCug component.') gvc_if_dna_cug_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaCug components. These components can be added and deleted.') gvc_if_dna_cug_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaCugComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_cug_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaCugStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaCug tables.') gvc_if_dna_cug_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))) if mibBuilder.loadTexts: gvcIfDnaCugIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugIndex.setDescription('This variable represents the index for the gvcIfDnaCug tables.') gvc_if_dna_cug_cug_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10)) if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsTable.setDescription('Attributes in this group defines ClosedUserGroup options associated with interlockCode. Dnas with the same Cug (interlockCode) make calls within this group. Various combinations which permit or prevent calls in the same Cug group are defined here.') gvc_if_dna_cug_cug_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaCugIndex')) if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugCugOptionsEntry.setDescription('An entry in the gvcIfDnaCugCugOptionsTable.') gvc_if_dna_cug_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('national', 0), ('international', 1))).clone('national')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugType.setDescription('This attribute specifies the Cug type - the Cug is either a national Cug, or an international Cug. International closed user groups are usually established between DTEs for which there is an X.75 Gateway between; whereas national closed user groups are usually established between DTEs for which there is no X.75 Gateway between. (National Cugs cannot normally traverse an X.75 Gateway). If this attribute is set to national, then the Cug is a national Cug, in which case, the dnic should be left at its default value since it is not part of a national Cug. If this attribute is set to international, then the Cug is an international Cug, in which case, the dnic should be set appropriately as part of the Cug interlockCode.') gvc_if_dna_cug_dnic = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4).clone(hexValue='30303030')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugDnic.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugDnic.setDescription('This attribute specifies the dnic (Data Network ID Code) the Cug by which packet networks are identified. This attribute is not applicable if the Cug is a national Cug, as specified by the Cug type attribute. There are usually 1 or 2 dnics assigned per country, for public networks. The U.S. is an exception where each BOC has a dnic. Also, a group of private networks can have its own dnic. dnic value is not an arbitrary number. It is assigned by international agreement and controlled by CCITT.') gvc_if_dna_cug_interlock_code = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugInterlockCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugInterlockCode.setDescription('This attribute specifies the Cug identifier of a national or international Cug call. It is an arbitrary number and it also can be called Cug in some descriptions. Interfaces (Dnas) with this number can make calls to Dnas with the same interlockCode.') gvc_if_dna_cug_preferential = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('no', 0), ('yes', 1))).clone('no')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugPreferential.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugPreferential.setDescription('This attribute, if set to yes indicates that this Cug is the preferential Cug, in which case it will be used during the call establishment phase if the DTE has not explicitly specified a Cug index in the call request packet. If set to no, then this Cug is not the preferential Cug. Only one of the Cugs associated with a particular Dna can be the preferential Cug - only one Cug can have this attribute set to yes.') gvc_if_dna_cug_out_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugOutCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugOutCalls.setDescription("This attribute, if set to allowed indicates that outgoing calls (from the DTE into the network) be made using this particular Cug. If set to a value of disallowed, then outgoing calls cannot be made using this Cug - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Outgoing Calls Barred' feature for Cugs in that outgoing calls are barred if this attribute is set to a value of disallowed.") gvc_if_dna_cug_inc_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disallowed', 0), ('allowed', 1))).clone('allowed')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugIncCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugIncCalls.setDescription("This attribute, if set to allowed indicates that incoming calls (from the network to the DTE) be made using this particular Cug. If set to disallowed, then incoming calls cannot be made using this Cug - such calls will be cleared by the local DCE. This attribute corresponds to the CCITT 'Incoming Calls Barred' feature for Cugs in that incoming calls are barred if this attribute is set to a value of disallowed.") gvc_if_dna_cug_privileged = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 2, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('no', 0), ('yes', 1))).clone('yes')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaCugPrivileged.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaCugPrivileged.setDescription('This attribute, if set to yes indicates that this Cug is a privileged Cug. In DPN, at least one side of a call setup within a Cug must have the Cug as a privileged Cug. If set to no, then the Cug is not privileged. If both the local DTE and the remote DTE subscribe to the Cug, but it is not privileged, then the call will be cleared. This attribute is typically used for a host DTE which must accept calls from many other DTEs in which case the other DTEs cannot call one another, but can call the host. In this example, the host would have the privileged Cug, and the other DTEs would belong to the same Cug, but it would not be privileged.') gvc_if_dna_hg_m = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3)) gvc_if_dna_hg_m_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1)) if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaHgM components.') gvc_if_dna_hg_m_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMIndex')) if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaHgM component.') gvc_if_dna_hg_m_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaHgM components. These components can be added and deleted.') gvc_if_dna_hg_m_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_hg_m_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaHgM tables.') gvc_if_dna_hg_m_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDnaHgMIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIndex.setDescription('This variable represents the index for the gvcIfDnaHgM tables.') gvc_if_dna_hg_m_if_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10)) if mibBuilder.loadTexts: gvcIfDnaHgMIfTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIfTable.setDescription('This group contains the interface parameters between the HuntGroupMember and the Hunt Group server.') gvc_if_dna_hg_m_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMIndex')) if mibBuilder.loadTexts: gvcIfDnaHgMIfEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMIfEntry.setDescription('An entry in the gvcIfDnaHgMIfTable.') gvc_if_dna_hg_m_availability_update_threshold = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 10, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096)).clone(1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityUpdateThreshold.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityUpdateThreshold.setDescription('This attribute indicates the number of channels that have to be freed or occupied before the Availability Message Packet (AMP) is sent to the Hunt Group Server informing it of the status of this interface.') gvc_if_dna_hg_m_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11)) if mibBuilder.loadTexts: gvcIfDnaHgMOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMOpTable.setDescription('This group contains the operational attributes of the HuntGroupMember component.') gvc_if_dna_hg_m_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMIndex')) if mibBuilder.loadTexts: gvcIfDnaHgMOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMOpEntry.setDescription('An entry in the gvcIfDnaHgMOpTable.') gvc_if_dna_hg_m_availability_delta = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(-4096, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityDelta.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailabilityDelta.setDescription('This attribute indicates the net change in the available link station connections since the last Availability Message Packet (AMP) was sent to the Hunt Group. Once the absolute value of this attribute reaches the availabilityUpdateThreshold an AMP is sent to the host and the availabilityDelta is reset to 0. If this attribute is positive it means an increase of the number of available link station connections. If it is negative it means a decrease in the number of available link station connections.') gvc_if_dna_hg_m_max_available_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMMaxAvailableLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMMaxAvailableLinkStations.setDescription('This attribute indicates the maximum number of available link station connections that can be established by this HuntGroupMember.') gvc_if_dna_hg_m_available_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 11, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMAvailableLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMAvailableLinkStations.setDescription('This attribute indicates the number of available link station connections reported to the hunt group in the Availability Message Packet (AMP). It is incremented by the application when a link station connection is freed and decremented when a link station connection is occupied.') gvc_if_dna_hg_m_hg_addr = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2)) gvc_if_dna_hg_m_hg_addr_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1)) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaHgMHgAddr components.') gvc_if_dna_hg_m_hg_addr_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMHgAddrIndex')) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaHgMHgAddr component.') gvc_if_dna_hg_m_hg_addr_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaHgMHgAddr components. These components can be added and deleted.') gvc_if_dna_hg_m_hg_addr_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_hg_m_hg_addr_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaHgMHgAddr tables.') gvc_if_dna_hg_m_hg_addr_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 1))) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrIndex.setDescription('This variable represents the index for the gvcIfDnaHgMHgAddr tables.') gvc_if_dna_hg_m_hg_addr_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10)) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrTable.setDescription('This group contains attributes common to all DNAs. Every DNA used in the network is defined with this group of 2 attributes. String of address digits complemented by the NPI.') gvc_if_dna_hg_m_hg_addr_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaHgMHgAddrIndex')) if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrAddrEntry.setDescription('An entry in the gvcIfDnaHgMHgAddrAddrTable.') gvc_if_dna_hg_m_hg_addr_numbering_plan_indicator = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrNumberingPlanIndicator.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrNumberingPlanIndicator.setDescription('This attribute indicates the Numbering Plan Indicator (NPI) the Dna that is entered. Address may belong to X.121 or E.164 plans.') gvc_if_dna_hg_m_hg_addr_data_network_address = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 3, 2, 10, 1, 2), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrDataNetworkAddress.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaHgMHgAddrDataNetworkAddress.setDescription('This attribute contains digits which form unique identifier of the customer interface. It can be compared (approximation only) telephone number where phone number identifies unique telephone set. Dna digits are selected and assigned by network operators.') gvc_if_dna_ddm = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4)) gvc_if_dna_ddm_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1)) if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaDdm components.') gvc_if_dna_ddm_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaDdmIndex')) if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaDdm component.') gvc_if_dna_ddm_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaDdm components. These components can be added and deleted.') gvc_if_dna_ddm_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_ddm_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaDdm tables.') gvc_if_dna_ddm_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDnaDdmIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmIndex.setDescription('This variable represents the index for the gvcIfDnaDdm tables.') gvc_if_dna_ddm_lan_ad_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10)) if mibBuilder.loadTexts: gvcIfDnaDdmLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvc_if_dna_ddm_lan_ad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaDdmIndex')) if mibBuilder.loadTexts: gvcIfDnaDdmLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLanAdEntry.setDescription('An entry in the gvcIfDnaDdmLanAdTable.') gvc_if_dna_ddm_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvc_if_dna_ddm_sap = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 10, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(2, 254)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvc_if_dna_ddm_dmo_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11)) if mibBuilder.loadTexts: gvcIfDnaDdmDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDmoTable.setDescription('This group defines the device monitoring options.') gvc_if_dna_ddm_dmo_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaDdmIndex')) if mibBuilder.loadTexts: gvcIfDnaDdmDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDmoEntry.setDescription('An entry in the gvcIfDnaDdmDmoTable.') gvc_if_dna_ddm_device_monitoring = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvc_if_dna_ddm_clear_vcs_when_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvc_if_dna_ddm_device_monitoring_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 255)).clone(15)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_ddm_test_response_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_ddm_maximum_test_retry = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 11, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 100)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaDdmMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_ddm_dev_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12)) if mibBuilder.loadTexts: gvcIfDnaDdmDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvc_if_dna_ddm_dev_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaDdmIndex')) if mibBuilder.loadTexts: gvcIfDnaDdmDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDevOpEntry.setDescription('An entry in the gvcIfDnaDdmDevOpTable.') gvc_if_dna_ddm_device_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('unreachable', 0), ('reachable', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvc_if_dna_ddm_active_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvc_if_dna_ddm_last_time_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvc_if_dna_ddm_last_time_reachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvc_if_dna_ddm_device_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvc_if_dna_ddm_monitoring_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 4, 12, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaDdmMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaDdmMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvc_if_dna_sdm = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5)) gvc_if_dna_sdm_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1)) if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDnaSdm components.') gvc_if_dna_sdm_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaSdmIndex')) if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDnaSdm component.') gvc_if_dna_sdm_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDnaSdm components. These components can be added and deleted.') gvc_if_dna_sdm_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dna_sdm_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmStorageType.setDescription('This variable represents the storage type value for the gvcIfDnaSdm tables.') gvc_if_dna_sdm_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 1, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))) if mibBuilder.loadTexts: gvcIfDnaSdmIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmIndex.setDescription('This variable represents the index for the gvcIfDnaSdm tables.') gvc_if_dna_sdm_lan_ad_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10)) if mibBuilder.loadTexts: gvcIfDnaSdmLanAdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLanAdTable.setDescription('This group defines the LAN MAC and SAP address for a given WAN NPI and DNA address.') gvc_if_dna_sdm_lan_ad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaSdmIndex')) if mibBuilder.loadTexts: gvcIfDnaSdmLanAdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLanAdEntry.setDescription('An entry in the gvcIfDnaSdmLanAdTable.') gvc_if_dna_sdm_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMac.setDescription('This attribute specifies a locally or globally administered MAC address of a LAN device.') gvc_if_dna_sdm_sap = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 10, 1, 3), hex().subtype(subtypeSpec=value_range_constraint(2, 254)).clone(4)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmSap.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmSap.setDescription('This attribute specifies a SAP identifier on the LAN device identified by the mac.') gvc_if_dna_sdm_dmo_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11)) if mibBuilder.loadTexts: gvcIfDnaSdmDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDmoTable.setDescription('This group defines the device monitoring options.') gvc_if_dna_sdm_dmo_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaSdmIndex')) if mibBuilder.loadTexts: gvcIfDnaSdmDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDmoEntry.setDescription('An entry in the gvcIfDnaSdmDmoTable.') gvc_if_dna_sdm_device_monitoring = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvc_if_dna_sdm_clear_vcs_when_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvc_if_dna_sdm_device_monitoring_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 255)).clone(15)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_sdm_test_response_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_sdm_maximum_test_retry = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 11, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 100)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDnaSdmMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dna_sdm_dev_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12)) if mibBuilder.loadTexts: gvcIfDnaSdmDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvc_if_dna_sdm_dev_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDnaSdmIndex')) if mibBuilder.loadTexts: gvcIfDnaSdmDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDevOpEntry.setDescription('An entry in the gvcIfDnaSdmDevOpTable.') gvc_if_dna_sdm_device_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('unreachable', 0), ('reachable', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvc_if_dna_sdm_active_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvc_if_dna_sdm_last_time_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvc_if_dna_sdm_last_time_reachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvc_if_dna_sdm_device_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvc_if_dna_sdm_monitoring_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 5, 5, 12, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDnaSdmMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDnaSdmMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvc_if_rg = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6)) gvc_if_rg_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1)) if mibBuilder.loadTexts: gvcIfRgRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfRg components.') gvc_if_rg_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRgIndex')) if mibBuilder.loadTexts: gvcIfRgRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfRg component.') gvc_if_rg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRgRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfRg components. These components can be added and deleted.') gvc_if_rg_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRgComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_rg_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRgStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgStorageType.setDescription('This variable represents the storage type value for the gvcIfRg tables.') gvc_if_rg_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 0))) if mibBuilder.loadTexts: gvcIfRgIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIndex.setDescription('This variable represents the index for the gvcIfRg tables.') gvc_if_rg_if_entry_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10)) if mibBuilder.loadTexts: gvcIfRgIfEntryTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfEntryTable.setDescription('This group contains the provisionable attributes for the ifEntry.') gvc_if_rg_if_entry_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRgIndex')) if mibBuilder.loadTexts: gvcIfRgIfEntryEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfEntryEntry.setDescription('An entry in the gvcIfRgIfEntryTable.') gvc_if_rg_if_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3))).clone('up')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRgIfAdminStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfAdminStatus.setDescription('The desired state of the interface. The up state indicates the interface is operational. The down state indicates the interface is not operational. The testing state indicates that no operational packets can be passed.') gvc_if_rg_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 10, 1, 2), interface_index().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRgIfIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgIfIndex.setDescription('This is the index for the IfEntry. Its value is automatically initialized during the provisioning process.') gvc_if_rg_prov_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11)) if mibBuilder.loadTexts: gvcIfRgProvTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgProvTable.setDescription('This group contains the provisioned attributes in the remote group component.') gvc_if_rg_prov_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRgIndex')) if mibBuilder.loadTexts: gvcIfRgProvEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgProvEntry.setDescription('An entry in the gvcIfRgProvTable.') gvc_if_rg_link_to_protocol_port = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 11, 1, 1), link()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfRgLinkToProtocolPort.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgLinkToProtocolPort.setDescription('This attribute specifies a two way link between this GvcIf RemoteGroup and a VirtualRouter/n ProtocolPort/name component which enables the communication between WAN addressable devices and LAN addressable devices.') gvc_if_rg_oper_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12)) if mibBuilder.loadTexts: gvcIfRgOperStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgOperStatusTable.setDescription('This group includes the Operational Status attribute. This attribute defines the current operational state of this component.') gvc_if_rg_oper_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfRgIndex')) if mibBuilder.loadTexts: gvcIfRgOperStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgOperStatusEntry.setDescription('An entry in the gvcIfRgOperStatusTable.') gvc_if_rg_snmp_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 6, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('testing', 3))).clone('up')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfRgSnmpOperStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfRgSnmpOperStatus.setDescription('The current state of the interface. The up state indicates the interface is operational and capable of forwarding packets. The down state indicates the interface is not operational, thus unable to forward packets. testing state indicates that no operational packets can be passed.') gvc_if_dlci = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7)) gvc_if_dlci_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1)) if mibBuilder.loadTexts: gvcIfDlciRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlci components.') gvc_if_dlci_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlci component.') gvc_if_dlci_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlci components. These components can be added and deleted.') gvc_if_dlci_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStorageType.setDescription('This variable represents the storage type value for the gvcIfDlci tables.') gvc_if_dlci_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(16, 4095))) if mibBuilder.loadTexts: gvcIfDlciIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciIndex.setDescription('This variable represents the index for the gvcIfDlci tables.') gvc_if_dlci_state_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10)) if mibBuilder.loadTexts: gvcIfDlciStateTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStateTable.setDescription('This group contains the three OSI State attributes. The descriptions generically indicate what each state attribute implies about the component. Note that not all the values and state combinations described here are supported by every component which uses this group. For component-specific information and the valid state combinations, refer to NTP 241-7001-150, Passport Operations and Maintenance Guide.') gvc_if_dlci_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciStateEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStateEntry.setDescription('An entry in the gvcIfDlciStateTable.') gvc_if_dlci_admin_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('locked', 0), ('unlocked', 1), ('shuttingDown', 2))).clone('unlocked')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciAdminState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAdminState.setDescription('This attribute indicates the OSI Administrative State of the component. The value locked indicates that the component is administratively prohibited from providing services for its users. A Lock or Lock - force command has been previously issued for this component. When the value is locked, the value of usageState must be idle. The value shuttingDown indicates that the component is administratively permitted to provide service to its existing users only. A Lock command was issued against the component and it is in the process of shutting down. The value unlocked indicates that the component is administratively permitted to provide services for its users. To enter this state, issue an Unlock command to this component.') gvc_if_dlci_operational_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciOperationalState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperationalState.setDescription('This attribute indicates the OSI Operational State of the component. The value enabled indicates that the component is available for operation. Note that if adminState is locked, it would still not be providing service. The value disabled indicates that the component is not available for operation. For example, something is wrong with the component itself, or with another component on which this one depends. If the value is disabled, the usageState must be idle.') gvc_if_dlci_usage_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('idle', 0), ('active', 1), ('busy', 2))).clone('idle')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciUsageState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciUsageState.setDescription('This attribute indicates the OSI Usage State of the component. The value idle indicates that the component is not currently in use. The value active indicates that the component is in use and has spare capacity to provide for additional users. The value busy indicates that the component is in use and has no spare operating capacity for additional users at this time.') gvc_if_dlci_abit_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11)) if mibBuilder.loadTexts: gvcIfDlciAbitTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAbitTable.setDescription('This group contains the A-Bit status information for this Data Link Connection Identifier. A-Bit status information is only applicable for PVCs. For SVCs, the values of attributes under this group are all notApplicable.') gvc_if_dlci_abit_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciAbitEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciAbitEntry.setDescription('An entry in the gvcIfDlciAbitTable.') gvc_if_dlci_a_bit_status_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('inactive', 0), ('active', 1), ('notApplicable', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciABitStatusFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitStatusFromNetwork.setDescription('This attribute indicates the most recent A-bit status received from the subnet. The A-bit status is part of the LMI protocol. It indicates willingness to accept data from the Protocol Port associated with this GvcIf. When an inactive status is sent out, the Frame Relay service discards any data offered from the Protocol Port. When an active status is sent out, the Frame Relay service tries to process all data offered from the Protocol Port.') gvc_if_dlci_a_bit_reason_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('notApplicable', 0), ('remoteUserSignaled', 1), ('localLmiError', 2), ('remoteLmiError', 3), ('localLinkDown', 4), ('remoteLinkDown', 5), ('pvcDown', 6)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciABitReasonFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitReasonFromNetwork.setDescription('This attribute indicates the reason (if any) for an inactive status to be sent to the Protocol Port associated with this GvcIf. This reason is notapplicable for an active status.') gvc_if_dlci_a_bit_status_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('inactive', 0), ('active', 1), ('notApplicable', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciABitStatusToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitStatusToNetwork.setDescription('This attribute indicates the most recent A-Bit status sent from this GvcIf to the subnet.') gvc_if_dlci_a_bit_reason_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 11, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 4, 7))).clone(namedValues=named_values(('notApplicable', 0), ('remoteUserSignaled', 1), ('localLmiError', 2), ('localLinkDown', 4), ('missingFromLmiReport', 7)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciABitReasonToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciABitReasonToNetwork.setDescription('This attribute indicates the reason (if any) for an inactive status to be sent to the subnet from this GvcIf. This reason is not applicable for an active status.') gvc_if_dlci_stats_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12)) if mibBuilder.loadTexts: gvcIfDlciStatsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStatsTable.setDescription('This group contains the operational statistics for the DLCI.') gvc_if_dlci_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciStatsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciStatsEntry.setDescription('An entry in the gvcIfDlciStatsTable.') gvc_if_dlci_frm_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciFrmFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmFromNetwork.setDescription('This attribute counts the frames received from the subnet and sent to the Protocol Port associated with this GvcIf. When the maximum count is exceeded the count wraps to zero.') gvc_if_dlci_frm_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 2), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciFrmToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmToNetwork.setDescription('This attribute counts the frames sent to the subnet. When the maximum count is exceeded the count wraps to zero.') gvc_if_dlci_frm_discard_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 3), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciFrmDiscardToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFrmDiscardToNetwork.setDescription('This attribute counts the frames which were received from the Protocol Port and discarded due to the aBitStatusFromNetwork being in an inactive state. When this count exceeds the maximum, it wraps to zero.') gvc_if_dlci_frames_with_unknown_saps = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 12, 1, 4), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciFramesWithUnknownSaps.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciFramesWithUnknownSaps.setDescription('This attribute counts the number of frames received from the subnet on a BNN DLCI VC containing an (lSap,rSap) pair that does not match any SapMapping component index.') gvc_if_dlci_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13)) if mibBuilder.loadTexts: gvcIfDlciOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperTable.setDescription('This group contains the Dlci operational attributes.') gvc_if_dlci_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciOperEntry.setDescription('An entry in the gvcIfDlciOperTable.') gvc_if_dlci_encapsulation_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('ban', 0), ('bnn', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciEncapsulationType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciEncapsulationType.setDescription('This attribute indicates the encapsulation type used on this Dlci. ban indicates that SNA frames exchanged on the VC are encapsulated in RFC 1490 BAN format. ban indicates that SNA frames exchanged on the VC are encapsulated in RFC 1490 BNN format.') gvc_if_dlci_local_device_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 2), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLocalDeviceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLocalDeviceMac.setDescription('This attribute indicates the MAC of the device located on this side of the VC, normally the host device. This address is inserted in the Destination Address (DA) field of the 802.5 frames sent, typically to a Token Ring interface. This address is expected in the SA field of the frames received from the local LAN. When this attribute is not empty All Route Explorer (ARE) and Single Route Explorer (SRE) frames received from the local LAN must have the SA field matching it, otherwise they are discarded.') gvc_if_dlci_remote_device_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 13, 1, 3), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciRemoteDeviceMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRemoteDeviceMac.setDescription('This attribute indicates the MAC of the device located at the far end of the VC. This is normally the host device. This address is inserted in the source address (SA) field of the 802.5 frames sent typically on a token ring interface. This address is expected in the destination address (DA) field of the 802.5 frames received, typically from a token ring interface. When this attribute is defined All Route Explorer (ARE) and Single Route Explorer (SRE) frames received from the local LAN must have the DA field matching it, otherwise they are discarded.') gvc_if_dlci_sp_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14)) if mibBuilder.loadTexts: gvcIfDlciSpOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpOpTable.setDescription('This group contains the actual service parameters in use for this instance of Dlci.') gvc_if_dlci_sp_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex')) if mibBuilder.loadTexts: gvcIfDlciSpOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpOpEntry.setDescription('An entry in the gvcIfDlciSpOpTable.') gvc_if_dlci_rate_enforcement = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1))).clone('off')).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRateEnforcement.setDescription('This attribute indicates whether rate enforcement is in use for this Dlci.') gvc_if_dlci_committed_information_rate = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 2), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciCommittedInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciCommittedInformationRate.setDescription('This attribute indicates the current effective committed information rate (cir) in bits per second (bit/s). cir is the rate at which the network agrees to transfer data with Discard Eligiblity indication DE=0 under normal conditions. This attribute should be ignored when rateEnforcement is off.') gvc_if_dlci_committed_burst_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 3), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciCommittedBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciCommittedBurstSize.setDescription('This attribute indicates the committed burst size (bc) in bits. bc is the amount of data that the network agrees to transfer under normal conditions over a measurement interval (t). bc is used for data with Discard Eligibility indication DE=0. DE=1 data does not use bc at all, excessBurstSize if is used instead. This attribute should be ignored when rateEnforcement is off.') gvc_if_dlci_excess_information_rate = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciExcessInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciExcessInformationRate.setDescription('This attribute indicates the current effective excess information rate (eir) in bits per second (bit/s). eir is the rate at which the network agrees to transfer data with Discard Eligibility indication DE=1 under normal conditions. DE can be set by the user or the network. DE indication of a data frame is set to 1 by the network after cir has been exceeded while eir is still available for data transfer.') gvc_if_dlci_excess_burst_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 5), gauge32().subtype(subtypeSpec=value_range_constraint(0, 2048000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciExcessBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciExcessBurstSize.setDescription('This attribute indicates the excess burst size (be) in bits. be is the amount of uncommitted data that the network will attempt to deliver over measurement interval (t). Data marked DE=1 by the user or by the network is accounted for here. This attribute should be ignored when rateEnforcement is off.') gvc_if_dlci_measurement_interval = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 14, 1, 6), gauge32().subtype(subtypeSpec=value_range_constraint(0, 25500))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciMeasurementInterval.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciMeasurementInterval.setDescription('This attribute indicates the time interval (in milliseconds) over which rates and burst sizes are measured. This attribute should be ignored when rateEnforcement is off.') gvc_if_dlci_dc = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2)) gvc_if_dlci_dc_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1)) if mibBuilder.loadTexts: gvcIfDlciDcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciDc components.') gvc_if_dlci_dc_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciDcIndex')) if mibBuilder.loadTexts: gvcIfDlciDcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciDc component.') gvc_if_dlci_dc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciDcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciDc components. These components cannot be added nor deleted.') gvc_if_dlci_dc_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciDcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_dc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciDcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciDc tables.') gvc_if_dlci_dc_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciDcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcIndex.setDescription('This variable represents the index for the gvcIfDlciDc tables.') gvc_if_dlci_dc_options_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10)) if mibBuilder.loadTexts: gvcIfDlciDcOptionsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcOptionsTable.setDescription('Options group defines attributes associated with direct call. It defines complete connection in terms of path and call options. This connection can be permanent (PVC).') gvc_if_dlci_dc_options_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciDcIndex')) if mibBuilder.loadTexts: gvcIfDlciDcOptionsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcOptionsEntry.setDescription('An entry in the gvcIfDlciDcOptionsTable.') gvc_if_dlci_dc_remote_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1))).clone('x121')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcRemoteNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteNpi.setDescription('This attribute specifies the numbering plan used in the remoteDna.') gvc_if_dlci_dc_remote_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 4), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDna.setDescription('This attribute specifies the Data Network Address (Dna) of the remote. This is the called (destination) DTE address (Dna) to which this direct call will be sent.') gvc_if_dlci_dc_remote_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDlci.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcRemoteDlci.setDescription('This attribute specifies the remote DLCI (Logical Channel Number) - it is used only for PVCs, where attribute type is set to permanentMaster or permanentSlave or permanentBackupSlave.') gvc_if_dlci_dc_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('permanentMaster', 1), ('permanentSlave', 2), ('permanentBackupSlave', 3), ('permanentSlaveWithBackup', 4))).clone('permanentMaster')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcType.setDescription('This attribute specifies the type of Vc call: permanentMaster, permanentSlave, permanentSlaveWithBackup, permanentBackupSlave. If the value is set to permanentMaster, then a permanent connection will be established between 2 ends. The remote end must be defined as a permanentSlave, permanentBackupSlave or permanentSlaveWithBackup. The connection cannot be established if the remote end is defined as anything else. The end defined as permanentMaster always initiates the calls. It will attempt to call once per minute. If the value is set to permanentSlave then a permanent connection will be established between 2 ends. The remote end must be defined as a permanentMaster. The connection cannot be established if the remote end is defined as anything else. The permanentSlave end will attempt to call once per minute. If the value is set to permanentSlaveWithBackup then a permanent connection will be established between the 2 ends . The remote end must be defined as a permanentMaster. The Connection cannot be established if the remote end is defined as anything else. The permanentSlaveWithBackup end will attempt to call once per minute. If the value is set to permanentBackupSlave then a permanent connection will be established between the 2 ends only if the permanentMaster end is disconnected from the permanentSlaveWithBackup end and a backup call is established by the redirection system. If the permanentSlaveWithBackup interface becomes visible again, the permanentBackupSlave end is disconnected and the permanentSlaveWithBackup end is reconnected to the permanentMaster end. The permanentBackupSlave end does not try to establish pvc call.') gvc_if_dlci_dc_transfer_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 9, 255))).clone(namedValues=named_values(('normal', 0), ('high', 9), ('useDnaDefTP', 255))).clone('useDnaDefTP')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcTransferPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcTransferPriority.setDescription('This attribute specifies the transfer priority to network for the outgoing calls using this particular DLCI. It overRides the defaultTransferPriority provisioned in its associated Dna component. The transfer priority is a preference specified by an application according to its delay-sensitivity requirement. Frames with high transfer priority are served by the network before the frames with normal priority. Each transfer priority contains a predetermined setting for trunk queue (interrupting, delay or throughput), and routing metric (delay or throughput). When the transfer priority is set at high, the trunk queue is set to high, the routing metric is set to delay. When the transfer priority is set at normal, the trunk queue is set to normal, the routing metric is set to throughput. The default of transferPriority is useDnaDefTP. It means using the provisioning value under defaultTransferPriority of its associated Dna for this DLCI.') gvc_if_dlci_dc_discard_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 3))).clone(namedValues=named_values(('normal', 0), ('high', 1), ('useDnaDefPriority', 3))).clone('useDnaDefPriority')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcDiscardPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciDcDiscardPriority.setDescription('This attribute specifies the discard priority for outgoing call using this DLCI. The discard priority has three provisioning values: normal, high, and useDnaDefPriority. Traffic with normal priority is discarded first than the traffic with high priority. The Dna default value (provisioned by outDefaultPriority) is taken if this attribute is set to the value useDnaDefPriority. The default of discardPriority is useDnaDefPriority.') gvc_if_dlci_dc_nfa_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482)) if mibBuilder.loadTexts: gvcIfDlciDcNfaTable.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaTable.setDescription('Two explicit attributes discardPriority and transferPriority are created to replace H.01 and H.30 in the group VcsDirectCallOptionsProv of this file. The migrate escape here (DcComponent::migrateFaxEscape) propagates the old provisioning data under H.01 and H.30 into discardPriority and transferPriority. The rule of the above propagation are: 0 in H.01 is equivalent to discardPriority 0; 1 in H.01 is equivalent to discardPriority 1. And 0 in H.30 is equivalent to transferPriority normal; 1 in H.30 is equivalent to transferPriority high. Please refer to discardPriority and transferPriority for more information on how to use them.') gvc_if_dlci_dc_nfa_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciDcIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciDcNfaIndex')) if mibBuilder.loadTexts: gvcIfDlciDcNfaEntry.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaEntry.setDescription('An entry in the gvcIfDlciDcNfaTable.') gvc_if_dlci_dc_nfa_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 1), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(1, 1), value_range_constraint(48, 48)))) if mibBuilder.loadTexts: gvcIfDlciDcNfaIndex.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaIndex.setDescription('This variable represents the index for the gvcIfDlciDcNfaTable.') gvc_if_dlci_dc_nfa_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 2), hex_string().subtype(subtypeSpec=value_size_constraint(0, 128))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciDcNfaValue.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaValue.setDescription('This variable represents an individual value for the gvcIfDlciDcNfaTable.') gvc_if_dlci_dc_nfa_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 2, 482, 1, 3), row_status()).setMaxAccess('writeonly') if mibBuilder.loadTexts: gvcIfDlciDcNfaRowStatus.setStatus('obsolete') if mibBuilder.loadTexts: gvcIfDlciDcNfaRowStatus.setDescription('This variable is used to control the addition and deletion of individual values of the gvcIfDlciDcNfaTable.') gvc_if_dlci_vc = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3)) gvc_if_dlci_vc_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1)) if mibBuilder.loadTexts: gvcIfDlciVcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciVc components.') gvc_if_dlci_vc_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcIndex')) if mibBuilder.loadTexts: gvcIfDlciVcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciVc component.') gvc_if_dlci_vc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciVc components. These components cannot be added nor deleted.') gvc_if_dlci_vc_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_vc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciVc tables.') gvc_if_dlci_vc_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciVcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIndex.setDescription('This variable represents the index for the gvcIfDlciVc tables.') gvc_if_dlci_vc_cad_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10)) if mibBuilder.loadTexts: gvcIfDlciVcCadTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCadTable.setDescription('This group represents operational call data related to Frame Relay Vc. It can be displayed only for Frame Relay Vc which is created by application.') gvc_if_dlci_vc_cad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcIndex')) if mibBuilder.loadTexts: gvcIfDlciVcCadEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCadEntry.setDescription('An entry in the gvcIfDlciVcCadTable.') gvc_if_dlci_vc_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('svc', 0), ('pvc', 1), ('spvc', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcType.setDescription('This attribute displays the type of call, pvc,svc or spvc.') gvc_if_dlci_vc_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('creating', 0), ('readyP1', 1), ('dteWaitingP2', 2), ('dceWaitingP3', 3), ('dataTransferP4', 4), ('unsupportedP5', 5), ('dteClearRequestP6', 6), ('dceClearIndicationP7', 7), ('termination', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcState.setDescription('This attribute displays the state of call control. P5 state is not supported but is listed for completness. Transitions from one state to another take very short time. state most often displayed is dataTransferP4.') gvc_if_dlci_vc_previous_state = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('creating', 0), ('readyP1', 1), ('dteWaitingP2', 2), ('dceWaitingP3', 3), ('dataTransferP4', 4), ('unsupportedP5', 5), ('dteClearRequestP6', 6), ('dceClearIndicationP7', 7), ('termination', 8)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPreviousState.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPreviousState.setDescription('This attribute displays the previous state of call control. This is a valuable field to determine how the processing is progressing.') gvc_if_dlci_vc_diagnostic_code = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvc_if_dlci_vc_previous_diagnostic_code = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPreviousDiagnosticCode.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPreviousDiagnosticCode.setDescription('This attribute displays the internal substate of call control. It is used to further refine state of call processing.') gvc_if_dlci_vc_called_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCalledNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the called end.') gvc_if_dlci_vc_called_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 7), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCalledDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledDna.setDescription('This attribute displays the Data Network Address (Dna) of the called (destination) DTE to which this call is sent. This address if defined at recieving end will complete Vc connection.') gvc_if_dlci_vc_called_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCalledLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCalledLcn.setDescription('This attribute displays the Logical Channel Number of the called end. It is valid only after both ends of Vc exchanged relevant information.') gvc_if_dlci_vc_calling_npi = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('x121', 0), ('e164', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCallingNpi.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingNpi.setDescription('This attribute displays the Numbering Plan Indicator (NPI) of the calling end.') gvc_if_dlci_vc_calling_dna = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 10), digit_string().subtype(subtypeSpec=value_size_constraint(1, 15))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCallingDna.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingDna.setDescription('This attribute displays the Data Network Address (Dna) of the calling end.') gvc_if_dlci_vc_calling_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCallingLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallingLcn.setDescription('This attribute displays the Logical Channel Number of the calling end.') gvc_if_dlci_vc_accounting_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('yes', 0), ('no', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnabled.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnabled.setDescription('This attribute indicates that this optional section of accounting record is suppressed or permitted. If accountingEnabled is yes, conditions for generation of accounting record were met. These conditions include billing options, vc recovery conditions and Module wide accounting data options.') gvc_if_dlci_vc_fast_select_call = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('no', 0), ('yes', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcFastSelectCall.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFastSelectCall.setDescription('This attribute displays that this is a fast select call.') gvc_if_dlci_vc_path_reliability = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('high', 0), ('normal', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPathReliability.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPathReliability.setDescription('This attribute displays the path reliability.') gvc_if_dlci_vc_accounting_end = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('callingEnd', 0), ('calledEnd', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnd.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcAccountingEnd.setDescription('This attribute indicates if this end should generate an accounting record. Normally, callingEnd is the end to generate an accounting record.') gvc_if_dlci_vc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('normal', 0), ('high', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPriority.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPriority.setDescription('This attribute displays whether the call is a normal or a high priority call.') gvc_if_dlci_vc_segment_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcSegmentSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentSize.setDescription('This attribute displays the segment size (in bytes) used on the call. It is used to calculate the number of segments transmitted and received.') gvc_if_dlci_vc_max_subnet_pkt_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 27), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4096))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcMaxSubnetPktSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcMaxSubnetPktSize.setDescription('This attribute indicates the maximum packet size allowed on the Vc.') gvc_if_dlci_vc_rcos_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('throughput', 0), ('delay', 1), ('multimedia', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcRcosToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRcosToNetwork.setDescription('This attribute indicates the routing metric routing class of service to the network.') gvc_if_dlci_vc_rcos_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('throughput', 0), ('delay', 1), ('multimedia', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcRcosFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcRcosFromNetwork.setDescription('This attribute displays the routing metric Routing Class of Service from the Network.') gvc_if_dlci_vc_emission_priority_to_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('normal', 0), ('high', 1), ('interrupting', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityToNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityToNetwork.setDescription('This attribute displays the network internal emission priotity to the network.') gvc_if_dlci_vc_emission_priority_from_network = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('normal', 0), ('high', 1), ('interrupting', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityFromNetwork.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcEmissionPriorityFromNetwork.setDescription('This attribute displays the network internal emission priotity from the network.') gvc_if_dlci_vc_data_path = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 10, 1, 32), ascii_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcDataPath.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDataPath.setDescription('This attribute indicates the data path used by the connection. The data path is provisioned in Dna and DirectCall components. The displayed value of this attribute can be different from the provisioned value. If the connection is using dprsOnly data path, the string dprsOnly is displayed. (dynamic packet routing system) If the connection is using dprsMcsOnly data path, the string dprsMcsOnly is displayed. If the connection is using dprsMcsFirst data path, the string dprsMcsFirst is displayed.') gvc_if_dlci_vc_intd_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11)) if mibBuilder.loadTexts: gvcIfDlciVcIntdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIntdTable.setDescription('This group defines display of interval data collected by Vc. Data in this group is variable and may depend on time when this display command is issued.') gvc_if_dlci_vc_intd_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcIndex')) if mibBuilder.loadTexts: gvcIfDlciVcIntdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcIntdEntry.setDescription('An entry in the gvcIfDlciVcIntdTable.') gvc_if_dlci_vc_call_reference_number = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 1), hex().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCallReferenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCallReferenceNumber.setDescription('This attribute displays the call reference number which is a unique number generated by the switch.The same Call Reference Number is stored in the interval data (accounting record) at both ends of the call. It can be used as one of the attributes in matching duplicate records generated at each end of the call.') gvc_if_dlci_vc_elapsed_time_till_now = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcElapsedTimeTillNow.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcElapsedTimeTillNow.setDescription('This attribute displays the elapsed time representing the period of this interval data. It is elapsed time in 0.1 second increments since Vc started.') gvc_if_dlci_vc_segments_rx = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsRx.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsRx.setDescription('This attribute displays the number of segments received at the time command was issued. This is the segment received count maintained by accounting at each end of the Vc. This counter is updated only when the packet cannot be successfully delivered out of the sink Vc and to the sink AP Conditions in which packets may be discarded by the sink Vc include: missing packets due to subnet discards, segmentation protocol violations due to subnet discard, duplicated and out-of-ranged packets and packets that arrive while Vc is in path recovery state.') gvc_if_dlci_vc_segments_sent = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsSent.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSegmentsSent.setDescription('This attribute displays the number of segments sent at the time command was issued. This is the segment sent count maintained by accounting at the source Vc. Vc only counts packets that Vc thinks can be delivered successfully into the subnet. In reality, these packets may be dropped by trunking, for instance. This counter is not updated when splitting fails, when Vc is in a path recovery state, when packet forwarding fails to forward this packet and when subsequent packets have to be discarded as we want to minimize the chance of out-of-sequence and do not intentionally send out-of- sequenced packets into the subnet.') gvc_if_dlci_vc_start_time = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 11, 1, 5), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcStartTime.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcStartTime.setDescription('This attribute displays the start time of this interval period. If Vc spans 12 hour time or time of day change startTime reflects new time as recorded at 12 hour periods or time of day changes.') gvc_if_dlci_vc_frd_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12)) if mibBuilder.loadTexts: gvcIfDlciVcFrdTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrdTable.setDescription('This group defines Frame Relay attributes collected by Frame Relay Vc. The purpose of Vc attributes is to aid end users and verification people to understand the Vc internal behavior. This is particularly useful when the network has experienced abnormality and we want to isolate problems and pinpoint trouble spots. Attributes are collected on a per Vc basis. Until a need is identified, statistics are not collected at a processor level. Each attribute is stored in a 32 bit field and is initialized to zero when a Vc enters into the data transfer state. When a PVC is disconnected and then connected again, the attributes will be reset. Attributes cannot be reset through other methods. Frame Relay Vc uses a best effort data packet delivery protocol and a different packet segmentation and combination methods from the General Vc. The Frame Relay Vc uses the same call setup and control mechanism (e.g. the support of non-flow control data packets) as in a General Vc. Most General Vc statistics and internal variables are used in a Frame Relay Vc and are displayed by software developers') gvc_if_dlci_vc_frd_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcIndex')) if mibBuilder.loadTexts: gvcIfDlciVcFrdEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrdEntry.setDescription('An entry in the gvcIfDlciVcFrdTable.') gvc_if_dlci_vc_frm_congested_to_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcFrmCongestedToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrmCongestedToSubnet.setDescription('This attribute displays the number of frames from link discarded due to lack of resources. It keeps track of the number of frames from link that have to be discarded. The discard reasons include insufficient memory for splitting the frame into smaller subnet packet size.') gvc_if_dlci_vc_cannot_forward_to_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCannotForwardToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCannotForwardToSubnet.setDescription('This attribute displays the number of discarded packets that can not be forwarded into the subnet because of subnet congestion. Number of frames from link discarded due to failure in forwarding a packet from Vc into the subnet.- This attribute is increased when packet forwarding fails to forward a packet into the subnet. If a frame is split into multiple subnet packets and a partial packet has to be discarded, all subsequent partial packets that have not yet been delivered to the subnet will be discarded as well.') gvc_if_dlci_vc_not_data_xfer_to_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferToSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferToSubnet.setDescription('This attribute records the number of frames from link discarded when the Vc tries to recover from internal path failure.') gvc_if_dlci_vc_out_of_range_frm_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcOutOfRangeFrmFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOutOfRangeFrmFromSubnet.setDescription('This attribute displays the number of frames from subnet discarded due to out of sequence range for arriving too late.') gvc_if_dlci_vc_comb_errors_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcCombErrorsFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcCombErrorsFromSubnet.setDescription('This attribute records the number of subnet packets discarded at the sink Vc due to the Vc segmentation and combination protocol error. Usually, this occurs when the subnet discards packets and thus this statistics can be used to guest the number of subnet packets that are not delivered to the Vc. It cannot be used as an actual measure because some subnet packets may have been delivered to Vc but have to be discarded because these are partial packets to a frame in which some other partial packets have not been properly delivered to Vc') gvc_if_dlci_vc_duplicates_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcDuplicatesFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDuplicatesFromSubnet.setDescription('This attribute displays the number of subnet packets discarded due to duplication. Although packets are not retransmitted by the Frame Relay Vc, it is possible for the subnet to retransmit packets. When packets are out-of-sequenced and copies of the same packets arrive, then this attribute is increased.') gvc_if_dlci_vc_not_data_xfer_from_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferFromSubnet.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcNotDataXferFromSubnet.setDescription('This attribute displays the number of subnet packets discarded when data transfer is suspended in Vc recovery.') gvc_if_dlci_vc_frm_loss_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 9), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcFrmLossTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcFrmLossTimeouts.setDescription('This attribute displays the number of lost frame timer expiries. When this count is excessive, the network is very congested and packets have been discarded in the subnet.') gvc_if_dlci_vc_oo_seq_byte_cnt_exceeded = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqByteCntExceeded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqByteCntExceeded.setDescription('This attribute displays the number times that the out of sequence byte threshold is exceeded. When the threshold is exceeded, this condition is treated as if the loss frame timer has expired and all frames queued at the sink Vc are delivered to the AP. We need to keep this count to examine if the threshold is engineered properly. This should be used in conjunction with the peak value of out-of- sequenced queue and the number of times the loss frame timer has expired. This count should be relatively small when compared with loss frame timer expiry count.') gvc_if_dlci_vc_peak_oo_seq_pkt_count = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqPktCount.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqPktCount.setDescription('This attribute displays the frame relay peak packet count of the out of sequence queue. This attribute records the maximum queue length of the out-of-sequenced queue. The counter can be used to deduce the message buffer requirement on a Vc.') gvc_if_dlci_vc_peak_oo_seq_frm_forwarded = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 12), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqFrmForwarded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqFrmForwarded.setDescription('This attribute displays the frame relay peak size of the sequence packet queue. The subnet may deliver packets out-of- sequenced. These packets are then queued in an out-of-sequenced queue, waiting for a packet with the expected sequence number to come. When that packet arrives, this attribute records the maximum number of packets that were out-of-sequenced, but now have become in-sequenced. The statistics is used to measure expected queue size due to normal subnet packet disorder (not due to subnet packet discard). Current implementation also uses this statistics to set a maximum size for the out-of-sequenced queue.') gvc_if_dlci_vc_send_sequence_number = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 13), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcSendSequenceNumber.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSendSequenceNumber.setDescription("This attribute displays the Vc internal packet's send sequence number. Note that a 'packet' in this context, may be either a user data packet, or an OAM frame.") gvc_if_dlci_vc_pkt_retry_timeouts = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 15), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPktRetryTimeouts.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPktRetryTimeouts.setDescription('This attribute displays the number of packets which have retransmission time-outs. When this count is excessive, the network is very congested and packets have been discarded in the subnet.') gvc_if_dlci_vc_peak_retry_queue_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 16), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPeakRetryQueueSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakRetryQueueSize.setDescription('This attribute displays the peak size of retransmission queue. This attribute is used as an indicator of the acknowledgment behavior across the subnet. Records the largest body of unacknowledged packets.') gvc_if_dlci_vc_subnet_recoveries = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 17), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcSubnetRecoveries.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcSubnetRecoveries.setDescription('This attribute displays the number of successful Vc recovery attempts.') gvc_if_dlci_vc_oo_seq_pkt_cnt_exceeded = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 19), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqPktCntExceeded.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcOoSeqPktCntExceeded.setDescription('This attribute displays the number times that the out of sequence packet threshold is exceeded. When the threshold is exceeded, this condition is treated as if the loss frame timer has expired and all frames queued at the sink Vc are delivered to the AP. We need to keep this count to examine if the threshold is engineered properly. This should be used in conjunction with the peak value of out-of- sequenced queue and the number of times the loss frame timer has expired. This count should be relatively small when compared with loss frame timer expiry count.') gvc_if_dlci_vc_peak_oo_seq_byte_count = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 12, 1, 20), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqByteCount.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcPeakOoSeqByteCount.setDescription('This attribute displays the frame relay peak byte count of the out of sequence queue. This attribute records the maximum queue length of the out-of-sequenced queue. The counter can be used to deduce the message buffer requirement on a Vc.') gvc_if_dlci_vc_dmep_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417)) if mibBuilder.loadTexts: gvcIfDlciVcDmepTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepTable.setDescription('This attribute displays the data path used by the connection. Data path is provisioned in Dna and DirectCall components. If the connection is using dprsOnly data path, this attribute is empty. If the connection is using dprsMcsOnly or dprsMcsFirst data path, this attribute displays component name of the dprsMcsEndPoint.') gvc_if_dlci_vc_dmep_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciVcDmepValue')) if mibBuilder.loadTexts: gvcIfDlciVcDmepEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepEntry.setDescription('An entry in the gvcIfDlciVcDmepTable.') gvc_if_dlci_vc_dmep_value = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 3, 417, 1, 1), row_pointer()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciVcDmepValue.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciVcDmepValue.setDescription('This variable represents both the value and the index for the gvcIfDlciVcDmepTable.') gvc_if_dlci_sp = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4)) gvc_if_dlci_sp_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1)) if mibBuilder.loadTexts: gvcIfDlciSpRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciSp components.') gvc_if_dlci_sp_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSpIndex')) if mibBuilder.loadTexts: gvcIfDlciSpRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSp component.') gvc_if_dlci_sp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSp components. These components can be added and deleted.') gvc_if_dlci_sp_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSpComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_sp_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSpStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSp tables.') gvc_if_dlci_sp_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciSpIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpIndex.setDescription('This variable represents the index for the gvcIfDlciSp tables.') gvc_if_dlci_sp_parms_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11)) if mibBuilder.loadTexts: gvcIfDlciSpParmsTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpParmsTable.setDescription('This group contains the provisionable attributes for the Data Link Connection Identifier. These attributes reflect the service parameters specific to this instance of Dlci.') gvc_if_dlci_sp_parms_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSpIndex')) if mibBuilder.loadTexts: gvcIfDlciSpParmsEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpParmsEntry.setDescription('An entry in the gvcIfDlciSpParmsTable.') gvc_if_dlci_sp_rate_enforcement = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1))).clone('on')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpRateEnforcement.setDescription('This attribute specifies whether rate enforcement is to be used on this DLCI. Turning on rate enforcement means that the data sent from the service to the virtual circuit is subjected to rate control.') gvc_if_dlci_sp_committed_information_rate = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50000000)).clone(64000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpCommittedInformationRate.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpCommittedInformationRate.setDescription('This attribute specifies the committed information rate (cir) in bits per second (bit/s). When rateEnforcement is set to on, cir is the rate at which the network agrees to transfer information under normal conditions. This rate is measured over a measurement interval (t) that is determined internally based on cir and the committed burst size (bc). An exception to this occurs when cir is provisioned to be zero, in which case the measurement interval (t) must be provisioned explicitly. This attribute is ignored when rateEnforcement is off. If rateEnforcement is on and this attribute is 0, bc must also be 0.') gvc_if_dlci_sp_committed_burst_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50000000)).clone(64000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpCommittedBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpCommittedBurstSize.setDescription('This attribute specifies the committed burst size (bc) in bits. bc is the amount of data that a network agrees to transfer under normal conditions over a measurement interval (t). Data marked DE=1 is not accounted for in bc. This attribute is ignored when rateEnforcement is off. If rateEnforcement is on and this attribute is 0, cir must also be 0.') gvc_if_dlci_sp_excess_burst_size = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 50000000))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpExcessBurstSize.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpExcessBurstSize.setDescription('This attribute specifies the excess burst size (be) in bits. be is the amount of uncommitted data that the network will attempt to deliver over measurement interval (t). Data marked DE=1 by the user or by the network is accounted for here. cir, bc, and be cannot all be 0 when rateEnforcement is on.') gvc_if_dlci_sp_measurement_interval = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 4, 11, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 25500))).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciSpMeasurementInterval.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSpMeasurementInterval.setDescription('This attribute specifies the time interval (in milliseconds) over which rates and burst sizes are measured. When cir and bc are 0 and rateEnforcement is on, this attribute must be provisioned. When cir and bc are non-zero, the time interval is internally calculated. In that situation, this attribute is ignored, and is not representative of the time interval. This attribute is also ignored when rateEnforcement is off. If rateEnforcement is on and both cir and bc are 0, this field must be non-zero.') gvc_if_dlci_bnn = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5)) gvc_if_dlci_bnn_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1)) if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciBnn components.') gvc_if_dlci_bnn_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciBnnIndex')) if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciBnn component.') gvc_if_dlci_bnn_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciBnn components. These components can be added and deleted.') gvc_if_dlci_bnn_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciBnnComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_bnn_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciBnnStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciBnn tables.') gvc_if_dlci_bnn_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 5, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciBnnIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciBnnIndex.setDescription('This variable represents the index for the gvcIfDlciBnn tables.') gvc_if_dlci_ldev = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6)) gvc_if_dlci_ldev_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1)) if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciLdev components.') gvc_if_dlci_ldev_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciLdevIndex')) if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciLdev component.') gvc_if_dlci_ldev_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciLdev components. These components can be added and deleted.') gvc_if_dlci_ldev_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_ldev_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciLdev tables.') gvc_if_dlci_ldev_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciLdevIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevIndex.setDescription('This variable represents the index for the gvcIfDlciLdev tables.') gvc_if_dlci_ldev_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10)) if mibBuilder.loadTexts: gvcIfDlciLdevAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevAddrTable.setDescription('This group defines the LAN MAC address.') gvc_if_dlci_ldev_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciLdevIndex')) if mibBuilder.loadTexts: gvcIfDlciLdevAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevAddrEntry.setDescription('An entry in the gvcIfDlciLdevAddrTable.') gvc_if_dlci_ldev_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 10, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMac.setDescription('This attribute specifies the MAC of the device located on this side of the PVC, normally the host device. This address is inserted in the Destination Address (DA) field of the 802.5 frames sent typically to a Token Ring interface.') gvc_if_dlci_ldev_dev_op_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11)) if mibBuilder.loadTexts: gvcIfDlciLdevDevOpTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDevOpTable.setDescription('This group specifies the operational attributes for devices that are potentially reachable by the SNA DLR service.') gvc_if_dlci_ldev_dev_op_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciLdevIndex')) if mibBuilder.loadTexts: gvcIfDlciLdevDevOpEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDevOpEntry.setDescription('An entry in the gvcIfDlciLdevDevOpTable.') gvc_if_dlci_ldev_device_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('unreachable', 0), ('reachable', 1)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceStatus.setDescription('This attribute indicates whether the local device specified by mac is reachable or unreachable from this SNA DLR interface. The device status is determined by the SNA DLR service by sending a TEST frame with the Poll bit set to the device periodically. If a TEST frame with the Final bit set is received from the device then the device status becomes reachable; otherwise the device status is unreachable. When the device status is reachable, connections to this device are accepted. When the device status is unreachable, existing connections to the device are cleared and new connections are cleared to hunt or redirection services.') gvc_if_dlci_ldev_active_link_stations = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 5000))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevActiveLinkStations.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevActiveLinkStations.setDescription('This attribute indicates the number of active link station connections using this device mapping component. It includes the link stations using the Qllc and the Frame-Relay connections.') gvc_if_dlci_ldev_last_time_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 3), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeUnreachable.setDescription('This attribute indicates the last time the deviceStatus changed from reachable to unreachable.') gvc_if_dlci_ldev_last_time_reachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 4), enterprise_date_and_time().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(19, 19)))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeReachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevLastTimeReachable.setDescription('This attribute indicates the last time the deviceStatus changed from unreachable to reachable.') gvc_if_dlci_ldev_device_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 5), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceUnreachable.setDescription('This attribute counts the number of times the deviceStatus changed from reachable to unreachable. When the maximum count is exceeded the count wraps to zero.') gvc_if_dlci_ldev_monitoring_lcn = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 11, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciLdevMonitoringLcn.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMonitoringLcn.setDescription('This attribute indicates the instance of the GvcIf/n Lcn that is reserved for monitoring the device indicated by the mac.') gvc_if_dlci_ldev_dmo_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12)) if mibBuilder.loadTexts: gvcIfDlciLdevDmoTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDmoTable.setDescription('This group defines the device monitoring options.') gvc_if_dlci_ldev_dmo_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciLdevIndex')) if mibBuilder.loadTexts: gvcIfDlciLdevDmoEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDmoEntry.setDescription('An entry in the gvcIfDlciLdevDmoTable.') gvc_if_dlci_ldev_device_monitoring = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoring.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoring.setDescription('This attribute specifies wether device monitoring for the device specified in mac is enabled or disabled.') gvc_if_dlci_ldev_clear_vcs_when_unreachable = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevClearVcsWhenUnreachable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevClearVcsWhenUnreachable.setDescription('This attribute specifies wether to clear or not existing VCs when deviceStatus changes from reachable to unreachable.') gvc_if_dlci_ldev_device_monitoring_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 255)).clone(15)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoringTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevDeviceMonitoringTimer.setDescription('This attribute specifies the wait period between 2 consecutive device monitoring sequences. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dlci_ldev_test_response_timer = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevTestResponseTimer.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevTestResponseTimer.setDescription('This attribute specifies the wait period between 2 consecutive TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dlci_ldev_maximum_test_retry = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 6, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 100)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciLdevMaximumTestRetry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciLdevMaximumTestRetry.setDescription('This attribute specifies the maximum number of TEST commands sent during one device monitoring sequence. A device monitoring sequence is characterized by one of the following: up to maxTestRetry TEST commands sent and a TEST response received or up to maxTestRetry of TEST commands sent and no TEST response received.') gvc_if_dlci_rdev = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7)) gvc_if_dlci_rdev_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1)) if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDlciRdev components.') gvc_if_dlci_rdev_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciRdevIndex')) if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciRdev component.') gvc_if_dlci_rdev_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciRdev components. These components can be added and deleted.') gvc_if_dlci_rdev_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciRdevComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_rdev_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciRdevStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciRdev tables.') gvc_if_dlci_rdev_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfDlciRdevIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevIndex.setDescription('This variable represents the index for the gvcIfDlciRdev tables.') gvc_if_dlci_rdev_addr_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10)) if mibBuilder.loadTexts: gvcIfDlciRdevAddrTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevAddrTable.setDescription('This group defines the LAN MAC address.') gvc_if_dlci_rdev_addr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciRdevIndex')) if mibBuilder.loadTexts: gvcIfDlciRdevAddrEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevAddrEntry.setDescription('An entry in the gvcIfDlciRdevAddrTable.') gvc_if_dlci_rdev_mac = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 7, 10, 1, 1), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDlciRdevMac.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciRdevMac.setDescription("This attribute specifies the MAC address that must be present in the Destination Address (DA) field of the 802.5 frames received (typically from a Token Ring interface) in order for the SNA DLR interface to copy them across this PVC. The MAC address in the frames is not necessarily the real MAC address of the remote device since it could be re-mapped at the remote end of the PVC using the Ddm or Sdm component or the equivalent mapping on another vendor's equipment.") gvc_if_dlci_sap = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8)) gvc_if_dlci_sap_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1)) if mibBuilder.loadTexts: gvcIfDlciSapRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfDlciSap components.') gvc_if_dlci_sap_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapLocalSapIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapRemoteSapIndex')) if mibBuilder.loadTexts: gvcIfDlciSapRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSap component.') gvc_if_dlci_sap_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSap components. These components cannot be added nor deleted.') gvc_if_dlci_sap_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_sap_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSap tables.') gvc_if_dlci_sap_local_sap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(4, 4), value_range_constraint(8, 8), value_range_constraint(12, 12), value_range_constraint(16, 16), value_range_constraint(20, 20), value_range_constraint(24, 24), value_range_constraint(28, 28), value_range_constraint(32, 32), value_range_constraint(36, 36), value_range_constraint(40, 40), value_range_constraint(44, 44), value_range_constraint(48, 48), value_range_constraint(52, 52), value_range_constraint(56, 56), value_range_constraint(60, 60), value_range_constraint(64, 64), value_range_constraint(68, 68), value_range_constraint(72, 72), value_range_constraint(76, 76), value_range_constraint(80, 80), value_range_constraint(84, 84), value_range_constraint(88, 88), value_range_constraint(92, 92), value_range_constraint(96, 96), value_range_constraint(100, 100), value_range_constraint(104, 104), value_range_constraint(108, 108), value_range_constraint(112, 112), value_range_constraint(116, 116), value_range_constraint(120, 120), value_range_constraint(124, 124), value_range_constraint(128, 128), value_range_constraint(132, 132), value_range_constraint(136, 136), value_range_constraint(140, 140), value_range_constraint(144, 144), value_range_constraint(148, 148), value_range_constraint(152, 152), value_range_constraint(156, 156), value_range_constraint(160, 160), value_range_constraint(164, 164), value_range_constraint(168, 168), value_range_constraint(172, 172), value_range_constraint(176, 176), value_range_constraint(180, 180), value_range_constraint(184, 184), value_range_constraint(188, 188), value_range_constraint(192, 192), value_range_constraint(196, 196), value_range_constraint(200, 200), value_range_constraint(204, 204), value_range_constraint(208, 208), value_range_constraint(212, 212), value_range_constraint(216, 216), value_range_constraint(220, 220), value_range_constraint(232, 232), value_range_constraint(236, 236), value_range_constraint(248, 248), value_range_constraint(252, 252)))) if mibBuilder.loadTexts: gvcIfDlciSapLocalSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapLocalSapIndex.setDescription('This variable represents an index for the gvcIfDlciSap tables.') gvc_if_dlci_sap_remote_sap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(4, 4), value_range_constraint(8, 8), value_range_constraint(12, 12), value_range_constraint(16, 16), value_range_constraint(20, 20), value_range_constraint(24, 24), value_range_constraint(28, 28), value_range_constraint(32, 32), value_range_constraint(36, 36), value_range_constraint(40, 40), value_range_constraint(44, 44), value_range_constraint(48, 48), value_range_constraint(52, 52), value_range_constraint(56, 56), value_range_constraint(60, 60), value_range_constraint(64, 64), value_range_constraint(68, 68), value_range_constraint(72, 72), value_range_constraint(76, 76), value_range_constraint(80, 80), value_range_constraint(84, 84), value_range_constraint(88, 88), value_range_constraint(92, 92), value_range_constraint(96, 96), value_range_constraint(100, 100), value_range_constraint(104, 104), value_range_constraint(108, 108), value_range_constraint(112, 112), value_range_constraint(116, 116), value_range_constraint(120, 120), value_range_constraint(124, 124), value_range_constraint(128, 128), value_range_constraint(132, 132), value_range_constraint(136, 136), value_range_constraint(140, 140), value_range_constraint(144, 144), value_range_constraint(148, 148), value_range_constraint(152, 152), value_range_constraint(156, 156), value_range_constraint(160, 160), value_range_constraint(164, 164), value_range_constraint(168, 168), value_range_constraint(172, 172), value_range_constraint(176, 176), value_range_constraint(180, 180), value_range_constraint(184, 184), value_range_constraint(188, 188), value_range_constraint(192, 192), value_range_constraint(196, 196), value_range_constraint(200, 200), value_range_constraint(204, 204), value_range_constraint(208, 208), value_range_constraint(212, 212), value_range_constraint(216, 216), value_range_constraint(220, 220), value_range_constraint(232, 232), value_range_constraint(236, 236), value_range_constraint(248, 248), value_range_constraint(252, 252)))) if mibBuilder.loadTexts: gvcIfDlciSapRemoteSapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapRemoteSapIndex.setDescription('This variable represents an index for the gvcIfDlciSap tables.') gvc_if_dlci_sap_circuit = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2)) gvc_if_dlci_sap_circuit_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1)) if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusTable.setDescription('*** THIS TABLE CURRENTLY NOT IMPLEMENTED *** This entry controls the addition and deletion of gvcIfDlciSapCircuit components.') gvc_if_dlci_sap_circuit_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapLocalSapIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapRemoteSapIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapCircuitS1MacIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapCircuitS1SapIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapCircuitS2MacIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDlciSapCircuitS2SapIndex')) if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDlciSapCircuit component.') gvc_if_dlci_sap_circuit_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 1), row_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDlciSapCircuit components. These components cannot be added nor deleted.') gvc_if_dlci_sap_circuit_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapCircuitComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_dlci_sap_circuit_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDlciSapCircuitStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitStorageType.setDescription('This variable represents the storage type value for the gvcIfDlciSapCircuit tables.') gvc_if_dlci_sap_circuit_s1_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1MacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1MacIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvc_if_dlci_sap_circuit_s1_sap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(2, 254))) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1SapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS1SapIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvc_if_dlci_sap_circuit_s2_mac_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 12), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2MacIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2MacIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvc_if_dlci_sap_circuit_s2_sap_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 7, 8, 2, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(2, 254))) if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2SapIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDlciSapCircuitS2SapIndex.setDescription('This variable represents an index for the gvcIfDlciSapCircuit tables.') gvc_if_fr_svc = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8)) gvc_if_fr_svc_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1)) if mibBuilder.loadTexts: gvcIfFrSvcRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfFrSvc components.') gvc_if_fr_svc_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfFrSvcIndex')) if mibBuilder.loadTexts: gvcIfFrSvcRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfFrSvc component.') gvc_if_fr_svc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfFrSvcRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfFrSvc components. These components can be added and deleted.') gvc_if_fr_svc_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfFrSvcComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_fr_svc_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfFrSvcStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcStorageType.setDescription('This variable represents the storage type value for the gvcIfFrSvc tables.') gvc_if_fr_svc_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 1, 1, 10), non_replicated()) if mibBuilder.loadTexts: gvcIfFrSvcIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcIndex.setDescription('This variable represents the index for the gvcIfFrSvc tables.') gvc_if_fr_svc_provisioned_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11)) if mibBuilder.loadTexts: gvcIfFrSvcProvisionedTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcProvisionedTable.setDescription('This group contains the provisonable parameters for the APPN service Frame Relay SVC calls.') gvc_if_fr_svc_provisioned_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfFrSvcIndex')) if mibBuilder.loadTexts: gvcIfFrSvcProvisionedEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcProvisionedEntry.setDescription('An entry in the gvcIfFrSvcProvisionedTable.') gvc_if_fr_svc_maximum_frame_relay_svcs = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 3072)).clone(1000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfFrSvcMaximumFrameRelaySvcs.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcMaximumFrameRelaySvcs.setDescription('This attribute specifies the maximum number of concurrently active Frame Relay SVC calls that are allowed for this service. This attribute does not include the general switched virtual circuits (GSVC).') gvc_if_fr_svc_rate_enforcement = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('off', 0), ('on', 1))).clone('on')).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfFrSvcRateEnforcement.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcRateEnforcement.setDescription('This attribute specifies whether rate enforcement is to be used for new Frame Relay SVCs on this service. When rate enforcement is on the rate of data sent by the service to individual Frame Relay SVCs is controlled.') gvc_if_fr_svc_maximum_cir = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 11, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 52000000)).clone(2048000)).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfFrSvcMaximumCir.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcMaximumCir.setDescription('This attribute specifies the maximum rate enforcement CIR (Committed Information Rate) that is allowed for use with the Frame Relay SVCs on this service. During call setup negotiation, if the caller to this service requests a higher CIR value be used, the CIR used is reduced to the value of maximumCir.') gvc_if_fr_svc_operational_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12)) if mibBuilder.loadTexts: gvcIfFrSvcOperationalTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcOperationalTable.setDescription('This group contains the operational attributes for the APPN Frame Relay SVC calls.') gvc_if_fr_svc_operational_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfFrSvcIndex')) if mibBuilder.loadTexts: gvcIfFrSvcOperationalEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcOperationalEntry.setDescription('An entry in the gvcIfFrSvcOperationalTable.') gvc_if_fr_svc_current_number_of_svc_calls = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 8, 12, 1, 1), gauge32().subtype(subtypeSpec=value_range_constraint(0, 3072))).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfFrSvcCurrentNumberOfSvcCalls.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfFrSvcCurrentNumberOfSvcCalls.setDescription('This attribute indicates the number of Frame Relay SVCs currently existing on this service. This attribute does not include the general switched virtual circuits (GSVC).') gvc_if_s_mac_f = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9)) gvc_if_s_mac_f_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1)) if mibBuilder.loadTexts: gvcIfSMacFRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfSMacF components.') gvc_if_s_mac_f_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfSMacFIndex')) if mibBuilder.loadTexts: gvcIfSMacFRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfSMacF component.') gvc_if_s_mac_f_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfSMacFRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfSMacF components. These components can be added and deleted.') gvc_if_s_mac_f_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfSMacFComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_s_mac_f_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfSMacFStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFStorageType.setDescription('This variable represents the storage type value for the gvcIfSMacF tables.') gvc_if_s_mac_f_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfSMacFIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFIndex.setDescription('This variable represents the index for the gvcIfSMacF tables.') gvc_if_s_mac_f_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11)) if mibBuilder.loadTexts: gvcIfSMacFOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFOperTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvc_if_s_mac_f_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfSMacFIndex')) if mibBuilder.loadTexts: gvcIfSMacFOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFOperEntry.setDescription('An entry in the gvcIfSMacFOperTable.') gvc_if_s_mac_f_frames_matching_filter = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 9, 11, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfSMacFFramesMatchingFilter.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfSMacFFramesMatchingFilter.setDescription('This attribute counts the number of frames containing a MAC address matching the instance of this component. When the maximum count is exceeded the count wraps to zero.') gvc_if_d_mac_f = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10)) gvc_if_d_mac_f_row_status_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1)) if mibBuilder.loadTexts: gvcIfDMacFRowStatusTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatusTable.setDescription('This entry controls the addition and deletion of gvcIfDMacF components.') gvc_if_d_mac_f_row_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDMacFIndex')) if mibBuilder.loadTexts: gvcIfDMacFRowStatusEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatusEntry.setDescription('A single entry in the table represents a single gvcIfDMacF component.') gvc_if_d_mac_f_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 1), row_status()).setMaxAccess('readwrite') if mibBuilder.loadTexts: gvcIfDMacFRowStatus.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFRowStatus.setDescription('This variable is used as the basis for SNMP naming of gvcIfDMacF components. These components can be added and deleted.') gvc_if_d_mac_f_component_name = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 2), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDMacFComponentName.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFComponentName.setDescription("This variable provides the component's string name for use with the ASCII Console Interface") gvc_if_d_mac_f_storage_type = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 4), storage_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDMacFStorageType.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFStorageType.setDescription('This variable represents the storage type value for the gvcIfDMacF tables.') gvc_if_d_mac_f_index = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 1, 1, 10), dashed_hex_string().subtype(subtypeSpec=value_size_constraint(6, 6)).setFixedLength(6)) if mibBuilder.loadTexts: gvcIfDMacFIndex.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFIndex.setDescription('This variable represents the index for the gvcIfDMacF tables.') gvc_if_d_mac_f_oper_table = mib_table((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11)) if mibBuilder.loadTexts: gvcIfDMacFOperTable.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFOperTable.setDescription('This group provides the administrative set of parameters for the GvcIf component.') gvc_if_d_mac_f_oper_entry = mib_table_row((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11, 1)).setIndexNames((0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfIndex'), (0, 'Nortel-Magellan-Passport-GeneralVcInterfaceMIB', 'gvcIfDMacFIndex')) if mibBuilder.loadTexts: gvcIfDMacFOperEntry.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFOperEntry.setDescription('An entry in the gvcIfDMacFOperTable.') gvc_if_d_mac_f_frames_matching_filter = mib_table_column((1, 3, 6, 1, 4, 1, 562, 2, 4, 1, 107, 10, 11, 1, 1), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: gvcIfDMacFFramesMatchingFilter.setStatus('mandatory') if mibBuilder.loadTexts: gvcIfDMacFFramesMatchingFilter.setDescription('This attribute counts the number of frames containing a MAC address matching the instance of this component. When the maximum count is exceeded the count wraps to zero.') general_vc_interface_group = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1)) general_vc_interface_group_be = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5)) general_vc_interface_group_be01 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5, 2)) general_vc_interface_group_be01_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 1, 5, 2, 2)) general_vc_interface_capabilities = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3)) general_vc_interface_capabilities_be = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5)) general_vc_interface_capabilities_be01 = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5, 2)) general_vc_interface_capabilities_be01_a = mib_identifier((1, 3, 6, 1, 4, 1, 562, 2, 4, 2, 58, 3, 5, 2, 2)) mibBuilder.exportSymbols('Nortel-Magellan-Passport-GeneralVcInterfaceMIB', gvcIfLcnOperTable=gvcIfLcnOperTable, gvcIfDnaDdmDmoEntry=gvcIfDnaDdmDmoEntry, gvcIfDnaHgM=gvcIfDnaHgM, gvcIfLcnVcAckStackingTimeouts=gvcIfLcnVcAckStackingTimeouts, gvcIfDlciLocalDeviceMac=gvcIfDlciLocalDeviceMac, gvcIfDcCfaIndex=gvcIfDcCfaIndex, gvcIfDnaCugInterlockCode=gvcIfDnaCugInterlockCode, gvcIfDlciVc=gvcIfDlciVc, gvcIfDlciABitReasonToNetwork=gvcIfDlciABitReasonToNetwork, gvcIfRgStorageType=gvcIfRgStorageType, gvcIfRgIfEntryTable=gvcIfRgIfEntryTable, gvcIfRDnaMapLanAdEntry=gvcIfRDnaMapLanAdEntry, gvcIfDnaIncCalls=gvcIfDnaIncCalls, gvcIfDnaCugRowStatusTable=gvcIfDnaCugRowStatusTable, gvcIfIssueLcnClearAlarm=gvcIfIssueLcnClearAlarm, gvcIfDlciRdevAddrEntry=gvcIfDlciRdevAddrEntry, gvcIfDlciSpCommittedInformationRate=gvcIfDlciSpCommittedInformationRate, gvcIfDcRowStatus=gvcIfDcRowStatus, gvcIfDlciSapCircuitComponentName=gvcIfDlciSapCircuitComponentName, gvcIfDMacFRowStatusTable=gvcIfDMacFRowStatusTable, gvcIfLcnVcSegmentsSent=gvcIfLcnVcSegmentsSent, gvcIfDlciStateEntry=gvcIfDlciStateEntry, gvcIfDlciStateTable=gvcIfDlciStateTable, gvcIfLcnVcLocalRxPktSize=gvcIfLcnVcLocalRxPktSize, gvcIfLcnVcDuplicatesFromSubnet=gvcIfLcnVcDuplicatesFromSubnet, gvcIfDnaSdmDeviceMonitoring=gvcIfDnaSdmDeviceMonitoring, gvcIfDlciVcSegmentsRx=gvcIfDlciVcSegmentsRx, gvcIfDcOptionsEntry=gvcIfDcOptionsEntry, gvcIfDiscardedQllcCalls=gvcIfDiscardedQllcCalls, gvcIfDlciDcNfaIndex=gvcIfDlciDcNfaIndex, gvcIfDnaHgMAvailabilityUpdateThreshold=gvcIfDnaHgMAvailabilityUpdateThreshold, gvcIfDlciVcFrmLossTimeouts=gvcIfDlciVcFrmLossTimeouts, gvcIfSMacFOperTable=gvcIfSMacFOperTable, gvcIfLcnStateTable=gvcIfLcnStateTable, gvcIfDnaCugComponentName=gvcIfDnaCugComponentName, gvcIfDnaCugPreferential=gvcIfDnaCugPreferential, gvcIfDlciLdevMac=gvcIfDlciLdevMac, gvcIfDlciVcNotDataXferFromSubnet=gvcIfDlciVcNotDataXferFromSubnet, gvcIfDMacFOperEntry=gvcIfDMacFOperEntry, gvcIfDcOptionsTable=gvcIfDcOptionsTable, gvcIfDlciDcRowStatusEntry=gvcIfDlciDcRowStatusEntry, gvcIfRgProvEntry=gvcIfRgProvEntry, gvcIfDlciVcNotDataXferToSubnet=gvcIfDlciVcNotDataXferToSubnet, gvcIfDlciRdevAddrTable=gvcIfDlciRdevAddrTable, gvcIfLcnVcSegmentsRx=gvcIfLcnVcSegmentsRx, gvcIfLcnVcMaxSubnetPktSize=gvcIfLcnVcMaxSubnetPktSize, gvcIfDnaHgMMaxAvailableLinkStations=gvcIfDnaHgMMaxAvailableLinkStations, gvcIfRDnaMapRowStatusEntry=gvcIfRDnaMapRowStatusEntry, gvcIfDlciSpParmsEntry=gvcIfDlciSpParmsEntry, gvcIfFrSvcRowStatusEntry=gvcIfFrSvcRowStatusEntry, gvcIfDnaHgMComponentName=gvcIfDnaHgMComponentName, gvcIfSMacFIndex=gvcIfSMacFIndex, gvcIfDlciVcCadEntry=gvcIfDlciVcCadEntry, gvcIfCallsFromNetwork=gvcIfCallsFromNetwork, gvcIfDnaDdmRowStatusEntry=gvcIfDnaDdmRowStatusEntry, gvcIfDlciLdevDeviceMonitoringTimer=gvcIfDlciLdevDeviceMonitoringTimer, gvcIfDlciBnnStorageType=gvcIfDlciBnnStorageType, gvcIfDlciLdevRowStatusTable=gvcIfDlciLdevRowStatusTable, gvcIfLcnVcSubnetRecoveries=gvcIfLcnVcSubnetRecoveries, gvcIfLcnVcIndex=gvcIfLcnVcIndex, gvcIfRgIfEntryEntry=gvcIfRgIfEntryEntry, gvcIfDlciVcPeakOoSeqFrmForwarded=gvcIfDlciVcPeakOoSeqFrmForwarded, gvcIfLcnVcCalledLcn=gvcIfLcnVcCalledLcn, gvcIfDnaDefaultRecvFrmNetworkPacketSize=gvcIfDnaDefaultRecvFrmNetworkPacketSize, gvcIfLcnRowStatusTable=gvcIfLcnRowStatusTable, gvcIfDlciLdevComponentName=gvcIfDlciLdevComponentName, gvcIfDcCfaEntry=gvcIfDcCfaEntry, gvcIfLcnVcSubnetRxPktSize=gvcIfLcnVcSubnetRxPktSize, gvcIfDnaIncomingOptionsEntry=gvcIfDnaIncomingOptionsEntry, gvcIfDnaComponentName=gvcIfDnaComponentName, gvcIfDlciRowStatus=gvcIfDlciRowStatus, gvcIfDlciComponentName=gvcIfDlciComponentName, gvcIfDlciVcState=gvcIfDlciVcState, gvcIfDlciVcPathReliability=gvcIfDlciVcPathReliability, gvcIfDlciBnn=gvcIfDlciBnn, gvcIfDlciVcEmissionPriorityFromNetwork=gvcIfDlciVcEmissionPriorityFromNetwork, gvcIfLcnVcLocalTxPktSize=gvcIfLcnVcLocalTxPktSize, gvcIfOperationalState=gvcIfOperationalState, gvcIfLcnVcWrTriggers=gvcIfLcnVcWrTriggers, gvcIfRowStatusTable=gvcIfRowStatusTable, gvcIfDlciOperationalState=gvcIfDlciOperationalState, gvcIfDnaSdmDmoEntry=gvcIfDnaSdmDmoEntry, gvcIfDlciSpStorageType=gvcIfDlciSpStorageType, gvcIfDlciLdevAddrTable=gvcIfDlciLdevAddrTable, gvcIfFrSvcMaximumCir=gvcIfFrSvcMaximumCir, gvcIfLcnVcSubnetTxPktSize=gvcIfLcnVcSubnetTxPktSize, gvcIfDlciSpRateEnforcement=gvcIfDlciSpRateEnforcement, gvcIf=gvcIf, generalVcInterfaceGroupBE01=generalVcInterfaceGroupBE01, gvcIfDnaDdm=gvcIfDnaDdm, gvcIfDMacFRowStatusEntry=gvcIfDMacFRowStatusEntry, gvcIfDlciABitReasonFromNetwork=gvcIfDlciABitReasonFromNetwork, gvcIfDlciOperTable=gvcIfDlciOperTable, gvcIfDlciVcCadTable=gvcIfDlciVcCadTable, gvcIfDlciFrmToNetwork=gvcIfDlciFrmToNetwork, generalVcInterfaceCapabilitiesBE=generalVcInterfaceCapabilitiesBE, gvcIfDnaDefaultTransferPriority=gvcIfDnaDefaultTransferPriority, gvcIfDnaHgMHgAddrAddrEntry=gvcIfDnaHgMHgAddrAddrEntry, gvcIfLcnVcPeakRetryQueueSize=gvcIfLcnVcPeakRetryQueueSize, gvcIfDnaOutgoingOptionsTable=gvcIfDnaOutgoingOptionsTable, gvcIfDlciFramesWithUnknownSaps=gvcIfDlciFramesWithUnknownSaps, gvcIfDlciSapCircuitRowStatus=gvcIfDlciSapCircuitRowStatus, gvcIfDlciUsageState=gvcIfDlciUsageState, gvcIfDcSapIndex=gvcIfDcSapIndex, gvcIfComponentName=gvcIfComponentName, gvcIfSMacFComponentName=gvcIfSMacFComponentName, gvcIfDnaSdmStorageType=gvcIfDnaSdmStorageType, gvcIfDcCfaTable=gvcIfDcCfaTable, gvcIfDlciLdevMaximumTestRetry=gvcIfDlciLdevMaximumTestRetry, gvcIfProvEntry=gvcIfProvEntry, gvcIfLcnVcFastSelectCall=gvcIfLcnVcFastSelectCall, gvcIfDlciDcRowStatusTable=gvcIfDlciDcRowStatusTable, gvcIfDnaTransferPriorityOverRide=gvcIfDnaTransferPriorityOverRide, gvcIfDlciRdevComponentName=gvcIfDlciRdevComponentName, gvcIfDlciVcPeakRetryQueueSize=gvcIfDlciVcPeakRetryQueueSize, gvcIfDlciDcDiscardPriority=gvcIfDlciDcDiscardPriority, gvcIfLcnRowStatus=gvcIfLcnRowStatus, gvcIfLcnVcIntdEntry=gvcIfLcnVcIntdEntry, gvcIfDnaIncNormalPriorityReverseCharge=gvcIfDnaIncNormalPriorityReverseCharge, gvcIfLcnVcWindowClosuresFromSubnet=gvcIfLcnVcWindowClosuresFromSubnet, generalVcInterfaceCapabilities=generalVcInterfaceCapabilities, gvcIfDnaSdmClearVcsWhenUnreachable=gvcIfDnaSdmClearVcsWhenUnreachable, gvcIfDlciExcessInformationRate=gvcIfDlciExcessInformationRate, gvcIfDnaHgMHgAddrRowStatus=gvcIfDnaHgMHgAddrRowStatus, gvcIfLcnVcCadEntry=gvcIfLcnVcCadEntry, gvcIfDnaDefaultRecvFrmNetworkThruputClass=gvcIfDnaDefaultRecvFrmNetworkThruputClass, gvcIfLcnVcIntdTable=gvcIfLcnVcIntdTable, gvcIfLcnVcRowStatusEntry=gvcIfLcnVcRowStatusEntry, gvcIfDc=gvcIfDc, gvcIfRgLinkToProtocolPort=gvcIfRgLinkToProtocolPort, gvcIfDlciSapCircuit=gvcIfDlciSapCircuit, gvcIfDnaDdmDeviceStatus=gvcIfDnaDdmDeviceStatus, gvcIfDnaDdmLanAdEntry=gvcIfDnaDdmLanAdEntry, gvcIfDMacFIndex=gvcIfDMacFIndex, generalVcInterfaceCapabilitiesBE01=generalVcInterfaceCapabilitiesBE01, gvcIfDlciLdevDmoEntry=gvcIfDlciLdevDmoEntry, gvcIfUsageState=gvcIfUsageState, gvcIfDlciVcFrdTable=gvcIfDlciVcFrdTable, gvcIfDlciStatsEntry=gvcIfDlciStatsEntry, gvcIfDnaIncIntlReverseCharge=gvcIfDnaIncIntlReverseCharge, gvcIfDlciSapCircuitS1SapIndex=gvcIfDlciSapCircuitS1SapIndex, gvcIfLcnDnaMap=gvcIfLcnDnaMap, gvcIfDnaSdmDevOpEntry=gvcIfDnaSdmDevOpEntry, gvcIfDnaHgMHgAddrNumberingPlanIndicator=gvcIfDnaHgMHgAddrNumberingPlanIndicator, gvcIfDlciOperEntry=gvcIfDlciOperEntry, gvcIfDlciVcSendSequenceNumber=gvcIfDlciVcSendSequenceNumber, gvcIfDlciSpMeasurementInterval=gvcIfDlciSpMeasurementInterval, gvcIfDnaDdmRowStatusTable=gvcIfDnaDdmRowStatusTable, gvcIfDlciAbitEntry=gvcIfDlciAbitEntry, gvcIfDnaSdmRowStatusTable=gvcIfDnaSdmRowStatusTable, gvcIfLcnVcPeakOoSeqQueueSize=gvcIfLcnVcPeakOoSeqQueueSize, gvcIfDnaRowStatus=gvcIfDnaRowStatus, gvcIfDnaOutgoingOptionsEntry=gvcIfDnaOutgoingOptionsEntry, gvcIfCallsRefusedByNetwork=gvcIfCallsRefusedByNetwork, gvcIfDlci=gvcIfDlci, gvcIfLcnVcLocalRxWindowSize=gvcIfLcnVcLocalRxWindowSize, gvcIfDlciDcNfaRowStatus=gvcIfDlciDcNfaRowStatus, gvcIfDnaHgMHgAddrRowStatusEntry=gvcIfDnaHgMHgAddrRowStatusEntry, gvcIfAdminState=gvcIfAdminState, gvcIfDnaDdmDevOpTable=gvcIfDnaDdmDevOpTable, gvcIfDnaCugRowStatusEntry=gvcIfDnaCugRowStatusEntry, gvcIfCidDataTable=gvcIfCidDataTable, gvcIfDnaHgMHgAddrAddrTable=gvcIfDnaHgMHgAddrAddrTable, gvcIfDnaDdmIndex=gvcIfDnaDdmIndex, gvcIfLcnVcComponentName=gvcIfLcnVcComponentName, gvcIfDnaDdmSap=gvcIfDnaDdmSap, gvcIfDlciLdevAddrEntry=gvcIfDlciLdevAddrEntry, gvcIfLcnVc=gvcIfLcnVc, gvcIfDlciLdevTestResponseTimer=gvcIfDlciLdevTestResponseTimer, gvcIfDlciRowStatusTable=gvcIfDlciRowStatusTable, gvcIfRgRowStatusTable=gvcIfRgRowStatusTable, gvcIfDlciLdevClearVcsWhenUnreachable=gvcIfDlciLdevClearVcsWhenUnreachable, gvcIfDnaPacketSizeNegotiation=gvcIfDnaPacketSizeNegotiation, gvcIfRgOperStatusTable=gvcIfRgOperStatusTable, gvcIfRgIndex=gvcIfRgIndex, gvcIfDlciDcIndex=gvcIfDlciDcIndex, gvcIfDnaSdmLanAdEntry=gvcIfDnaSdmLanAdEntry, gvcIfDcCfaValue=gvcIfDcCfaValue, gvcIfLcnVcPreviousState=gvcIfLcnVcPreviousState, gvcIfDlciLdevActiveLinkStations=gvcIfDlciLdevActiveLinkStations, gvcIfDlciSpOpEntry=gvcIfDlciSpOpEntry, gvcIfDnaHgMHgAddr=gvcIfDnaHgMHgAddr, gvcIfDMacFFramesMatchingFilter=gvcIfDMacFFramesMatchingFilter, gvcIfDnaDefaultRecvFrmNetworkWindowSize=gvcIfDnaDefaultRecvFrmNetworkWindowSize, gvcIfDlciAdminState=gvcIfDlciAdminState, gvcIfDnaSdmLastTimeUnreachable=gvcIfDnaSdmLastTimeUnreachable, gvcIfSMacFOperEntry=gvcIfSMacFOperEntry, gvcIfDlciSapLocalSapIndex=gvcIfDlciSapLocalSapIndex, gvcIfRDnaMap=gvcIfRDnaMap, gvcIfDlciVcRcosToNetwork=gvcIfDlciVcRcosToNetwork, gvcIfDlciLdevDeviceUnreachable=gvcIfDlciLdevDeviceUnreachable, gvcIfDcRowStatusEntry=gvcIfDcRowStatusEntry, gvcIfRgSnmpOperStatus=gvcIfRgSnmpOperStatus, gvcIfDMacFOperTable=gvcIfDMacFOperTable, gvcIfDlciSapCircuitStorageType=gvcIfDlciSapCircuitStorageType, gvcIfDlciVcCallReferenceNumber=gvcIfDlciVcCallReferenceNumber, gvcIfDnaSdmLanAdTable=gvcIfDnaSdmLanAdTable, gvcIfDnaCugIncCalls=gvcIfDnaCugIncCalls, gvcIfDlciVcOoSeqPktCntExceeded=gvcIfDlciVcOoSeqPktCntExceeded, gvcIfDlciVcElapsedTimeTillNow=gvcIfDlciVcElapsedTimeTillNow, gvcIfDlciVcSubnetRecoveries=gvcIfDlciVcSubnetRecoveries, gvcIfFrSvcOperationalTable=gvcIfFrSvcOperationalTable, gvcIfCallsRefusedByInterface=gvcIfCallsRefusedByInterface, gvcIfDlciStatsTable=gvcIfDlciStatsTable, gvcIfDlciDcRemoteDlci=gvcIfDlciDcRemoteDlci, gvcIfIndex=gvcIfIndex, gvcIfLcnUsageState=gvcIfLcnUsageState, gvcIfDlciVcPeakOoSeqPktCount=gvcIfDlciVcPeakOoSeqPktCount, gvcIfDnaSdmDmoTable=gvcIfDnaSdmDmoTable, gvcIfDlciSp=gvcIfDlciSp, gvcIfDlciRdevIndex=gvcIfDlciRdevIndex, gvcIfDlciVcIntdTable=gvcIfDlciVcIntdTable, gvcIfLcnVcCallingLcn=gvcIfLcnVcCallingLcn, gvcIfDnaDdmDeviceUnreachable=gvcIfDnaDdmDeviceUnreachable, gvcIfDnaDdmClearVcsWhenUnreachable=gvcIfDnaDdmClearVcsWhenUnreachable, gvcIfFrSvcRateEnforcement=gvcIfFrSvcRateEnforcement, gvcIfLcnVcTransferPriorityToNetwork=gvcIfLcnVcTransferPriorityToNetwork, gvcIfDnaDdmActiveLinkStations=gvcIfDnaDdmActiveLinkStations, gvcIfDlciVcOutOfRangeFrmFromSubnet=gvcIfDlciVcOutOfRangeFrmFromSubnet, gvcIfDlciDcOptionsTable=gvcIfDlciDcOptionsTable, gvcIfDlciStorageType=gvcIfDlciStorageType, gvcIfRDnaMapComponentName=gvcIfRDnaMapComponentName, gvcIfLcnVcFrmRetryTimeouts=gvcIfLcnVcFrmRetryTimeouts, gvcIfDcDiscardPriority=gvcIfDcDiscardPriority, gvcIfDlciBnnRowStatusEntry=gvcIfDlciBnnRowStatusEntry, gvcIfFrSvcRowStatusTable=gvcIfFrSvcRowStatusTable, gvcIfLcn=gvcIfLcn, gvcIfRDnaMapMac=gvcIfRDnaMapMac, gvcIfDnaDataNetworkAddress=gvcIfDnaDataNetworkAddress, gvcIfDnaCugCugOptionsTable=gvcIfDnaCugCugOptionsTable, gvcIfDlciVcDmepValue=gvcIfDlciVcDmepValue, gvcIfDlciRemoteDeviceMac=gvcIfDlciRemoteDeviceMac, gvcIfDnaHgMHgAddrComponentName=gvcIfDnaHgMHgAddrComponentName, gvcIfDcMacIndex=gvcIfDcMacIndex, gvcIfDnaCugCugOptionsEntry=gvcIfDnaCugCugOptionsEntry, gvcIfDlciRdevMac=gvcIfDlciRdevMac, gvcIfDnaRowStatusTable=gvcIfDnaRowStatusTable, gvcIfDlciSpRowStatus=gvcIfDlciSpRowStatus, gvcIfDnaIncHighPriorityReverseCharge=gvcIfDnaIncHighPriorityReverseCharge, gvcIfDnaCugOutCalls=gvcIfDnaCugOutCalls, gvcIfPeakActiveLinkStations=gvcIfPeakActiveLinkStations, gvcIfDnaCugRowStatus=gvcIfDnaCugRowStatus, gvcIfLcnVcElapsedTimeTillNow=gvcIfLcnVcElapsedTimeTillNow, gvcIfLcnLcnCIdTable=gvcIfLcnLcnCIdTable, gvcIfBcastFramesDiscarded=gvcIfBcastFramesDiscarded, gvcIfDnaDdmDevOpEntry=gvcIfDnaDdmDevOpEntry, gvcIfActiveQllcCalls=gvcIfActiveQllcCalls, gvcIfDnaDdmLastTimeReachable=gvcIfDnaDdmLastTimeReachable, gvcIfFrSvcProvisionedTable=gvcIfFrSvcProvisionedTable, gvcIfLcnVcOutOfRangeFrmFromSubnet=gvcIfLcnVcOutOfRangeFrmFromSubnet, gvcIfDlciABitStatusFromNetwork=gvcIfDlciABitStatusFromNetwork, gvcIfRDnaMapRowStatusTable=gvcIfRDnaMapRowStatusTable, gvcIfDnaCugDnic=gvcIfDnaCugDnic, gvcIfLcnVcPeakOoSeqFrmForwarded=gvcIfLcnVcPeakOoSeqFrmForwarded) mibBuilder.exportSymbols('Nortel-Magellan-Passport-GeneralVcInterfaceMIB', gvcIfDlciSpCommittedBurstSize=gvcIfDlciSpCommittedBurstSize, gvcIfLcnVcCalledDna=gvcIfLcnVcCalledDna, gvcIfDnaHgMHgAddrStorageType=gvcIfDnaHgMHgAddrStorageType, generalVcInterfaceGroup=generalVcInterfaceGroup, gvcIfLcnVcCallingDna=gvcIfLcnVcCallingDna, gvcIfDnaOutAccess=gvcIfDnaOutAccess, gvcIfDlciVcStartTime=gvcIfDlciVcStartTime, gvcIfLcnAdminState=gvcIfLcnAdminState, gvcIfRg=gvcIfRg, gvcIfDlciCommittedInformationRate=gvcIfDlciCommittedInformationRate, gvcIfLcnVcDiagnosticCode=gvcIfLcnVcDiagnosticCode, gvcIfDnaRowStatusEntry=gvcIfDnaRowStatusEntry, gvcIfLogicalProcessor=gvcIfLogicalProcessor, gvcIfDlciVcCombErrorsFromSubnet=gvcIfDlciVcCombErrorsFromSubnet, gvcIfDlciDcRowStatus=gvcIfDlciDcRowStatus, gvcIfLcnVcSubnetRxWindowSize=gvcIfLcnVcSubnetRxWindowSize, gvcIfDlciBnnRowStatusTable=gvcIfDlciBnnRowStatusTable, gvcIfDcRowStatusTable=gvcIfDcRowStatusTable, gvcIfLcnVcAccountingEnd=gvcIfLcnVcAccountingEnd, gvcIfDMacFStorageType=gvcIfDMacFStorageType, gvcIfDlciSapRowStatusTable=gvcIfDlciSapRowStatusTable, gvcIfLcnVcPriority=gvcIfLcnVcPriority, gvcIfFrSvcStorageType=gvcIfFrSvcStorageType, gvcIfDcComponentName=gvcIfDcComponentName, gvcIfDnaSdmDevOpTable=gvcIfDnaSdmDevOpTable, gvcIfDlciAbitTable=gvcIfDlciAbitTable, gvcIfFrSvc=gvcIfFrSvc, gvcIfDnaDdmLanAdTable=gvcIfDnaDdmLanAdTable, gvcIfSMacFRowStatus=gvcIfSMacFRowStatus, gvcIfDlciLdevDeviceStatus=gvcIfDlciLdevDeviceStatus, gvcIfFrSvcRowStatus=gvcIfFrSvcRowStatus, gvcIfDlciVcDiagnosticCode=gvcIfDlciVcDiagnosticCode, gvcIfDnaDdmTestResponseTimer=gvcIfDnaDdmTestResponseTimer, gvcIfDMacF=gvcIfDMacF, gvcIfDnaCallOptionsEntry=gvcIfDnaCallOptionsEntry, gvcIfDnaSdmMonitoringLcn=gvcIfDnaSdmMonitoringLcn, gvcIfDnaServiceExchange=gvcIfDnaServiceExchange, gvcIfRDnaMapSap=gvcIfRDnaMapSap, gvcIfDlciLdevRowStatusEntry=gvcIfDlciLdevRowStatusEntry, gvcIfDnaNumberingPlanIndicator=gvcIfDnaNumberingPlanIndicator, gvcIfOpEntry=gvcIfOpEntry, gvcIfRowStatus=gvcIfRowStatus, gvcIfLcnLcnCIdEntry=gvcIfLcnLcnCIdEntry, gvcIfDnaAccountClass=gvcIfDnaAccountClass, gvcIfDlciDcRemoteDna=gvcIfDlciDcRemoteDna, gvcIfDlciRdevRowStatusTable=gvcIfDlciRdevRowStatusTable, gvcIfLcnVcStatsEntry=gvcIfLcnVcStatsEntry, gvcIfStateEntry=gvcIfStateEntry, gvcIfLcnVcStartTime=gvcIfLcnVcStartTime, gvcIfDlciVcCallingNpi=gvcIfDlciVcCallingNpi, gvcIfDnaOutDefaultPathReliability=gvcIfDnaOutDefaultPathReliability, gvcIfStateTable=gvcIfStateTable, gvcIfDlciLdevIndex=gvcIfDlciLdevIndex, gvcIfRDnaMapDnaIndex=gvcIfRDnaMapDnaIndex, gvcIfDlciVcType=gvcIfDlciVcType, gvcIfLcnCircuitId=gvcIfLcnCircuitId, gvcIfDlciVcFastSelectCall=gvcIfDlciVcFastSelectCall, gvcIfDnaSdmDeviceMonitoringTimer=gvcIfDnaSdmDeviceMonitoringTimer, gvcIfDnaDdmMac=gvcIfDnaDdmMac, gvcIfDnaDdmDmoTable=gvcIfDnaDdmDmoTable, gvcIfDlciDcType=gvcIfDlciDcType, gvcIfDlciBnnRowStatus=gvcIfDlciBnnRowStatus, gvcIfStatsEntry=gvcIfStatsEntry, gvcIfDnaHgMHgAddrDataNetworkAddress=gvcIfDnaHgMHgAddrDataNetworkAddress, gvcIfDnaIncSameService=gvcIfDnaIncSameService, gvcIfDnaOutDefaultPathSensitivity=gvcIfDnaOutDefaultPathSensitivity, gvcIfDlciVcMaxSubnetPktSize=gvcIfDlciVcMaxSubnetPktSize, gvcIfDcUserData=gvcIfDcUserData, gvcIfDcTransferPriority=gvcIfDcTransferPriority, gvcIfDnaDefaultSendToNetworkThruputClass=gvcIfDnaDefaultSendToNetworkThruputClass, gvcIfDnaHgMHgAddrRowStatusTable=gvcIfDnaHgMHgAddrRowStatusTable, gvcIfDcRemoteNpi=gvcIfDcRemoteNpi, gvcIfDnaDdmDeviceMonitoringTimer=gvcIfDnaDdmDeviceMonitoringTimer, gvcIfDlciVcPreviousDiagnosticCode=gvcIfDlciVcPreviousDiagnosticCode, gvcIfDlciVcFrmCongestedToSubnet=gvcIfDlciVcFrmCongestedToSubnet, gvcIfDlciSpParmsTable=gvcIfDlciSpParmsTable, gvcIfDlciVcAccountingEnabled=gvcIfDlciVcAccountingEnabled, gvcIfDlciVcAccountingEnd=gvcIfDlciVcAccountingEnd, gvcIfCallsToNetwork=gvcIfCallsToNetwork, gvcIfDlciExcessBurstSize=gvcIfDlciExcessBurstSize, gvcIfDlciVcEmissionPriorityToNetwork=gvcIfDlciVcEmissionPriorityToNetwork, gvcIfDna=gvcIfDna, gvcIfRDnaMapLanAdTable=gvcIfRDnaMapLanAdTable, gvcIfDnaAccountCollection=gvcIfDnaAccountCollection, gvcIfLcnVcSegmentSize=gvcIfLcnVcSegmentSize, gvcIfRgIfAdminStatus=gvcIfRgIfAdminStatus, gvcIfDlciVcPktRetryTimeouts=gvcIfDlciVcPktRetryTimeouts, gvcIfDlciVcFrdEntry=gvcIfDlciVcFrdEntry, gvcIfDlciLdevMonitoringLcn=gvcIfDlciLdevMonitoringLcn, gvcIfDnaIndex=gvcIfDnaIndex, gvcIfDnaCugStorageType=gvcIfDnaCugStorageType, gvcIfSMacFRowStatusTable=gvcIfSMacFRowStatusTable, gvcIfLcnOperationalState=gvcIfLcnOperationalState, gvcIfDlciSapRemoteSapIndex=gvcIfDlciSapRemoteSapIndex, gvcIfLcnRowStatusEntry=gvcIfLcnRowStatusEntry, gvcIfDlciSapRowStatusEntry=gvcIfDlciSapRowStatusEntry, gvcIfRDnaMapNpiIndex=gvcIfRDnaMapNpiIndex, gvcIfDlciRateEnforcement=gvcIfDlciRateEnforcement, gvcIfDlciSapComponentName=gvcIfDlciSapComponentName, gvcIfLcnVcWindowClosuresToSubnet=gvcIfLcnVcWindowClosuresToSubnet, gvcIfLcnVcState=gvcIfLcnVcState, gvcIfDlciVcComponentName=gvcIfDlciVcComponentName, gvcIfDlciLdevDmoTable=gvcIfDlciLdevDmoTable, gvcIfDlciVcPeakOoSeqByteCount=gvcIfDlciVcPeakOoSeqByteCount, generalVcInterfaceCapabilitiesBE01A=generalVcInterfaceCapabilitiesBE01A, gvcIfDnaCugIndex=gvcIfDnaCugIndex, gvcIfFrSvcIndex=gvcIfFrSvcIndex, gvcIfSMacFRowStatusEntry=gvcIfSMacFRowStatusEntry, gvcIfDlciRowStatusEntry=gvcIfDlciRowStatusEntry, gvcIfDnaDefaultSendToNetworkWindowSize=gvcIfDnaDefaultSendToNetworkWindowSize, gvcIfDlciDcOptionsEntry=gvcIfDlciDcOptionsEntry, gvcIfDlciVcStorageType=gvcIfDlciVcStorageType, gvcIfDnaSdmRowStatus=gvcIfDnaSdmRowStatus, gvcIfDnaIncAccess=gvcIfDnaIncAccess, gvcIfDlciVcDmepTable=gvcIfDlciVcDmepTable, gvcIfDlciLdevDevOpTable=gvcIfDlciLdevDevOpTable, gvcIfDlciLdevLastTimeReachable=gvcIfDlciLdevLastTimeReachable, gvcIfDnaCallOptionsTable=gvcIfDnaCallOptionsTable, gvcIfDnaDdmDeviceMonitoring=gvcIfDnaDdmDeviceMonitoring, gvcIfDnaCugFormat=gvcIfDnaCugFormat, gvcIfRgComponentName=gvcIfRgComponentName, gvcIfDlciBnnComponentName=gvcIfDlciBnnComponentName, gvcIfDnaOutDefaultPriority=gvcIfDnaOutDefaultPriority, gvcIfDnaSdmActiveLinkStations=gvcIfDnaSdmActiveLinkStations, generalVcInterfaceGroupBE=generalVcInterfaceGroupBE, gvcIfDlciDcTransferPriority=gvcIfDlciDcTransferPriority, gvcIfDnaSdmMaximumTestRetry=gvcIfDnaSdmMaximumTestRetry, generalVcInterfaceMIB=generalVcInterfaceMIB, gvcIfDnaHgMRowStatusEntry=gvcIfDnaHgMRowStatusEntry, gvcIfDnaSdmMac=gvcIfDnaSdmMac, gvcIfDnaIncIntlNormalCharge=gvcIfDnaIncIntlNormalCharge, gvcIfDlciEncapsulationType=gvcIfDlciEncapsulationType, gvcIfDlciDcNfaTable=gvcIfDlciDcNfaTable, gvcIfLcnStateEntry=gvcIfLcnStateEntry, gvcIfDlciRdevStorageType=gvcIfDlciRdevStorageType, gvcIfLcnVcCalledNpi=gvcIfLcnVcCalledNpi, gvcIfDnaSdmIndex=gvcIfDnaSdmIndex, gvcIfLcnVcTransferPriorityFromNetwork=gvcIfLcnVcTransferPriorityFromNetwork, gvcIfLcnState=gvcIfLcnState, gvcIfLcnVcPeakStackedAcksRx=gvcIfLcnVcPeakStackedAcksRx, gvcIfDlciSapCircuitS1MacIndex=gvcIfDlciSapCircuitS1MacIndex, gvcIfLcnSourceMac=gvcIfLcnSourceMac, gvcIfDnaServiceCategory=gvcIfDnaServiceCategory, gvcIfOpTable=gvcIfOpTable, gvcIfRgRowStatus=gvcIfRgRowStatus, gvcIfDlciBnnIndex=gvcIfDlciBnnIndex, gvcIfDnaDdmRowStatus=gvcIfDnaDdmRowStatus, gvcIfDlciLdev=gvcIfDlciLdev, gvcIfProvTable=gvcIfProvTable, gvcIfDnaSdmSap=gvcIfDnaSdmSap, gvcIfLcnVcCadTable=gvcIfLcnVcCadTable, gvcIfSMacF=gvcIfSMacF, gvcIfStatsTable=gvcIfStatsTable, gvcIfDlciVcOoSeqByteCntExceeded=gvcIfDlciVcOoSeqByteCntExceeded, gvcIfDlciVcSegmentsSent=gvcIfDlciVcSegmentsSent, gvcIfDnaDdmMaximumTestRetry=gvcIfDnaDdmMaximumTestRetry, gvcIfLcnComponentName=gvcIfLcnComponentName, gvcIfDlciVcCallingLcn=gvcIfDlciVcCallingLcn, gvcIfDlciDcComponentName=gvcIfDlciDcComponentName, gvcIfDnaSdmTestResponseTimer=gvcIfDnaSdmTestResponseTimer, gvcIfDlciVcRcosFromNetwork=gvcIfDlciVcRcosFromNetwork, gvcIfDlciVcIntdEntry=gvcIfDlciVcIntdEntry, gvcIfDlciDc=gvcIfDlciDc, gvcIfDnaSdm=gvcIfDnaSdm, gvcIfDlciVcPriority=gvcIfDlciVcPriority, gvcIfLcnIndex=gvcIfLcnIndex, gvcIfLcnVcRowStatusTable=gvcIfLcnVcRowStatusTable, gvcIfDlciSpExcessBurstSize=gvcIfDlciSpExcessBurstSize, gvcIfLcnVcStatsTable=gvcIfLcnVcStatsTable, gvcIfDlciVcDataPath=gvcIfDlciVcDataPath, gvcIfLcnStorageType=gvcIfLcnStorageType, gvcIfRgIfIndex=gvcIfRgIfIndex, gvcIfActiveLinkStations=gvcIfActiveLinkStations, gvcIfDlciVcRowStatusEntry=gvcIfDlciVcRowStatusEntry, gvcIfDlciSapRowStatus=gvcIfDlciSapRowStatus, gvcIfDnaHgMRowStatus=gvcIfDnaHgMRowStatus, gvcIfDlciSapCircuitRowStatusTable=gvcIfDlciSapCircuitRowStatusTable, gvcIfDlciDcNfaEntry=gvcIfDlciDcNfaEntry, gvcIfDlciVcDuplicatesFromSubnet=gvcIfDlciVcDuplicatesFromSubnet, gvcIfRDnaMapStorageType=gvcIfRDnaMapStorageType, gvcIfDlciSpRowStatusTable=gvcIfDlciSpRowStatusTable, gvcIfDnaSdmRowStatusEntry=gvcIfDnaSdmRowStatusEntry, gvcIfDlciVcIndex=gvcIfDlciVcIndex, gvcIfDMacFComponentName=gvcIfDMacFComponentName, gvcIfDlciABitStatusToNetwork=gvcIfDlciABitStatusToNetwork, gvcIfDlciRdevRowStatusEntry=gvcIfDlciRdevRowStatusEntry, gvcIfDlciLdevLastTimeUnreachable=gvcIfDlciLdevLastTimeUnreachable, gvcIfRgOperStatusEntry=gvcIfRgOperStatusEntry, gvcIfLcnOperEntry=gvcIfLcnOperEntry, gvcIfDlciFrmDiscardToNetwork=gvcIfDlciFrmDiscardToNetwork, gvcIfDnaHgMHgAddrIndex=gvcIfDnaHgMHgAddrIndex, gvcIfDnaDdmMonitoringLcn=gvcIfDnaDdmMonitoringLcn, gvcIfDlciDcStorageType=gvcIfDlciDcStorageType, gvcIfDMacFRowStatus=gvcIfDMacFRowStatus, gvcIfLcnVcCallReferenceNumber=gvcIfLcnVcCallReferenceNumber, gvcIfDlciSpIndex=gvcIfDlciSpIndex, gvcIfDlciSpRowStatusEntry=gvcIfDlciSpRowStatusEntry, gvcIfLcnVcSubnetTxWindowSize=gvcIfLcnVcSubnetTxWindowSize, gvcIfDlciVcCalledNpi=gvcIfDlciVcCalledNpi, gvcIfDnaHgMRowStatusTable=gvcIfDnaHgMRowStatusTable, gvcIfDlciSapCircuitS2SapIndex=gvcIfDlciSapCircuitS2SapIndex, gvcIfMaxActiveLinkStation=gvcIfMaxActiveLinkStation, gvcIfDlciSpOpTable=gvcIfDlciSpOpTable, gvcIfDnaHgMAvailableLinkStations=gvcIfDnaHgMAvailableLinkStations, gvcIfDcStorageType=gvcIfDcStorageType, gvcIfLcnVcAccountingEnabled=gvcIfLcnVcAccountingEnabled, gvcIfDlciSapCircuitRowStatusEntry=gvcIfDlciSapCircuitRowStatusEntry, gvcIfFrSvcOperationalEntry=gvcIfFrSvcOperationalEntry, gvcIfDlciDcRemoteNpi=gvcIfDlciDcRemoteNpi, gvcIfLcnVcType=gvcIfLcnVcType, gvcIfDnaSdmDeviceStatus=gvcIfDnaSdmDeviceStatus, gvcIfDnaCugType=gvcIfDnaCugType, gvcIfDlciSapStorageType=gvcIfDlciSapStorageType, gvcIfDnaHgMIfTable=gvcIfDnaHgMIfTable, gvcIfDlciVcRowStatusTable=gvcIfDlciVcRowStatusTable, gvcIfDnaCugPrivileged=gvcIfDnaCugPrivileged, gvcIfDnaDdmComponentName=gvcIfDnaDdmComponentName, gvcIfDlciRdevRowStatus=gvcIfDlciRdevRowStatus, gvcIfDnaHgMStorageType=gvcIfDnaHgMStorageType, gvcIfDnaAddrEntry=gvcIfDnaAddrEntry, gvcIfDlciVcSegmentSize=gvcIfDlciVcSegmentSize, gvcIfDlciLdevStorageType=gvcIfDlciLdevStorageType, gvcIfDlciCommittedBurstSize=gvcIfDlciCommittedBurstSize, gvcIfDlciVcPreviousState=gvcIfDlciVcPreviousState, gvcIfFrSvcProvisionedEntry=gvcIfFrSvcProvisionedEntry, gvcIfDlciSap=gvcIfDlciSap, gvcIfDlciFrmFromNetwork=gvcIfDlciFrmFromNetwork, gvcIfDlciLdevDevOpEntry=gvcIfDlciLdevDevOpEntry, gvcIfDlciVcCannotForwardToSubnet=gvcIfDlciVcCannotForwardToSubnet, gvcIfDnaIncomingOptionsTable=gvcIfDnaIncomingOptionsTable, gvcIfDnaHgMIndex=gvcIfDnaHgMIndex, gvcIfRgProvTable=gvcIfRgProvTable, gvcIfDnaStorageType=gvcIfDnaStorageType, gvcIfRgRowStatusEntry=gvcIfRgRowStatusEntry, gvcIfDnaHgMIfEntry=gvcIfDnaHgMIfEntry, gvcIfDlciLdevDeviceMonitoring=gvcIfDlciLdevDeviceMonitoring, gvcIfSMacFStorageType=gvcIfSMacFStorageType, gvcIfLcnVcStorageType=gvcIfLcnVcStorageType, gvcIfDlciDcNfaValue=gvcIfDlciDcNfaValue, gvcIfRowStatusEntry=gvcIfRowStatusEntry, gvcIfRDnaMapRowStatus=gvcIfRDnaMapRowStatus, gvcIfDlciSpComponentName=gvcIfDlciSpComponentName, gvcIfFrSvcMaximumFrameRelaySvcs=gvcIfFrSvcMaximumFrameRelaySvcs, gvcIfStorageType=gvcIfStorageType, gvcIfCustomerIdentifier=gvcIfCustomerIdentifier, gvcIfDcCfaRowStatus=gvcIfDcCfaRowStatus, gvcIfDlciMeasurementInterval=gvcIfDlciMeasurementInterval, gvcIfDnaHgMOpEntry=gvcIfDnaHgMOpEntry, gvcIfDlciVcDmepEntry=gvcIfDlciVcDmepEntry, gvcIfDlciRdev=gvcIfDlciRdev, gvcIfDnaAddrTable=gvcIfDnaAddrTable, gvcIfDcRemoteDna=gvcIfDcRemoteDna, gvcIfCidDataEntry=gvcIfCidDataEntry, gvcIfLcnVcLocalTxWindowSize=gvcIfLcnVcLocalTxWindowSize) mibBuilder.exportSymbols('Nortel-Magellan-Passport-GeneralVcInterfaceMIB', gvcIfDnaSdmLastTimeReachable=gvcIfDnaSdmLastTimeReachable, gvcIfDlciVcRowStatus=gvcIfDlciVcRowStatus, gvcIfDlciVcCalledLcn=gvcIfDlciVcCalledLcn, gvcIfDlciVcCalledDna=gvcIfDlciVcCalledDna, gvcIfDlciIndex=gvcIfDlciIndex, gvcIfDnaSdmComponentName=gvcIfDnaSdmComponentName, gvcIfDnaSdmDeviceUnreachable=gvcIfDnaSdmDeviceUnreachable, gvcIfLcnVcRowStatus=gvcIfLcnVcRowStatus, gvcIfSMacFFramesMatchingFilter=gvcIfSMacFFramesMatchingFilter, gvcIfLcnVcPreviousDiagnosticCode=gvcIfLcnVcPreviousDiagnosticCode, gvcIfFrSvcCurrentNumberOfSvcCalls=gvcIfFrSvcCurrentNumberOfSvcCalls, gvcIfDnaHgMAvailabilityDelta=gvcIfDnaHgMAvailabilityDelta, gvcIfLcnVcPathReliability=gvcIfLcnVcPathReliability, gvcIfDnaDdmLastTimeUnreachable=gvcIfDnaDdmLastTimeUnreachable, gvcIfFrSvcComponentName=gvcIfFrSvcComponentName, gvcIfDlciVcCallingDna=gvcIfDlciVcCallingDna, gvcIfDnaCug=gvcIfDnaCug, gvcIfDnaDefaultSendToNetworkPacketSize=gvcIfDnaDefaultSendToNetworkPacketSize, gvcIfDlciSapCircuitS2MacIndex=gvcIfDlciSapCircuitS2MacIndex, gvcIfLcnVcCallingNpi=gvcIfLcnVcCallingNpi, generalVcInterfaceGroupBE01A=generalVcInterfaceGroupBE01A, gvcIfDnaPacketSizes=gvcIfDnaPacketSizes, gvcIfDnaHgMOpTable=gvcIfDnaHgMOpTable, gvcIfDlciLdevRowStatus=gvcIfDlciLdevRowStatus, gvcIfDnaDdmStorageType=gvcIfDnaDdmStorageType)
# If the universe is 15 billions years old, how many seconds is it? # Var declarations number = 15000000000 # Assuming that yearinseconds = 1*12*31*24*60*60 # Code total = number * yearinseconds print (total) # Result
number = 15000000000 yearinseconds = 1 * 12 * 31 * 24 * 60 * 60 total = number * yearinseconds print(total)
# https://leetcode.com/problems/pascals-triangle-ii/ class Solution: def getRow(self, rowIndex: int) -> List[int]: return self.getRowRecur([1], rowIndex) def getRowRecur(self, prevRow, rowIndex): if rowIndex == 0: return prevRow curRow = [prevRow[0]] for i in range(1, len(prevRow)): curRow.append(prevRow[i - 1] + prevRow[i]) curRow.append(1) return self.getRowRecur(curRow, rowIndex - 1)
class Solution: def get_row(self, rowIndex: int) -> List[int]: return self.getRowRecur([1], rowIndex) def get_row_recur(self, prevRow, rowIndex): if rowIndex == 0: return prevRow cur_row = [prevRow[0]] for i in range(1, len(prevRow)): curRow.append(prevRow[i - 1] + prevRow[i]) curRow.append(1) return self.getRowRecur(curRow, rowIndex - 1)
# Season 16 rank information # Assumes rank 18-11 give a free star same as season 15 https://worldofwarships.com/en/news/general-news/ranked-15/ # TODO: Fix rank 17 logic since stars can't be lost (see https://worldofwarships.com/en/news/general-news/ranked-15/). regular_ranks = { 18: { 'stars': 1, 'irrevocable': True, 'free-star': False }, 17: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 16: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 15: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 14: { 'stars': 2, 'irrevocable': False, 'free-star': True }, 13: { 'stars': 2, 'irrevocable': False, 'free-star': True }, 12: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 11: { 'stars': 2, 'irrevocable': False, 'free-star': True }, 10: { 'stars': 4, 'irrevocable': False, 'free-star': False }, 9: { 'stars': 4, 'irrevocable': False, 'free-star': False }, 8: { 'stars': 4, 'irrevocable': False, 'free-star': False }, 7: { 'stars': 4, 'irrevocable': False, 'free-star': False }, 6: { 'stars': 4, 'irrevocable': False, 'free-star': False }, 5: { 'stars': 5, 'irrevocable': False, 'free-star': False }, 4: { 'stars': 5, 'irrevocable': False, 'free-star': False }, 3: { 'stars': 5, 'irrevocable': False, 'free-star': False }, 2: { 'stars': 5, 'irrevocable': False, 'free-star': False }, 1: { 'stars': 1, 'irrevocable': True, 'free-star': True } } # Ranked sprint. Based on season 5. # See https://worldofwarships.com/en/news/general-news/ranked-sprint-5/ sprint_ranks = { 10: { 'stars': 1, 'irrevocable': True, 'free-star': False }, 9: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 8: { 'stars': 2, 'irrevocable': True, 'free-star': True }, 7: { 'stars': 2, 'irrevocable': False, 'free-star': True }, 6: { 'stars': 2, 'irrevocable': False, 'free-star': True }, 5: { 'stars': 3, 'irrevocable': True, 'free-star': True }, 4: { 'stars': 3, 'irrevocable': False, 'free-star': True }, 3: { 'stars': 3, 'irrevocable': True, 'free-star': True }, 2: { 'stars': 3, 'irrevocable': False, 'free-star': True }, 1: { 'stars': 1, 'irrevocable': True, 'free-star': True } }
regular_ranks = {18: {'stars': 1, 'irrevocable': True, 'free-star': False}, 17: {'stars': 2, 'irrevocable': True, 'free-star': True}, 16: {'stars': 2, 'irrevocable': True, 'free-star': True}, 15: {'stars': 2, 'irrevocable': True, 'free-star': True}, 14: {'stars': 2, 'irrevocable': False, 'free-star': True}, 13: {'stars': 2, 'irrevocable': False, 'free-star': True}, 12: {'stars': 2, 'irrevocable': True, 'free-star': True}, 11: {'stars': 2, 'irrevocable': False, 'free-star': True}, 10: {'stars': 4, 'irrevocable': False, 'free-star': False}, 9: {'stars': 4, 'irrevocable': False, 'free-star': False}, 8: {'stars': 4, 'irrevocable': False, 'free-star': False}, 7: {'stars': 4, 'irrevocable': False, 'free-star': False}, 6: {'stars': 4, 'irrevocable': False, 'free-star': False}, 5: {'stars': 5, 'irrevocable': False, 'free-star': False}, 4: {'stars': 5, 'irrevocable': False, 'free-star': False}, 3: {'stars': 5, 'irrevocable': False, 'free-star': False}, 2: {'stars': 5, 'irrevocable': False, 'free-star': False}, 1: {'stars': 1, 'irrevocable': True, 'free-star': True}} sprint_ranks = {10: {'stars': 1, 'irrevocable': True, 'free-star': False}, 9: {'stars': 2, 'irrevocable': True, 'free-star': True}, 8: {'stars': 2, 'irrevocable': True, 'free-star': True}, 7: {'stars': 2, 'irrevocable': False, 'free-star': True}, 6: {'stars': 2, 'irrevocable': False, 'free-star': True}, 5: {'stars': 3, 'irrevocable': True, 'free-star': True}, 4: {'stars': 3, 'irrevocable': False, 'free-star': True}, 3: {'stars': 3, 'irrevocable': True, 'free-star': True}, 2: {'stars': 3, 'irrevocable': False, 'free-star': True}, 1: {'stars': 1, 'irrevocable': True, 'free-star': True}}
# http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python/312464#312464 def chunks(l, n): """ Yield successive n-sized chunks from l. """ for i in xrange(0, len(l), n): yield l[i:i+n]
def chunks(l, n): """ Yield successive n-sized chunks from l. """ for i in xrange(0, len(l), n): yield l[i:i + n]
class Instruction: def __init__(self, direction, distance): self.direction = direction self.distance = distance
class Instruction: def __init__(self, direction, distance): self.direction = direction self.distance = distance
##The program will recieve 3 English words inputs from STDIN ## ##These three words will be read one at a time, in three separate line ##The first word should be changed like all vowels should be replaced by * ##The second word should be changed like all consonants should be replaced by @ ##The third word should be changed like all char should be converted to upper case ##Then concatenate the three words and print them ##Other than these concatenated word, no other characters/string should or message should be written to STDOUT ## ##For example if you print how are you then output should be h*wa@eYOU. ## ##You can assume that input of each word will not exceed more than 5 chars a = str(input()) b = str(input()) c = str(input()) v = ['a','e','i','o','u'] con = ['b','c','d','f','g','h','j','k','l','m','n','p','q','r','s','t','v','w','x','y','z'] for i in a: if i in v: x = a.replace(i,'*') for i in b: if i in con: y = b.replace(i,'@') else: y = b z = c.upper() print(x+y+z)
a = str(input()) b = str(input()) c = str(input()) v = ['a', 'e', 'i', 'o', 'u'] con = ['b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'w', 'x', 'y', 'z'] for i in a: if i in v: x = a.replace(i, '*') for i in b: if i in con: y = b.replace(i, '@') else: y = b z = c.upper() print(x + y + z)
class Coordinate: #Built this structure only to make the code more readable def __init__(self, x, y): self.x = x self.y = y class Atom: #This structure represents a molecule def __init__(self, start_coordinate): self.coordinate = start_coordinate self.is_alive = False ''' Function used the determine if a molecule will survive or not @param: self is the molecule that is being tested @param: grid is the collections of molecules that compose the grid(both dead and alive) @return: returns True if the molecule will survive the iteration or if it dies The rules are easy to deduce from the code or they can be found on the internet ''' def is_surviving(self, grid): return self.get_neighbours(grid) in [2, 3] ''' Function determines if a set of coordinates belong to the grid @param: x is the first coordinate(x-axis) @param: y is the second coordinate(y-axis) @param: grid is the collection of molecules that compose the grid(both dead and alive) @return: <type: bool> True if the coordinates belong to the grid, False otherwise ''' def test_coordinates(self, x, y, grid): if x >= len(grid) - 1 or x < 0: return False elif y >= len(grid[0]) - 1 or y < 0: return False return True ''' Function used to revive a dead molecule @param: self is the molecule that will be removed @return: void ''' def revive(self): self.is_alive = True ''' Function returns the living molecules that surround the molecule sent as parameter @param: self is the molecule in question @param: grid is the collection of molecules that compose the grid(both dead and aive) @return: <type: list> a list of all the living molecules surrounding the molecule referenced ''' def get_neighbours(self, grid): ret = [] initial_x = self.coordinate.x initial_y = self.coordinate.y tx = [0, 0, -1, 1, -1, -1, 1, 1] ty = [-1, 1, 0, 0, -1, 1, -1, 1] for i in range(len(tx)): new_x = initial_x + tx[i] new_y = initial_y + ty[i] if not self.test_coordinates(new_x, new_y, grid): continue try: if grid[new_x][new_y].is_alive: ret.append(grid[new_x][new_y]) except IndexError: print("{{ Checking molecule x: {}; y: {}; }}".format(new_x, new_y)) return ret ''' Function that determines if a molecule will be revived @param: self is the molecule in question @param: grid is the collection of molecules that compose the grid(both dead and alive) @return: void ''' def reproduce(self, grid): initial_x = self.coordinate.x initial_y = self.coordinate.y tx = [0, 0, -1, 1, -1, -1, 1, 1] ty = [-1, 1, 0, 0, -1, 1, -1, 1] for i in range(len(tx)): new_x = initial_x + tx[i] new_y = initial_y + ty[i] if not self.test_coordinates(new_x, new_y, grid): continue number_of_neighbours = len(grid[new_x][new_y].get_neighbours(grid)) if number_of_neighbours == 3: self.revive()
class Coordinate: def __init__(self, x, y): self.x = x self.y = y class Atom: def __init__(self, start_coordinate): self.coordinate = start_coordinate self.is_alive = False '\n Function used the determine if a molecule will survive or not\n @param: self is the molecule that is being tested\n @param: grid is the collections of molecules that compose the grid(both dead and alive)\n @return: returns True if the molecule will survive the iteration or if it dies\n The rules are easy to deduce from the code or they can be found on the internet\n ' def is_surviving(self, grid): return self.get_neighbours(grid) in [2, 3] '\n Function determines if a set of coordinates belong to the grid\n @param: x is the first coordinate(x-axis)\n @param: y is the second coordinate(y-axis)\n @param: grid is the collection of molecules that compose the grid(both dead and alive)\n @return: <type: bool> True if the coordinates belong to the grid, False otherwise\n ' def test_coordinates(self, x, y, grid): if x >= len(grid) - 1 or x < 0: return False elif y >= len(grid[0]) - 1 or y < 0: return False return True '\n Function used to revive a dead molecule\n @param: self is the molecule that will be removed\n @return: void\n ' def revive(self): self.is_alive = True '\n Function returns the living molecules that surround the molecule sent as parameter\n @param: self is the molecule in question\n @param: grid is the collection of molecules that compose the grid(both dead and aive)\n @return: <type: list> a list of all the living molecules surrounding the molecule referenced\n ' def get_neighbours(self, grid): ret = [] initial_x = self.coordinate.x initial_y = self.coordinate.y tx = [0, 0, -1, 1, -1, -1, 1, 1] ty = [-1, 1, 0, 0, -1, 1, -1, 1] for i in range(len(tx)): new_x = initial_x + tx[i] new_y = initial_y + ty[i] if not self.test_coordinates(new_x, new_y, grid): continue try: if grid[new_x][new_y].is_alive: ret.append(grid[new_x][new_y]) except IndexError: print('{{ Checking molecule x: {}; y: {}; }}'.format(new_x, new_y)) return ret '\n Function that determines if a molecule will be revived\n @param: self is the molecule in question\n @param: grid is the collection of molecules that compose the grid(both dead and alive)\n @return: void\n ' def reproduce(self, grid): initial_x = self.coordinate.x initial_y = self.coordinate.y tx = [0, 0, -1, 1, -1, -1, 1, 1] ty = [-1, 1, 0, 0, -1, 1, -1, 1] for i in range(len(tx)): new_x = initial_x + tx[i] new_y = initial_y + ty[i] if not self.test_coordinates(new_x, new_y, grid): continue number_of_neighbours = len(grid[new_x][new_y].get_neighbours(grid)) if number_of_neighbours == 3: self.revive()
""" Finds the sum of all the numbers that can be written as the sum of fifth power of their digits Author: Juan Rios """ def sum_power(power,maximum_limit): sum_of_numbers = 0 for i in range(maximum_limit,10,-1): total = 0 for d in str(i): total += int(d)**power if total> i: break if total==i: sum_of_numbers += i return sum_of_numbers if __name__ == "__main__": maximum_limit = 350000 power = 5 print('The sum of all numbers that can be written as sum of the {0}th power of its digits is {1}'.format(power,sum_power(power,maximum_limit)))
""" Finds the sum of all the numbers that can be written as the sum of fifth power of their digits Author: Juan Rios """ def sum_power(power, maximum_limit): sum_of_numbers = 0 for i in range(maximum_limit, 10, -1): total = 0 for d in str(i): total += int(d) ** power if total > i: break if total == i: sum_of_numbers += i return sum_of_numbers if __name__ == '__main__': maximum_limit = 350000 power = 5 print('The sum of all numbers that can be written as sum of the {0}th power of its digits is {1}'.format(power, sum_power(power, maximum_limit)))
def fibonacci_recursive(n): # Base case if n == 0: return 0 elif n == 1: return 1 # Recursive case else: return fibonacci_recursive(n-1) + fibonacci_recursive(n-2) def main(): x = 10 # compute the x-th Fibonacci number for i in range(x): result = fibonacci_recursive(i) print(result,end=", ") # run main() main()
def fibonacci_recursive(n): if n == 0: return 0 elif n == 1: return 1 else: return fibonacci_recursive(n - 1) + fibonacci_recursive(n - 2) def main(): x = 10 for i in range(x): result = fibonacci_recursive(i) print(result, end=', ') main()
test2() test() def foo(): pass test1()
test2() test() def foo(): pass test1()
#61: Average count=0 a=1 summ=0 while a!=0: a=float(input("Enter the number:")) summ+=a count+=1 print("Average:",(summ)/(count-1))
count = 0 a = 1 summ = 0 while a != 0: a = float(input('Enter the number:')) summ += a count += 1 print('Average:', summ / (count - 1))
def cul_a1(N, n): first_value = (2 * N - n * (n - 1)) // (2 * n) flag = (2 * N - n * (n - 1)) / (2 * n) == first_value return flag, first_value def print_sequence(a1, n): for a in range(a1, a1 + n-1): print(a, end=" ") print(a1 + n-1, end="") class Sum: def sum_sequence(self, N, L): flag = True for i in range(L, N//2): if i <= 100: t = cul_a1(N, i) if t[0]: flag = False print_sequence(t[1], i) break else: flag = False print("No") break if flag: print("No") N, L = map(int, input().split()) s = Sum() s.sum_sequence(N, L)
def cul_a1(N, n): first_value = (2 * N - n * (n - 1)) // (2 * n) flag = (2 * N - n * (n - 1)) / (2 * n) == first_value return (flag, first_value) def print_sequence(a1, n): for a in range(a1, a1 + n - 1): print(a, end=' ') print(a1 + n - 1, end='') class Sum: def sum_sequence(self, N, L): flag = True for i in range(L, N // 2): if i <= 100: t = cul_a1(N, i) if t[0]: flag = False print_sequence(t[1], i) break else: flag = False print('No') break if flag: print('No') (n, l) = map(int, input().split()) s = sum() s.sum_sequence(N, L)
"""Configurations and Constants.""" COMBINATION_SIZE = 2
"""Configurations and Constants.""" combination_size = 2
# -*- coding: utf-8 -*- """ Collect all the constants required by the module in one place """ # Settings that are required for the library to perform correctly REQUIRED_SETTINGS = ( 'GOOGLE_APPLICATION_CREDENTIALS', 'GCLOUD_PROJECT_NAME', # default bucket that should be used to store assets 'GCLOUD_DEFAULT_BUCKET_NAME', )
""" Collect all the constants required by the module in one place """ required_settings = ('GOOGLE_APPLICATION_CREDENTIALS', 'GCLOUD_PROJECT_NAME', 'GCLOUD_DEFAULT_BUCKET_NAME')
#There's a reduced form of range() - range(max_value), in which case min_value is implicitly set to zero: for i in range(3): print(i)
for i in range(3): print(i)
def unique(s): seen = set() seen_add = seen.add return [x for x in s if not (x in seen or seen_add(x))]
def unique(s): seen = set() seen_add = seen.add return [x for x in s if not (x in seen or seen_add(x))]