content
stringlengths
7
1.05M
fixed_cases
stringlengths
1
1.28M
FORBIDDEN_TITLE_PUNCTUATION = [ "'", ",", '"', '?', '/' '\\', '`', '|', '&' ] class Query: title = '' from_service = '' artist = '' media_type = '' def __init__(self, title, service = '', artist='', media_type=''): if not (isinstance(title, str) and isinstance(artist, str) and isinstance(media_type, str) and isinstance(service, str)): raise TypeError(f'Cannot instantiate query object with arguments of types: \ {type(title)}, {type(artist)}, {type(media_type)}, {type(service)}') self.title = Query.clean_title(title) self.from_service = service self.artist = artist self.media_type = media_type @staticmethod def clean_title(title): out = title for punc in FORBIDDEN_TITLE_PUNCTUATION: out = out.replace(punc, '') return out def is_song(self): return self.media_type == 'song' def is_album(self): return self.media_type == 'album' def has_artist(self): return not self.artist == '' def __str__(self): return f'<Query: {self.string()} {hex(id(self))}>' def __repr__(self): return f'Query("{self.string()}")' def string(self): return f'\ntitle: {self.title}\nservice: {self.from_service}\ \nartist: {self.artist}\nmedia type: {self.media_type}\n'
forbidden_title_punctuation = ["'", ',', '"', '?', '/\\', '`', '|', '&'] class Query: title = '' from_service = '' artist = '' media_type = '' def __init__(self, title, service='', artist='', media_type=''): if not (isinstance(title, str) and isinstance(artist, str) and isinstance(media_type, str) and isinstance(service, str)): raise type_error(f'Cannot instantiate query object with arguments of types: {type(title)}, {type(artist)}, {type(media_type)}, {type(service)}') self.title = Query.clean_title(title) self.from_service = service self.artist = artist self.media_type = media_type @staticmethod def clean_title(title): out = title for punc in FORBIDDEN_TITLE_PUNCTUATION: out = out.replace(punc, '') return out def is_song(self): return self.media_type == 'song' def is_album(self): return self.media_type == 'album' def has_artist(self): return not self.artist == '' def __str__(self): return f'<Query: {self.string()} {hex(id(self))}>' def __repr__(self): return f'Query("{self.string()}")' def string(self): return f'\ntitle: {self.title}\nservice: {self.from_service} \nartist: {self.artist}\nmedia type: {self.media_type}\n'
# This python script is called on build via ModBundlesItems.json configuration def OnPreBuild(**kwargs) -> None: print("OnPreBuildItem.py called ...") bundleItem = kwargs.get("_bundleItem") info = kwargs.get("info") assert bundleItem != None, "_bundleItem kwargs not found" assert info != None, "info kwargs not found"
def on_pre_build(**kwargs) -> None: print('OnPreBuildItem.py called ...') bundle_item = kwargs.get('_bundleItem') info = kwargs.get('info') assert bundleItem != None, '_bundleItem kwargs not found' assert info != None, 'info kwargs not found'
{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "name": "Stocks.py", "provenance": [], "authorship_tag": "ABX9TyN2tEWSWwhJDRg3YG0iUDln", "include_colab_link": true }, "kernelspec": { "name": "python3", "display_name": "Python 3" } }, "cells": [ { "cell_type": "markdown", "metadata": { "id": "view-in-github", "colab_type": "text" }, "source": [ "<a href=\"https://colab.research.google.com/github/surajPanayanchery/Python_GoogleCollab/blob/master/Stocks_py.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" ] }, { "cell_type": "code", "metadata": { "id": "raps5tmpQFo-", "colab_type": "code", "colab": {} }, "source": [ "import pandas as pd;\n", "\n", "filePath = 'FDStockHistory.csv'\n", "\n", "def getMovingAvg(list):\n", " i=5; \n", " mvCol = []\n", " while(i <= len(list)):\n", " sum = 0;\n", " for el in list[i-5:i]:\n", " sum += el\n", " \n", " mvCol.append(sum/5)\n", " i +=1;\n", " mvCol.extend([0,0,0,0])\n", " return mvCol\n", "\n", "stockDF = pd.read_csv(filePath);\n", "#print(stockDF.head());\n", "#print()\n", "#len(getMovingAvg(stockDF['Close']))\n", "#len(stockDF)\n", "stockDF['MovingAverage']=getMovingAvg(stockDF['Close'])\n", "stockDF.to_csv('withMovAvg.csv');\n", "#print(stockDF['Moving Average'] = )\n", "\n", "\n", "\n" ], "execution_count": 42, "outputs": [] } ] }
{'nbformat': 4, 'nbformat_minor': 0, 'metadata': {'colab': {'name': 'Stocks.py', 'provenance': [], 'authorship_tag': 'ABX9TyN2tEWSWwhJDRg3YG0iUDln', 'include_colab_link': true}, 'kernelspec': {'name': 'python3', 'display_name': 'Python 3'}}, 'cells': [{'cell_type': 'markdown', 'metadata': {'id': 'view-in-github', 'colab_type': 'text'}, 'source': ['<a href="https://colab.research.google.com/github/surajPanayanchery/Python_GoogleCollab/blob/master/Stocks_py.ipynb" target="_parent"><img src="https://colab.research.google.com/assets/colab-badge.svg" alt="Open In Colab"/></a>']}, {'cell_type': 'code', 'metadata': {'id': 'raps5tmpQFo-', 'colab_type': 'code', 'colab': {}}, 'source': ['import pandas as pd;\n', '\n', "filePath = 'FDStockHistory.csv'\n", '\n', 'def getMovingAvg(list):\n', ' i=5; \n', ' mvCol = []\n', ' while(i <= len(list)):\n', ' sum = 0;\n', ' for el in list[i-5:i]:\n', ' sum += el\n', ' \n', ' mvCol.append(sum/5)\n', ' i +=1;\n', ' mvCol.extend([0,0,0,0])\n', ' return mvCol\n', '\n', 'stockDF = pd.read_csv(filePath);\n', '#print(stockDF.head());\n', '#print()\n', "#len(getMovingAvg(stockDF['Close']))\n", '#len(stockDF)\n', "stockDF['MovingAverage']=getMovingAvg(stockDF['Close'])\n", "stockDF.to_csv('withMovAvg.csv');\n", "#print(stockDF['Moving Average'] = )\n", '\n', '\n', '\n'], 'execution_count': 42, 'outputs': []}]}
HF_TOKENIZER_NEWS_CLASSIFIER = "mrm8488/bert-mini-finetuned-age_news-classification" HF_MODEL_NEWS_CLASSIFIER = "mrm8488/bert-mini-finetuned-age_news-classification" SUBREDDITS = "wallstreetbets+investing+options+pennystocks+options+stocks" NEWS_SUBREDDITS = "news" NUM_SUBMISSION_TO_GET = 10 NEWS_CLASSES = ["world", "sports", "business", "sci/tech"]
hf_tokenizer_news_classifier = 'mrm8488/bert-mini-finetuned-age_news-classification' hf_model_news_classifier = 'mrm8488/bert-mini-finetuned-age_news-classification' subreddits = 'wallstreetbets+investing+options+pennystocks+options+stocks' news_subreddits = 'news' num_submission_to_get = 10 news_classes = ['world', 'sports', 'business', 'sci/tech']
def getBASIC(): list = [] n = input() while True: line = n if n.endswith('END'): list.append(line) return list else: list.append(line) newN = input() n = newN def findLine(prog, T): for i in range(0, len(prog)): swivel = prog[i].split() if T == swivel[0]: return i elif T == 'END': return i else: continue def execute(prog): location = 0 visited = [False] * len(prog) while True: if prog[location]==prog[len(prog)-1]: return "success" elif visited[location] == True: return "infinite loop" visited[location] = True T = prog[location].split() location = findLine(prog, T[len(T)-1]) print(execute(getBASIC()))
def get_basic(): list = [] n = input() while True: line = n if n.endswith('END'): list.append(line) return list else: list.append(line) new_n = input() n = newN def find_line(prog, T): for i in range(0, len(prog)): swivel = prog[i].split() if T == swivel[0]: return i elif T == 'END': return i else: continue def execute(prog): location = 0 visited = [False] * len(prog) while True: if prog[location] == prog[len(prog) - 1]: return 'success' elif visited[location] == True: return 'infinite loop' visited[location] = True t = prog[location].split() location = find_line(prog, T[len(T) - 1]) print(execute(get_basic()))
# Created By Rabia Alhaffar In 15/February/2020 # A Script To Run From native_01.js And native_01.bat print("Hello World") input()
print('Hello World') input()
''' Question: Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between 2000 and 3200 (both included). The numbers obtained should be printed in a comma-separated sequence on a single line. ''' result_list = [] for i in range(2000,3201): # here the end is incremented to consider Included if (i%7==0) and (i%5!=0): #Logic - i is perfectly divisible by 7 but not by 5 result_list.append(i) for j in range(len(result_list)): print(result_list[j],end=',')
""" Question: Write a program which will find all such numbers which are divisible by 7 but are not a multiple of 5, between 2000 and 3200 (both included). The numbers obtained should be printed in a comma-separated sequence on a single line. """ result_list = [] for i in range(2000, 3201): if i % 7 == 0 and i % 5 != 0: result_list.append(i) for j in range(len(result_list)): print(result_list[j], end=',')
MQTT_HOST = "mqtt-server" MQTT_PORT = 1234 MQTT_USER = "mqtt-user" MQTT_PASS = "mqtt-password" MQTT_TOPIC = "frogbot"
mqtt_host = 'mqtt-server' mqtt_port = 1234 mqtt_user = 'mqtt-user' mqtt_pass = 'mqtt-password' mqtt_topic = 'frogbot'
# Here's a class Lightbulb. It has only one attribute that # represents its state: whether it's on or off. # Create a method change_state that changes the state of the # lightbulb. In other words, the methods turns the light on or # off depending on its current state. The method doesn't take any # arguments and prints a corresponding message: Turning the # light on if it was off, and Turning the light off if it was on. # Inside the method, you are also supposed to change the value of # the attribute state. You do not need to call the method # yourself, just implement it. class Lightbulb: def __init__(self): self.state = "off" # create method change_state here def change_state(self): self.state = "on" if self.state == "off" else "off" print(f"Turning the light {self.state}") l = Lightbulb() l.change_state()
class Lightbulb: def __init__(self): self.state = 'off' def change_state(self): self.state = 'on' if self.state == 'off' else 'off' print(f'Turning the light {self.state}') l = lightbulb() l.change_state()
clothes = [int(i) for i in input().split()] # List of clothes' values rack_capacity = int(input()) # The maximum capacity of one rack racks = 1 sum_clothes = 0 while clothes: value = clothes.pop() sum_clothes += value if sum_clothes > rack_capacity: sum_clothes = value racks += 1 print(racks)
clothes = [int(i) for i in input().split()] rack_capacity = int(input()) racks = 1 sum_clothes = 0 while clothes: value = clothes.pop() sum_clothes += value if sum_clothes > rack_capacity: sum_clothes = value racks += 1 print(racks)
# -*- coding: utf-8 -*- thistuple = ("apple",) print(type(thistuple)) #NOT a tuple thistuple = ("apple") print(type(thistuple)) tuple1 = ("abc", 34, True, 40, "male") print(tuple1)
thistuple = ('apple',) print(type(thistuple)) thistuple = 'apple' print(type(thistuple)) tuple1 = ('abc', 34, True, 40, 'male') print(tuple1)
# Title : Find the percentage of odd/even elements # Author : Kiran raj R. # Date : 15:10:2020 list1 = [1, 2, 4, 0, 0, 8, 3, 5, 2, 3, 1, 34, 42] def print_percentage(list_in): count_odd = 0 count_even = 0 count_0 = 0 length = len(list1) for elem in list_in: if elem == 0: count_0 += 1 elif elem % 2 == 1: count_odd += 1 else: count_even += 1 p_odd = (count_odd / length) * 100 p_even = (count_even / length) * 100 p_0 = (count_0 / length) * 100 print(f"Percentage of odd numbers in the list : {p_odd}") print(f"Percentage of even numbers in the list : {p_even}") print(f"Percentage of zero's in the list : {p_0}") print_percentage(list1)
list1 = [1, 2, 4, 0, 0, 8, 3, 5, 2, 3, 1, 34, 42] def print_percentage(list_in): count_odd = 0 count_even = 0 count_0 = 0 length = len(list1) for elem in list_in: if elem == 0: count_0 += 1 elif elem % 2 == 1: count_odd += 1 else: count_even += 1 p_odd = count_odd / length * 100 p_even = count_even / length * 100 p_0 = count_0 / length * 100 print(f'Percentage of odd numbers in the list : {p_odd}') print(f'Percentage of even numbers in the list : {p_even}') print(f"Percentage of zero's in the list : {p_0}") print_percentage(list1)
a = 5 print(type(a)) b = 5.5 print(type(b)) print(a+b) print((a+b) * 2) print(2+2+4-2/3)
a = 5 print(type(a)) b = 5.5 print(type(b)) print(a + b) print((a + b) * 2) print(2 + 2 + 4 - 2 / 3)
# Copyright 2011 Jamie Norrish (jamie@artefact.org.nz) # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Datatype URIs. XSD = 'http://www.w3.org/2001/XMLSchema#' XSD_ANY_URI = XSD + 'anyURI' XSD_FLOAT = XSD + 'float' XSD_INT = XSD + 'int' XSD_LONG = XSD + 'long' XSD_STRING = XSD + 'string' # TMAPI feature strings. TMAPI_FEATURE_STRING_BASE = 'http://tmapi.org/features/' AUTOMERGE_FEATURE_STRING = TMAPI_FEATURE_STRING_BASE + 'automerge' MERGE_BY_TOPIC_NAME_FEATURE_STRING = TMAPI_FEATURE_STRING_BASE + \ 'merge/byTopicName' READ_ONLY_FEATURE_STRING = TMAPI_FEATURE_STRING_BASE + 'readOnly' TYPE_INSTANCE_ASSOCIATIONS_FEATURE_STRING = TMAPI_FEATURE_STRING_BASE + \ 'type-instance-associations'
xsd = 'http://www.w3.org/2001/XMLSchema#' xsd_any_uri = XSD + 'anyURI' xsd_float = XSD + 'float' xsd_int = XSD + 'int' xsd_long = XSD + 'long' xsd_string = XSD + 'string' tmapi_feature_string_base = 'http://tmapi.org/features/' automerge_feature_string = TMAPI_FEATURE_STRING_BASE + 'automerge' merge_by_topic_name_feature_string = TMAPI_FEATURE_STRING_BASE + 'merge/byTopicName' read_only_feature_string = TMAPI_FEATURE_STRING_BASE + 'readOnly' type_instance_associations_feature_string = TMAPI_FEATURE_STRING_BASE + 'type-instance-associations'
class Card: def __init__(self, suit, value): self.suit = suit self.value = value def getSuit(self): return self.suit def getValue(self): return self.value def __repr__(self): return str(self.suit) + ", " + str(self.value) def __str__(self): return str(self.suit) + ", " + str(self.value)
class Card: def __init__(self, suit, value): self.suit = suit self.value = value def get_suit(self): return self.suit def get_value(self): return self.value def __repr__(self): return str(self.suit) + ', ' + str(self.value) def __str__(self): return str(self.suit) + ', ' + str(self.value)
class Toy: def __init__(self, newdescr: str, newlovable: float): self.__description = newdescr self.__lovable = newlovable def getDescription(self) -> str: return self.__description def getLovable(self) -> float: return self.__lovable def setDescription(self, newdescr: str): if newdescr == None or newdescr == '': raise ValueError self.__description = newdescr def setLovable(self, newlovable: float): self.__lovable = newlovable def __repr__(self) -> str: return '{0} (love factor: {1})'.format(self.__description, self.__lovable) class ToyChest: def __init__(self): self.items = [] def addToy(self, toy: Toy): self.items.append(toy) def __repr__(self): return str(self.items) chest = ToyChest() mytoy = Toy('G.I. Joe', 1) chest.addToy(mytoy) print(str(chest)) descr = mytoy.getDescription() mytoy.setDescription('') nothing = None
class Toy: def __init__(self, newdescr: str, newlovable: float): self.__description = newdescr self.__lovable = newlovable def get_description(self) -> str: return self.__description def get_lovable(self) -> float: return self.__lovable def set_description(self, newdescr: str): if newdescr == None or newdescr == '': raise ValueError self.__description = newdescr def set_lovable(self, newlovable: float): self.__lovable = newlovable def __repr__(self) -> str: return '{0} (love factor: {1})'.format(self.__description, self.__lovable) class Toychest: def __init__(self): self.items = [] def add_toy(self, toy: Toy): self.items.append(toy) def __repr__(self): return str(self.items) chest = toy_chest() mytoy = toy('G.I. Joe', 1) chest.addToy(mytoy) print(str(chest)) descr = mytoy.getDescription() mytoy.setDescription('') nothing = None
# Author: Ashish Jangra from Teenage Coder num = 10 print("*") for i in range(1, num): print("*"+ " "*i +"*") for i in range(num-2, 0, -1): print("*"+ " "*i +"*") print("*")
num = 10 print('*') for i in range(1, num): print('*' + ' ' * i + '*') for i in range(num - 2, 0, -1): print('*' + ' ' * i + '*') print('*')
#Translate account group IDS def translate_acc_grp_ids(grp_id, dest_acc_grps, src_acc_grps): if grp_id in [a_id['id'] for a_id in src_acc_grps]: src_group = [grp for grp in src_acc_grps if grp['id'] == grp_id][0] if src_group['name'] in [a_id['name'] for a_id in dest_acc_grps]: dst_group = [grp for grp in dest_acc_grps if grp['name'] == src_group['name']][0] return dst_group['id'] return 'BAD' def translate_rsc_list_ids(rsc_id, dest_rsc_lists, src_rsc_lists): if rsc_id in [r_id['id'] for r_id in src_rsc_lists]: src_resource = [rsc for rsc in src_rsc_lists if rsc['id'] == rsc_id][0] if src_resource['name'] in [a_id['name'] for a_id in dest_rsc_lists]: dst_resource = [rsc for rsc in dest_rsc_lists if rsc['name'] == src_resource['name']][0] return dst_resource['id'] return 'BAD'
def translate_acc_grp_ids(grp_id, dest_acc_grps, src_acc_grps): if grp_id in [a_id['id'] for a_id in src_acc_grps]: src_group = [grp for grp in src_acc_grps if grp['id'] == grp_id][0] if src_group['name'] in [a_id['name'] for a_id in dest_acc_grps]: dst_group = [grp for grp in dest_acc_grps if grp['name'] == src_group['name']][0] return dst_group['id'] return 'BAD' def translate_rsc_list_ids(rsc_id, dest_rsc_lists, src_rsc_lists): if rsc_id in [r_id['id'] for r_id in src_rsc_lists]: src_resource = [rsc for rsc in src_rsc_lists if rsc['id'] == rsc_id][0] if src_resource['name'] in [a_id['name'] for a_id in dest_rsc_lists]: dst_resource = [rsc for rsc in dest_rsc_lists if rsc['name'] == src_resource['name']][0] return dst_resource['id'] return 'BAD'
class Solution: # @param {int} n an integer # @return {boolean} true if this is a happy number or false def isHappy(self, n): # Write your code here sum = n nums = {} while sum != 1: sum = self.cal_square_sum(sum) if sum in nums: return False nums[sum] = 1 return True def cal_square_sum(self, n): sum = 0 while n > 0: sum += (n % 10) ** 2 n = n / 10 return sum
class Solution: def is_happy(self, n): sum = n nums = {} while sum != 1: sum = self.cal_square_sum(sum) if sum in nums: return False nums[sum] = 1 return True def cal_square_sum(self, n): sum = 0 while n > 0: sum += (n % 10) ** 2 n = n / 10 return sum
class Solution: def findDuplicate(self, nums: List[int]) -> int: if not nums: return -1 left, right = 1, len(nums) while left + 1 < right: mid = (left + right) // 2 count = 0 for num in nums: if num <= mid: count += 1 if count > mid: right = mid else: left = mid count = 0 for num in nums: if num <= left: count += 1 if count > left: return left else: return right
class Solution: def find_duplicate(self, nums: List[int]) -> int: if not nums: return -1 (left, right) = (1, len(nums)) while left + 1 < right: mid = (left + right) // 2 count = 0 for num in nums: if num <= mid: count += 1 if count > mid: right = mid else: left = mid count = 0 for num in nums: if num <= left: count += 1 if count > left: return left else: return right
A = [3,2,6,8,4,5,7,1] for j in range(1,len(A)): key = A[j] i = j - 1 while i >= 0 and A[i] > key: A[i+1] = A[i] i = i - 1 A[i + 1] = key print(A)
a = [3, 2, 6, 8, 4, 5, 7, 1] for j in range(1, len(A)): key = A[j] i = j - 1 while i >= 0 and A[i] > key: A[i + 1] = A[i] i = i - 1 A[i + 1] = key print(A)
class Solution: def longestLine(self, M: List[List[int]]) -> int: if len(M) == 0: return 0 rows, cols = len(M), len(M[0]) max_len = 0 @lru_cache(maxsize=None) def dfs(row, col, direction): subpath = 0 # directions: left, up, upleft, upright ro, co = direction new_row, new_col = row + ro, col + co if 0 <= new_row and new_row < rows and \ 0 <= new_col and new_col < cols and \ M[new_row][new_col] == 1: subpath = dfs(new_row, new_col, direction) return (M[row][col] == 1) + subpath for row in range(rows): for col in range(cols): for direction in [(0, 1), (-1, 0), (-1, -1), (-1, 1)]: max_len = max(max_len, dfs(row, col, direction)) return max_len class SolutionManualMemoization: def longestLine(self, M: List[List[int]]) -> int: if len(M) == 0: return 0 rows, cols = len(M), len(M[0]) max_len = 0 path_counter = defaultdict(int) for row in range(rows): for col in range(cols): for direction in [row, col+.1, row-col+.2, row+col+.3]: new_count = (path_counter[direction] + 1) * M[row][col] path_counter[direction] = new_count max_len = max(max_len, new_count) return max_len
class Solution: def longest_line(self, M: List[List[int]]) -> int: if len(M) == 0: return 0 (rows, cols) = (len(M), len(M[0])) max_len = 0 @lru_cache(maxsize=None) def dfs(row, col, direction): subpath = 0 (ro, co) = direction (new_row, new_col) = (row + ro, col + co) if 0 <= new_row and new_row < rows and (0 <= new_col) and (new_col < cols) and (M[new_row][new_col] == 1): subpath = dfs(new_row, new_col, direction) return (M[row][col] == 1) + subpath for row in range(rows): for col in range(cols): for direction in [(0, 1), (-1, 0), (-1, -1), (-1, 1)]: max_len = max(max_len, dfs(row, col, direction)) return max_len class Solutionmanualmemoization: def longest_line(self, M: List[List[int]]) -> int: if len(M) == 0: return 0 (rows, cols) = (len(M), len(M[0])) max_len = 0 path_counter = defaultdict(int) for row in range(rows): for col in range(cols): for direction in [row, col + 0.1, row - col + 0.2, row + col + 0.3]: new_count = (path_counter[direction] + 1) * M[row][col] path_counter[direction] = new_count max_len = max(max_len, new_count) return max_len
class Bcolors: WHITE = "\033[97m" CYAN = "\033[96m" MAGENTA = "\033[95m" BLUE = "\033[94m" YELLOW = "\033[93m" GREEN = "\033[92m" RED = "\033[91m" GREY = "\033[90m" SOFTWHITE = "\033[37m" SOFTCYAN = "\033[36m" SOFTMAGENTA = "\033[35m" SOFTBLUE = "\033[34m" SOFTYELLOW = "\033[33m" SOFTGREEN = "\033[32m" SOFTRED = "\033[31m" SOFTGREY = "\033[30m" DRACULA = "\033[38;5;87m" ENDC = "\033[0m" # A simple Person class class Person: def __init__(self, name, age): self.name = name self.age = age def __repr__(self): rep = "variableforclass(" + self.name + "," + str(self.age) + ")" return rep # Let's make a Person object and print the results of repr() variableForClass = Person("John", 20) print(repr(variableForClass)) class Equipment: def __init__(self, item1, item2, item3): self.item1 = item1 self.item2 = item2 self.item3 = item3 def __repr__(self): rep = ( Bcolors.GREY + "You are currently equiped with the following" + "\n" + bcolors.WHITE + "_______________________________________" + "\n" + bcolors.BLUE + "Item1: " + self.item1 + "\n" + "item 2: " + self.item2 + "\n" + "item 3: " + self.item3 + bcolors.ENDC ) return rep someVariable = Equipment("shield", "sword", "helmet") print(repr(someVariable)) # Defining a class () # class Test: # def __init__(self, a, b): # self.a = a # self.b = b # # def __repr__(self): # return "Test a:% s b:% s" % (self.a, self.b) # # def __str__(self): # return "From str method of Test: a is % s, " \ # "b is % s" % (self.a, self.b) # Driver Code # t = Test(1234, 5678) # This calls __str__() # print(t) # This calls __repr__() # print([t]) # A simple Person class # class Person: # def __init__(self, name, age): # self.name = name # self.age = age # # def __repr__(self): # rep = 'Person(' + self.name + ',' + str(self.age) + ')' # return rep
class Bcolors: white = '\x1b[97m' cyan = '\x1b[96m' magenta = '\x1b[95m' blue = '\x1b[94m' yellow = '\x1b[93m' green = '\x1b[92m' red = '\x1b[91m' grey = '\x1b[90m' softwhite = '\x1b[37m' softcyan = '\x1b[36m' softmagenta = '\x1b[35m' softblue = '\x1b[34m' softyellow = '\x1b[33m' softgreen = '\x1b[32m' softred = '\x1b[31m' softgrey = '\x1b[30m' dracula = '\x1b[38;5;87m' endc = '\x1b[0m' class Person: def __init__(self, name, age): self.name = name self.age = age def __repr__(self): rep = 'variableforclass(' + self.name + ',' + str(self.age) + ')' return rep variable_for_class = person('John', 20) print(repr(variableForClass)) class Equipment: def __init__(self, item1, item2, item3): self.item1 = item1 self.item2 = item2 self.item3 = item3 def __repr__(self): rep = Bcolors.GREY + 'You are currently equiped with the following' + '\n' + bcolors.WHITE + '_______________________________________' + '\n' + bcolors.BLUE + 'Item1: ' + self.item1 + '\n' + 'item 2: ' + self.item2 + '\n' + 'item 3: ' + self.item3 + bcolors.ENDC return rep some_variable = equipment('shield', 'sword', 'helmet') print(repr(someVariable))
MAX = 100 sum_even = 0 sum_odd = 0 for i in range(1, MAX+1): if i % 2 == 0: sum_even += i else: sum_odd += i print(f'Suma parzystych {sum_even}\nSuma nieparzystych {sum_odd}')
max = 100 sum_even = 0 sum_odd = 0 for i in range(1, MAX + 1): if i % 2 == 0: sum_even += i else: sum_odd += i print(f'Suma parzystych {sum_even}\nSuma nieparzystych {sum_odd}')
def precision(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_pred = len(pred_entities) score = nb_correct / nb_pred if nb_pred > 0 else 0 return score def recall(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_true = len(true_entities) score = nb_correct / nb_true if nb_true > 0 else 0 return score def f1(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_pred = len(pred_entities) nb_true = len(true_entities) p = nb_correct / nb_pred if nb_pred > 0 else 0 r = nb_correct / nb_true if nb_true > 0 else 0 score = 2 * p * r / (p + r) if p + r > 0 else 0 return score
def precision(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_pred = len(pred_entities) score = nb_correct / nb_pred if nb_pred > 0 else 0 return score def recall(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_true = len(true_entities) score = nb_correct / nb_true if nb_true > 0 else 0 return score def f1(y_true, y_pred, average='micro'): true_entities = set([item for sublist in y_true for item in sublist]) pred_entities = set([item for sublist in y_pred for item in sublist]) nb_correct = len(true_entities & pred_entities) nb_pred = len(pred_entities) nb_true = len(true_entities) p = nb_correct / nb_pred if nb_pred > 0 else 0 r = nb_correct / nb_true if nb_true > 0 else 0 score = 2 * p * r / (p + r) if p + r > 0 else 0 return score
#Kunal Gautam #Codewars : @Kunalpod #Problem name: Simple Fun #6: Is Infinite Process? #Problem level: 7 kyu def is_infinite_process(a, b): if b<a: return True if (b-a)%2==1: return True return False
def is_infinite_process(a, b): if b < a: return True if (b - a) % 2 == 1: return True return False
class RGBColor(object): def __init__(self, red, green=None, blue=None): self.red = red self.green = green if green is not None else red self.blue = blue if blue is not None else red def __repr__(self): return "#{:02x}{:02x}{:02x}".format(self.red, self.green, self.blue) def __add__(self, other): return RGBColor( self.red + other.red if self.red + other.red < 255 else 255, self.green + other.green if self.green + other.green < 255 else 255, self.blue + other.blue if self.blue + other.blue < 255 else 255) def __sub__(self, other): return RGBColor( self.red - other.red if self.red - other.red > 0 else 0, self.green - other.green if self.green - other.green > 0 else 0, self.blue - other.blue if self.blue - other.blue > 0 else 0)
class Rgbcolor(object): def __init__(self, red, green=None, blue=None): self.red = red self.green = green if green is not None else red self.blue = blue if blue is not None else red def __repr__(self): return '#{:02x}{:02x}{:02x}'.format(self.red, self.green, self.blue) def __add__(self, other): return rgb_color(self.red + other.red if self.red + other.red < 255 else 255, self.green + other.green if self.green + other.green < 255 else 255, self.blue + other.blue if self.blue + other.blue < 255 else 255) def __sub__(self, other): return rgb_color(self.red - other.red if self.red - other.red > 0 else 0, self.green - other.green if self.green - other.green > 0 else 0, self.blue - other.blue if self.blue - other.blue > 0 else 0)
# magicians = ['alica', 'david', 'carolina'] # for magicians in magicians: # print (magicians) # print (magicians.title() + ", the was a great trick! " ) # print ( "I can't wait to see you next trick, " + magicians.title() + ". \n") # print ("Thank you everyone, that was a great magic show!") for value in range (1,5): print(value) for value in range (1,6): print(value) numbers = list (range(1,6)) print (numbers) even_numbers = list (range (2,11,2)) print (even_numbers) squares = [] for value in range (1,11): square = value**2 squares.append (square) print (squares) squares.append(value**2) print (squares) digits = [1,2,3,4,5,6,7,8,9,0] min (digits) print (min (digits)) max (digits) print (max(digits)) sum(digits) print (sum (digits)) squares = [value**2 for value in range (1,11)] print (squares) players = ['charles', 'martina', 'michael', 'florence', 'eli'] # print (players [1:4]) # print (players [:4]) # print (players[2:]) # print (players [-3:]) # print ("Here are the first three players on my team:") # for players in players[:3]: # print (players.title()) # # # my_foods =['pizza', 'falafel', 'carrot cake '] # friend_foods = my_foods [:] # print ("My favorite foods are:") # print (my_foods) # # print ("\nMy friend's favorite foods are:") # print (friend_foods) # # my_foods.append ('cannoli') # friend_foods.append ('ice cream') # print ("My favorite foods are:") # print (my_foods) # print ("\nMy friend's favorite foods are:") # print (friend_foods) # # friend_foods = my_foods # my_foods.append ('cannoli') # friend_foods.append ('ice cream') # print ("\nMy friend's favorite foods are:") # print (friend_foods) dimensions = (200, 50) # print (dimensions [0]) # print (dimensions [1]) # # dimensions [0] =250 # # for dimensions in dimensions: # print (dimensions) print ("Original dimensions:") for dimension in dimensions: print (dimension) dimensions = (400, 100) print ("\nModified dimensions:") for dimension in dimensions: print (dimension)
for value in range(1, 5): print(value) for value in range(1, 6): print(value) numbers = list(range(1, 6)) print(numbers) even_numbers = list(range(2, 11, 2)) print(even_numbers) squares = [] for value in range(1, 11): square = value ** 2 squares.append(square) print(squares) squares.append(value ** 2) print(squares) digits = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0] min(digits) print(min(digits)) max(digits) print(max(digits)) sum(digits) print(sum(digits)) squares = [value ** 2 for value in range(1, 11)] print(squares) players = ['charles', 'martina', 'michael', 'florence', 'eli'] dimensions = (200, 50) print('Original dimensions:') for dimension in dimensions: print(dimension) dimensions = (400, 100) print('\nModified dimensions:') for dimension in dimensions: print(dimension)
class Solution: def prisonAfterNDays(self, cells: List[int], N: int) -> List[int]: cur = [0]*8 firstDay = [] count = 0 while N>0: for i in range(1,7): if cells[i-1] == cells[i+1]: cur[i] = 1 else: cur[i] = 0 if count==0: firstDay = cur[:] elif cur == firstDay: N %= count if N == 0: N = count count +=1 N-=1 cells = cur[:] return cur
class Solution: def prison_after_n_days(self, cells: List[int], N: int) -> List[int]: cur = [0] * 8 first_day = [] count = 0 while N > 0: for i in range(1, 7): if cells[i - 1] == cells[i + 1]: cur[i] = 1 else: cur[i] = 0 if count == 0: first_day = cur[:] elif cur == firstDay: n %= count if N == 0: n = count count += 1 n -= 1 cells = cur[:] return cur
print("Hai") print("Hai") print("Hai") print("Hai") print("Hai") print("Hai") print("Hai")
print('Hai') print('Hai') print('Hai') print('Hai') print('Hai') print('Hai') print('Hai')
COUNTRIES = { 'colombia': 31, 'argentina': 45, 'venezuela': 12, 'peru': 22, 'ecuador': 55, 'mexico': 143, } while True: country = str(input('Ingresa el nombre del pais: ')).lower() try: print('El numero de habiantes en {} es de {} millones de habitantes'. format(country , COUNTRIES[country])) except KeyError: print('Lo sentimos no tenemos el numero de habiantes de {}'. format(country))
countries = {'colombia': 31, 'argentina': 45, 'venezuela': 12, 'peru': 22, 'ecuador': 55, 'mexico': 143} while True: country = str(input('Ingresa el nombre del pais: ')).lower() try: print('El numero de habiantes en {} es de {} millones de habitantes'.format(country, COUNTRIES[country])) except KeyError: print('Lo sentimos no tenemos el numero de habiantes de {}'.format(country))
#!/usr/bin/env python # coding: utf-8 # # Pachyderm-Seldon Integration: Version Controlled Models # # [Pachyderm](https://pachyderm.io/) is a data science platform that combines Data Lineage with End-to-End Pipelines. [Seldon-Core](https://www.seldon.io/tech/products/core/) is an open-source platform for rapidly deploying machine learning models. # # This notebook will show you how to perform data-driven model training using Pachyderm and deploy that model using Seldon-Core. This represents the simplest integration between Pachyderm and Seldon. # # ### Highlights # # The highlight in this example is the use of Pachyderm's S3 gateway, where version controlled pachyderm repositories are exposed via an S3-like API. This means that Seldon-Core's pre-packaged model servers, which typically read from blob storage, can read directly from Pachyderm. # # This implements the machine learning best practice of provenance. You can trace the model artifact's lineage right back to the version of the data that it was trained on, without making any changes to your usual way of working. # # ![overview image](./images/pachyderm-simple-demo.png) # # ## Prerequisites # # * A kubernetes cluster with kubectl configured # * [A seldon-core cluster installed and configured](https://docs.seldon.io/projects/seldon-core/en/latest/examples/seldon_core_setup.html) # * `curl` # * Pachyderm's `pachctl` binary installed following the [official documentation](https://docs.pachyderm.com/latest/getting_started/local_installation/#install-pachctl) # # Pachyderm is controlled and deployed via the `pachctl`. This document assumes that you have version `1.11.8` installed, although it should work with any `1.x.x` version. # In[1]: get_ipython().system('pachctl version --client-only') get_ipython().system('kubectl get po -A') # ## 1. Installing Pachyderm # # Use `pachctl` to deploy Pachyderm to your cluster. In the command below I disable the pachyderm dashboard because it is not used in this example and I intentionally disable sharing of the docker socket to reduce the chance that rogue containers can access my system. # In[2]: get_ipython().system('kubectl create ns pachyderm') get_ipython().system('pachctl deploy local --no-expose-docker-socket --no-dashboard --namespace pachyderm') # In[3]: get_ipython().system('kubectl rollout status deployment -n pachyderm pachd') # ## 2. Add the Training Data # # > Note: If you are using a non-standard Pachyderm namespace, you will need to run `pachctl port-forward` in a separate terminal # # Before we train a model, I will first create a new Pachyderm repository to version control the data, then commit the training data to that repository. You should be able to see `iris.csv` in the `master` branch of the repository `training`. # In[4]: get_ipython().system('pachctl create repo training') # In[5]: get_ipython().system('cd data && pachctl put file training@master -f iris.csv') # In[6]: get_ipython().system('pachctl list repo') # In[7]: get_ipython().system('pachctl list file training@master') # ## 3. Train the Model Using a Pachyderm Pipeline # # Pachyderm Pipelines are the computational component of the Pachyderm platform. They are responsible for reading data from a specified source, such as a Pachyderm repo, transforming it according to the pipeline configuration, and writing the result to an output repo. Pachyderm pipelines can be easily chained together to create a directed acyclic graph (DAG). # # I define a simple pipeline that is inspired by a [similar Pachyderm example](https://github.com/pachyderm/pachyderm/tree/master/examples/ml/iris). It accepts training data, trains a logistic classifier, and returns a pickled model in joblib format. # # This uses a container built from the [iris-train-python-svm](https://github.com/SeldonIO/seldon-core/tree/master/examples/pachyderm-simple/iris-train-python-svm) directory to perform the training, but you could use your own. The input is defined to be the `training` Pachyderm repository and the output will be stored in a repository with the same name as the pipeline (`model`). Remember to push the container to somewhere that the cluster can acccess. For example, you can use the `make kind_load` target in the [Makefile](https://github.com/SeldonIO/seldon-core/blob/master/examples/pachyderm-simple/iris-train-python-svm/Makefile) to push the container to a `kind` cluster. # In[8]: get_ipython().run_cell_magic('writefile', 'train.json', '{\n "pipeline": {\n "name": "model"\n },\n "description": "A pipeline that trains a SVM model based on the data in the `data` directory by using a Python script.",\n "transform": {\n "image": "seldonio/pachyderm-iris-trainer:1.0.0",\n "cmd": [\n "python3",\n "/code/pytrain.py",\n "/pfs/training/",\n "/pfs/out/"\n ]\n },\n "parallelism_spec": {\n "constant": "1"\n },\n "input": {\n "pfs": {\n "repo": "training",\n "glob": "/"\n }\n }\n}') # In[9]: get_ipython().system('pachctl create pipeline -f train.json') # In[10]: get_ipython().system('pachctl list pipeline') # ## 4. Verify Pipeline Success # # It may take a while for the job to start the first time, as Kubernetes pulls the container. But eventually you should see that the job completes and a new file is committed to the `master` branch of the `model` repository. # In[12]: get_ipython().system('pachctl list job') # In[13]: get_ipython().system('pachctl list file model@master') # ## 5. Deploy Seldon-Core Powered Sklearn Server # # Now that you have a model artefact, you can use Pachyderm's S3 gateway feature to directly load the version controlled model into a Seldon-Core deployment. # # The key is to create a container secret that points to the pachyderm cluster on the right port. If you have installed Pachyderm by following this tutorial, then it will have installed with no credentials. In this case the corresponding access key and secret are not used (but must be set). The endpoint URL is pointing to the in-cluster FQDN of the pachyderm service on port `600`. # # Next you can deploy your sklearn-based Seldon Deployment in the usual mannor, using the following format for the S3 bucket: `s3://${branch}.${repository}/${directory}`. Since our model is written to the root of the directory, the final s3 `modelUri` is `s3://master.model`. # In[16]: get_ipython().run_cell_magic('writefile', 'secret.yaml', '\napiVersion: v1\nkind: Secret\nmetadata:\n name: seldon-init-container-secret\ntype: Opaque\nstringData:\n AWS_ACCESS_KEY_ID: noauth\n AWS_SECRET_ACCESS_KEY: noauth\n AWS_ENDPOINT_URL: http://pachd.pachyderm.svc.cluster.local:600\n USE_SSL: "false"') # In[17]: get_ipython().system('kubectl -n seldon apply -f secret.yaml') # In[20]: get_ipython().run_cell_magic('writefile', 'deploy.yaml', '\napiVersion: machinelearning.seldon.io/v1\nkind: SeldonDeployment\nmetadata:\n name: pachyderm-sklearn\nspec:\n name: iris\n predictors:\n - componentSpecs:\n graph:\n children: []\n implementation: SKLEARN_SERVER\n modelUri: s3://master.model\n envSecretRefName: seldon-init-container-secret\n name: classifier\n name: default\n replicas: 1') # In[21]: get_ipython().system('kubectl -n seldon apply -f deploy.yaml') # In[22]: get_ipython().system("kubectl -n seldon rollout status deploy/$(kubectl get deploy -l seldon-deployment-id=pachyderm-sklearn -o jsonpath='{.items[0].metadata.name}')") # ## 6. Test the Deployment # # Now that the deployment has completed, you can call the model predict endpoint via the port-forwarded ingress FDQN and the seldon-core API. The input matches the convension expected by the mdoel (set by the training data) and results in predicted class probabilities. # In[28]: get_ipython().run_cell_magic('bash', '', 'curl -s -X POST -H \'Content-Type: application/json\' \\\n -d \'{"data":{"ndarray":[[5.964, 4.006, 2.081, 1.031]]}}\' \\\n http://localhost:8003/seldon/seldon/pachyderm-sklearn/api/v1.0/predictions | jq .') # ## 7. Bonus: Rebuilding the Model # # The beauty of having models version controlled is that when you change the data, you can automatically retrain the model. # # Below I'm overwriting the old training data with a slightly smaller version of the same. When I do this, the pipeline notices and automatically runs. That means that the model artifact is regenerated and place back in it's repo. # # At the end, all we need to do is restart the pod, to get Seldon-Core to reload model from it's S3 endpoint. You'll see in the final call of the predict endpoint that the result has changed, even though we're passing in the same input data. This is because the decision boundaries have changed slightly due to the different training data distribution. # # # In another example I will show you how to automate this. # In[29]: get_ipython().system('cd data && pachctl put file training@master:/iris.csv -f iris_2.csv') # In[30]: get_ipython().system('pachctl list file training@master') # In[31]: get_ipython().system('pachctl list job') # In[32]: get_ipython().system('kubectl -n seldon delete -f deploy.yaml') get_ipython().system('kubectl -n seldon apply -f deploy.yaml') # In[33]: get_ipython().system("kubectl -n seldon rollout status deploy/$(kubectl get deploy -l seldon-deployment-id=pachyderm-sklearn -o jsonpath='{.items[0].metadata.name}')") # In[34]: get_ipython().run_cell_magic('bash', '', 'curl -s -X POST -H \'Content-Type: application/json\' \\\n -d \'{"data":{"ndarray":[[5.964, 4.006, 2.081, 1.031]]}}\' \\\n http://localhost:8003/seldon/seldon/pachyderm-sklearn/api/v1.0/predictions | jq .') # ## Cleanup # In[35]: get_ipython().system('kubectl -n seldon delete -f deploy.yaml') get_ipython().system('kubectl delete ns pachyderm')
get_ipython().system('pachctl version --client-only') get_ipython().system('kubectl get po -A') get_ipython().system('kubectl create ns pachyderm') get_ipython().system('pachctl deploy local --no-expose-docker-socket --no-dashboard --namespace pachyderm') get_ipython().system('kubectl rollout status deployment -n pachyderm pachd') get_ipython().system('pachctl create repo training') get_ipython().system('cd data && pachctl put file training@master -f iris.csv') get_ipython().system('pachctl list repo') get_ipython().system('pachctl list file training@master') get_ipython().run_cell_magic('writefile', 'train.json', '{\n "pipeline": {\n "name": "model"\n },\n "description": "A pipeline that trains a SVM model based on the data in the `data` directory by using a Python script.",\n "transform": {\n "image": "seldonio/pachyderm-iris-trainer:1.0.0",\n "cmd": [\n "python3",\n "/code/pytrain.py",\n "/pfs/training/",\n "/pfs/out/"\n ]\n },\n "parallelism_spec": {\n "constant": "1"\n },\n "input": {\n "pfs": {\n "repo": "training",\n "glob": "/"\n }\n }\n}') get_ipython().system('pachctl create pipeline -f train.json') get_ipython().system('pachctl list pipeline') get_ipython().system('pachctl list job') get_ipython().system('pachctl list file model@master') get_ipython().run_cell_magic('writefile', 'secret.yaml', '\napiVersion: v1\nkind: Secret\nmetadata:\n name: seldon-init-container-secret\ntype: Opaque\nstringData:\n AWS_ACCESS_KEY_ID: noauth\n AWS_SECRET_ACCESS_KEY: noauth\n AWS_ENDPOINT_URL: http://pachd.pachyderm.svc.cluster.local:600\n USE_SSL: "false"') get_ipython().system('kubectl -n seldon apply -f secret.yaml') get_ipython().run_cell_magic('writefile', 'deploy.yaml', '\napiVersion: machinelearning.seldon.io/v1\nkind: SeldonDeployment\nmetadata:\n name: pachyderm-sklearn\nspec:\n name: iris\n predictors:\n - componentSpecs:\n graph:\n children: []\n implementation: SKLEARN_SERVER\n modelUri: s3://master.model\n envSecretRefName: seldon-init-container-secret\n name: classifier\n name: default\n replicas: 1') get_ipython().system('kubectl -n seldon apply -f deploy.yaml') get_ipython().system("kubectl -n seldon rollout status deploy/$(kubectl get deploy -l seldon-deployment-id=pachyderm-sklearn -o jsonpath='{.items[0].metadata.name}')") get_ipython().run_cell_magic('bash', '', 'curl -s -X POST -H \'Content-Type: application/json\' \\\n -d \'{"data":{"ndarray":[[5.964, 4.006, 2.081, 1.031]]}}\' \\\n http://localhost:8003/seldon/seldon/pachyderm-sklearn/api/v1.0/predictions | jq .') get_ipython().system('cd data && pachctl put file training@master:/iris.csv -f iris_2.csv') get_ipython().system('pachctl list file training@master') get_ipython().system('pachctl list job') get_ipython().system('kubectl -n seldon delete -f deploy.yaml') get_ipython().system('kubectl -n seldon apply -f deploy.yaml') get_ipython().system("kubectl -n seldon rollout status deploy/$(kubectl get deploy -l seldon-deployment-id=pachyderm-sklearn -o jsonpath='{.items[0].metadata.name}')") get_ipython().run_cell_magic('bash', '', 'curl -s -X POST -H \'Content-Type: application/json\' \\\n -d \'{"data":{"ndarray":[[5.964, 4.006, 2.081, 1.031]]}}\' \\\n http://localhost:8003/seldon/seldon/pachyderm-sklearn/api/v1.0/predictions | jq .') get_ipython().system('kubectl -n seldon delete -f deploy.yaml') get_ipython().system('kubectl delete ns pachyderm')
class Solution: def isRobotBounded(self, instructions: str) -> bool: dirs = [(0, 1), (1, 0), (0, -1), (-1, 0)] curr_dir, curr_pos = 0, (0, 0) for instruction in instructions: if instruction == "R": curr_dir = (curr_dir + 1) % 4 elif instruction == "L": curr_dir = (curr_dir + 3) % 4 else: curr_pos = (curr_pos[0]+dirs[curr_dir][0], curr_pos[1]+dirs[curr_dir][1]) return curr_pos == (0, 0) or curr_dir != 0
class Solution: def is_robot_bounded(self, instructions: str) -> bool: dirs = [(0, 1), (1, 0), (0, -1), (-1, 0)] (curr_dir, curr_pos) = (0, (0, 0)) for instruction in instructions: if instruction == 'R': curr_dir = (curr_dir + 1) % 4 elif instruction == 'L': curr_dir = (curr_dir + 3) % 4 else: curr_pos = (curr_pos[0] + dirs[curr_dir][0], curr_pos[1] + dirs[curr_dir][1]) return curr_pos == (0, 0) or curr_dir != 0
def distance(n, point1, point2): point1_x, point1_y = point1 point2_x, point2_y = point2 if abs(point1_x) >= n or abs(point1_y) >= n or abs(point2_x) >= n or abs(point2_y) >= n: raise ValueError("coords are not from given range") dist_x = min(abs(point1_x - point2_x), point1_x + (n - point2_x)) dist_y = min(abs(point1_y - point2_y), point1_y + (n - point2_y)) return dist_x + dist_y
def distance(n, point1, point2): (point1_x, point1_y) = point1 (point2_x, point2_y) = point2 if abs(point1_x) >= n or abs(point1_y) >= n or abs(point2_x) >= n or (abs(point2_y) >= n): raise value_error('coords are not from given range') dist_x = min(abs(point1_x - point2_x), point1_x + (n - point2_x)) dist_y = min(abs(point1_y - point2_y), point1_y + (n - point2_y)) return dist_x + dist_y
number = input("Input a number to invert its order:") print("Printing using string: " + number[::-1]) inverted = 0 exponent = len(number) number = int(number) while number >= 1: inverted += (number % 10) * (10 ** (exponent - 1)) exponent -= 1 number = number // 10 # the floor division // rounds the result down to the nearest whole number print("Printing using way faster and elegant math: {}".format(inverted))
number = input('Input a number to invert its order:') print('Printing using string: ' + number[::-1]) inverted = 0 exponent = len(number) number = int(number) while number >= 1: inverted += number % 10 * 10 ** (exponent - 1) exponent -= 1 number = number // 10 print('Printing using way faster and elegant math: {}'.format(inverted))
__version_tuple__ = (0, 6, 0, 'dev.1') __version__ = '0.6.0-dev.1' __version_tuple_js__ = (0, 6, 0, 'dev.1') __version_js__ = '0.6.0-dev.1' # kept for embedding in offline mode, we don't care about the patch version since it should be compatible __version_threejs__ = '0.97'
__version_tuple__ = (0, 6, 0, 'dev.1') __version__ = '0.6.0-dev.1' __version_tuple_js__ = (0, 6, 0, 'dev.1') __version_js__ = '0.6.0-dev.1' __version_threejs__ = '0.97'
#=============================================================================== # Copyright 2022 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. #=============================================================================== def _check_is_fitted(estimator, attributes=None, *, msg=None): if msg is None: msg = ("This %(name)s instance is not fitted yet. Call 'fit' with " "appropriate arguments before using this estimator.") if not hasattr(estimator, 'fit'): raise TypeError("%s is not an estimator instance." % (estimator)) if attributes is not None: if not isinstance(attributes, (list, tuple)): attributes = [attributes] attrs = all([hasattr(estimator, attr) for attr in attributes]) else: attrs = [v for v in vars(estimator) if v.endswith("_") and not v.startswith("__")] if not attrs: raise AttributeError(msg % {'name': type(estimator).__name__}) def _is_classifier(estimator): return getattr(estimator, "_estimator_type", None) == "classifier" def _is_regressor(estimator): return getattr(estimator, "_estimator_type", None) == "regressor"
def _check_is_fitted(estimator, attributes=None, *, msg=None): if msg is None: msg = "This %(name)s instance is not fitted yet. Call 'fit' with appropriate arguments before using this estimator." if not hasattr(estimator, 'fit'): raise type_error('%s is not an estimator instance.' % estimator) if attributes is not None: if not isinstance(attributes, (list, tuple)): attributes = [attributes] attrs = all([hasattr(estimator, attr) for attr in attributes]) else: attrs = [v for v in vars(estimator) if v.endswith('_') and (not v.startswith('__'))] if not attrs: raise attribute_error(msg % {'name': type(estimator).__name__}) def _is_classifier(estimator): return getattr(estimator, '_estimator_type', None) == 'classifier' def _is_regressor(estimator): return getattr(estimator, '_estimator_type', None) == 'regressor'
class BubbleSort: name = 'Bubble sort' history = [] focus = [] def reset(self): self.history = [] self.focus = [] def sort(self, unsorted_list): self.bubble_sort(unsorted_list) return unsorted_list # stable # O(1) space complexity # O(n2) comparisons and swaps # adaptive: O(n) when almost sorted def bubble_sort(self, array): # print(array, '- starting point') for index, _ in enumerate(array): swapped = False for i in range(len(array)-1, index, -1): if array[i] < array [i-1]: # print(array, i) self.history.append(list(array)) self.focus.append(i) # swap array[i], array[i-1] = array[i-1], array[i] swapped = True if swapped is False: break # print(array, -1) self.history.append(list(array)) self.focus.append(-1)
class Bubblesort: name = 'Bubble sort' history = [] focus = [] def reset(self): self.history = [] self.focus = [] def sort(self, unsorted_list): self.bubble_sort(unsorted_list) return unsorted_list def bubble_sort(self, array): for (index, _) in enumerate(array): swapped = False for i in range(len(array) - 1, index, -1): if array[i] < array[i - 1]: self.history.append(list(array)) self.focus.append(i) (array[i], array[i - 1]) = (array[i - 1], array[i]) swapped = True if swapped is False: break self.history.append(list(array)) self.focus.append(-1)
{ 'includes': [ '../defaults.gypi', ], 'targets': [ { 'target_name': 'DirectZobEngine', 'type': 'static_library', 'dependencies': [ '../dependencies/minifb/minifb.gyp:minifb', '../dependencies/tinyxml/tinyxml.gyp:tinyxml', '../dependencies/nanojpeg/nanojpeg.gyp:nanojpeg', '../dependencies/lodepng/lodepng.gyp:lodepng', '../dependencies/tga/tga.gyp:tga', ], 'export_dependent_settings': [ '../dependencies/minifb/minifb.gyp:minifb', '../dependencies/tinyxml/tinyxml.gyp:tinyxml', '../dependencies/nanojpeg/nanojpeg.gyp:nanojpeg', '../dependencies/lodepng/lodepng.gyp:lodepng', '../dependencies/tga/tga.gyp:tga', ], 'include_dirs': [ '.', '../dependencies/reactphysics3d/include', '../dependencies/gainput/include', ], 'direct_dependent_settings': { 'include_dirs': [ '../dependencies/reactphysics3d/include', '../dependencies/gainput/include', ], }, 'sources': [ 'DirectZob.cpp', 'ZobMaterial.cpp', 'Mesh.cpp', 'SceneLoader.cpp', 'DirectZob.h', 'ZobMaterial.h', 'Mesh.h', 'SceneLoader.h', 'Sprite.h', 'Sprite.cpp', 'Types.h', 'Rendering/Color.h', 'Rendering/Engine.h', 'Rendering/Engine.cpp', 'Rendering/Rasterizer.h', 'Rendering/Rasterizer.cpp', 'Rendering/Color.cpp', 'Rendering/Text2D.h', 'Rendering/Texture.h', 'Rendering/Triangle.h', 'Rendering/ZobMatrix2x2.h', 'Rendering/ZobMatrix4x4.h', 'Rendering/ZobVector2.h', 'Rendering/ZobVector3.h', 'Rendering/Text2D.cpp', 'Rendering/ZobFont.cpp', 'Rendering/ZobFont.h', 'Rendering/Texture.cpp', 'Rendering/Triangle.cpp', 'Rendering/ZobMatrix2x2.cpp', 'Rendering/ZobMatrix4x4.cpp', 'Rendering/ZobVector2.cpp', 'Rendering/ZobVector3.cpp', 'ZobObjects/ZobEntity.h', 'ZobObjects/ZobEntity.cpp', 'ZobObjects/ZobObject.h', 'ZobObjects/ZobObject.cpp', 'ZobObjects/Light.h', 'ZobObjects/Light.cpp', 'ZobObjects/Camera.h', 'ZobObjects/Camera.cpp', 'Managers/ZobHUDManager.h', 'Managers/ZobHUDManager.cpp', 'Managers/ZobObjectManager.h', 'Managers/ZobObjectManager.cpp', 'Managers/MaterialManager.h', 'Managers/MaterialManager.cpp', 'Managers/CameraManager.h', 'Managers/CameraManager.cpp', 'Managers/LightManager.cpp', 'Managers/LightManager.h', 'Managers/MeshManager.h', 'Managers/MeshManager.cpp', 'Managers/ZobInputManager.h', 'Managers/ZobInputManager.cpp', 'ZobPhysic/ZobPhysicsEngine.h', 'ZobPhysic/ZobPhysicsEngine.cpp', 'ZobPhysic/ZobPhysicComponent.h', 'ZobPhysic/ZobPhysicComponent.cpp', 'ZobPhysic/ZobPhysicsContactsListener.h', 'ZobCameraController/ZobCameraController.h', 'ZobCameraController/ZobCameraController.cpp', 'ZobCameraController/ZobCameraControllerFollowCar.h', 'ZobCameraController/ZobCameraControllerFollowCar.cpp', 'ZobCameraController/ZobCameraControllerOrbital.h', 'ZobCameraController/ZobCameraControllerOrbital.cpp', 'ZobCameraController/ZobCameraControllerFPS.h', 'ZobCameraController/ZobCameraControllerFPS.cpp', 'Behaviors/ZobBehaviorFactory.h', 'Behaviors/ZobBehaviorFactory.cpp', 'Behaviors/ZobBehavior.h', 'Behaviors/ZobBehavior.cpp', 'Behaviors/ZobBehaviorCar.h', 'Behaviors/ZobBehaviorCar.cpp', 'Behaviors/ZobBehaviorMenu.h', 'Behaviors/ZobBehaviorMenu.cpp', 'Behaviors/ZobBehaviorMesh.h', 'Behaviors/ZobBehaviorMesh.cpp', 'Behaviors/ZobBehaviorSprite.h', 'Behaviors/ZobBehaviorSprite.cpp', 'Behaviors/ZobBehaviorLight.h', 'Behaviors/ZobBehaviorLight.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicShape.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicShape.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicBox.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicBox.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicCapsule.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicCapsule.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicSphere.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicSphere.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicMesh.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicMesh.cpp', 'Misc/ZobXmlHelper.h', 'Misc/ZobVariablesExposer.h', 'Misc/ZobVariablesExposer.cpp', 'Misc/ZobUtils.h', 'Misc/ZobFilePath.h', 'Misc/ZobFilePath.cpp', 'Misc/ZobGeometryHelper.h', 'Misc/ZobGeometryHelper.cpp', 'Embed/DefaultFontData.h', 'Embed/DefaultFontImage.h', ], 'conditions': [ [ 'OS=="win"', { 'include_dirs': [ '../dependencies/fbxsdk/windows/include', '../dependencies/optick/windows/include', ], 'defines': [ 'FBXSDK_SHARED', # required to link with dll ], 'direct_dependent_settings': { 'include_dirs': [ '../dependencies/fbxsdk/windows/include', ], 'defines': [ 'FBXSDK_SHARED', ], }, 'link_settings': { 'libraries': [ '../../../dependencies/reactphysics3d/lib/windows/Debug/reactphysics3d.lib', '../../../dependencies/optick/lib/windows/OptickCore.lib', '../../../dependencies/gainput/lib/windows/gainput.lib', ], }, 'msvs_settings': { 'VCCLCompilerTool': { 'FloatingPointModel': '2', # fast }, }, }, ], [ 'OS=="mac"', { 'include_dirs': [ '../dependencies/fbxsdk/macos/include', '../dependencies/gainput/include', '../dependencies/reactphysics3d/include', ], 'direct_dependent_settings': { 'include_dirs': [ '../dependencies/fbxsdk/macos/include', ], 'defines': [ 'FBXSDK_SHARED', ], }, 'defines': [ 'MACOS', '__APPLE__', ], 'link_settings': { 'libraries': [ # relative to xcode project '../../../dependencies/fbxsdk/macos/lib/clang/release/libfbxsdk.a', '../../../dependencies/reactphysics3d/lib/macos/libreactphysics3d.a', '../../../dependencies/gainput/lib/macos/libgainputstatic.a', '../../../dependencies/optick/lib/macos/libOptickCore.dylib', ], }, }, ], [ 'OS=="linux"', { 'include_dirs': [ '../dependencies/fbxsdk/linux/include', '../dependencies/gainput/include', '../dependencies/reactphysics3d/include', ], 'defines': [ 'LINUX', 'linux', '__LINUX__', ], 'direct_dependent_settings': { 'include_dirs': [ '../dependencies/fbxsdk/linux/include', ], }, 'link_settings': { 'libraries': [ '../../../dependencies/fbxsdk/linux/lib/libfbxsdk.a', '../../../dependencies/reactphysics3d/lib/linux/libreactphysics3d.a', '../../../dependencies/gainput/lib/linux/libgainputstatic.a', '../../../dependencies/optick/lib/linux/libOptickCore.so', '-lpthread', '-lxml2', '-lX11', '-ldl', '-lz', ], 'library_dirs': [ '/usr/lib/x86_64-linux-gnu', ], }, }, ], ], }, { 'target_name': 'DirectZobExe', 'type': 'executable', 'dependencies': [ 'DirectZobEngine', ], 'sources': [ 'main.cpp', ], 'conditions': [ [ 'OS=="win"', { 'link_settings': { # links fbxsdk as dll 'libraries': [ # relative to sln '../../../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.lib', '../../../dependencies/gainput/lib/windows/gainput.lib', 'user32.lib', 'gdi32.lib', ], # 'library_dirs': [ # '/usr/lib', # ], }, "copies": [ { 'destination': '<(PRODUCT_DIR)', 'files': [ '../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.dll', # copy fbxsdk '../dependencies/optick/lib/windows/OptickCore.dll', # copy OptickCore.dll '../dependencies/gainput/lib/windows/gainput.dll', ], }, ], }, 'OS=="linux"', { }, 'OS=="mac"', { 'include_dirs': [ '.', '../dependencies/fbxsdk/macos/include', ], 'link_settings': { 'libraries': [ # relative to xcode project '../../../dependencies/fbxsdk/macos/lib/clang/release/libfbxsdk.a', '../../../dependencies/gainput/lib/macos/libgainputstatic.a', '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', '$(SDKROOT)/System/Library/Frameworks/Metal.framework', '$(SDKROOT)/System/Library/Frameworks/GameKit.framework', '$(SDKROOT)/System/Library/Frameworks/WebKit.framework', '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', '$(SDKROOT)/System/Library/Frameworks/StoreKit.framework', '$(SDKROOT)/System/Library/Frameworks/MetalKit.framework', '-liconv', '-lz', '-lxml2', '-ObjC', '-v', #'-lmingw32', '-lstdc++', #'-enable-auto-import', ], }, }, ], ], }, ], 'conditions': [ [ 'OS=="win"', { 'targets': [ { 'target_name': 'DirectZobDInterop', 'type': 'shared_library', 'configurations': { 'Debug': { 'msvs_settings': { 'VCLinkerTool': { 'AssemblyDebug': '1', # add /ASSEMBLYDEBUG to linker options }, }, }, }, 'dependencies': [ 'DirectZobEngine', ], 'msvs_settings': { 'VCCLCompilerTool': { 'CompileAsManaged': 'true', 'ExceptionHandling': '0', # /clr is incompatible with /EHs }, }, 'sources': [ 'Wrappers/DirectZobWrapper.cpp', 'Wrappers/EngineWrapper.cpp', 'Wrappers/ZobObjectManagerWrapper.cpp', 'Wrappers/ZobObjectWrapper.cpp', 'Wrappers/DirectZobWrapper.h', 'Wrappers/DirectZobWrapperEvents.h', 'Wrappers/EngineWrapper.h', 'Wrappers/ManagedObject.h', 'Wrappers/ZobObjectManagerWrapper.h', 'Wrappers/ZobObjectWrapper.h', 'Wrappers/ZobObjectWrapper.h', 'Wrappers/ZobUserControls/ZobUserControls.h', 'Wrappers/ZobUserControls/ZobUserControls.cpp', 'Wrappers/Editor/ZobObjectsEditor.h', 'Wrappers/Editor/ZobObjectsEditor.cpp', 'Wrappers/ZobGlobalsWrapper.h', 'Wrappers/ZobGlobalsWrapper.cpp', 'Wrappers/ZobMaterialsManagerWrapper.h', 'Wrappers/ZobMaterialsManagerWrapper.cpp', ], 'link_settings': { # links fbxsdk as static 'libraries': [ # relative to sln '../../../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.lib', 'user32.lib', 'gdi32.lib', ], }, "copies": [ { 'destination': '<(PRODUCT_DIR)', 'files': [ #'../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.dll' # copy fbxsdk #'../dependencies/optick/lib/windows/OptickCore.dll', # copy OptickCore.dll #'../dependencies/gainput/lib/windows/gainput.dll' ], }, ], }, ], } ], ], }
{'includes': ['../defaults.gypi'], 'targets': [{'target_name': 'DirectZobEngine', 'type': 'static_library', 'dependencies': ['../dependencies/minifb/minifb.gyp:minifb', '../dependencies/tinyxml/tinyxml.gyp:tinyxml', '../dependencies/nanojpeg/nanojpeg.gyp:nanojpeg', '../dependencies/lodepng/lodepng.gyp:lodepng', '../dependencies/tga/tga.gyp:tga'], 'export_dependent_settings': ['../dependencies/minifb/minifb.gyp:minifb', '../dependencies/tinyxml/tinyxml.gyp:tinyxml', '../dependencies/nanojpeg/nanojpeg.gyp:nanojpeg', '../dependencies/lodepng/lodepng.gyp:lodepng', '../dependencies/tga/tga.gyp:tga'], 'include_dirs': ['.', '../dependencies/reactphysics3d/include', '../dependencies/gainput/include'], 'direct_dependent_settings': {'include_dirs': ['../dependencies/reactphysics3d/include', '../dependencies/gainput/include']}, 'sources': ['DirectZob.cpp', 'ZobMaterial.cpp', 'Mesh.cpp', 'SceneLoader.cpp', 'DirectZob.h', 'ZobMaterial.h', 'Mesh.h', 'SceneLoader.h', 'Sprite.h', 'Sprite.cpp', 'Types.h', 'Rendering/Color.h', 'Rendering/Engine.h', 'Rendering/Engine.cpp', 'Rendering/Rasterizer.h', 'Rendering/Rasterizer.cpp', 'Rendering/Color.cpp', 'Rendering/Text2D.h', 'Rendering/Texture.h', 'Rendering/Triangle.h', 'Rendering/ZobMatrix2x2.h', 'Rendering/ZobMatrix4x4.h', 'Rendering/ZobVector2.h', 'Rendering/ZobVector3.h', 'Rendering/Text2D.cpp', 'Rendering/ZobFont.cpp', 'Rendering/ZobFont.h', 'Rendering/Texture.cpp', 'Rendering/Triangle.cpp', 'Rendering/ZobMatrix2x2.cpp', 'Rendering/ZobMatrix4x4.cpp', 'Rendering/ZobVector2.cpp', 'Rendering/ZobVector3.cpp', 'ZobObjects/ZobEntity.h', 'ZobObjects/ZobEntity.cpp', 'ZobObjects/ZobObject.h', 'ZobObjects/ZobObject.cpp', 'ZobObjects/Light.h', 'ZobObjects/Light.cpp', 'ZobObjects/Camera.h', 'ZobObjects/Camera.cpp', 'Managers/ZobHUDManager.h', 'Managers/ZobHUDManager.cpp', 'Managers/ZobObjectManager.h', 'Managers/ZobObjectManager.cpp', 'Managers/MaterialManager.h', 'Managers/MaterialManager.cpp', 'Managers/CameraManager.h', 'Managers/CameraManager.cpp', 'Managers/LightManager.cpp', 'Managers/LightManager.h', 'Managers/MeshManager.h', 'Managers/MeshManager.cpp', 'Managers/ZobInputManager.h', 'Managers/ZobInputManager.cpp', 'ZobPhysic/ZobPhysicsEngine.h', 'ZobPhysic/ZobPhysicsEngine.cpp', 'ZobPhysic/ZobPhysicComponent.h', 'ZobPhysic/ZobPhysicComponent.cpp', 'ZobPhysic/ZobPhysicsContactsListener.h', 'ZobCameraController/ZobCameraController.h', 'ZobCameraController/ZobCameraController.cpp', 'ZobCameraController/ZobCameraControllerFollowCar.h', 'ZobCameraController/ZobCameraControllerFollowCar.cpp', 'ZobCameraController/ZobCameraControllerOrbital.h', 'ZobCameraController/ZobCameraControllerOrbital.cpp', 'ZobCameraController/ZobCameraControllerFPS.h', 'ZobCameraController/ZobCameraControllerFPS.cpp', 'Behaviors/ZobBehaviorFactory.h', 'Behaviors/ZobBehaviorFactory.cpp', 'Behaviors/ZobBehavior.h', 'Behaviors/ZobBehavior.cpp', 'Behaviors/ZobBehaviorCar.h', 'Behaviors/ZobBehaviorCar.cpp', 'Behaviors/ZobBehaviorMenu.h', 'Behaviors/ZobBehaviorMenu.cpp', 'Behaviors/ZobBehaviorMesh.h', 'Behaviors/ZobBehaviorMesh.cpp', 'Behaviors/ZobBehaviorSprite.h', 'Behaviors/ZobBehaviorSprite.cpp', 'Behaviors/ZobBehaviorLight.h', 'Behaviors/ZobBehaviorLight.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicShape.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicShape.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicBox.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicBox.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicCapsule.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicCapsule.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicSphere.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicSphere.cpp', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicMesh.h', 'Behaviors/PhysicBehaviors/ZobBehaviorPhysicMesh.cpp', 'Misc/ZobXmlHelper.h', 'Misc/ZobVariablesExposer.h', 'Misc/ZobVariablesExposer.cpp', 'Misc/ZobUtils.h', 'Misc/ZobFilePath.h', 'Misc/ZobFilePath.cpp', 'Misc/ZobGeometryHelper.h', 'Misc/ZobGeometryHelper.cpp', 'Embed/DefaultFontData.h', 'Embed/DefaultFontImage.h'], 'conditions': [['OS=="win"', {'include_dirs': ['../dependencies/fbxsdk/windows/include', '../dependencies/optick/windows/include'], 'defines': ['FBXSDK_SHARED'], 'direct_dependent_settings': {'include_dirs': ['../dependencies/fbxsdk/windows/include'], 'defines': ['FBXSDK_SHARED']}, 'link_settings': {'libraries': ['../../../dependencies/reactphysics3d/lib/windows/Debug/reactphysics3d.lib', '../../../dependencies/optick/lib/windows/OptickCore.lib', '../../../dependencies/gainput/lib/windows/gainput.lib']}, 'msvs_settings': {'VCCLCompilerTool': {'FloatingPointModel': '2'}}}], ['OS=="mac"', {'include_dirs': ['../dependencies/fbxsdk/macos/include', '../dependencies/gainput/include', '../dependencies/reactphysics3d/include'], 'direct_dependent_settings': {'include_dirs': ['../dependencies/fbxsdk/macos/include'], 'defines': ['FBXSDK_SHARED']}, 'defines': ['MACOS', '__APPLE__'], 'link_settings': {'libraries': ['../../../dependencies/fbxsdk/macos/lib/clang/release/libfbxsdk.a', '../../../dependencies/reactphysics3d/lib/macos/libreactphysics3d.a', '../../../dependencies/gainput/lib/macos/libgainputstatic.a', '../../../dependencies/optick/lib/macos/libOptickCore.dylib']}}], ['OS=="linux"', {'include_dirs': ['../dependencies/fbxsdk/linux/include', '../dependencies/gainput/include', '../dependencies/reactphysics3d/include'], 'defines': ['LINUX', 'linux', '__LINUX__'], 'direct_dependent_settings': {'include_dirs': ['../dependencies/fbxsdk/linux/include']}, 'link_settings': {'libraries': ['../../../dependencies/fbxsdk/linux/lib/libfbxsdk.a', '../../../dependencies/reactphysics3d/lib/linux/libreactphysics3d.a', '../../../dependencies/gainput/lib/linux/libgainputstatic.a', '../../../dependencies/optick/lib/linux/libOptickCore.so', '-lpthread', '-lxml2', '-lX11', '-ldl', '-lz'], 'library_dirs': ['/usr/lib/x86_64-linux-gnu']}}]]}, {'target_name': 'DirectZobExe', 'type': 'executable', 'dependencies': ['DirectZobEngine'], 'sources': ['main.cpp'], 'conditions': [['OS=="win"', {'link_settings': {'libraries': ['../../../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.lib', '../../../dependencies/gainput/lib/windows/gainput.lib', 'user32.lib', 'gdi32.lib']}, 'copies': [{'destination': '<(PRODUCT_DIR)', 'files': ['../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.dll', '../dependencies/optick/lib/windows/OptickCore.dll', '../dependencies/gainput/lib/windows/gainput.dll']}]}, 'OS=="linux"', {}, 'OS=="mac"', {'include_dirs': ['.', '../dependencies/fbxsdk/macos/include'], 'link_settings': {'libraries': ['../../../dependencies/fbxsdk/macos/lib/clang/release/libfbxsdk.a', '../../../dependencies/gainput/lib/macos/libgainputstatic.a', '$(SDKROOT)/System/Library/Frameworks/Cocoa.framework', '$(SDKROOT)/System/Library/Frameworks/Metal.framework', '$(SDKROOT)/System/Library/Frameworks/GameKit.framework', '$(SDKROOT)/System/Library/Frameworks/WebKit.framework', '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', '$(SDKROOT)/System/Library/Frameworks/StoreKit.framework', '$(SDKROOT)/System/Library/Frameworks/MetalKit.framework', '-liconv', '-lz', '-lxml2', '-ObjC', '-v', '-lstdc++']}}]]}], 'conditions': [['OS=="win"', {'targets': [{'target_name': 'DirectZobDInterop', 'type': 'shared_library', 'configurations': {'Debug': {'msvs_settings': {'VCLinkerTool': {'AssemblyDebug': '1'}}}}, 'dependencies': ['DirectZobEngine'], 'msvs_settings': {'VCCLCompilerTool': {'CompileAsManaged': 'true', 'ExceptionHandling': '0'}}, 'sources': ['Wrappers/DirectZobWrapper.cpp', 'Wrappers/EngineWrapper.cpp', 'Wrappers/ZobObjectManagerWrapper.cpp', 'Wrappers/ZobObjectWrapper.cpp', 'Wrappers/DirectZobWrapper.h', 'Wrappers/DirectZobWrapperEvents.h', 'Wrappers/EngineWrapper.h', 'Wrappers/ManagedObject.h', 'Wrappers/ZobObjectManagerWrapper.h', 'Wrappers/ZobObjectWrapper.h', 'Wrappers/ZobObjectWrapper.h', 'Wrappers/ZobUserControls/ZobUserControls.h', 'Wrappers/ZobUserControls/ZobUserControls.cpp', 'Wrappers/Editor/ZobObjectsEditor.h', 'Wrappers/Editor/ZobObjectsEditor.cpp', 'Wrappers/ZobGlobalsWrapper.h', 'Wrappers/ZobGlobalsWrapper.cpp', 'Wrappers/ZobMaterialsManagerWrapper.h', 'Wrappers/ZobMaterialsManagerWrapper.cpp'], 'link_settings': {'libraries': ['../../../dependencies/fbxsdk/windows/lib/vs2017/x64/release/libfbxsdk.lib', 'user32.lib', 'gdi32.lib']}, 'copies': [{'destination': '<(PRODUCT_DIR)', 'files': []}]}]}]]}
fruits = ["apple","orange","pear"] for fruit in fruits: print(fruit) print(fruits[0]) print(fruits[1]) print(fruits[2]) for v in range(10): print(v) for v in range(5,10): print(v) for v in range(len(fruits)): print(v) print(fruits[v]) print(len(fruits))
fruits = ['apple', 'orange', 'pear'] for fruit in fruits: print(fruit) print(fruits[0]) print(fruits[1]) print(fruits[2]) for v in range(10): print(v) for v in range(5, 10): print(v) for v in range(len(fruits)): print(v) print(fruits[v]) print(len(fruits))
# r/GlobalOffensive/comments/cjhcpy/game_state_integration_a_very_large_and_indepth # Game state integration round descriptor class Round(dict): # The phase of the current round. Value is freezetime during the initial # freeze time as well as team timeouts, live when the round is live, and # over when the round is over and players are waiting for the next round to # begin. @property def phase(self): return self.get('phase') # The winning team of the round. @property def win_team(self): return self.get('win_team') # The current state of the bomb. This section will not appear until the bomb # has at least been planted. @property def bomb(self): return self.get('bomb')
class Round(dict): @property def phase(self): return self.get('phase') @property def win_team(self): return self.get('win_team') @property def bomb(self): return self.get('bomb')
#!/usr/bin/env python __all__ = ( 'Goat', '_Velociraptor' ) class Goat: @property def name(self): return "George" class _Velociraptor: @property def name(self): return "Cuddles" class SecretDuck: @property def name(self): return "None of your business"
__all__ = ('Goat', '_Velociraptor') class Goat: @property def name(self): return 'George' class _Velociraptor: @property def name(self): return 'Cuddles' class Secretduck: @property def name(self): return 'None of your business'
#def basic(x, y): # answer = x * y + 3 # # print(answer) # # return f"{x} * {y} + 3 = {answer}" # return answer # # #print(basic(7, 10)) #grade = 25 + basic(7, 10) #print(grade) # # #def more_advanced(x, y, store_data=True, save_file="myanswer.txt"): # ans = x ** (y-3) # if store_data: # with open(save_file, "w") as f: # f.write(str(ans)) # return ans # # #print(more_advanced(7, 10, store_data=False)) ## print(more_advanced(3, store_data=False)) #print(more_advanced(3, 7, store_data=False)) # # star args = *args def solar_args(*objects): print(objects) s = sum(objects) #s = 0 #for num in objects: # s += num print(s) solar_args(4, 8, 15, 16, 23, 42) # star kwargs = **kwargs def whiteboard(**kwargs): print(kwargs) for kw in kwargs.keys(): print(kw, kwargs[kw]) whiteboard(instructor="Sam", lunch="awesome", eod="6:30") def full(x, y, *args, washer_cycle="normal", **kwargs): pass
def solar_args(*objects): print(objects) s = sum(objects) print(s) solar_args(4, 8, 15, 16, 23, 42) def whiteboard(**kwargs): print(kwargs) for kw in kwargs.keys(): print(kw, kwargs[kw]) whiteboard(instructor='Sam', lunch='awesome', eod='6:30') def full(x, y, *args, washer_cycle='normal', **kwargs): pass
def LinearSearch(array, key): for index, theValue in enumerate(array): if(array[index] == key): return index return -1 def main(): theArray = [2, 5, 25, 6, 8, 9, 1, 0, 6, 8, 4, 5, 66, 548, 889] print("The index of the 25 is: ", LinearSearch(theArray, 25)) print("The index of the 91 is: ", LinearSearch(theArray, 91)) if __name__ == "__main__": main()
def linear_search(array, key): for (index, the_value) in enumerate(array): if array[index] == key: return index return -1 def main(): the_array = [2, 5, 25, 6, 8, 9, 1, 0, 6, 8, 4, 5, 66, 548, 889] print('The index of the 25 is: ', linear_search(theArray, 25)) print('The index of the 91 is: ', linear_search(theArray, 91)) if __name__ == '__main__': main()
[x**2 for x in range(1, 10)] [x**2 for x in range(1, 10) if x % 2 == 0] powers_of_2 = [] for x in range(1, 10): powers_of_2.append(x**2) powers_of_2 = [] for x in range(1, 10): if x % 2 == 0: powers_of_2.append(x**2) [x*y for x in range(1, 10) if x % 2 == 1 for y in range(10) if y % 2 == 1]
[x ** 2 for x in range(1, 10)] [x ** 2 for x in range(1, 10) if x % 2 == 0] powers_of_2 = [] for x in range(1, 10): powers_of_2.append(x ** 2) powers_of_2 = [] for x in range(1, 10): if x % 2 == 0: powers_of_2.append(x ** 2) [x * y for x in range(1, 10) if x % 2 == 1 for y in range(10) if y % 2 == 1]
# Given two strings A and B of lowercase letters, return true if and only if we can swap two letters in A so that the result equals B. # Example 1: # Input: A = "ab", B = "ba" # Output: true # Example 2: # Input: A = "ab", B = "ab" # Output: false # Example 3: # Input: A = "aa", B = "aa" # Output: true # Example 4: # Input: A = "aaaaaaabc", B = "aaaaaaacb" # Output: true # Example 5: # Input: A = "", B = "aa" # Output: false class Solution: def buddyStrings(self, a, b): c = {} for i in range(len(a)): if a[i] != b[i]: c[i] = a[i] if len(c) != 2: return False r = '' for i in range(len(b)): if i in c: r += c[i] continue r += b[i] if r == a: return True print(Solution().buddyStrings('aaaaaaabc', 'aaaaaaacb')) # True print(Solution().buddyStrings('aaaaaabbc', 'aaaaaaacb')) # False
class Solution: def buddy_strings(self, a, b): c = {} for i in range(len(a)): if a[i] != b[i]: c[i] = a[i] if len(c) != 2: return False r = '' for i in range(len(b)): if i in c: r += c[i] continue r += b[i] if r == a: return True print(solution().buddyStrings('aaaaaaabc', 'aaaaaaacb')) print(solution().buddyStrings('aaaaaabbc', 'aaaaaaacb'))
S = [input() for _ in range(4)] if sorted(S) == ['2B', '3B', 'H', 'HR']: print('Yes') else: print('No')
s = [input() for _ in range(4)] if sorted(S) == ['2B', '3B', 'H', 'HR']: print('Yes') else: print('No')
# -*- coding: utf-8 -*- DATABASE_TIMEZONE = 'UTC' DEFAULT_TIMEZONE = 'Asia/Shanghai'
database_timezone = 'UTC' default_timezone = 'Asia/Shanghai'
# https://bitbucket.org/dimagi/cc-apps/src/caab8f93c1e48d702b5d9032ef16c9cec48868f0/bihar/mockup/bihar_pnc.xml # https://bitbucket.org/dimagi/cc-apps/src/caab8f93c1e48d702b5d9032ef16c9cec48868f0/bihar/mockup/bihar_del.xml # https://bitbucket.org/dimagi/cc-apps/src/caab8f93c1e48d702b5d9032ef16c9cec48868f0/bihar/mockup/bihar_registration.xml # https://bitbucket.org/dimagi/cc-apps/src/caab8f93c1e48d702b5d9032ef16c9cec48868f0/bihar/mockup/bihar_ebf.xml # https://bitbucket.org/dimagi/cc-apps/src/eb2ba2b0fd0a403fdccf5a12b557d42107ae5bc2/bihar/mockup/bihar_cf.xml # https://bitbucket.org/dimagi/cc-apps/src/eb2ba2b0fd0a403fdccf5a12b557d42107ae5bc2/bihar/mockup/bihar_bp.xml PNC = 'http://bihar.commcarehq.org/pregnancy/pnc' DELIVERY = 'http://bihar.commcarehq.org/pregnancy/del' REGISTRATION = 'http://bihar.commcarehq.org/pregnancy/registration' EBF = 'http://bihar.commcarehq.org/pregnancy/ebf' CF = 'http://bihar.commcarehq.org/pregnancy/cf' BP = 'http://bihar.commcarehq.org/pregnancy/bp' NEW = "http://bihar.commcarehq.org/pregnancy/new" MTB_ABORT = "http://bihar.commcarehq.org/pregnancy/mtp_abort"
pnc = 'http://bihar.commcarehq.org/pregnancy/pnc' delivery = 'http://bihar.commcarehq.org/pregnancy/del' registration = 'http://bihar.commcarehq.org/pregnancy/registration' ebf = 'http://bihar.commcarehq.org/pregnancy/ebf' cf = 'http://bihar.commcarehq.org/pregnancy/cf' bp = 'http://bihar.commcarehq.org/pregnancy/bp' new = 'http://bihar.commcarehq.org/pregnancy/new' mtb_abort = 'http://bihar.commcarehq.org/pregnancy/mtp_abort'
class A: def y(self): pass a = A() a.y()
class A: def y(self): pass a = a() a.y()
a = int(input()) def match(p): st = [] for c in p: if c == '(': st.append(c) if c == ')': if len(st) == 0: print("NO") return else: st.pop(0) if len(st) == 0: print("YES") else: print("NO") for _ in range(a): p = input() match(p)
a = int(input()) def match(p): st = [] for c in p: if c == '(': st.append(c) if c == ')': if len(st) == 0: print('NO') return else: st.pop(0) if len(st) == 0: print('YES') else: print('NO') for _ in range(a): p = input() match(p)
def moveZero(arr): length = len(arr) i = 0 k = 0 while k < length: if arr[i] == 0: temp = arr.pop(i) arr.append(temp) i -= 1 i += 1 k += 1 arr = [0, 1, 0, 3, 12, 0] moveZero(arr) print(arr)
def move_zero(arr): length = len(arr) i = 0 k = 0 while k < length: if arr[i] == 0: temp = arr.pop(i) arr.append(temp) i -= 1 i += 1 k += 1 arr = [0, 1, 0, 3, 12, 0] move_zero(arr) print(arr)
# # PySNMP MIB module Dell-rldot1q-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/Dell-rldot1q-MIB # Produced by pysmi-0.3.4 at Wed May 1 12:57:53 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, SingleValueConstraint, ConstraintsIntersection, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ValueRangeConstraint", "ConstraintsUnion") rlpBridgeMIBObjects, = mibBuilder.importSymbols("Dell-BRIDGEMIBOBJECTS-MIB", "rlpBridgeMIBObjects") rnd, = mibBuilder.importSymbols("Dell-MIB", "rnd") ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex") dot1qStaticUnicastEntry, dot1qTpFdbEntry, PortList = mibBuilder.importSymbols("Q-BRIDGE-MIB", "dot1qStaticUnicastEntry", "dot1qTpFdbEntry", "PortList") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Bits, Integer32, MibIdentifier, Counter32, ModuleIdentity, Counter64, Gauge32, ObjectIdentity, IpAddress, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, NotificationType, Unsigned32, iso = mibBuilder.importSymbols("SNMPv2-SMI", "Bits", "Integer32", "MibIdentifier", "Counter32", "ModuleIdentity", "Counter64", "Gauge32", "ObjectIdentity", "IpAddress", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "NotificationType", "Unsigned32", "iso") DisplayString, TruthValue, TextualConvention, RowStatus = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "TextualConvention", "RowStatus") rlq_bridge_mib = ModuleIdentity((1, 3, 6, 1, 4, 1, 89, 57, 8)).setLabel("rlq-bridge-mib") rlq_bridge_mib.setRevisions(('2008-11-25 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: rlq_bridge_mib.setRevisionsDescriptions(('The private MIB module definition for dot1q MIBs.',)) if mibBuilder.loadTexts: rlq_bridge_mib.setLastUpdated('200811250000Z') if mibBuilder.loadTexts: rlq_bridge_mib.setOrganization('Dell') if mibBuilder.loadTexts: rlq_bridge_mib.setContactInfo('www.dell.com') if mibBuilder.loadTexts: rlq_bridge_mib.setDescription('<description>') rldot1q = MibIdentifier((1, 3, 6, 1, 4, 1, 89, 57, 8)) rldot1qStaticUnicastTable = MibTable((1, 3, 6, 1, 4, 1, 89, 57, 8, 1), ) if mibBuilder.loadTexts: rldot1qStaticUnicastTable.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastTable.setDescription('An augmentation to dot1qStaticUnicastTable') rldot1qStaticUnicastEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 57, 8, 1, 1), ) dot1qStaticUnicastEntry.registerAugmentions(("Dell-rldot1q-MIB", "rldot1qStaticUnicastEntry")) rldot1qStaticUnicastEntry.setIndexNames(*dot1qStaticUnicastEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1qStaticUnicastEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastEntry.setDescription('An augmentation to dot1qStaticUnicastEntry') rldot1qStaticUnicastAddressOwner = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("static", 1), ("learned", 2))).clone('static')).setMaxAccess("readwrite") if mibBuilder.loadTexts: rldot1qStaticUnicastAddressOwner.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastAddressOwner.setDescription('The learned status of this entry: static(1) - address has added by user. learned(2)- address has added by device.') rldot1qTpFdbTable = MibTable((1, 3, 6, 1, 4, 1, 89, 57, 8, 2), ) if mibBuilder.loadTexts: rldot1qTpFdbTable.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbTable.setDescription('An augmentation to dot1qTpFdbTable') rldot1qTpFdbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 57, 8, 2, 1), ) dot1qTpFdbEntry.registerAugmentions(("Dell-rldot1q-MIB", "rldot1qTpFdbEntry")) rldot1qTpFdbEntry.setIndexNames(*dot1qTpFdbEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1qTpFdbEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbEntry.setDescription('An augmentation to dot1qTpFdbEntry') rldot1qTpFdbSubStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("dynamic-static", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1qTpFdbSubStatus.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbSubStatus.setDescription('The sub status of this entry. The meanings of the values are: none(1) - non of the following. dynamic-static(2) - the value of the corresponding instance of dot1qTpFdbPort was learned dynamically in SW but kept as static address in HW.') rldot1qTpFdbCountTable = MibTable((1, 3, 6, 1, 4, 1, 89, 57, 8, 3), ) if mibBuilder.loadTexts: rldot1qTpFdbCountTable.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountTable.setDescription('Counters for FDB table. Per VLAN, port and type.') rldot1qTpFdbCountEntry = MibTableRow((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1), ).setIndexNames((0, "Dell-rldot1q-MIB", "rldot1qTpFdbCountVlanTag"), (0, "Dell-rldot1q-MIB", "rldot1qTpFdbCountPort"), (0, "Dell-rldot1q-MIB", "rldot1qTpFdbCountType")) if mibBuilder.loadTexts: rldot1qTpFdbCountEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountEntry.setDescription('Count the number of MAC address for a specific VLAN, port and type.') rldot1qTpFdbCountVlanTag = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094))).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1qTpFdbCountVlanTag.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountVlanTag.setDescription('Vlan Tag. Zero means all vlans') rldot1qTpFdbCountPort = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 2), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1qTpFdbCountPort.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountPort.setDescription('Port. Zero means all ports') rldot1qTpFdbCountType = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("invalid", 2), ("learned", 3), ("self", 4), ("mgmt", 5)))).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1qTpFdbCountType.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountType.setDescription('Type of the address: TODO ') rldot1qTpFdbCountCount = MibTableColumn((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: rldot1qTpFdbCountCount.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountCount.setDescription('Number of address per selected vlan, port and type.') mibBuilder.exportSymbols("Dell-rldot1q-MIB", rlq_bridge_mib=rlq_bridge_mib, rldot1qTpFdbCountVlanTag=rldot1qTpFdbCountVlanTag, rldot1qTpFdbCountType=rldot1qTpFdbCountType, rldot1q=rldot1q, rldot1qStaticUnicastEntry=rldot1qStaticUnicastEntry, rldot1qStaticUnicastAddressOwner=rldot1qStaticUnicastAddressOwner, rldot1qTpFdbCountEntry=rldot1qTpFdbCountEntry, rldot1qTpFdbCountPort=rldot1qTpFdbCountPort, rldot1qTpFdbTable=rldot1qTpFdbTable, rldot1qTpFdbCountTable=rldot1qTpFdbCountTable, PYSNMP_MODULE_ID=rlq_bridge_mib, rldot1qTpFdbSubStatus=rldot1qTpFdbSubStatus, rldot1qStaticUnicastTable=rldot1qStaticUnicastTable, rldot1qTpFdbEntry=rldot1qTpFdbEntry, rldot1qTpFdbCountCount=rldot1qTpFdbCountCount)
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_size_constraint, single_value_constraint, constraints_intersection, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ConstraintsUnion') (rlp_bridge_mib_objects,) = mibBuilder.importSymbols('Dell-BRIDGEMIBOBJECTS-MIB', 'rlpBridgeMIBObjects') (rnd,) = mibBuilder.importSymbols('Dell-MIB', 'rnd') (if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex') (dot1q_static_unicast_entry, dot1q_tp_fdb_entry, port_list) = mibBuilder.importSymbols('Q-BRIDGE-MIB', 'dot1qStaticUnicastEntry', 'dot1qTpFdbEntry', 'PortList') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (bits, integer32, mib_identifier, counter32, module_identity, counter64, gauge32, object_identity, ip_address, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, notification_type, unsigned32, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'Bits', 'Integer32', 'MibIdentifier', 'Counter32', 'ModuleIdentity', 'Counter64', 'Gauge32', 'ObjectIdentity', 'IpAddress', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'NotificationType', 'Unsigned32', 'iso') (display_string, truth_value, textual_convention, row_status) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TruthValue', 'TextualConvention', 'RowStatus') rlq_bridge_mib = module_identity((1, 3, 6, 1, 4, 1, 89, 57, 8)).setLabel('rlq-bridge-mib') rlq_bridge_mib.setRevisions(('2008-11-25 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: rlq_bridge_mib.setRevisionsDescriptions(('The private MIB module definition for dot1q MIBs.',)) if mibBuilder.loadTexts: rlq_bridge_mib.setLastUpdated('200811250000Z') if mibBuilder.loadTexts: rlq_bridge_mib.setOrganization('Dell') if mibBuilder.loadTexts: rlq_bridge_mib.setContactInfo('www.dell.com') if mibBuilder.loadTexts: rlq_bridge_mib.setDescription('<description>') rldot1q = mib_identifier((1, 3, 6, 1, 4, 1, 89, 57, 8)) rldot1q_static_unicast_table = mib_table((1, 3, 6, 1, 4, 1, 89, 57, 8, 1)) if mibBuilder.loadTexts: rldot1qStaticUnicastTable.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastTable.setDescription('An augmentation to dot1qStaticUnicastTable') rldot1q_static_unicast_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 57, 8, 1, 1)) dot1qStaticUnicastEntry.registerAugmentions(('Dell-rldot1q-MIB', 'rldot1qStaticUnicastEntry')) rldot1qStaticUnicastEntry.setIndexNames(*dot1qStaticUnicastEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1qStaticUnicastEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastEntry.setDescription('An augmentation to dot1qStaticUnicastEntry') rldot1q_static_unicast_address_owner = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('static', 1), ('learned', 2))).clone('static')).setMaxAccess('readwrite') if mibBuilder.loadTexts: rldot1qStaticUnicastAddressOwner.setStatus('current') if mibBuilder.loadTexts: rldot1qStaticUnicastAddressOwner.setDescription('The learned status of this entry: static(1) - address has added by user. learned(2)- address has added by device.') rldot1q_tp_fdb_table = mib_table((1, 3, 6, 1, 4, 1, 89, 57, 8, 2)) if mibBuilder.loadTexts: rldot1qTpFdbTable.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbTable.setDescription('An augmentation to dot1qTpFdbTable') rldot1q_tp_fdb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 57, 8, 2, 1)) dot1qTpFdbEntry.registerAugmentions(('Dell-rldot1q-MIB', 'rldot1qTpFdbEntry')) rldot1qTpFdbEntry.setIndexNames(*dot1qTpFdbEntry.getIndexNames()) if mibBuilder.loadTexts: rldot1qTpFdbEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbEntry.setDescription('An augmentation to dot1qTpFdbEntry') rldot1q_tp_fdb_sub_status = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('dynamic-static', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1qTpFdbSubStatus.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbSubStatus.setDescription('The sub status of this entry. The meanings of the values are: none(1) - non of the following. dynamic-static(2) - the value of the corresponding instance of dot1qTpFdbPort was learned dynamically in SW but kept as static address in HW.') rldot1q_tp_fdb_count_table = mib_table((1, 3, 6, 1, 4, 1, 89, 57, 8, 3)) if mibBuilder.loadTexts: rldot1qTpFdbCountTable.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountTable.setDescription('Counters for FDB table. Per VLAN, port and type.') rldot1q_tp_fdb_count_entry = mib_table_row((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1)).setIndexNames((0, 'Dell-rldot1q-MIB', 'rldot1qTpFdbCountVlanTag'), (0, 'Dell-rldot1q-MIB', 'rldot1qTpFdbCountPort'), (0, 'Dell-rldot1q-MIB', 'rldot1qTpFdbCountType')) if mibBuilder.loadTexts: rldot1qTpFdbCountEntry.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountEntry.setDescription('Count the number of MAC address for a specific VLAN, port and type.') rldot1q_tp_fdb_count_vlan_tag = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 4094))).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1qTpFdbCountVlanTag.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountVlanTag.setDescription('Vlan Tag. Zero means all vlans') rldot1q_tp_fdb_count_port = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 2), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1qTpFdbCountPort.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountPort.setDescription('Port. Zero means all ports') rldot1q_tp_fdb_count_type = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('invalid', 2), ('learned', 3), ('self', 4), ('mgmt', 5)))).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1qTpFdbCountType.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountType.setDescription('Type of the address: TODO ') rldot1q_tp_fdb_count_count = mib_table_column((1, 3, 6, 1, 4, 1, 89, 57, 8, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: rldot1qTpFdbCountCount.setStatus('current') if mibBuilder.loadTexts: rldot1qTpFdbCountCount.setDescription('Number of address per selected vlan, port and type.') mibBuilder.exportSymbols('Dell-rldot1q-MIB', rlq_bridge_mib=rlq_bridge_mib, rldot1qTpFdbCountVlanTag=rldot1qTpFdbCountVlanTag, rldot1qTpFdbCountType=rldot1qTpFdbCountType, rldot1q=rldot1q, rldot1qStaticUnicastEntry=rldot1qStaticUnicastEntry, rldot1qStaticUnicastAddressOwner=rldot1qStaticUnicastAddressOwner, rldot1qTpFdbCountEntry=rldot1qTpFdbCountEntry, rldot1qTpFdbCountPort=rldot1qTpFdbCountPort, rldot1qTpFdbTable=rldot1qTpFdbTable, rldot1qTpFdbCountTable=rldot1qTpFdbCountTable, PYSNMP_MODULE_ID=rlq_bridge_mib, rldot1qTpFdbSubStatus=rldot1qTpFdbSubStatus, rldot1qStaticUnicastTable=rldot1qStaticUnicastTable, rldot1qTpFdbEntry=rldot1qTpFdbEntry, rldot1qTpFdbCountCount=rldot1qTpFdbCountCount)
# This Python file contains the constants used by any Python codes leveraged by the contact book application # for ease of maintainability. ROOT_DIR_CONTACTS_DICT_FILE = 'contact_book/src/contact_book/data/' FILE_NAME_CONTACTS_DICT = 'contacts_dict.txt' TEXT_FONT_AND_SIZE_FORMAT_WINDOW_FRAME = "*font" TEXT_FONT_AND_SIZE_MAIN_WINDOW_FRAME = "Verdana 12" DIMENSIONS_FORMAT_WINDOW_FRAME = '{}x{}' HEIGHT_MAIN_WINDOW_FRAME = 260 WIDTH_MAIN_WINDOW_FRAME = 575 WIDTH_VISIBLE_CONTACT_FIELD = 30 TITLE_MAIN_WINDOW_FRAME = 'My contact book' EVENT_PATTERN_LIST_BOX_LABEL = "<<ListboxSelect>>" PADDING_X_OUTER_FRAME = 30 PADDING_Y_OUTER_FRAME = 15 PADDING_X_BUTTON = 5 PADDING_Y_BUTTON = 10 ROW_SPAN = 8 ZERO_VALUE = 0 ONE_VALUE = 1 TWO_VALUE = 2 BG_COLOUR = '#24c1ff' # Fields' labels that are displayed on the GUI FORENAME_FIELD_LABEL = "Forename" SURNAME_FIELD_LABEL = "Surname" EMAIL_ADDRESS_FIELD_LABEL = "Email address" MOBILE_NUMBER_FIELD_LABEL = "Mobile number" CREATE_FIELD_LABEL = "Create" UPDATE_FIELD_LABEL = "Update" REMOVE_FIELD_LABEL = "Remove" CLEAR_FIELD_LABEL = "Clear" SEARCH_BOX_MESSAGE = "Enter contact to search"
root_dir_contacts_dict_file = 'contact_book/src/contact_book/data/' file_name_contacts_dict = 'contacts_dict.txt' text_font_and_size_format_window_frame = '*font' text_font_and_size_main_window_frame = 'Verdana 12' dimensions_format_window_frame = '{}x{}' height_main_window_frame = 260 width_main_window_frame = 575 width_visible_contact_field = 30 title_main_window_frame = 'My contact book' event_pattern_list_box_label = '<<ListboxSelect>>' padding_x_outer_frame = 30 padding_y_outer_frame = 15 padding_x_button = 5 padding_y_button = 10 row_span = 8 zero_value = 0 one_value = 1 two_value = 2 bg_colour = '#24c1ff' forename_field_label = 'Forename' surname_field_label = 'Surname' email_address_field_label = 'Email address' mobile_number_field_label = 'Mobile number' create_field_label = 'Create' update_field_label = 'Update' remove_field_label = 'Remove' clear_field_label = 'Clear' search_box_message = 'Enter contact to search'
# Definition for a binary tree node. class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def longestUnivaluePath(self, root: TreeNode) -> int: if root == None: return 0 self.max_count = 0 self.caller(root,0) return self.max_count def caller(self, curr_node,count): if curr_node.left == None and curr_node.right == None: print(count) if count > self.max_count: self.max_count = count return if curr_node.left != None and curr_node.right != None: if curr_node.val == curr_node.left.val and curr_node.val == curr_node.right.val: self.caller(curr_node.left,count+2) self.caller(curr_node.right,count+2) elif curr_node.left != None: if curr_node.val == curr_node.left.val: self.caller(curr_node.left,count +1) else: self.caller(curr_node.left,0) elif curr_node.right != None: if curr_node.val == curr_node.right.val: self.caller(curr_node.right,count +1) else: self.caller(curr_node.right,0)
class Treenode: def __init__(self, x): self.val = x self.left = None self.right = None class Solution: def longest_univalue_path(self, root: TreeNode) -> int: if root == None: return 0 self.max_count = 0 self.caller(root, 0) return self.max_count def caller(self, curr_node, count): if curr_node.left == None and curr_node.right == None: print(count) if count > self.max_count: self.max_count = count return if curr_node.left != None and curr_node.right != None: if curr_node.val == curr_node.left.val and curr_node.val == curr_node.right.val: self.caller(curr_node.left, count + 2) self.caller(curr_node.right, count + 2) elif curr_node.left != None: if curr_node.val == curr_node.left.val: self.caller(curr_node.left, count + 1) else: self.caller(curr_node.left, 0) elif curr_node.right != None: if curr_node.val == curr_node.right.val: self.caller(curr_node.right, count + 1) else: self.caller(curr_node.right, 0)
a = list(map(int, input().split())) def kangaroo(x1, v1, x2, v2): if x1>x2 and v1>v2: return'NO' elif x2>x1 and v2>v1: return 'NO' else: result = 'NO' for i in range(10000): if x1+i*v1==x2+i*v2: result = 'YES' break return result b=kangaroo(a[0], a[1], a[2], a[3]) print(b)
a = list(map(int, input().split())) def kangaroo(x1, v1, x2, v2): if x1 > x2 and v1 > v2: return 'NO' elif x2 > x1 and v2 > v1: return 'NO' else: result = 'NO' for i in range(10000): if x1 + i * v1 == x2 + i * v2: result = 'YES' break return result b = kangaroo(a[0], a[1], a[2], a[3]) print(b)
def operator_insertor(n): res=helper("123456789", 0, n)-1 return res if res!=float("inf") else None def helper(s, index, n): if index>=len(s): return 0 if n==0 else float("inf") res=float("inf") cur=0 for i in range(index, len(s)): cur=cur*10+int(s[i]) res=min(res, helper(s, i+1, n-cur)+1) if index: res=min(res, helper(s, i+1, n+cur)+1) return res
def operator_insertor(n): res = helper('123456789', 0, n) - 1 return res if res != float('inf') else None def helper(s, index, n): if index >= len(s): return 0 if n == 0 else float('inf') res = float('inf') cur = 0 for i in range(index, len(s)): cur = cur * 10 + int(s[i]) res = min(res, helper(s, i + 1, n - cur) + 1) if index: res = min(res, helper(s, i + 1, n + cur) + 1) return res
{ "targets": [ { "target_name": "rdiff", "sources": [ "rdiff.cc" ], "link_settings": { "libraries": [ "-lrsync", "-lz" ] }, "include_dirs" : [ "<!(node -e \"require('nan')\")" ], } ] }
{'targets': [{'target_name': 'rdiff', 'sources': ['rdiff.cc'], 'link_settings': {'libraries': ['-lrsync', '-lz']}, 'include_dirs': ['<!(node -e "require(\'nan\')")']}]}
class Solution: def removeDuplicates(self, nums: List[int]) -> int: pre = -100000 cnt = 0 i = -1 j = 0 while j < len(nums): if nums[j] != pre: i += 1 nums[i] = nums[j] cnt = 1 elif cnt < 2: i += 1 nums[i] = nums[j] cnt += 1 pre = nums[j] j += 1 return i+1
class Solution: def remove_duplicates(self, nums: List[int]) -> int: pre = -100000 cnt = 0 i = -1 j = 0 while j < len(nums): if nums[j] != pre: i += 1 nums[i] = nums[j] cnt = 1 elif cnt < 2: i += 1 nums[i] = nums[j] cnt += 1 pre = nums[j] j += 1 return i + 1
class BaseArg: @staticmethod def read_argument(parser): raise NotImplementedError() @staticmethod def add_argument(parser): raise NotImplementedError()
class Basearg: @staticmethod def read_argument(parser): raise not_implemented_error() @staticmethod def add_argument(parser): raise not_implemented_error()
# # PySNMP MIB module CISCO-UNIFIED-COMPUTING-DUPE-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CISCO-UNIFIED-COMPUTING-DUPE-MIB # Produced by pysmi-0.3.4 at Wed May 1 12:15:29 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, ObjectIdentifier, OctetString = mibBuilder.importSymbols("ASN1", "Integer", "ObjectIdentifier", "OctetString") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsIntersection, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsIntersection", "ConstraintsUnion") ciscoMgmt, = mibBuilder.importSymbols("CISCO-SMI", "ciscoMgmt") TimeIntervalSec, Unsigned64, CiscoInetAddressMask, CiscoNetworkAddress, CiscoAlarmSeverity = mibBuilder.importSymbols("CISCO-TC", "TimeIntervalSec", "Unsigned64", "CiscoInetAddressMask", "CiscoNetworkAddress", "CiscoAlarmSeverity") CucsManagedObjectDn, ciscoUnifiedComputingMIBObjects, CucsManagedObjectId = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-MIB", "CucsManagedObjectDn", "ciscoUnifiedComputingMIBObjects", "CucsManagedObjectId") CucsDupeOperation, CucsMoMoClassId, CucsDupeStatus = mibBuilder.importSymbols("CISCO-UNIFIED-COMPUTING-TC-MIB", "CucsDupeOperation", "CucsMoMoClassId", "CucsDupeStatus") InetAddressIPv6, InetAddressIPv4 = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressIPv6", "InetAddressIPv4") SnmpAdminString, = mibBuilder.importSymbols("SNMP-FRAMEWORK-MIB", "SnmpAdminString") ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup") Counter32, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, MibIdentifier, iso, Bits, ObjectIdentity, Counter64, IpAddress, ModuleIdentity, TimeTicks, Gauge32, NotificationType, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "MibIdentifier", "iso", "Bits", "ObjectIdentity", "Counter64", "IpAddress", "ModuleIdentity", "TimeTicks", "Gauge32", "NotificationType", "Unsigned32") MacAddress, TextualConvention, TimeInterval, RowPointer, DateAndTime, TimeStamp, TruthValue, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "MacAddress", "TextualConvention", "TimeInterval", "RowPointer", "DateAndTime", "TimeStamp", "TruthValue", "DisplayString") cucsDupeObjects = ModuleIdentity((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78)) if mibBuilder.loadTexts: cucsDupeObjects.setLastUpdated('201601180000Z') if mibBuilder.loadTexts: cucsDupeObjects.setOrganization('Cisco Systems Inc.') if mibBuilder.loadTexts: cucsDupeObjects.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553 -NETS E-mail: cs-san@cisco.com, cs-lan-switch-snmp@cisco.com') if mibBuilder.loadTexts: cucsDupeObjects.setDescription('MIB representation of the Cisco Unified Computing System DUPE management information model package') cucsDupeScopeTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1), ) if mibBuilder.loadTexts: cucsDupeScopeTable.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeTable.setDescription('Cisco UCS dupe:Scope managed object table') cucsDupeScopeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DUPE-MIB", "cucsDupeScopeInstanceId")) if mibBuilder.loadTexts: cucsDupeScopeEntry.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeEntry.setDescription('Entry for the cucsDupeScopeTable table.') cucsDupeScopeInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsDupeScopeInstanceId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeInstanceId.setDescription('Instance identifier of the managed object.') cucsDupeScopeDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeDn.setDescription('Cisco UCS dupe:Scope:dn managed object property') cucsDupeScopeRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeRn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeRn.setDescription('Cisco UCS dupe:Scope:rn managed object property') cucsDupeScopeClientMoDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeClientMoDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeClientMoDn.setDescription('Cisco UCS dupe:Scope:clientMoDn managed object property') cucsDupeScopeId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 5), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeId.setDescription('Cisco UCS dupe:Scope:id managed object property') cucsDupeScopeIsSystem = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 6), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeIsSystem.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeIsSystem.setDescription('Cisco UCS dupe:Scope:isSystem managed object property') cucsDupeScopeMoClassId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 7), CucsMoMoClassId()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeMoClassId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeMoClassId.setDescription('Cisco UCS dupe:Scope:moClassId managed object property') cucsDupeScopeOperCode = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 8), CucsDupeOperation()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeOperCode.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeOperCode.setDescription('Cisco UCS dupe:Scope:operCode managed object property') cucsDupeScopeSecondaryKey = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 9), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeSecondaryKey.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeSecondaryKey.setDescription('Cisco UCS dupe:Scope:secondaryKey managed object property') cucsDupeScopeSourceMoDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 10), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeSourceMoDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeSourceMoDn.setDescription('Cisco UCS dupe:Scope:sourceMoDn managed object property') cucsDupeScopeResultTable = MibTable((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2), ) if mibBuilder.loadTexts: cucsDupeScopeResultTable.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultTable.setDescription('Cisco UCS dupe:ScopeResult managed object table') cucsDupeScopeResultEntry = MibTableRow((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1), ).setIndexNames((0, "CISCO-UNIFIED-COMPUTING-DUPE-MIB", "cucsDupeScopeResultInstanceId")) if mibBuilder.loadTexts: cucsDupeScopeResultEntry.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultEntry.setDescription('Entry for the cucsDupeScopeResultTable table.') cucsDupeScopeResultInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 1), CucsManagedObjectId()) if mibBuilder.loadTexts: cucsDupeScopeResultInstanceId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultInstanceId.setDescription('Instance identifier of the managed object.') cucsDupeScopeResultDn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 2), CucsManagedObjectDn()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeResultDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultDn.setDescription('Cisco UCS dupe:ScopeResult:dn managed object property') cucsDupeScopeResultRn = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 3), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeResultRn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultRn.setDescription('Cisco UCS dupe:ScopeResult:rn managed object property') cucsDupeScopeResultMessage = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 4), SnmpAdminString()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeResultMessage.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultMessage.setDescription('Cisco UCS dupe:ScopeResult:message managed object property') cucsDupeScopeResultScopeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 5), CucsDupeStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeResultScopeStatus.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultScopeStatus.setDescription('Cisco UCS dupe:ScopeResult:scopeStatus managed object property') cucsDupeScopeResultUpdateTime = MibTableColumn((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 6), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: cucsDupeScopeResultUpdateTime.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultUpdateTime.setDescription('Cisco UCS dupe:ScopeResult:updateTime managed object property') mibBuilder.exportSymbols("CISCO-UNIFIED-COMPUTING-DUPE-MIB", cucsDupeObjects=cucsDupeObjects, cucsDupeScopeId=cucsDupeScopeId, cucsDupeScopeResultDn=cucsDupeScopeResultDn, cucsDupeScopeClientMoDn=cucsDupeScopeClientMoDn, PYSNMP_MODULE_ID=cucsDupeObjects, cucsDupeScopeIsSystem=cucsDupeScopeIsSystem, cucsDupeScopeTable=cucsDupeScopeTable, cucsDupeScopeOperCode=cucsDupeScopeOperCode, cucsDupeScopeDn=cucsDupeScopeDn, cucsDupeScopeRn=cucsDupeScopeRn, cucsDupeScopeEntry=cucsDupeScopeEntry, cucsDupeScopeResultUpdateTime=cucsDupeScopeResultUpdateTime, cucsDupeScopeResultScopeStatus=cucsDupeScopeResultScopeStatus, cucsDupeScopeResultRn=cucsDupeScopeResultRn, cucsDupeScopeMoClassId=cucsDupeScopeMoClassId, cucsDupeScopeSourceMoDn=cucsDupeScopeSourceMoDn, cucsDupeScopeResultMessage=cucsDupeScopeResultMessage, cucsDupeScopeResultInstanceId=cucsDupeScopeResultInstanceId, cucsDupeScopeResultEntry=cucsDupeScopeResultEntry, cucsDupeScopeSecondaryKey=cucsDupeScopeSecondaryKey, cucsDupeScopeResultTable=cucsDupeScopeResultTable, cucsDupeScopeInstanceId=cucsDupeScopeInstanceId)
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (value_range_constraint, value_size_constraint, single_value_constraint, constraints_intersection, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsIntersection', 'ConstraintsUnion') (cisco_mgmt,) = mibBuilder.importSymbols('CISCO-SMI', 'ciscoMgmt') (time_interval_sec, unsigned64, cisco_inet_address_mask, cisco_network_address, cisco_alarm_severity) = mibBuilder.importSymbols('CISCO-TC', 'TimeIntervalSec', 'Unsigned64', 'CiscoInetAddressMask', 'CiscoNetworkAddress', 'CiscoAlarmSeverity') (cucs_managed_object_dn, cisco_unified_computing_mib_objects, cucs_managed_object_id) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-MIB', 'CucsManagedObjectDn', 'ciscoUnifiedComputingMIBObjects', 'CucsManagedObjectId') (cucs_dupe_operation, cucs_mo_mo_class_id, cucs_dupe_status) = mibBuilder.importSymbols('CISCO-UNIFIED-COMPUTING-TC-MIB', 'CucsDupeOperation', 'CucsMoMoClassId', 'CucsDupeStatus') (inet_address_i_pv6, inet_address_i_pv4) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressIPv6', 'InetAddressIPv4') (snmp_admin_string,) = mibBuilder.importSymbols('SNMP-FRAMEWORK-MIB', 'SnmpAdminString') (module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup') (counter32, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, mib_identifier, iso, bits, object_identity, counter64, ip_address, module_identity, time_ticks, gauge32, notification_type, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'MibIdentifier', 'iso', 'Bits', 'ObjectIdentity', 'Counter64', 'IpAddress', 'ModuleIdentity', 'TimeTicks', 'Gauge32', 'NotificationType', 'Unsigned32') (mac_address, textual_convention, time_interval, row_pointer, date_and_time, time_stamp, truth_value, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'MacAddress', 'TextualConvention', 'TimeInterval', 'RowPointer', 'DateAndTime', 'TimeStamp', 'TruthValue', 'DisplayString') cucs_dupe_objects = module_identity((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78)) if mibBuilder.loadTexts: cucsDupeObjects.setLastUpdated('201601180000Z') if mibBuilder.loadTexts: cucsDupeObjects.setOrganization('Cisco Systems Inc.') if mibBuilder.loadTexts: cucsDupeObjects.setContactInfo('Cisco Systems Customer Service Postal: 170 W Tasman Drive San Jose, CA 95134 USA Tel: +1 800 553 -NETS E-mail: cs-san@cisco.com, cs-lan-switch-snmp@cisco.com') if mibBuilder.loadTexts: cucsDupeObjects.setDescription('MIB representation of the Cisco Unified Computing System DUPE management information model package') cucs_dupe_scope_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1)) if mibBuilder.loadTexts: cucsDupeScopeTable.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeTable.setDescription('Cisco UCS dupe:Scope managed object table') cucs_dupe_scope_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DUPE-MIB', 'cucsDupeScopeInstanceId')) if mibBuilder.loadTexts: cucsDupeScopeEntry.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeEntry.setDescription('Entry for the cucsDupeScopeTable table.') cucs_dupe_scope_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 1), cucs_managed_object_id()) if mibBuilder.loadTexts: cucsDupeScopeInstanceId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeInstanceId.setDescription('Instance identifier of the managed object.') cucs_dupe_scope_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeDn.setDescription('Cisco UCS dupe:Scope:dn managed object property') cucs_dupe_scope_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 3), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeRn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeRn.setDescription('Cisco UCS dupe:Scope:rn managed object property') cucs_dupe_scope_client_mo_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 4), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeClientMoDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeClientMoDn.setDescription('Cisco UCS dupe:Scope:clientMoDn managed object property') cucs_dupe_scope_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 5), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeId.setDescription('Cisco UCS dupe:Scope:id managed object property') cucs_dupe_scope_is_system = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 6), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeIsSystem.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeIsSystem.setDescription('Cisco UCS dupe:Scope:isSystem managed object property') cucs_dupe_scope_mo_class_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 7), cucs_mo_mo_class_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeMoClassId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeMoClassId.setDescription('Cisco UCS dupe:Scope:moClassId managed object property') cucs_dupe_scope_oper_code = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 8), cucs_dupe_operation()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeOperCode.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeOperCode.setDescription('Cisco UCS dupe:Scope:operCode managed object property') cucs_dupe_scope_secondary_key = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 9), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeSecondaryKey.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeSecondaryKey.setDescription('Cisco UCS dupe:Scope:secondaryKey managed object property') cucs_dupe_scope_source_mo_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 1, 1, 10), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeSourceMoDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeSourceMoDn.setDescription('Cisco UCS dupe:Scope:sourceMoDn managed object property') cucs_dupe_scope_result_table = mib_table((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2)) if mibBuilder.loadTexts: cucsDupeScopeResultTable.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultTable.setDescription('Cisco UCS dupe:ScopeResult managed object table') cucs_dupe_scope_result_entry = mib_table_row((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1)).setIndexNames((0, 'CISCO-UNIFIED-COMPUTING-DUPE-MIB', 'cucsDupeScopeResultInstanceId')) if mibBuilder.loadTexts: cucsDupeScopeResultEntry.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultEntry.setDescription('Entry for the cucsDupeScopeResultTable table.') cucs_dupe_scope_result_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 1), cucs_managed_object_id()) if mibBuilder.loadTexts: cucsDupeScopeResultInstanceId.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultInstanceId.setDescription('Instance identifier of the managed object.') cucs_dupe_scope_result_dn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 2), cucs_managed_object_dn()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeResultDn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultDn.setDescription('Cisco UCS dupe:ScopeResult:dn managed object property') cucs_dupe_scope_result_rn = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 3), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeResultRn.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultRn.setDescription('Cisco UCS dupe:ScopeResult:rn managed object property') cucs_dupe_scope_result_message = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 4), snmp_admin_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeResultMessage.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultMessage.setDescription('Cisco UCS dupe:ScopeResult:message managed object property') cucs_dupe_scope_result_scope_status = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 5), cucs_dupe_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeResultScopeStatus.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultScopeStatus.setDescription('Cisco UCS dupe:ScopeResult:scopeStatus managed object property') cucs_dupe_scope_result_update_time = mib_table_column((1, 3, 6, 1, 4, 1, 9, 9, 719, 1, 78, 2, 1, 6), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: cucsDupeScopeResultUpdateTime.setStatus('current') if mibBuilder.loadTexts: cucsDupeScopeResultUpdateTime.setDescription('Cisco UCS dupe:ScopeResult:updateTime managed object property') mibBuilder.exportSymbols('CISCO-UNIFIED-COMPUTING-DUPE-MIB', cucsDupeObjects=cucsDupeObjects, cucsDupeScopeId=cucsDupeScopeId, cucsDupeScopeResultDn=cucsDupeScopeResultDn, cucsDupeScopeClientMoDn=cucsDupeScopeClientMoDn, PYSNMP_MODULE_ID=cucsDupeObjects, cucsDupeScopeIsSystem=cucsDupeScopeIsSystem, cucsDupeScopeTable=cucsDupeScopeTable, cucsDupeScopeOperCode=cucsDupeScopeOperCode, cucsDupeScopeDn=cucsDupeScopeDn, cucsDupeScopeRn=cucsDupeScopeRn, cucsDupeScopeEntry=cucsDupeScopeEntry, cucsDupeScopeResultUpdateTime=cucsDupeScopeResultUpdateTime, cucsDupeScopeResultScopeStatus=cucsDupeScopeResultScopeStatus, cucsDupeScopeResultRn=cucsDupeScopeResultRn, cucsDupeScopeMoClassId=cucsDupeScopeMoClassId, cucsDupeScopeSourceMoDn=cucsDupeScopeSourceMoDn, cucsDupeScopeResultMessage=cucsDupeScopeResultMessage, cucsDupeScopeResultInstanceId=cucsDupeScopeResultInstanceId, cucsDupeScopeResultEntry=cucsDupeScopeResultEntry, cucsDupeScopeSecondaryKey=cucsDupeScopeSecondaryKey, cucsDupeScopeResultTable=cucsDupeScopeResultTable, cucsDupeScopeInstanceId=cucsDupeScopeInstanceId)
# Find the cube root of a perfect cube n = int(input("Enter an integer: ")) ans = 0 while ans ** 3 < abs(n): ans += 1 if ans ** 3 != abs(n): print(n, "is not a perfect cube") else: if n < 0: ans = -ans print("Cube root of", n, "is", ans)
n = int(input('Enter an integer: ')) ans = 0 while ans ** 3 < abs(n): ans += 1 if ans ** 3 != abs(n): print(n, 'is not a perfect cube') else: if n < 0: ans = -ans print('Cube root of', n, 'is', ans)
class Solution: def replaceElements(self, arr: list[int]) -> list[int]: largest_value = -1 for index, num in reversed(list(enumerate(arr))): arr[index] = largest_value largest_value = max(largest_value, num) return arr tests = [ ( ([17, 18, 5, 4, 6, 1],), [18, 6, 6, 6, 1, -1], ), ( ([400],), [-1], ), ]
class Solution: def replace_elements(self, arr: list[int]) -> list[int]: largest_value = -1 for (index, num) in reversed(list(enumerate(arr))): arr[index] = largest_value largest_value = max(largest_value, num) return arr tests = [(([17, 18, 5, 4, 6, 1],), [18, 6, 6, 6, 1, -1]), (([400],), [-1])]
# nlantau, 2020-11-09 def evens_and_odds(n): return f"{n:b}" if n % 2 == 0 else f"{n:x}" print(evens_and_odds(1)) print(evens_and_odds(2)) print(evens_and_odds(3)) print(evens_and_odds(13))
def evens_and_odds(n): return f'{n:b}' if n % 2 == 0 else f'{n:x}' print(evens_and_odds(1)) print(evens_and_odds(2)) print(evens_and_odds(3)) print(evens_and_odds(13))
# -*- coding: utf-8 -*- ''' Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water. Note: You may not slant the container and n is at least 2. ''' def get_max_area(height_list): max_area = 0 l, r = 0, len(height_list)-1 while l < r: area = (r-l) * min(height_list[l], height_list[r]) if area > max_area: max_area = area if height_list[l] < height_list[r]: l += 1 else: r -= 1 return max_area
""" Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a container, such that the container contains the most water. Note: You may not slant the container and n is at least 2. """ def get_max_area(height_list): max_area = 0 (l, r) = (0, len(height_list) - 1) while l < r: area = (r - l) * min(height_list[l], height_list[r]) if area > max_area: max_area = area if height_list[l] < height_list[r]: l += 1 else: r -= 1 return max_area
a = 5 b = a print(a,b) a = 3 print(a,b)
a = 5 b = a print(a, b) a = 3 print(a, b)
# Activity Select def printMaxActivity(s, f): n = len(f) print('The Following Activitices are selected.') i = 0 print(i) for j in range(n): if (s[j] >= f[i]): print(j) i = j s = [1, 3, 0, 5, 8, 5] f = [2, 4, 6, 7, 9, 9] printMaxActivity(s, f) ''' Output: >>> The Following Activitices are selected. 0 1 3 4 '''
def print_max_activity(s, f): n = len(f) print('The Following Activitices are selected.') i = 0 print(i) for j in range(n): if s[j] >= f[i]: print(j) i = j s = [1, 3, 0, 5, 8, 5] f = [2, 4, 6, 7, 9, 9] print_max_activity(s, f) '\nOutput:\n>>>\nThe Following Activitices are selected.\n0\n1\n3\n4\n'
# Roman Ramirez, rr8rk@virginia.edu # Advent of Code 2021, Day 09: Smoke Basin #%% LONG INPUT my_input = [] with open('input.txt', 'r') as f: for line in f: my_input.append(line.strip('\n')) #%% EXAMPLE INPUT my_input = [ '2199943210', '3987894921', '9856789892', '8767896789', '9899965678' ] #%% PART 1 CODE heights = [[int(s) for s in x] for x in my_input] def is_low_point(x, y): low_accum = True val = heights[y][x] # check left if x != 0: left = heights[y][x-1] if (val - left) >= 0: low_accum = False # check right if x != len(heights[y]) - 1: right = heights[y][x+1] if (val - right) >= 0: low_accum = False # check up if y != 0: up = heights[y-1][x] if (val - up) >= 0: low_accum = False # check down if y != len(heights) - 1: down = heights[y+1][x] if (val - down) >= 0: low_accum = False return low_accum total = 0 for y in range(len(heights)): for x in range(len(heights[y])): if (is_low_point(x, y)): total += heights[y][x] + 1 print(total) #%% PART 2 CODE heights = [[int(s) for s in x] for x in my_input] def is_low_point(x, y): low_accum = True val = heights[y][x] # check left if x != 0: left = heights[y][x-1] if (val - left) >= 0: low_accum = False # check right if x != len(heights[y]) - 1: right = heights[y][x+1] if (val - right) >= 0: low_accum = False # check up if y != 0: up = heights[y-1][x] if (val - up) >= 0: low_accum = False # check down if y != len(heights) - 1: down = heights[y+1][x] if (val - down) >= 0: low_accum = False return low_accum low_points = [] for y in range(len(heights)): for x in range(len(heights[y])): if (is_low_point(x, y)): low_points.append((x, y)) def find_non_nine(p, p_set): p_set.add(p) size = 1 x, y = p val = heights[y][x] if x != 0: left = heights[y][x-1] if x != len(heights[y]) - 1: right = heights[y][x+1] if y != 0: up = heights[y-1][x] if y != len(heights) - 1: down = heights[y+1][x] # base case if val == 9: return 0 # check left if x != 0 and ((x - 1, y) not in p_set): if (val - left) != 9: size += find_non_nine((x-1, y), p_set) # check right if x != len(heights[y]) - 1 and ((x + 1, y) not in p_set): if (val - right) != 9: size += find_non_nine((x+1, y), p_set) # check up if y != 0 and ((x, y - 1) not in p_set): if (val - up) != 9: size += find_non_nine((x, y-1), p_set) # check down if y != len(heights) - 1 and ((x, y + 1) not in p_set): if (val - down) != 9: size += find_non_nine((x, y+1), p_set) return size def start_find_non_nine(p): return find_non_nine(p, set([])) basin_sizes = [] for point in low_points: basin_sizes.append(start_find_non_nine(point)) basin_sizes = sorted(basin_sizes) three_largest = basin_sizes[-1] * basin_sizes[-2] * basin_sizes[-3] print(three_largest)
my_input = [] with open('input.txt', 'r') as f: for line in f: my_input.append(line.strip('\n')) my_input = ['2199943210', '3987894921', '9856789892', '8767896789', '9899965678'] heights = [[int(s) for s in x] for x in my_input] def is_low_point(x, y): low_accum = True val = heights[y][x] if x != 0: left = heights[y][x - 1] if val - left >= 0: low_accum = False if x != len(heights[y]) - 1: right = heights[y][x + 1] if val - right >= 0: low_accum = False if y != 0: up = heights[y - 1][x] if val - up >= 0: low_accum = False if y != len(heights) - 1: down = heights[y + 1][x] if val - down >= 0: low_accum = False return low_accum total = 0 for y in range(len(heights)): for x in range(len(heights[y])): if is_low_point(x, y): total += heights[y][x] + 1 print(total) heights = [[int(s) for s in x] for x in my_input] def is_low_point(x, y): low_accum = True val = heights[y][x] if x != 0: left = heights[y][x - 1] if val - left >= 0: low_accum = False if x != len(heights[y]) - 1: right = heights[y][x + 1] if val - right >= 0: low_accum = False if y != 0: up = heights[y - 1][x] if val - up >= 0: low_accum = False if y != len(heights) - 1: down = heights[y + 1][x] if val - down >= 0: low_accum = False return low_accum low_points = [] for y in range(len(heights)): for x in range(len(heights[y])): if is_low_point(x, y): low_points.append((x, y)) def find_non_nine(p, p_set): p_set.add(p) size = 1 (x, y) = p val = heights[y][x] if x != 0: left = heights[y][x - 1] if x != len(heights[y]) - 1: right = heights[y][x + 1] if y != 0: up = heights[y - 1][x] if y != len(heights) - 1: down = heights[y + 1][x] if val == 9: return 0 if x != 0 and (x - 1, y) not in p_set: if val - left != 9: size += find_non_nine((x - 1, y), p_set) if x != len(heights[y]) - 1 and (x + 1, y) not in p_set: if val - right != 9: size += find_non_nine((x + 1, y), p_set) if y != 0 and (x, y - 1) not in p_set: if val - up != 9: size += find_non_nine((x, y - 1), p_set) if y != len(heights) - 1 and (x, y + 1) not in p_set: if val - down != 9: size += find_non_nine((x, y + 1), p_set) return size def start_find_non_nine(p): return find_non_nine(p, set([])) basin_sizes = [] for point in low_points: basin_sizes.append(start_find_non_nine(point)) basin_sizes = sorted(basin_sizes) three_largest = basin_sizes[-1] * basin_sizes[-2] * basin_sizes[-3] print(three_largest)
#program that guess a number between 0 to 100 low=0 High=100 medium=(low+High) //2 state =True print("please Enter a number between 0 to 100 ") while state : print("is your secret number:"+ str(medium)) guess=input("Enter h if indicates is high and enter 'l' is low ") if guess=='c': print("GAME OVER . Your secret number was Medium" ) state=False elif guess=='h': High= medium medium=(High+low) //2 elif guess=='l': low= medium medium=(High+low) //2 else: print("Sorry. i don't understand your input")
low = 0 high = 100 medium = (low + High) // 2 state = True print('please Enter a number between 0 to 100 ') while state: print('is your secret number:' + str(medium)) guess = input("Enter h if indicates is high and enter 'l' is low ") if guess == 'c': print('GAME OVER . Your secret number was Medium') state = False elif guess == 'h': high = medium medium = (High + low) // 2 elif guess == 'l': low = medium medium = (High + low) // 2 else: print("Sorry. i don't understand your input")
def adiciona_item(nome, lista): backup=[] if len(lista)==0: lista.append(nome) return else: for i in range(len(lista)-1, -1, -1): if nome<lista[i]: if nome<lista[i] and i == 0: backup.append(lista.pop()) lista.append(nome) else: backup.append(lista.pop()) else: lista.append(nome) break if len(backup)==0: return else: for i in range (len(backup)-1, -1, -1): lista.append(backup[i]) return
def adiciona_item(nome, lista): backup = [] if len(lista) == 0: lista.append(nome) return else: for i in range(len(lista) - 1, -1, -1): if nome < lista[i]: if nome < lista[i] and i == 0: backup.append(lista.pop()) lista.append(nome) else: backup.append(lista.pop()) else: lista.append(nome) break if len(backup) == 0: return else: for i in range(len(backup) - 1, -1, -1): lista.append(backup[i]) return
# Currency FX rate settings BASE_URL = 'https://www.x-rates.com/calculator/?from={}&to={}&amount=1' BASE_CURRENCY = 'JPY' TO_CURRENCY_LIST = ['AUD', 'CNY', 'USD', 'GBP'] # Alert threshold for sending push notification ALERT_THRESHOLD = [ {'fx_pair': 'JPY/AUD', 'buy-threshold': 0.0134, 'sell-threshold': 0.0137}, {'fx_pair': 'JPY/USD', 'buy-threshold': 0.009, 'sell-threshold': 0.01}, {'fx_pair': 'JPY/CNY', 'buy-threshold': 0.06, 'sell-threshold': 0.07} ] # Twillio Auth & Token TO = '{YOUR_MOBILE_NUMBER}' FROM_ = '{YOUR_TWILIO_NUMBER}' ACCOUNT_SID = '{YOUR_SID}' AUTH_TOKEN = '{YOUR_TOKEN}'
base_url = 'https://www.x-rates.com/calculator/?from={}&to={}&amount=1' base_currency = 'JPY' to_currency_list = ['AUD', 'CNY', 'USD', 'GBP'] alert_threshold = [{'fx_pair': 'JPY/AUD', 'buy-threshold': 0.0134, 'sell-threshold': 0.0137}, {'fx_pair': 'JPY/USD', 'buy-threshold': 0.009, 'sell-threshold': 0.01}, {'fx_pair': 'JPY/CNY', 'buy-threshold': 0.06, 'sell-threshold': 0.07}] to = '{YOUR_MOBILE_NUMBER}' from_ = '{YOUR_TWILIO_NUMBER}' account_sid = '{YOUR_SID}' auth_token = '{YOUR_TOKEN}'
_base_ = [ '../_base_/models/resnet18.py', '../_base_/datasets/imagenet_bs32.py', '../_base_/schedules/imagenet_bs1024.py', '../_base_/default_runtime.py' ] actnn = True data = dict( samples_per_gpu=256, # 256*4 = 1024 workers_per_gpu=8, ) log_config = dict( interval=100, hooks=[ dict(type='TextLoggerHook'), dict( type='WandbLoggerHook', init_kwargs=dict( project='classification', entity='actnn', name='resnet18_b256x4_imagenet', ) ) ] )
_base_ = ['../_base_/models/resnet18.py', '../_base_/datasets/imagenet_bs32.py', '../_base_/schedules/imagenet_bs1024.py', '../_base_/default_runtime.py'] actnn = True data = dict(samples_per_gpu=256, workers_per_gpu=8) log_config = dict(interval=100, hooks=[dict(type='TextLoggerHook'), dict(type='WandbLoggerHook', init_kwargs=dict(project='classification', entity='actnn', name='resnet18_b256x4_imagenet'))])
train_dataset_seed = 1234 test_dataset_seed = 4321 n_test_dataset = 100 is_subtype = mlprogram.languages.python.IsSubtype() normalize_dataset = mlprogram.utils.transform.NormalizeGroundTruth( normalize=mlprogram.functools.Sequence( funcs=collections.OrderedDict( items=[["parse", parser.parse], ["unparse", parser.unparse]], ), ), ) train_dataset = SyntheticDataset(seed=train_dataset_seed) dataset_for_encoder = mlprogram.utils.data.to_map_style_dataset( dataset=SyntheticDataset(seed=0), n=100000, ) test_dataset = mlprogram.utils.data.transform( dataset=mlprogram.utils.data.to_map_style_dataset( dataset=SyntheticDataset(seed=test_dataset_seed), n=n_test_dataset, ), transform=normalize_dataset ) valid_dataset = mlprogram.utils.data.transform( dataset=ValidDataset(), transform=normalize_dataset ) metrics = { "accuracy": mlprogram.metrics.Accuracy(), "bleu": mlprogram.languages.python.metrics.Bleu(), }
train_dataset_seed = 1234 test_dataset_seed = 4321 n_test_dataset = 100 is_subtype = mlprogram.languages.python.IsSubtype() normalize_dataset = mlprogram.utils.transform.NormalizeGroundTruth(normalize=mlprogram.functools.Sequence(funcs=collections.OrderedDict(items=[['parse', parser.parse], ['unparse', parser.unparse]]))) train_dataset = synthetic_dataset(seed=train_dataset_seed) dataset_for_encoder = mlprogram.utils.data.to_map_style_dataset(dataset=synthetic_dataset(seed=0), n=100000) test_dataset = mlprogram.utils.data.transform(dataset=mlprogram.utils.data.to_map_style_dataset(dataset=synthetic_dataset(seed=test_dataset_seed), n=n_test_dataset), transform=normalize_dataset) valid_dataset = mlprogram.utils.data.transform(dataset=valid_dataset(), transform=normalize_dataset) metrics = {'accuracy': mlprogram.metrics.Accuracy(), 'bleu': mlprogram.languages.python.metrics.Bleu()}
def c3(): global x1 global y1 global x2 global y2 global x3 global y3 global x4 global y4 x1=float(input("What are your x1?")) y1=float(input("What are your y1?")) x2=float(input("What are your x2?")) y2=float(input("What are your y2?")) x3=float(input("What are your x3?")) y3=float(input("What are your y3?")) x4=0 y4=0 def c4(): global x1 global y1 global x2 global y2 global x3 global y3 global x4 global y4 x1=float(input("What are your x1?")) y1=float(input("What are your y1?")) x2=float(input("What are your x2?")) y2=float(input("What are your y2?")) x3=float(input("What are your x3?")) y3=float(input("What are your y3?")) x4=float(input("What are your x4?")) y4=float(input("What are your y4?")) print("How many coordinates?") print("3") print("4") answer = input("> ") if answer == "3": c3() elif answer == "4": c4() print("Step 1:") print("1-reflections") print("2-rotations") print("3-translations") answer = input("> ") if answer == "1": i = input("across what?") if i == "y": x1*-1 x2*-1 x3*-1 x4*-1 elif i == "x": y1*-1 y2*-1 y3*-1 y4*-1 if answer == "2": i = input("which way?") if answer == "90 cw": x1, y1 = y1, x1 x1*-1 x2, y2 = y2, x2 x2*-1 x3, y3 = y3, x3 x3*-1 x4, y4 = y4, x4 x4*-1 if answer == "90 ccw": x1, y1 = y1, x1 y1*-1 x2, y2 = y2, x2 y2*-1 x3, y3 = y3, x3 y3*-1 x4, y4 = y4, x4 y4*-1 if answer == "3": i = float(input("how many units right?")) i1 = float(input("how many units up?")) x1+i x2+i x3+i x4+i y1+i1 y2+i1 y3+i1 y4+i1 print("Step 2:") print("1-reflections") print("2-rotations") print("3-translations") answer = input("> ") if answer == "1": i = input("across what?") if i == "y": x1*-1 x2*-1 x3*-1 x4*-1 elif i == "x": y1*-1 y2*-1 y3*-1 y4*-1 if answer == "2": i = input("which way?") if answer == "90 cw": x1, y1 = y1, x1 x1*-1 x2, y2 = y2, x2 x2*-1 x3, y3 = y3, x3 x3*-1 x4, y4 = y4, x4 x4*-1 if answer == "90 ccw": x1, y1 = y1, x1 y1*-1 x2, y2 = y2, x2 y2*-1 x3, y3 = y3, x3 y3*-1 x4, y4 = y4, x4 y4*-1 if answer == "3": i = float(input("how many units right?")) i1 = float(input("how many units up?")) x1+i x2+i x3+i x4+i y1+i1 y2+i1 y3+i1 y4+i1 print("(",x1,",",y1,")") print("(",x2,",",y2,")") print("(",x3,",",y3,")") print("(",x4,",",y4,")")
def c3(): global x1 global y1 global x2 global y2 global x3 global y3 global x4 global y4 x1 = float(input('What are your x1?')) y1 = float(input('What are your y1?')) x2 = float(input('What are your x2?')) y2 = float(input('What are your y2?')) x3 = float(input('What are your x3?')) y3 = float(input('What are your y3?')) x4 = 0 y4 = 0 def c4(): global x1 global y1 global x2 global y2 global x3 global y3 global x4 global y4 x1 = float(input('What are your x1?')) y1 = float(input('What are your y1?')) x2 = float(input('What are your x2?')) y2 = float(input('What are your y2?')) x3 = float(input('What are your x3?')) y3 = float(input('What are your y3?')) x4 = float(input('What are your x4?')) y4 = float(input('What are your y4?')) print('How many coordinates?') print('3') print('4') answer = input('> ') if answer == '3': c3() elif answer == '4': c4() print('Step 1:') print('1-reflections') print('2-rotations') print('3-translations') answer = input('> ') if answer == '1': i = input('across what?') if i == 'y': x1 * -1 x2 * -1 x3 * -1 x4 * -1 elif i == 'x': y1 * -1 y2 * -1 y3 * -1 y4 * -1 if answer == '2': i = input('which way?') if answer == '90 cw': (x1, y1) = (y1, x1) x1 * -1 (x2, y2) = (y2, x2) x2 * -1 (x3, y3) = (y3, x3) x3 * -1 (x4, y4) = (y4, x4) x4 * -1 if answer == '90 ccw': (x1, y1) = (y1, x1) y1 * -1 (x2, y2) = (y2, x2) y2 * -1 (x3, y3) = (y3, x3) y3 * -1 (x4, y4) = (y4, x4) y4 * -1 if answer == '3': i = float(input('how many units right?')) i1 = float(input('how many units up?')) x1 + i x2 + i x3 + i x4 + i y1 + i1 y2 + i1 y3 + i1 y4 + i1 print('Step 2:') print('1-reflections') print('2-rotations') print('3-translations') answer = input('> ') if answer == '1': i = input('across what?') if i == 'y': x1 * -1 x2 * -1 x3 * -1 x4 * -1 elif i == 'x': y1 * -1 y2 * -1 y3 * -1 y4 * -1 if answer == '2': i = input('which way?') if answer == '90 cw': (x1, y1) = (y1, x1) x1 * -1 (x2, y2) = (y2, x2) x2 * -1 (x3, y3) = (y3, x3) x3 * -1 (x4, y4) = (y4, x4) x4 * -1 if answer == '90 ccw': (x1, y1) = (y1, x1) y1 * -1 (x2, y2) = (y2, x2) y2 * -1 (x3, y3) = (y3, x3) y3 * -1 (x4, y4) = (y4, x4) y4 * -1 if answer == '3': i = float(input('how many units right?')) i1 = float(input('how many units up?')) x1 + i x2 + i x3 + i x4 + i y1 + i1 y2 + i1 y3 + i1 y4 + i1 print('(', x1, ',', y1, ')') print('(', x2, ',', y2, ')') print('(', x3, ',', y3, ')') print('(', x4, ',', y4, ')')
SHOW_FILM_NAMES = True # SHOW_FILM_NAMES = False # UPDATE_TEXT_BOX_LOC = False UPDATE_TEXT_BOX_LOC = True SHORTEN_FILM_NAMES = True # READ_PARTIAL_DB = True READ_PARTIAL_DB = False # HIGH_RES = False HIGH_RES = True EXPIRE_FILM_NAMES = True # EXPIRE_FILM_NAMES = False #SLIDING_WINDOW = False SLIDING_WINDOW = True WINDOW_WIDTH = 5 # in years ADD_ZOOM_OUT = True ADD_END_DELAY = True W_HIGH_RES = 1920 H_HIGH_RES = 1080 FONT_SIZE_H_RES = 3 W_LOW_RES = 1080 H_LOW_RES = 720 FONT_SIZE_L_RES = 7 # SHOW_LEADERBOARD = False SHOW_LEADERBOARD = True TRACK_FRANCHISES = True # TRACK_FRANCHISES = False DISPOSABLE_STRINGS = [ "Captain America: ", "Thor: ", "Avengers: ", "Spider-Man: ", "Harry Potter and the ", "Fantastic Beasts: ", "Star Wars: ", "The IMAX Experience ", ": A Star Wars Story", "The Lord of the Rings: ", "The Hobbit: ", "X-Men: ", "X-Men Origins: ", " (2017)", "The Fast and the Furious: ", "Pirates of the Caribbean: ", ": Dawn of Justice" ] FRANCHISE_NAME_DICT = { 'Marvel Cinematic Universe': 'MCU', 'The Fast and the Furious': 'Fast and Furious', 'Pirates of the Caribbean': 'Pirates', 'DC Extended Universe': 'DCEU' }
show_film_names = True update_text_box_loc = True shorten_film_names = True read_partial_db = False high_res = True expire_film_names = True sliding_window = True window_width = 5 add_zoom_out = True add_end_delay = True w_high_res = 1920 h_high_res = 1080 font_size_h_res = 3 w_low_res = 1080 h_low_res = 720 font_size_l_res = 7 show_leaderboard = True track_franchises = True disposable_strings = ['Captain America: ', 'Thor: ', 'Avengers: ', 'Spider-Man: ', 'Harry Potter and the ', 'Fantastic Beasts: ', 'Star Wars: ', 'The IMAX Experience ', ': A Star Wars Story', 'The Lord of the Rings: ', 'The Hobbit: ', 'X-Men: ', 'X-Men Origins: ', ' (2017)', 'The Fast and the Furious: ', 'Pirates of the Caribbean: ', ': Dawn of Justice'] franchise_name_dict = {'Marvel Cinematic Universe': 'MCU', 'The Fast and the Furious': 'Fast and Furious', 'Pirates of the Caribbean': 'Pirates', 'DC Extended Universe': 'DCEU'}
def monkey_trouble(a_smile, b_smile): if a_smile is True and b_smile is True: return True elif a_smile is False and b_smile is False: return True else: return False
def monkey_trouble(a_smile, b_smile): if a_smile is True and b_smile is True: return True elif a_smile is False and b_smile is False: return True else: return False
class Queue: def __init__(self): self.elements = [] def __str__(self): return f"{[element for element in self.elements]}" def __repr__(self): return f"{[element for element in self.elements]}" def enqueue(self, element): self.elements.append(element) def dequeue(self): return self.elements.pop(0) def front(self): return self.elements[0] def size(self): return len(self.elements) def is_empty(self): return self.size() == 0 def main(): temp_queue = Queue() print(temp_queue.is_empty()) temp_queue.enqueue(5) temp_queue.enqueue(4) temp_queue.enqueue(3) temp_queue.enqueue(2) print(temp_queue) print(temp_queue.front()) temp_queue.dequeue() print(temp_queue.dequeue()) print(temp_queue) print(temp_queue.is_empty()) if __name__ == "__main__": main()
class Queue: def __init__(self): self.elements = [] def __str__(self): return f'{[element for element in self.elements]}' def __repr__(self): return f'{[element for element in self.elements]}' def enqueue(self, element): self.elements.append(element) def dequeue(self): return self.elements.pop(0) def front(self): return self.elements[0] def size(self): return len(self.elements) def is_empty(self): return self.size() == 0 def main(): temp_queue = queue() print(temp_queue.is_empty()) temp_queue.enqueue(5) temp_queue.enqueue(4) temp_queue.enqueue(3) temp_queue.enqueue(2) print(temp_queue) print(temp_queue.front()) temp_queue.dequeue() print(temp_queue.dequeue()) print(temp_queue) print(temp_queue.is_empty()) if __name__ == '__main__': main()
TEMP_ENV_VARS = { 'TELEGRAM_WEBHOOK_KEY': '', } ENV_VARS_TO_SUSPEND = [ ]
temp_env_vars = {'TELEGRAM_WEBHOOK_KEY': ''} env_vars_to_suspend = []
# # PySNMP MIB module ALCATEL-IND1-TIMETRA-SERV-MIB (http://snmplabs.com/pysmi) # ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALCATEL-IND1-TIMETRA-SERV-MIB # Produced by pysmi-0.3.4 at Wed May 1 11:19:44 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) # TFilterID, = mibBuilder.importSymbols("ALCATEL-IND1-TIMETRA-FILTER-MIB", "TFilterID") tmnxSRObjs, timetraSRMIBModules, tmnxSRNotifyPrefix, tmnxSRConfs = mibBuilder.importSymbols("ALCATEL-IND1-TIMETRA-GLOBAL-MIB", "tmnxSRObjs", "timetraSRMIBModules", "tmnxSRNotifyPrefix", "tmnxSRConfs") tSchedulerPolicyName, tVirtualSchedulerName = mibBuilder.importSymbols("ALCATEL-IND1-TIMETRA-QOS-MIB", "tSchedulerPolicyName", "tVirtualSchedulerName") TmnxEnabledDisabled, TmnxCustId, TNamedItem, TCIRRate, TmnxVRtrIDOrZero, TmnxManagedRouteStatus, TmnxAncpStringOrZero, ServiceAdminStatus, TmnxPortID, TmnxActionType, TmnxServId, TPIRRate, TPolicyStatementNameOrEmpty, ServiceOperStatus, SdpBindId, TmnxVPNRouteDistinguisher, TmnxEncapVal, TPortSchedulerPIR, TNamedItemOrEmpty, QTag = mibBuilder.importSymbols("ALCATEL-IND1-TIMETRA-TC-MIB", "TmnxEnabledDisabled", "TmnxCustId", "TNamedItem", "TCIRRate", "TmnxVRtrIDOrZero", "TmnxManagedRouteStatus", "TmnxAncpStringOrZero", "ServiceAdminStatus", "TmnxPortID", "TmnxActionType", "TmnxServId", "TPIRRate", "TPolicyStatementNameOrEmpty", "ServiceOperStatus", "SdpBindId", "TmnxVPNRouteDistinguisher", "TmnxEncapVal", "TPortSchedulerPIR", "TNamedItemOrEmpty", "QTag") Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier") NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues") SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint") InterfaceIndex, InterfaceIndexOrZero = mibBuilder.importSymbols("IF-MIB", "InterfaceIndex", "InterfaceIndexOrZero") InetAddressPrefixLength, InetAddress, InetAddressType = mibBuilder.importSymbols("INET-ADDRESS-MIB", "InetAddressPrefixLength", "InetAddress", "InetAddressType") NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup") ModuleIdentity, Counter64, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, TimeTicks, Counter32, IpAddress, Bits, MibIdentifier, NotificationType, Integer32, Gauge32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter64", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "TimeTicks", "Counter32", "IpAddress", "Bits", "MibIdentifier", "NotificationType", "Integer32", "Gauge32", "Unsigned32") DisplayString, TruthValue, DateAndTime, TextualConvention, MacAddress, RowStatus, TimeStamp, RowPointer = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TruthValue", "DateAndTime", "TextualConvention", "MacAddress", "RowStatus", "TimeStamp", "RowPointer") timetraServicesMIBModule = ModuleIdentity((1, 3, 6, 1, 4, 1, 6527, 1, 1, 3, 4)) timetraServicesMIBModule.setRevisions(('1908-01-01 00:00', '1907-01-01 00:00', '1906-02-28 00:00', '1905-08-31 00:00', '1905-01-24 00:00', '1904-01-15 00:00', '1903-08-15 00:00', '1903-01-20 00:00', '1900-08-14 00:00',)) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: timetraServicesMIBModule.setRevisionsDescriptions(('Rev 6.0 01 Jan 2008 00:00 6.0 release of the TIMETRA-SERV-MIB.', 'Rev 5.0 01 Jan 2007 00:00 5.0 release of the TIMETRA-SERV-MIB.', 'Rev 4.0 28 Feb 2006 00:00 4.0 release of the TIMETRA-SERV-MIB.', 'Rev 3.0 31 Aug 2005 00:00 3.0 release of the TIMETRA-SERV-MIB.', 'Rev 2.1 24 Jan 2005 00:00 2.1 release of the TIMETRA-SERV-MIB.', 'Rev 2.0 15 Jan 2004 00:00 2.0 release of the TIMETRA-SERV-MIB.', 'Rev 1.2 15 Aug 2003 00:00 1.2 release of the TIMETRA-SERV-MIB.', 'Rev 1.0 20 Jan 2003 00:00 1.0 Release of the TIMETRA-SERV-MIB.', 'Rev 0.1 14 Aug 2000 00:00 Initial version of the TIMETRA-SERV-MIB.',)) if mibBuilder.loadTexts: timetraServicesMIBModule.setLastUpdated('0801010000Z') if mibBuilder.loadTexts: timetraServicesMIBModule.setOrganization('Alcatel') if mibBuilder.loadTexts: timetraServicesMIBModule.setContactInfo('Alcatel 7x50 Support Web: http://www.alcatel.com/comps/pages/carrier_support.jhtml') if mibBuilder.loadTexts: timetraServicesMIBModule.setDescription("This document is the SNMP MIB module to manage and provision the various services of the Alcatel 7x50 SR system. Copyright 2003-2008 Alcatel-Lucent. All rights reserved. Reproduction of this document is authorized on the condition that the foregoing copyright notice is included. This SNMP MIB module (Specification) embodies Alcatel's proprietary intellectual property. Alcatel retains all title and ownership in the Specification, including any revisions. Alcatel grants all interested parties a non-exclusive license to use and distribute an unmodified copy of this Specification in connection with management of Alcatel products, and without fee, provided this copyright notice and license appear on all copies. This Specification is supplied `as is', and Alcatel makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.") tmnxServObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4)) tmnxCustObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1)) tmnxSvcObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2)) tmnxTstpNotifyObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5)) tmnxSvcNotifyObjs = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6)) tmnxServConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4)) tmnxCustConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1)) tmnxSvcConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2)) tmnxTstpConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5)) tmnxServNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4)) custTrapsPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1)) custTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0)) svcTrapsPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2)) svcTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0)) tstpTrapsPrefix = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5)) tstpTraps = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0)) class ServObjName(TextualConvention, OctetString): description = 'ASCII string used to name various service objects.' status = 'current' displayHint = '255a' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 32) class ServObjDesc(TextualConvention, OctetString): description = 'ASCII string used to describe various service objects.' status = 'current' displayHint = '255a' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 80) class ServObjLongDesc(TextualConvention, OctetString): description = 'Long ASCII string used to describe various service objects.' status = 'current' displayHint = '255a' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 160) class ServType(TextualConvention, Integer32): description = 'This textual convention is used to specify the type of a given service.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)) namedValues = NamedValues(("unknown", 0), ("epipe", 1), ("p3pipe", 2), ("tls", 3), ("vprn", 4), ("ies", 5), ("mirror", 6), ("apipe", 7), ("fpipe", 8), ("ipipe", 9), ("cpipe", 10)) class VpnId(TextualConvention, Unsigned32): description = 'A number used to identify a VPN. In general each service corresponds to a single VPN, but under some circumstances a VPN may be composed of multiple services.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 2147483647), ) class SdpId(TextualConvention, Unsigned32): description = 'A 16-bit number used to identify a Service Distribution Point. This ID must be unique only within the ESR where it is defined. The value 0 is used as the null ID.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 17407), ) class SdpTemplateId(TextualConvention, Unsigned32): description = 'A number used to uniquely identify a template for the creation of a Service Distribution Point. The value 0 is used as the null ID.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 2147483647), ) class PWTemplateId(TextualConvention, Unsigned32): description = 'A number used to uniquely identify an pseudowire (PW) template for the creation of a Service Distribution Point. The value 0 is used as the null ID.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 2147483647), ) class SdpBindTlsBpduTranslation(TextualConvention, Integer32): description = "This textual convention is used to specify whether received L2 Protocol Tunnel pdu's are translated before being sent out on a port or sap." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6)) namedValues = NamedValues(("auto", 1), ("disabled", 2), ("pvst", 3), ("stp", 4), ("cdp", 5), ("vtp", 6)) class TlsLimitMacMoveLevel(TextualConvention, Integer32): description = 'This textual convention is used to specify the hierarchy in which spoke-SDPs are blocked when a MAC-move limit is exceeded. When a MAC is moving among multiple SAPs or spoke-SDPs, the SAP bind or spoke-SDP bind with the lower level is blocked first. (tertiary is the lowest)' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("primary", 1), ("secondary", 2), ("tertiary", 3)) class TlsLimitMacMove(TextualConvention, Integer32): description = "This textual convention is used to specify the behavior when the re-learn rate specified by svcTlsMacMoveMaxRate is exceeded. A value of 'blockable' specifies that the agent will monitor the MAC relearn rate on a SAP or SDP Bind and it will block it when the re-learn rate specified by svcTlsMacMoveMaxRate is exceeded. A value of 'nonBlockable' specifies that the SAP or SDP Bind will not be blocked, and another blockable SAP or SDP Bind will be blocked instead." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("blockable", 1), ("nonBlockable", 2)) class SdpBindVcType(TextualConvention, Integer32): description = "This textual convention is used to specify the type of virtual circuit (VC) associated with the SDP binding. The value 'vpls' is no longer supported." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)) namedValues = NamedValues(("undef", 1), ("ether", 2), ("vlan", 4), ("mirror", 5), ("atmSdu", 6), ("atmCell", 7), ("atmVcc", 8), ("atmVpc", 9), ("frDlci", 10), ("ipipe", 11), ("satopE1", 12), ("satopT1", 13), ("satopE3", 14), ("satopT3", 15), ("cesopsn", 16), ("cesopsnCas", 17)) class StpExceptionCondition(TextualConvention, Integer32): description = 'This textual convention is used to specify an STP exception condition encountered on an interface - none : no exception condition found. - oneWayCommuniation : The neighbor RSTP peer on this link is not able to detect our presence. - downstreamLoopDetected : A loop is detected on this link.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("none", 1), ("oneWayCommuniation", 2), ("downstreamLoopDetected", 3)) class LspIdList(TextualConvention, OctetString): description = 'Each group of four octets in this string specify a 32-bit LSP ID, which corresponds to the vRtrMplsLspIndex of the given MPLS LSP. The LSP IDs are stored in network byte order; i.e. octet N corresponds to the most significant 8 bits of the LSP ID, and octet N+3 correspond to the least significant 8 bits. The list is terminated by the null LSP ID. The LSP IDs in this list are not required to be sorted in any specific order. The list is large enough to hold up to 16 LSP IDs, plus the null terminator.' status = 'current' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(0, 68) class BridgeId(TextualConvention, OctetString): description = 'The Bridge-Identifier used by the Spanning Tree Protocol to uniquely identify a bridge. The first two octets represent the bridge priority (in big endian format) while the remaining six octets represent the main MAC address of the bridge.' status = 'current' subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 8) fixedLength = 8 class TSapIngQueueId(TextualConvention, Unsigned32): description = 'The value used to uniquely identify a SAP ingress queue. The actual valid values are those defined in the given SAP ingress QoS policy.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(1, 32) class TSapEgrQueueId(TextualConvention, Unsigned32): description = 'The value used to uniquely identify a SAP egress queue. The actual valid values are those defined in the given SAP egress QoS policy.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(1, 8) class TStpPortState(TextualConvention, Integer32): description = 'The value used to specify the port state as defined by application of the Spanning Tree Protocol. This state controls what action a port takes on reception of a frame.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7)) namedValues = NamedValues(("disabled", 1), ("blocking", 2), ("listening", 3), ("learning", 4), ("forwarding", 5), ("broken", 6), ("discarding", 7)) class StpPortRole(TextualConvention, Integer32): description = 'the stp portrole defined by the Rapid Spanning Tree Protocol.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5)) namedValues = NamedValues(("master", 0), ("root", 1), ("designated", 2), ("alternate", 3), ("backup", 4), ("disabled", 5)) class StpProtocol(TextualConvention, Integer32): description = 'indicates all possible version of the stp protocol.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3)) namedValues = NamedValues(("notApplicable", 0), ("stp", 1), ("rstp", 2), ("mstp", 3)) class MfibLocation(TextualConvention, Integer32): description = "MfibLocation represents the type of local 'interface': -'sap': sap interface -'sdp': mesh-sdp or spoke-sdp interface." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("sap", 1), ("sdp", 2)) class MfibGrpSrcFwdOrBlk(TextualConvention, Integer32): description = 'MfibGrpSrcFwdOrBlk describes whether traffic for the related source-group is to be forwarded or blocked.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2)) namedValues = NamedValues(("forward", 1), ("block", 2)) class MvplsPruneState(TextualConvention, Integer32): description = 'Managed VPLS (mVPLS): state of a SAP or spoke-SDP in a user VPLS (uVPLS). - notApplicable : the SAP or spoke SDP of a uVPLS is not managed by a SAP or spoke SDP of a mVPLS. - notPruned: the SAP or spoke SDP of a uVPLS is managed by a mVPLS, but the link is not pruned. -pruned the SAP or spoke SDP of a uVPLS is managed by a mVPLS, but the link is pruned as a result of an STP decision taken in the STP instance running in the mVPLS.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("notApplicable", 1), ("notPruned", 2), ("pruned", 3)) class TQosQueueAttribute(TextualConvention, Bits): description = 'Indicates attributes of a QoS queue' status = 'current' namedValues = NamedValues(("cbs", 0), ("cir", 1), ("cirAdaptRule", 2), ("mbs", 3), ("pir", 4), ("pirAdaptRule", 5), ("hiPrioOnly", 6), ("avgOverhead", 7)) class TVirtSchedAttribute(TextualConvention, Bits): description = 'Indicates attributes of a virtual scheduler' status = 'current' namedValues = NamedValues(("cir", 0), ("pir", 1), ("summedCir", 2)) class MstiInstanceId(TextualConvention, Unsigned32): description = 'indicates all possible multiple spanning tree instances, not including the CIST.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(1, 4094) class MstiInstanceIdOrZero(TextualConvention, Unsigned32): description = "indicates all possible multiple spanning tree instances, including the CIST (for which case the value '0' is reserved)." status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 4094) class DhcpLseStateInfoOrigin(TextualConvention, Integer32): description = 'Indicates the originator of the provided information.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5)) namedValues = NamedValues(("none", 0), ("dhcp", 1), ("radius", 2), ("retailerRadius", 3), ("retailerDhcp", 4), ("default", 5)) class IAIDType(TextualConvention, Integer32): description = 'Indicates the type of the addresses that are associated with the Identity Association ID (IAID)' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3)) namedValues = NamedValues(("undefined", 0), ("temporary", 1), ("non-temporary", 2), ("prefix", 3)) class TdmOptionsSigPkts(TextualConvention, Integer32): description = "Encodes support for the cpipe circuit emulation (CE) application signaling packets: - 'noSigPkts' : for a cpipe that does not use signalling packets. - 'dataPkts' : for a cpipe carrying TDM data packets and expecting CE application signalling packets in a separate cpipe. - 'sigPkts' : for a cpipe carrying CE application signalling packets with the data packets in a separate cpipe. - 'dataAndSigPkts' : for a cpipe carrying TDM data and CE application signalling on the same cpipe." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3)) namedValues = NamedValues(("noSigPkts", 0), ("dataPkts", 1), ("sigPkts", 2), ("dataAndSigPkts", 3)) class TdmOptionsCasTrunkFraming(TextualConvention, Integer32): description = "Encodes the CEM SAPs CAS trunk framing type: - 'noCas' : for all CEM SAPs except 'nxDS0WithCas'. - 'e1Trunk' : for a 'nxDS0WithCas' SAP with E1 trunk. - 't1EsfTrunk' : for a 'nxDS0WithCas' SAP with T1 ESF trunk. - 't1SfTrunk' : for a 'nxDS0WithCas' SAP with T1 SF trunk." status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3)) namedValues = NamedValues(("noCas", 0), ("e1Trunk", 1), ("t1EsfTrunk", 2), ("t1SfTrunk", 3)) class CemSapReportAlarm(TextualConvention, Bits): description = 'The CemSapReportAlarm data type indicates the type of CEM SAP alarm: strayPkts - receiving stray packets. malformedPkts - detecting malformed packets. pktLoss - experiencing packet loss. bfrOverrun - experiencing jitter buffer overrun. bfrUnderrun - experiencing jitter buffer underrun. rmtPktLoss - remote packet loss indication. rmtFault - remote TDM fault indication. rmtRdi - remote RDI indication.' status = 'current' namedValues = NamedValues(("notUsed", 0), ("strayPkts", 1), ("malformedPkts", 2), ("pktLoss", 3), ("bfrOverrun", 4), ("bfrUnderrun", 5), ("rmtPktLoss", 6), ("rmtFault", 7), ("rmtRdi", 8)) class CemSapEcid(TextualConvention, Unsigned32): description = 'The Emulated Circuit Identifier (ECID) is a 20 bit unsigned binary field containing an identifier for the circuit being emulated. ECIDs have local significance only and are associated with a specific MAC address. Therefore the SAP can have a different ECID for each direction.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 1048575) class SdpBFHundredthsOfPercent(TextualConvention, Integer32): description = 'The percentage of total SDP bandwidth reserved for SDP bindings with two decimal places accuracy.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 10000) class SdpBindBandwidth(TextualConvention, Unsigned32): description = 'The required SDP binding bandwidth, in kbps.' status = 'current' subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 100000000) class L2ptProtocols(TextualConvention, Bits): description = "The L2ptProtocols indicates which L2 protocols should have their tunnels terminated when 'L2ptTermination' is enabled. stp - spanning tree protocols stp/mstp/pvst/rstp cdp - cisco discovery protocol vtp - virtual trunk protocol dtp - dynamic trunking protocol pagp - port aggregation protocol udld - unidirectional link detection" status = 'current' namedValues = NamedValues(("stp", 0), ("cdp", 1), ("vtp", 2), ("dtp", 3), ("pagp", 4), ("udld", 5)) class SvcISID(TextualConvention, Integer32): description = 'The SvcISID specifies a 24 bit (0..16777215) service instance identifier for the service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. The value of -1 is used to indicate the value of this object is un-specified.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(ValueRangeConstraint(-1, -1), ValueRangeConstraint(0, 16777215), ) class L2RouteOrigin(TextualConvention, Integer32): description = 'The L2RouteOrigin indicates the source from which an L2 route was learned.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("manual", 1), ("bgp-l2vpn", 2), ("radius", 3)) class ConfigStatus(TextualConvention, Integer32): description = 'The ConfigStatus indicates the status of the configuration for the purpose of notifications.' status = 'current' subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3)) namedValues = NamedValues(("created", 1), ("modified", 2), ("deleted", 3)) custNumEntries = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: custNumEntries.setStatus('current') if mibBuilder.loadTexts: custNumEntries.setDescription('The value of the object custNumEntries indicates the current number of customer records configured in this device.') custNextFreeId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 2), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: custNextFreeId.setStatus('current') if mibBuilder.loadTexts: custNextFreeId.setDescription('The value of the object custNextFreeId indicates the next available value for custId, the index for the custInfoTable.') custInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3), ) if mibBuilder.loadTexts: custInfoTable.setStatus('current') if mibBuilder.loadTexts: custInfoTable.setDescription('A table that contains customer information. There is an entry in this table corresponding to the default customer. This entry cannot be edited or deleted, and it is used as the default customer for newly created services.') custInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId")) if mibBuilder.loadTexts: custInfoEntry.setStatus('current') if mibBuilder.loadTexts: custInfoEntry.setDescription('Information about a specific customer.') custId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 1), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: custId.setStatus('current') if mibBuilder.loadTexts: custId.setDescription('Customer identifier. This ID must be unique within a service domain.') custRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custRowStatus.setStatus('current') if mibBuilder.loadTexts: custRowStatus.setDescription('The value of the object custRowStatus specifies the status of this row.') custDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 3), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custDescription.setStatus('current') if mibBuilder.loadTexts: custDescription.setDescription('The value of the object custDescription specifies optional, generic information about this customer in a displayable format.') custContact = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 4), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custContact.setStatus('current') if mibBuilder.loadTexts: custContact.setDescription('The value of the object custContact specifies the name of the primary contact person for this customer.') custPhone = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 5), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custPhone.setStatus('current') if mibBuilder.loadTexts: custPhone.setDescription('The value of the object custPhone specifies the phone/pager number used to reach the primary contact person.') custLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 6), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: custLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custLastMgmtChange.setDescription('The value of the object custLastMgmtChange indicates the value of the object sysUpTime at the time of the most recent management-initiated change to this customer.') custMultiServiceSiteTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4), ) if mibBuilder.loadTexts: custMultiServiceSiteTable.setStatus('current') if mibBuilder.loadTexts: custMultiServiceSiteTable.setDescription('') custMultiServiceSiteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName")) if mibBuilder.loadTexts: custMultiServiceSiteEntry.setStatus('current') if mibBuilder.loadTexts: custMultiServiceSiteEntry.setDescription("Information about a specific customer's multi-service site.") custMultSvcSiteName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 1), TNamedItem()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteName.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteName.setDescription('') custMultSvcSiteRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteRowStatus.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteRowStatus.setDescription('The value of the object custMultSvcSiteRowStatus specifies the status of this row.') custMultSvcSiteDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 3), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteDescription.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteDescription.setDescription("The value of the object custMultSvcSiteDescription specifies option, generic information about this customer's Multi-Service Site.") custMultSvcSiteScope = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port", 1), ("card", 2))).clone('port')).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteScope.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteScope.setDescription("The value of the object custMultSvcSiteScope specifies the scope of the ingress and egress QoS scheduler policies assigned to this Multi-Service Site. When the value is 'port' all the SAPs that are members of this Multi-Service Site must be defined on the same port. Similarly for the case of'card'.") custMultSvcSiteAssignment = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 5), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteAssignment.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteAssignment.setDescription('The value of the object custMultSvcSiteAssignment specifies the port ID, MDA, or card number, where the SAPs that are members of this Multi- Service Site are defined.') custMultSvcSiteIngressSchedulerPolicy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 6), ServObjName()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteIngressSchedulerPolicy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIngressSchedulerPolicy.setDescription('The value of the object custMultSvcSiteIngressSchedulerPolicy specifies the ingress QoS scheduler policy assigned to this Multi-Service Site.') custMultSvcSiteEgressSchedulerPolicy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 7), ServObjName()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteEgressSchedulerPolicy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteEgressSchedulerPolicy.setDescription('The value of the object custMultSvcSiteEgressSchedulerPolicy specifies the egress QoS scheduler policy assigned to this Multi-Service Site.') custMultSvcSiteLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 8), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteLastMgmtChange.setDescription('The value of the object custMultSvcSiteLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this multi-service site.') custMultSvcSiteTodSuite = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 9), TNamedItemOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteTodSuite.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteTodSuite.setDescription('The value of the object custMultSvcSiteTodSuite specifies the Time of Day (ToD) suite to be applied on this multi-service site. An empty string indicates that no ToD suite is applied on this multi-service Site. A set request will only be allowed, if the indicated suite is defined is TIMETRA-SCHEDULER-MIB::tmnxTodSuiteTable. Using a suite the values of custMultSvcSiteIngressSchedulerPolicy and custMultSvcSiteEgressSchedulerPolicy can be time based manipulated.') custMultSvcSiteCurrentIngrSchedPlcy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 10), ServObjName()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteCurrentIngrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteCurrentIngrSchedPlcy.setDescription('The value of the object custMultSvcSiteCurrentIngrSchedPlcy indicates the Ingress QoS scheduler on this multi-service Site, or zero if none is currently active. The active policy may deviate from custMultSvcSiteIngressSchedulerPolicy in case it is overruled by a ToD-suite policy defined on this multi-service site.') custMultSvcSiteCurrentEgrSchedPlcy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 11), ServObjName()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteCurrentEgrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteCurrentEgrSchedPlcy.setDescription('The value of the object custMultSvcSiteCurrentEgrSchedPlcy indicates the Egress QoS scheduler on this SAP, or zero if none is currently active. The active policy may deviate from the sapEgressQosSchedulerPolicy in case it is overruled by a ToD-suite policy defined on this multi-service site.') custMultSvcSiteEgressAggRateLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 12), TPortSchedulerPIR().clone(-1)).setUnits('kbps').setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteEgressAggRateLimit.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteEgressAggRateLimit.setDescription("The value of the object custMultSvcSiteEgressAggRateLimit specifies the maximum total rate of all egress queues for this multi-service site. The value '-1' means that there is no limit.") custMultSvcSiteIntendedIngrSchedPlcy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 13), ServObjName()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteIntendedIngrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIntendedIngrSchedPlcy.setDescription('The value of the object custMultSvcSiteIntendedIngrSchedPlcy indicates indicates the Ingress QoS scheduler on this multi-service Site that should be applied. If it deviates from custMultSvcSiteCurrentIngrSchedPlcy, this means that there was a problem when trying to activate this filter. It can only deviate when using tod-suites for the SAP. When the tod-suites decides that a new filter must be applied, it will try to do this. If it fails, the current and intended field are not equal.') custMultSvcSiteIntendedEgrSchedPlcy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 14), ServObjName()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMultSvcSiteIntendedEgrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIntendedEgrSchedPlcy.setDescription('The value of the object custMultSvcSiteIntendedEgrSchedPlcy indicates indicates the Egress QoS scheduler on this multi-service Site that should be applied. If it deviates from custMultSvcSiteCurrentEgrSchedPlcy, this means that there was a problem when trying to activate this filter. It can only deviate when using tod-suites for the SAP. When the tod-suites decides that a new filter must be applied, it will try to do this. If it fails, the current and intended field are not equal.') custMultSvcSiteFrameBasedAccnt = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 15), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMultSvcSiteFrameBasedAccnt.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteFrameBasedAccnt.setDescription("The value of custMultSvcSiteFrameBasedAccnt specifies whether to use frame-based accounting when evaluating custMultSvcSiteEgressAggRateLimit for the egress queues for this multi-service site. If the value is 'false', the default packet-based accounting method will be used.") custMultiSvcSiteIngStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5), ) if mibBuilder.loadTexts: custMultiSvcSiteIngStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngStatsTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site.') custMultiSvcSiteIngStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosSchedName")) if mibBuilder.loadTexts: custMultiSvcSiteIngStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngStatsEntry.setDescription('Ingress statistics about a specific customer multi service site ingress scheduler.') custIngQosSchedName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custIngQosSchedName.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedName.setDescription('The index of the ingress QoS scheduler of this customer multi service site.') custIngQosSchedStatsForwardedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngQosSchedStatsForwardedPackets.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedPackets.setDescription('The value of the object custIngQosSchedStatsForwardedPackets indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') custIngQosSchedStatsForwardedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngQosSchedStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedOctets.setDescription('The value of the object custIngQosSchedStatsForwardedOctets indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') custMultiSvcSiteEgrStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6), ) if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site.') custMultiSvcSiteEgrStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosSchedName")) if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsEntry.setDescription('Egress statistics about a specific customer multi service site egress scheduler.') custEgrQosSchedName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custEgrQosSchedName.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedName.setDescription('The index of the egress QoS scheduler of this customer multi service site.') custEgrQosSchedStatsForwardedPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedPackets.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedPackets.setDescription('The value of the object custEgrQosSchedStatsForwardedPackets indicates number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') custEgrQosSchedStatsForwardedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedOctets.setDescription('The value of the object custEgrQosSchedStatsForwardedOctets indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') custIngQosPortIdSchedStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7), ) if mibBuilder.loadTexts: custIngQosPortIdSchedStatsTable.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedStatsTable.setDescription('The custIngQosPortIdSchedStatsTable contains ingress QoS scheduler statistics for the customer multi service site.') custIngQosPortIdSchedStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosPortIdSchedName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosAssignmentPortId")) if mibBuilder.loadTexts: custIngQosPortIdSchedStatsEntry.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedStatsEntry.setDescription('Each entry represents the ingress statistics about a specific customer multi service site ingress scheduler. Entries are created when a scheduler policy is applied to an MSS.') custIngQosPortIdSchedName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custIngQosPortIdSchedName.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedName.setDescription('The value of custIngQosPortIdSchedName is used as an index of the ingress QoS scheduler of this customer multi service site.') custIngQosAssignmentPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 2), TmnxPortID()) if mibBuilder.loadTexts: custIngQosAssignmentPortId.setStatus('current') if mibBuilder.loadTexts: custIngQosAssignmentPortId.setDescription("The value of custIngQosAssignmentPortId is used as an index of the ingress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") custIngQosPortSchedFwdPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngQosPortSchedFwdPkts.setStatus('current') if mibBuilder.loadTexts: custIngQosPortSchedFwdPkts.setDescription('The value of custIngQosPortSchedFwdPkts indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') custIngQosPortSchedFwdOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngQosPortSchedFwdOctets.setStatus('current') if mibBuilder.loadTexts: custIngQosPortSchedFwdOctets.setDescription('The value of custIngQosPortSchedFwdOctets indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') custEgrQosPortIdSchedStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8), ) if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsTable.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsTable.setDescription('The custEgrQosPortIdSchedStatsTable contains egress QoS scheduler statistics for the customer multi service site.') custEgrQosPortIdSchedStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosPortIdSchedName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosAssignmentPortId")) if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsEntry.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsEntry.setDescription('Each row entry represents the egress statistics for a customer multi-service-site egress scheduler. Entries are created when a scheduler policy is applied to an MSS.') custEgrQosPortIdSchedName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custEgrQosPortIdSchedName.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedName.setDescription('The value of custEgrQosPortIdSchedName is used as an index of the egress QoS scheduler of this customer multi service site.') custEgrQosAssignmentPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 2), TmnxPortID()) if mibBuilder.loadTexts: custEgrQosAssignmentPortId.setStatus('current') if mibBuilder.loadTexts: custEgrQosAssignmentPortId.setDescription("The value of custEgrQosAssignmentPortId is used as an index of the egress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") custEgrQosPortSchedFwdPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrQosPortSchedFwdPkts.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortSchedFwdPkts.setDescription('The value of custEgrQosPortSchedFwdPkts indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') custEgrQosPortSchedFwdOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrQosPortSchedFwdOctets.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortSchedFwdOctets.setDescription('The value of custEgrQosPortSchedFwdOctets indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') custMssIngQosSchedInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9), ) if mibBuilder.loadTexts: custMssIngQosSchedInfoTable.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSchedInfoTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site.') custMssIngQosSchedInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSName")) if mibBuilder.loadTexts: custMssIngQosSchedInfoEntry.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSchedInfoEntry.setDescription('Ingress statistics about a specific customer multi service site ingress scheduler.') custMssIngQosSName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custMssIngQosSName.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSName.setDescription('The value of custMssIngQosSName indicates the name of the virtual scheduler whose parameters are to be overridden.') custMssIngQosSRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssIngQosSRowStatus.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSRowStatus.setDescription('The value of custMssIngQosSRowStatus controls the creation and deletion of rows in this table.') custMssIngQosSLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMssIngQosSLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSLastMgmtChange.setDescription('The value of custMssIngQosSLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') custMssIngQosSOverrideFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 4), TVirtSchedAttribute()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssIngQosSOverrideFlags.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSOverrideFlags.setDescription("The value of custMssIngQosSOverrideFlags specifies the set of attributes whose values have been overridden via management on this virtual scheduler. Clearing a given flag will return the corresponding overridden attribute to the value defined on the SAP's ingress scheduler policy.") custMssIngQosSPIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 5), TPIRRate().clone(-1)).setUnits('kilo bits per second').setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssIngQosSPIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSPIR.setDescription('The value of custMssIngQosSPIR specifies the desired PIR value for this virtual scheduler.') custMssIngQosSCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 6), TCIRRate().clone(-1)).setUnits('kilo bits per second').setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssIngQosSCIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSCIR.setDescription('The value of custMssIngQosSCIR specifies the desired CIR value for this virtual scheduler.') custMssIngQosSSummedCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 7), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssIngQosSSummedCIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSSummedCIR.setDescription("The value of custMssIngQosSSummedCIR specifies if the CIR should be used as the summed CIR values of the children schedulers or queues. If set to 'true', the applicable scheduler CIR (custMssIngQosSCIR) loses its meaning.") custMssEgrQosSchedInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10), ) if mibBuilder.loadTexts: custMssEgrQosSchedInfoTable.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSchedInfoTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site.') custMssEgrQosSchedInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSName")) if mibBuilder.loadTexts: custMssEgrQosSchedInfoEntry.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSchedInfoEntry.setDescription('Egrress statistics about a specific customer multi service site egress scheduler.') custMssEgrQosSName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 1), TNamedItem()) if mibBuilder.loadTexts: custMssEgrQosSName.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSName.setDescription('The value of custMssEgrQosSName indicates the name of the virtual scheduler whose parameters are to be overridden.') custMssEgrQosSRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssEgrQosSRowStatus.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSRowStatus.setDescription('The value of custMssEgrQosSRowStatus controls the creation and deletion of rows in this table.') custMssEgrQosSLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: custMssEgrQosSLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSLastMgmtChange.setDescription('The value of custMssEgrQosSLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') custMssEgrQosSOverrideFlags = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 4), TVirtSchedAttribute()).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssEgrQosSOverrideFlags.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSOverrideFlags.setDescription("The value of custMssEgrQosSOverrideFlags specifies the set of attributes whose values have been overridden via management on this virtual scheduler. Clearing a given flag will return the corresponding overridden attribute to the value defined on the SAP's ingress scheduler policy.") custMssEgrQosSPIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 5), TPIRRate().clone(-1)).setUnits('kilo bits per second').setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssEgrQosSPIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSPIR.setDescription('The value of custMssEgrQosSPIR specifies the desired PIR value for this virtual scheduler.') custMssEgrQosSCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 6), TCIRRate().clone(-1)).setUnits('kilo bits per second').setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssEgrQosSCIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSCIR.setDescription('The value of custMssEgrQosSCIR specifies the desired CIR value for this virtual scheduler.') custMssEgrQosSSummedCIR = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 7), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: custMssEgrQosSSummedCIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSSummedCIR.setDescription("The value of custMssEgrQosSSummedCIR specifies if the CIR should be used as the summed CIR values of the children schedulers or queues. If set to 'true', the applicable scheduler CIR (custMssEgrQosSCIR) loses its meaning.") custMultiSvcSiteIngSchedPlcyStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11), ) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') custMultiSvcSiteIngSchedPlcyStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tSchedulerPolicyName"), (1, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tVirtualSchedulerName")) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsEntry.setDescription('Ingress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') custIngSchedPlcyStatsFwdPkt = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1, 1), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdPkt.setDescription('The value of the object custIngSchedPlcyStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') custIngSchedPlcyStatsFwdOct = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdOct.setDescription('The value of the object custIngSchedPlcyStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') custMultiSvcSiteEgrSchedPlcyStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12), ) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') custMultiSvcSiteEgrSchedPlcyStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tSchedulerPolicyName"), (1, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tVirtualSchedulerName")) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsEntry.setDescription('Egress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') custEgrSchedPlcyStatsFwdPkt = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1, 1), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdPkt.setDescription('The value of the object custEgrSchedPlcyStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') custEgrSchedPlcyStatsFwdOct = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdOct.setDescription('The value of the object custEgrSchedPlcyStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') custMultiSvcSiteIngSchedPlcyPortStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13), ) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsTable.setDescription('The custMultiSvcSiteIngSchedPlcyPortStatsTable contains ingress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') custMultiSvcSiteIngSchedPlcyPortStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tSchedulerPolicyName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tVirtualSchedulerName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngSchedPlcyPortStatsPort")) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsEntry.setDescription('Each entry represents the ingress statistics about a specific customer multi service site ingress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') custIngSchedPlcyPortStatsPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 1), TmnxPortID()) if mibBuilder.loadTexts: custIngSchedPlcyPortStatsPort.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsPort.setDescription("The value of custIngSchedPlcyPortStatsPort is used as an index of the ingress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") custIngSchedPlcyPortStatsFwdPkt = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdPkt.setDescription('The value of custIngSchedPlcyPortStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') custIngSchedPlcyPortStatsFwdOct = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdOct.setDescription('The value of custIngSchedPlcyPortStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') custMultiSvcSiteEgrSchedPlcyPortStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14), ) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsTable.setDescription('The custMultiSvcSiteEgrSchedPlcyPortStatsTable contains egress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') custMultiSvcSiteEgrSchedPlcyPortStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tSchedulerPolicyName"), (0, "ALCATEL-IND1-TIMETRA-QOS-MIB", "tVirtualSchedulerName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrSchedPlcyPortStatsPort")) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsEntry.setDescription('Each entry represents the egress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') custEgrSchedPlcyPortStatsPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 1), TmnxPortID()) if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsPort.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsPort.setDescription("The value of custEgrSchedPlcyPortStatsPort is used as an index of the egress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") custEgrSchedPlcyPortStatsFwdPkt = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 2), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdPkt.setDescription('The value of custEgrSchedPlcyPortStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') custEgrSchedPlcyPortStatsFwdOct = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdOct.setDescription('The value of custEgrSchedPlcyPortStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') custCreated = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 1)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId")) if mibBuilder.loadTexts: custCreated.setStatus('obsolete') if mibBuilder.loadTexts: custCreated.setDescription('The trap custCreated is sent when a new row is created in the custInfoTable.') custDeleted = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 2)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId")) if mibBuilder.loadTexts: custDeleted.setStatus('obsolete') if mibBuilder.loadTexts: custDeleted.setDescription('The trap custDeleted is sent when an existing row is deleted from the custInfoTable.') custMultSvcSiteCreated = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 3)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName")) if mibBuilder.loadTexts: custMultSvcSiteCreated.setStatus('obsolete') if mibBuilder.loadTexts: custMultSvcSiteCreated.setDescription('The trap custMultSvcSiteCreated is sent when a new row is created in the custMultiServiceSiteTable.') custMultSvcSiteDeleted = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 4)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName")) if mibBuilder.loadTexts: custMultSvcSiteDeleted.setStatus('obsolete') if mibBuilder.loadTexts: custMultSvcSiteDeleted.setDescription('The trap custMultSvcSiteDeleted is sent when an existing row is deleted from the custMultiServiceSiteTable.') svcNumEntries = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 1), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcNumEntries.setStatus('current') if mibBuilder.loadTexts: svcNumEntries.setDescription('The current number of services configured on this node.') svcBaseInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2), ) if mibBuilder.loadTexts: svcBaseInfoTable.setStatus('current') if mibBuilder.loadTexts: svcBaseInfoTable.setDescription('A table that contains basic service information.') svcBaseInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: svcBaseInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcBaseInfoEntry.setDescription('Basic information about a specific service.') svcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 1), TmnxServId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcId.setStatus('current') if mibBuilder.loadTexts: svcId.setDescription('The value of the object svcId specifies the Service identifier. This value should be unique within the service domain.') svcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRowStatus.setStatus('current') if mibBuilder.loadTexts: svcRowStatus.setDescription("This value of the object svcRowStatus specifies the status of this row. To delete an entry from this table, the corresponding service must be administratively down, have no SAP's defined on it, and have no SDP bindings. For svcType 'vprn', the service can be associated with a routing instance by specifying svcVRouterId during the creation of the service. The value of the object svcVplsType specifies the VPLS service type. The value of this object must be specified when the row is created and cannot be changed while the svcRowStatus is 'active'.") svcType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 3), ServType()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcType.setStatus('current') if mibBuilder.loadTexts: svcType.setDescription("The value of the object svcType specifies the service type: e.g. epipe, tls, etc. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svcCustId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 4), TmnxCustId()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcCustId.setStatus('current') if mibBuilder.loadTexts: svcCustId.setDescription("The value of the object svcCustId specifies the ID of the customer who owns this service. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svcIpRouting = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 5), TmnxEnabledDisabled()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcIpRouting.setStatus('current') if mibBuilder.loadTexts: svcIpRouting.setDescription("The value of the object svcIpRouting specifies, for a 'tls' service, whether IP routing is enabled. For 'epipe', 'p3pipe', 'apipe', 'fpipe', 'ipipe' and 'cpipe' services, this object cannot be set and has the value 'disabled', whereas for 'vprn' and 'ies' services the value is 'enabled' and cannot be set either. For 'tls' services the value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svcDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 6), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcDescription.setStatus('current') if mibBuilder.loadTexts: svcDescription.setDescription('The value of the object svcDescription specifiers an optional, generic information about this service.') svcMtu = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9194))).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcMtu.setStatus('current') if mibBuilder.loadTexts: svcMtu.setDescription('The value of the object svcMtu specifies the largest frame size (in octets) that this service can handle. The default value of this object depends on the service type: 1514 octets for epipe, p3pipe and tls, 1508 for apipe and fpipe, and 1500 octets for vprn, ipipe and ies, 1514 octets for cpipe.') svcAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 8), ServiceAdminStatus().clone('down')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcAdminStatus.setDescription('The value of the object svcAdminStatus specifies the desired state of this service.') svcOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 9), ServiceOperStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcOperStatus.setStatus('current') if mibBuilder.loadTexts: svcOperStatus.setDescription("The value of the object svcOperStatus indicates the operating state of this service. The requirements for a service to be operationally up depend on the service type: epipe, p3pipe, apipe, fpipe, ipipe and cpipe services are 'up' when the service is administratively up and either both SAP's or a SAP and a spoke SDP Bind are operationally up. tls services are 'up' when the service is administratively up and either at least two SAP's or spoke SDP Bind's, or one SAP or spoke SDP Bind and at least one mesh SDP Bind are operationally up. vprn and ies services are 'up' when the service is administratively up and at least one interface is operationally up.") svcNumSaps = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 10), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcNumSaps.setStatus('current') if mibBuilder.loadTexts: svcNumSaps.setDescription('The value of the object svcNumSaps indicates the number of SAPs defined on this service.') svcNumSdps = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 11), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcNumSdps.setStatus('current') if mibBuilder.loadTexts: svcNumSdps.setDescription('The value of the object svcNumSdps indicates the number of SDPs bound to this service.') svcLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 12), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: svcLastMgmtChange.setDescription('The value of of the object svcLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this service.') svcDefMeshVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 13), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcDefMeshVcId.setStatus('current') if mibBuilder.loadTexts: svcDefMeshVcId.setDescription('The value of the object svcDefMeshVcId specifies, only in services that accept mesh SDP bindings, the VC ID portion of the sdpBindId index of each mesh SDP binding defined in the service. The default value of this object is equal to the service ID.') svcVpnId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 14), VpnId()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcVpnId.setStatus('current') if mibBuilder.loadTexts: svcVpnId.setDescription('The value of the object svcVpnId specifies the VPN ID assigned to this service. The value of this object can be specified only when the row is created. If the value is not specified, it defaults to the service ID.') svcVRouterId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 15), TmnxVRtrIDOrZero()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcVRouterId.setStatus('current') if mibBuilder.loadTexts: svcVRouterId.setDescription('The value of the object svcVRouterId specifies, for a IES or VPRN service the associated virtual router instance where its interfaces are defined. This object has a special significance for the VPRN service as it can be used to associate the service to a specific virtual router instance. If no routing instance is specified or a value of zero (0) is specified, the agent will assign the vRtrID index value that would have been returned by the vRtrNextVRtrID object in the ALCATEL-IND1-TIMETRA-VRTR-MIB. The agent supports an SNMP SET operation to the svcVRouterId object only during row creation.') svcAutoBind = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("gre", 2), ("ldp", 3))).clone('none')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcAutoBind.setStatus('current') if mibBuilder.loadTexts: svcAutoBind.setDescription('The value of the object svcAutoBind specifies, for a VPRN service, the type of lookup to be used by the routing instance if no SDP to the destination exists.') svcLastStatusChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 17), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcLastStatusChange.setStatus('current') if mibBuilder.loadTexts: svcLastStatusChange.setDescription('The value of the object svcLastStatusChange indicates the value of sysUpTime at the time of the most recent operating status change to his service.') svcVllType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("undef", 1), ("atmSdu", 6), ("atmCell", 7), ("atmVcc", 8), ("atmVpc", 9), ("frDlci", 10), ("satopE1", 12), ("satopT1", 13), ("satopE3", 14), ("satopT3", 15), ("cesopsn", 16), ("cesopsnCas", 17)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcVllType.setStatus('current') if mibBuilder.loadTexts: svcVllType.setDescription("The value of the object svcVllType specifies, for a apipe, fpipe or cpipe service, the type of pseudo-wire to be signalled for the service. The default for this object depends on the service type: 'atmSdu' for apipes, 'frDlci' for fpipes, satopE1 for cpipes, and 'undef' for all other service types.") svcMgmtVpls = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 19), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcMgmtVpls.setStatus('current') if mibBuilder.loadTexts: svcMgmtVpls.setDescription("The value of the object svcMgmtVpls specifies, only if svcType = 'tls' whether or not the service is a management vpls. If set to false the service is acting as a regular VPLS service. If set to true, the service is acting as a management VPLS service. This implies that RSTP will always be enabled, and that the conclusions of this RSTP can be associated to different (regular) VPLSs. The value of this object cannot be changed after creation.") svcRadiusDiscovery = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 20), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRadiusDiscovery.setStatus('current') if mibBuilder.loadTexts: svcRadiusDiscovery.setDescription('The value of the object svcRadiusDiscovery specifies whether RADIUS auto-discovery is enabled on this service.') svcRadiusUserNameType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("vpn-id", 1), ("router-distinguisher", 2))).clone('none')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRadiusUserNameType.setStatus('current') if mibBuilder.loadTexts: svcRadiusUserNameType.setDescription("The value of the object svcRadiusUserNameType specifies whether RADIUS user name is vpn-id or router-distinguisher. By default, the value of this object is 'none'. svcRadiusUserNameType and svcRadiusUserName, which indicates the RADIUS username, must be set together in the same SNMP request PDU if svcRadiusUserNameType is vpn-id or router-distinguisher or else the set request will fail with an inconsistentValue error.") svcRadiusUserName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 22), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRadiusUserName.setStatus('current') if mibBuilder.loadTexts: svcRadiusUserName.setDescription('The value of the object svcRadiusUserName specifies the RADIUS user name. svcRadiusUserNameType specifies the type of the username and has to be set along with svcRadiusUserName when svcRadiusUserName can either be a vpn-id or a router-distinguisher.') svcVcSwitching = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 23), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcVcSwitching.setStatus('current') if mibBuilder.loadTexts: svcVcSwitching.setDescription('The value of the object svcVcSwitching specifies if the PW switching signalling is used for the Spokes configured under the service. This object can only be specified when the row is created.') svcRadiusPEDiscPolicy = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 24), TNamedItemOrEmpty()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRadiusPEDiscPolicy.setStatus('current') if mibBuilder.loadTexts: svcRadiusPEDiscPolicy.setDescription('The value of the object svcRadiusPEDiscPolicy specifies the RADIUS PE Discovery Policy name. ') svcRadiusDiscoveryShutdown = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 25), ServiceAdminStatus().clone('down')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcRadiusDiscoveryShutdown.setStatus('current') if mibBuilder.loadTexts: svcRadiusDiscoveryShutdown.setDescription("The value of svcRadiusDiscoveryShutdown specifies the desired administrative state for the RADIUS auto-discovery server. When the server is 'down' the operational state of the server is disabled. By default, state of the RADIUS auto-discovery server is 'down'.") svcVplsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("bVpls", 2), ("iVpls", 3))).clone('none')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcVplsType.setStatus('current') if mibBuilder.loadTexts: svcVplsType.setDescription("Backbone VPLS ('bVpls') refers to the B-Component instance of the Provider Backbone Bridging (PBB/IEEE 802.1ah) feature. It represents the Multi-point tunneling component that multiplexes multiple Customer VPNs (ISIDs) together. It is similar to a regular VPLS instance that operates on the Backbone MAC addresses. ISID VPLS ('iVpls') or I-VPLS refers to the I-Component instance of the Provider Backbone Bridging (PBB/IEEE 802.1ah) feature. It identifies the specific VPN entity associated to a customer Multipoint (ELAN) service. It is similar to a regular VPLS instance that operates on the Customer MAC addresses. The value of the object svcVplsType specifies the VPLS service type. The value of this object must be specified when the row is created and cannot be changed while the svcRowStatus is 'active'.") svcTlsInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3), ) if mibBuilder.loadTexts: svcTlsInfoTable.setStatus('current') if mibBuilder.loadTexts: svcTlsInfoTable.setDescription('A table that contains TLS service information.') svcTlsInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: svcTlsInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsInfoEntry.setDescription('TLS specific information about a service.') svcTlsMacLearning = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 1), TmnxEnabledDisabled().clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacLearning.setStatus('current') if mibBuilder.loadTexts: svcTlsMacLearning.setDescription('The value of the object svcTlsMacLearning specifies whether the MAC learning process is enabled in this TLS.') svcTlsDiscardUnknownDest = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 2), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsDiscardUnknownDest.setStatus('current') if mibBuilder.loadTexts: svcTlsDiscardUnknownDest.setDescription('The value of the object svcTlsDiscardUnknownDest specifies whether frames received with an unknown destination MAC are discarded in this TLS.') svcTlsFdbTableSize = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 196607)).clone(250)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsFdbTableSize.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableSize.setDescription("The value of the object svcTlsFdbTableSize specifies the maximum number of learned and static entries allowed in the FDB of this service. When the value of ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the maximum value of svcTlsFdbTableSize is '131071'.") svcTlsFdbNumEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumEntries.setDescription('The value of the object svcTlsFdbNumEntries indicates the current number of entries in the FDB of this service.') svcTlsFdbNumStaticEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 5), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumStaticEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumStaticEntries.setDescription('The value of the object svcTlsFdbNumStaticEntries indicates the current number of static entries in the FDB of this service.') svcTlsFdbLocalAgeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 86400)).clone(300)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsFdbLocalAgeTime.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbLocalAgeTime.setDescription('The value of the object svcTlsFdbLocalAgeTime specifies the number of seconds used to age out TLS FDB entries learned on local SAPs.') svcTlsFdbRemoteAgeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(60, 86400)).clone(900)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsFdbRemoteAgeTime.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbRemoteAgeTime.setDescription('The value of the object svcTlsFdbRemoteAgeTime specifies the number of seconds used to age out TLS FDB entries learned on an SDP. These entries correspond to MAC addresses learned on remote SAPs.') svcTlsStpAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 8), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpAdminStatus.setDescription('The value of the object svcTlsStpAdminStatus specifies the administrative state of the Spanning Tree Protocol instance associated with this service.') svcTlsStpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(32768)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpPriority.setStatus('current') if mibBuilder.loadTexts: svcTlsStpPriority.setDescription("The value of the object svcTlsStpPriority specifies the priority of the Spanning Tree Protocol instance associated with this service. It is used as the highest 4 bits of the Bridge ID included in the Configuration BPDU's generated by this bridge. The svcTlsStpPriority can only take-on values which multiples of 4096 (4k). If a value is specified which is not a multiple of 4K, then this value will be replaced by the closest multiple of 4K which is lower then the value entered.") svcTlsStpBridgeAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 10), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpBridgeAddress.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeAddress.setDescription("The value of the object svcTlsStpBridgeAddress indicates the MAC address used to identify this bridge in the network. It is used as the last six octets of the Bridge ID included in the Configuration BPDU's generated by this bridge. The most significant 38 bits of the bridge address are taken from the base MAC address of the device, while the least significant 10 bits are based on the corresponding TLS instance ID.") svcTlsStpTimeSinceTopologyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 11), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpTimeSinceTopologyChange.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTimeSinceTopologyChange.setDescription('The value of the object svcTlsStpTimeSinceTopologyChange indicates the time (in hundredths of a second) since the last time a topology change was detected by the Spanning Tree Protocol instance associated with this service.') svcTlsStpTopologyChanges = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 12), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpTopologyChanges.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTopologyChanges.setDescription('The value of the object svcTlsStpTopologyChanges indicates the total number of topology changes detected by the Spanning Tree Protocol instance associated with this service since the management entity was last reset or initialized.') svcTlsStpDesignatedRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 13), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpDesignatedRoot.setStatus('current') if mibBuilder.loadTexts: svcTlsStpDesignatedRoot.setDescription('The value of the object svcTlsStpDesignatedRoot indicates the bridge identifier of the root of the spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the Root Identifier parameter in all Configuration BPDUs originated by this node.') svcTlsStpRootCost = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 14), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpRootCost.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRootCost.setDescription('The value of the object svcTlsStpRootCost indicates the cost of the path to the root bridge as seen from this bridge.') svcTlsStpRootPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 15), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpRootPort.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRootPort.setDescription('The value of the object svcTlsStpRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the root bridge.') svcTlsStpMaxAge = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 16), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpMaxAge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpMaxAge.setDescription('The value of the object svcTlsStpMaxAge indicates the maximum age of Spanning Tree Protocol information learned from the network on any port before it is discarded. This is the actual value that this bridge is currently using.') svcTlsStpHelloTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 17), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpHelloTime.setStatus('current') if mibBuilder.loadTexts: svcTlsStpHelloTime.setDescription('The value of the object svcTlsStpHelloTime indicates the amount of time between the transmission of Configuration BPDUs. This is the actual value that this bridge is currently using.') svcTlsStpHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 18), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpHoldTime.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsStpHoldTime.setDescription('The value of the object svcTlsStpHoldTime indicates the interval length during which no more than two Configuration BPDUs shall be transmitted by this bridge. This object is no longer used. It is replaced by the object svcTlsStpHoldCount. This object was made obsolete in the 3.0 release.') svcTlsStpForwardDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 19), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpForwardDelay.setStatus('current') if mibBuilder.loadTexts: svcTlsStpForwardDelay.setDescription('The value of the object svcTlsStpForwardDelay indicates how fast a port changes its state when moving towards the Forwarding state. The value determines how long the port stays in each of the Listening and Learning states, which precede the Forwarding state. This value is also used to age all dynamic entries in the Forwarding Database when a topology change has been detected and is underway. This is the actual value that this bridge is currently using.') svcTlsStpBridgeMaxAge = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(6, 40))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpBridgeMaxAge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeMaxAge.setDescription("The value of the object svcTlsStpBridgeMaxAge specifies the value that all bridges should use for 'MaxAge' when this bridge is acting as the root bridge.") svcTlsStpBridgeHelloTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpBridgeHelloTime.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeHelloTime.setDescription("The value of the object svcTlsStpBridgeHelloTime specifies the value that all bridges should use for 'HelloTime' when this bridge is acting as the root bridge.") svcTlsStpBridgeForwardDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 30))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpBridgeForwardDelay.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeForwardDelay.setDescription("The value of the object svcTlsStpBridgeForwardDelay specifies the value that all bridges should use for 'ForwardDelay' when this bridge is acting as the root bridge.") svcTlsStpOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpOperStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpOperStatus.setDescription('The value of the object svcTlsStpOperStatus indicates the operating status of the Spanning Tree Protocol instance associated with this service.') svcTlsStpVirtualRootBridgeStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpVirtualRootBridgeStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVirtualRootBridgeStatus.setDescription("The value of the object svcTlsStpVirtualRootBridgeStatus indicates the operating status of the Virtual Root Bridge of the Spanning Tree Protocol instance associated with this service. The status of the Virtual Root Bridge is 'up' when there is connectivity to the core: i.e. one or more SDP's in this service are operationally up.") svcTlsMacAgeing = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 32), TmnxEnabledDisabled().clone('enabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacAgeing.setStatus('current') if mibBuilder.loadTexts: svcTlsMacAgeing.setDescription('The value of the object svcTlsMacAgeing specifies whether the MAC aging process is enabled in this TLS.') svcTlsStpTopologyChangeActive = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 33), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpTopologyChangeActive.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTopologyChangeActive.setDescription("The value of the object svcTlsStpTopologyChangeActive indicates, when set to 'true', that a topology change is currently in progress.") svcTlsFdbTableFullHighWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(95)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsFdbTableFullHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullHighWatermark.setDescription('The value of the object svcTlsFdbTableFullHighWatermark specifies the utilization of the FDB table of this TLS service at which a table full alarm will be raised by the agent.') svcTlsFdbTableFullLowWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsFdbTableFullLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullLowWatermark.setDescription('The value of the object svcTlsFdbTableFullLowWatermark specifies the utilization of the FDB table of this TLS service at which a table full alarm will be raised by the agent.') svcTlsVpnId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 36), VpnId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsVpnId.setStatus('current') if mibBuilder.loadTexts: svcTlsVpnId.setDescription('The value of the object svcTlsVpnId indicates the VPN ID of the associated TLS service.') svcTlsCustId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 37), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsCustId.setStatus('current') if mibBuilder.loadTexts: svcTlsCustId.setDescription('The vakue of the object svcTlsCustId indicates the Customer ID of the associated TLS service.') svcTlsStpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("rstp", 2), ("compDot1w", 3), ("dot1w", 4), ("mstp", 5), ("pmstp", 6))).clone('rstp')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpVersion.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVersion.setDescription("The value of the object svcTlsStpVersion specifies the version of Spanning Tree Protocol the bridge is currently running. The value 'rstp' corresponds to the Rapid Spanning Tree Protocol specified in IEEE 802.1D/D4-2003. The value 'compDot1w' corresponds to the mode where the Rapid Spanning Tree is backward compatible with IEEE 802.1w. The value 'dot1w' corresponds to the Rapid Spanning Tree Protocol fully conformant to IEEE 802.1w. The value 'mstp' corresponds to the Multiple Spanning Tree Protocol specified in IEEE 802.1Q-REV/D3.0-04/2005. The value 'pmstp' corresponds to Provider MSTP protocol compliant with IEEE-802.1ad-2005. New values may be defined as future versions of the protocol become available.") svcTlsStpHoldCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(6)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpHoldCount.setReference('IEEE 802.1w clause 17.16.6') if mibBuilder.loadTexts: svcTlsStpHoldCount.setStatus('current') if mibBuilder.loadTexts: svcTlsStpHoldCount.setDescription("The value of the object svcTlsStpHoldCount specifies the maximum number of BPDUs that are transmitted in any 'HelloTime' interval. The value used by the bridge to limit the maximum transmission rate of BPDUs.") svcTlsStpPrimaryBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 40), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpPrimaryBridge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpPrimaryBridge.setDescription('The value of the object svcTlsStpPrimaryBridge indicates the BridgeId of the bridge that acts as the primary bridge, being the gateway from the core mesh towards the root bridge.') svcTlsStpBridgeInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpBridgeInstanceId.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeInstanceId.setDescription("The value of the object svcTlsStpBridgeInstanceId indicates a 12 bit value chosen by the the system. It is part of the STP bridge Id, which consists of 8 octets: - 4 highest bits of octet 1: the bridge priority (ref svcTlsStpPriority) - 12 bits (4 lowest bits of octet 1 + 8 bits of octet 2): bridge instance Id (this object!). - 6 octets: bridge MAC addess ref svcTlsStpBridgeAddress The value is set to 0 if svcTlsStpOperStatus is not 'up'.") svcTlsStpVcpOperProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 42), StpProtocol()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpVcpOperProtocol.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVcpOperProtocol.setDescription('The value of the object svcTlsStpVcpOperProtocol indicates whether stp, rstp or mstp is running on this VCP. If the protocol is not enabled on this VCP, the value notApplicable is returned.') svcTlsMacMoveMaxRate = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 43), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 10)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacMoveMaxRate.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveMaxRate.setDescription("The value of the object svcTlsMacMoveMaxRate specifies the maximum rate at which MAC's can be re-learned in this TLS service, before the SAP where the moving MAC was last seen is automatically disabled in order to protect the system against undetected loops or duplicate MAC's. The rate is computed as the maximum number of re-learns allowed in a 5 second interval: e.g. the default rate of 2 re-learns per second corresponds to 10 re-learns in a 5 second period.") svcTlsMacMoveRetryTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 44), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 600)).clone(10)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacMoveRetryTimeout.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveRetryTimeout.setDescription('The value of the object svcTlsMacMoveRetryTimeout specifies the time in seconds to wait before a SAP that has been disabled after exceeding the maximum re-learn rate is re-enabled. A value of zero indicates that the SAP will not be automatically re-enabled after being disabled. If after the SAP is re-enabled it is disabled again, the effective retry timeout is doubled in order to avoid thrashing. An inconsistentValue error is returned if the value of this object is set to less than fie times the value of svcTlsSecPortsCumulativeFactor.') svcTlsMacMoveAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 45), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacMoveAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveAdminStatus.setDescription('The value of the object svcTlsMacMoveAdminStatus specifies the administrative state of the MAC movement feature associated with this service.') svcTlsMacRelearnOnly = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 46), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsMacRelearnOnly.setStatus('current') if mibBuilder.loadTexts: svcTlsMacRelearnOnly.setDescription("The value of the object svcTlsMacRelearnOnly indicates when set to 'true' that either the FDB table of this TLS service is full, or that the maximum system-wide number of MAC's supported by the agent has been reached, and thus MAC learning is temporary disabled, and only MAC re-learns can take place.") svcTlsMfibTableSize = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16383))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMfibTableSize.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableSize.setDescription('The value of the object svcTlsMfibTableSize specifies the maximum number of entries allowed in the MFIB table of this service. If the value is 0, then there is no limit.') svcTlsMfibTableFullHighWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 48), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(95)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMfibTableFullHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullHighWatermark.setDescription('The value of the object svcTlsMfibTableFullHighWatermark specifies the utilization of the MFIB table of this TLS service at which a table full alarm will be raised by the agent.') svcTlsMfibTableFullLowWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 49), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMfibTableFullLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullLowWatermark.setDescription('The value of the object svcTlsMfibTableFullLowWatermark specifies utilization of the MFIB table of this TLS service at which a table full alarm will be cleared by the agent.') svcTlsMacFlushOnFail = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 50), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMacFlushOnFail.setStatus('current') if mibBuilder.loadTexts: svcTlsMacFlushOnFail.setDescription('The value of the object svcTlsMacFlushOnFail specifies whether a special mac-flush is sent when a port or sap becomes operational down.') svcTlsStpRegionName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 51), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpRegionName.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRegionName.setDescription('The value of the object svcTlsStpRegionName specifies the MSTP region name. Together with region revision and VLAN-to-instance assignment it defines the MSTP region.') svcTlsStpRegionRevision = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 52), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpRegionRevision.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRegionRevision.setDescription('The value of the object svcTlsStpRegionRevision specifies the MSTP region revision number. Together with region name and VLAN-to-instance assignment it defines the MSTP region.') svcTlsStpBridgeMaxHops = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 53), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 40)).clone(20)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsStpBridgeMaxHops.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeMaxHops.setDescription("The value of the object svcTlsStpBridgeMaxHops specifies the maximum number of hops (known as 'MaxHops' in 802.1Q).") svcTlsStpCistRegionalRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 54), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpCistRegionalRoot.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRegionalRoot.setDescription('The value of the object svcTlsStpCistRegionalRoot indicates the bridge identifier of the regional root of the CIST spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the CIST Regional Root Identifier parameter in all MSTP BPDUs originated by this node.') svcTlsStpCistIntRootCost = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 55), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpCistIntRootCost.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistIntRootCost.setDescription('The value of the object svcTlsStpCistIntRootCost indicates the cost of the path to the CIST regional root bridge as seen from this bridge.') svcTlsStpCistRemainingHopCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 56), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpCistRemainingHopCount.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRemainingHopCount.setDescription('The value of the object svcTlsStpCistRemainingHopCount specifies the remaining number of hops.') svcTlsStpCistRegionalRootPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 57), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsStpCistRegionalRootPort.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRegionalRootPort.setDescription('The value of the object svcTlsStpCistRegionalRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the regional root bridge.') svcTlsFdbNumLearnedEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 58), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumLearnedEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumLearnedEntries.setDescription('The value of the object svcTlsFdbNumLearnedEntries indicates the current number of learned entries in the FDB of this service.') svcTlsFdbNumOamEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 59), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumOamEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumOamEntries.setDescription('The value of the object svcTlsFdbNumOamEntries indicates the current number of OAM entries in the FDB of this service.') svcTlsFdbNumDhcpEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 60), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumDhcpEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumDhcpEntries.setDescription('The value of the object svcTlsFdbNumDhcpEntries indicates the current number of dhcp-learned entries in the FDB of this service.') svcTlsFdbNumHostEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 61), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsFdbNumHostEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumHostEntries.setDescription('The value of the object svcTlsFdbNumHostEntries indicates the current number of host-learned entries in the FDB of this service.') svcTlsShcvAction = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 62), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("alarm", 1), ("remove", 2))).clone('alarm')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsShcvAction.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvAction.setDescription('The value of the object svcTlsShcvAction indicates whether any action should be triggered when the connectivity check fails.') svcTlsShcvSrcIp = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 63), IpAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsShcvSrcIp.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvSrcIp.setDescription('The value of the object svcTlsShcvSrcIp specifies the source IP address used when doing the connectivity check. The value 0.0.0.0 indicates that no host IP address is specified.') svcTlsShcvSrcMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 64), MacAddress()).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsShcvSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvSrcMac.setDescription('The value of the object svcTlsShcvSrcMac specifies the MAC address used when doing the connectivity check. The value 0:0:0:0:0:0 indicates that no host MAC address is specified.') svcTlsShcvInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 65), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 6000))).setUnits('minutes').setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsShcvInterval.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvInterval.setDescription('The value of the object svcTlsShcvInterval specifies the interval in minutes between connectivity checks. Zero means no connectivity checking.') svcTlsPriPortsCumulativeFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 66), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(3, 10)).clone(3)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsPriPortsCumulativeFactor.setStatus('current') if mibBuilder.loadTexts: svcTlsPriPortsCumulativeFactor.setDescription('The value of the object svcTlsPriPortsCumulativeFactor specifies a factor for the primary ports defining how many MAC-relearn periods should be used to measure the MAC-relearn rate, svcTlsMacMoveMaxRate. This rate must be exceeded during consecutive periods before the corresponding ports (SAP and/or spoke-SDP) are blocked by the MAC-move feature. An inconsistentValue error is returned if an attempt is made to set the value of svcTlsPriPortsCumulativeFactor to a value lower than or equal to svcTlsSecPortsCumulativeFactor.') svcTlsSecPortsCumulativeFactor = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 67), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(2, 9)).clone(2)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsSecPortsCumulativeFactor.setStatus('current') if mibBuilder.loadTexts: svcTlsSecPortsCumulativeFactor.setDescription('The value of the object svcTlsSecPortsCumulativeFactor specifies a factor for the secondary ports defining how many MAC-relearn periods should be used to measure the MAC-relearn rate, svcTlsMacMoveMaxRate. This rate must be exceeded during consecutive periods before the corresponding ports (SAP and/or spoke-SDP) are blocked by the MAC-move feature. An inconsistentValue error is returned if an attempt is made to set the value of svcTlsSecPortsCumulativeFactor to a value greater than or equal to svcTlsPriPortsCumulativeFactor.') svcTlsL2ptTermEnabled = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 68), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsL2ptTermEnabled.setStatus('current') if mibBuilder.loadTexts: svcTlsL2ptTermEnabled.setDescription("The value of the object svcTlsL2ptTermEnabled indicates if L2PT-termination and/or Bpdu-translation is in use in this service by at least one SAP or spoke SDP Bind. If the value is 'true', it means that at least one of L2PT-termination or Bpdu-translation is enabled. When enabled it is not possible to enable stp on this service.") svcTlsPropagateMacFlush = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 69), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsPropagateMacFlush.setStatus('current') if mibBuilder.loadTexts: svcTlsPropagateMacFlush.setDescription("The value of svcTlsPropagateMacFlush specifies whether 'MAC flush' messages received from the given LDP are propagated to all spoke-SDPs and mesh-SDPs within the context of this VPLS service. The propagation will follow the 'split-horizon' principle and any data-path blocking in order to avoid the looping of these messages. The value of 'true' enables the propagation.") svcTlsMrpAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 70), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMrpAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAdminStatus.setDescription('The value of the object svcTlsMrpAdminStatus specifies whether the Multiple Registration Protocol (MRP) is enabled in this TLS.') svcTlsMrpMaxAttributes = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 71), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 2048))).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMrpMaxAttributes.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpMaxAttributes.setDescription('The value of the object svcTlsMrpMaxAttributes indicates maximum number of MRP attributes supported in this TLS. In most cases the default value is 2048 MRP attributes. For some platform and chassis types, especially single slot chassises, the default value will be lower due to resource constraints. An inconsistentValue error is returned if an attempt is made to set this object to a value the platform cannot support.') svcTlsMrpAttributeCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 72), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsMrpAttributeCount.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttributeCount.setDescription('The value of the object svcTlsMrpAttributeCount indicates number of MRP attributes currently registered in this TLS.') svcTlsMrpFailedRegisterCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 73), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsMrpFailedRegisterCount.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpFailedRegisterCount.setDescription('The value of the object svcTlsMrpFailedRegisterCount indicates number of failed MRP attribute registrations in this TLS.') svcTlsMcPathMgmtPlcyName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 74), TNamedItem().clone('default')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMcPathMgmtPlcyName.setStatus('current') if mibBuilder.loadTexts: svcTlsMcPathMgmtPlcyName.setDescription('The value of svcTlsMcPathMgmtPlcyName specifies the multicast policy name configured on this service.') svcTlsMrpFloodTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 75), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(3, 600), ))).setUnits('seconds').setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMrpFloodTime.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpFloodTime.setDescription('The value of the object svcTlsMrpFloodTime specifies the amount of time in seconds after a status change in the TLS during which traffic is flooded. Once that time expires, traffic will be delivered according to the MRP registrations which exist in the TLS. The value of 0 indicates that no flooding will occur on state changes in the TLS.') svcTlsMrpAttrTblHighWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 76), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(95)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMrpAttrTblHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblHighWatermark.setDescription('The value of the object svcTlsMrpAttrTblHighWatermark specifies the utilization of the MRP attribute table of this TLS service at which a table full alarm will be raised by the agent.') svcTlsMrpAttrTblLowWatermark = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 77), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 100)).clone(90)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsMrpAttrTblLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblLowWatermark.setDescription('The value of the object svcTlsMrpAttrTblLowWatermark specifies utilization of the MRP attribute table of this TLS service at which a table full alarm will be cleared by the agent.') tlsFdbInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4), ) if mibBuilder.loadTexts: tlsFdbInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsFdbInfoTable.setDescription('A table that contains TLS FDB information.') tlsFdbInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbMacAddr")) if mibBuilder.loadTexts: tlsFdbInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsFdbInfoEntry.setDescription('Information about a specific TLS FDB.') tlsFdbMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 1), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsFdbMacAddr.setDescription('The value of the object tlsFdbMacAddr specifies the 48-bit IEEE 802.3 MAC address.') tlsFdbRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsFdbRowStatus.setDescription("The value of the object tlsFdbRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'.") tlsFdbType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("static", 1), ("learned", 2), ("oam", 3), ("dhcp", 4), ("host", 5)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbType.setStatus('current') if mibBuilder.loadTexts: tlsFdbType.setDescription(" The value of the object tlsFdbType specifies: - 'static': Static TLS FDB entries created via management - 'learned': dynamic entries created via the learning process - 'oam': entries created via the OAM process - 'dhcp': learned addresses can be temporarily frozen by the DHCP snooping application for the duration of a DHCP lease - 'host': entry added by the system for a static configured subscriber host.") tlsFdbLocale = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("sap", 1), ("sdp", 2), ("cpm", 3), ("endpoint", 4)))).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbLocale.setStatus('current') if mibBuilder.loadTexts: tlsFdbLocale.setDescription("The value of the object tlsFdbLocale specifies for TLS FDB entries defined on a local SAP the value 'sap', remote entries defined on an SDP have the value 'sdp', entries associated with the Control Processor have the value 'cpm' and entries associated with the explicit endpoint have the value 'endpoint'. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") tlsFdbPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 5), TmnxPortID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbPortId.setStatus('current') if mibBuilder.loadTexts: tlsFdbPortId.setDescription("When the value of tlsFdbLocale is 'sap', this object, along with tlsFdbEncapValue, specifies the SAP associated with the MAC address defined by tlsFdbMacAddr. This object is otherwise insignificant and should contain a value of 0.") tlsFdbEncapValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 6), TmnxEncapVal()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbEncapValue.setStatus('current') if mibBuilder.loadTexts: tlsFdbEncapValue.setDescription("The value of the object tlsFdbEncapValue specifies, when the value of tlsFdbLocale is 'sap', along with tlsFdbPortId, SAP associated with the MAC address defined by tlsFdbMacAddr. This object is otherwise insignificant and should contain a value of 0.") tlsFdbSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 7), SdpId()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbSdpId.setStatus('current') if mibBuilder.loadTexts: tlsFdbSdpId.setDescription("The value of the object tlsFdbSdpId specifies, when the value of tlsFdbLocale is 'sdp', along with tlsFdbVcId,the SDP Binding associated with the MAC address defined by tlsFdbMacAddr. This object is other- wise insignificant and should contain a value of 0.") tlsFdbVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 8), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbVcId.setStatus('current') if mibBuilder.loadTexts: tlsFdbVcId.setDescription("The value of the object tlsFdbVcId specifies, when the value of tlsFdbLocale is 'sdp', along with tlsFdbSdpId, the SDP Binding associated with the MAC address defined by tlsFdbMacAddr. This object is other-wise insignificant and should contain a value of 0.") tlsFdbVpnId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 9), VpnId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbVpnId.setStatus('current') if mibBuilder.loadTexts: tlsFdbVpnId.setDescription('The value of the object tlsFdbVpnId indicates the VPN ID of the associated TLS.') tlsFdbCustId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 10), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbCustId.setStatus('current') if mibBuilder.loadTexts: tlsFdbCustId.setDescription('The value of the object tlsFdbCustId indicates the Customer ID of the associated TLS.') tlsFdbLastStateChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 11), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbLastStateChange.setStatus('current') if mibBuilder.loadTexts: tlsFdbLastStateChange.setDescription('The value of the object tlsFdbLastStateChange indicates the value of sysUpTime at the time of the most recent state change of this entry. A state change is defined as a change in the value of: tlsFdbRowStatus, tlsFdbType, tlsFdbLocale, tlsFdbPortId, tlsFdbEncapValue, tlsFdbSdpId or tlsFdbVcId.') tlsFdbProtected = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 12), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbProtected.setStatus('current') if mibBuilder.loadTexts: tlsFdbProtected.setDescription("The value of the object tlsFdbProtected indicates whether or not this MAC is protected. When the value of this object is 'true' the agent will protect the MAC from being learned or re-learned on a SAP that has restricted learning enabled.") tlsFdbBackboneDstMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 13), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbBackboneDstMac.setStatus('current') if mibBuilder.loadTexts: tlsFdbBackboneDstMac.setDescription("The value of the object tlsFdbBackboneDstMac indicates the Backbone VPLS service MAC address used as destination MAC address in the Provider Backbone Bridging frames for this tlsFdbMacAddr. This object is insignificant for services with svcVplsType not set to 'iVpls' and should contain a value of 0:0:0:0:0:0.") tlsFdbNumIVplsMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbNumIVplsMac.setStatus('current') if mibBuilder.loadTexts: tlsFdbNumIVplsMac.setDescription("The value of the object tlsFdbNumIVplsMac indicates the number of ISID VPLS service MAC addressess which are using this Backbone MAC address defined by tlsFdbMacAddr. This object is insignificant for services with svcVplsType not set to 'bVpls' and should contain a value of 0.") tlsFdbEndPointName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 15), TNamedItemOrEmpty()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsFdbEndPointName.setStatus('current') if mibBuilder.loadTexts: tlsFdbEndPointName.setDescription('The value of tlsFdbEndPointName specifies the name of the service endpoint associated with the MAC Address.') tlsFdbEPMacOperSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 16), SdpId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbEPMacOperSdpId.setStatus('current') if mibBuilder.loadTexts: tlsFdbEPMacOperSdpId.setDescription("The value of the object tlsFdbEPMacOperSdpId along with tlsFdbEPMacOperVcId indicates the SDP binding associated with this static MAC address for this endpoint. This object is valid when tlsFdbLocale is 'endpoint', otherwise it should contain a value of 0.") tlsFdbEPMacOperVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 17), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbEPMacOperVcId.setStatus('current') if mibBuilder.loadTexts: tlsFdbEPMacOperVcId.setDescription("The value of the object tlsFdbEPMacOperVcId along with tlsFdbEPMacOperSdpId indicates the SDP binding associated with this static MAC address for this endpoint. This object is valid when tlsFdbLocale is 'endpoint', otherwise it should contain a value of 0.") tlsFdbPbbNumEpipes = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 18), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsFdbPbbNumEpipes.setStatus('current') if mibBuilder.loadTexts: tlsFdbPbbNumEpipes.setDescription("The value of the object tlsFdbPbbNumEpipes indicates number of E-Pipes that resolve to this MAC Address. This object is valid for service with svcVplsType set to 'bVpls', otherwise it should contain a value of 0.") iesIfTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5), ) if mibBuilder.loadTexts: iesIfTable.setStatus('current') if mibBuilder.loadTexts: iesIfTable.setDescription('A table that contains IES interface information.') iesIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex")) if mibBuilder.loadTexts: iesIfEntry.setStatus('current') if mibBuilder.loadTexts: iesIfEntry.setDescription('Information about a specific IES interface.') iesIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 1), InterfaceIndex()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfIndex.setStatus('current') if mibBuilder.loadTexts: iesIfIndex.setDescription('The secondary index of the row in the vRtrIfTable corresponding to this IES interface. The primary index is 1; i.e. all IES interfaces are defined in the Base virtual router context.') iesIfRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfRowStatus.setStatus('current') if mibBuilder.loadTexts: iesIfRowStatus.setDescription("The value of the object iesIfRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'.") iesIfName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 3), TNamedItem()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfName.setStatus('current') if mibBuilder.loadTexts: iesIfName.setDescription("The value of the object iesIfName specifies the name used to refer to this IES interface. This name must be unique within the Base virtual router context. This object must be specified when the row is created, and cannot be changed while the rowstatus is 'active'.") iesIfDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 4), ServObjLongDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfDescription.setStatus('current') if mibBuilder.loadTexts: iesIfDescription.setDescription('The value of the object iesIfDescription specifies generic information about this IES interface.') iesIfAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 5), ServiceAdminStatus().clone('up')).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfAdminStatus.setStatus('current') if mibBuilder.loadTexts: iesIfAdminStatus.setDescription('The value of the object iesIfAdminStatus specifies the desired state of this IES interface.') iesIfOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 6), ServiceOperStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfOperStatus.setStatus('current') if mibBuilder.loadTexts: iesIfOperStatus.setDescription('The value of the object iesIfOperStatus indicates the operating state of this IES interface.') iesIfLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 7), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: iesIfLastMgmtChange.setDescription('The value of the object iesIfLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this IES interface.') iesIfVpnId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 8), VpnId()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfVpnId.setStatus('current') if mibBuilder.loadTexts: iesIfVpnId.setDescription('The value of the object iesIfVpnId indicates the VPN ID of the associated IES service.') iesIfCustId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 9), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfCustId.setStatus('current') if mibBuilder.loadTexts: iesIfCustId.setDescription('The value of the object iesIfCustId indicates the Customer ID of the associated IES service.') iesIfLoopback = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 10), TruthValue()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfLoopback.setStatus('current') if mibBuilder.loadTexts: iesIfLoopback.setDescription("When the value of iesIfLoopback is set to 'true', loopback is enabled on the IES interface represented by this row entry. When the value is 'false', loopback is disabled.") iesIfLastStatusChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 11), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: iesIfLastStatusChange.setStatus('current') if mibBuilder.loadTexts: iesIfLastStatusChange.setDescription('The value of the object iesIfLastStatusChange indicates the value of sysUpTime at the time of the most recent operating status change to his interface.') iesIfType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("service", 1), ("subscriber", 2), ("group", 3), ("redundant", 4), ("cem", 5), ("ipsec", 6), ("ipMirror", 7))).clone('service')).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfType.setStatus('current') if mibBuilder.loadTexts: iesIfType.setDescription("The value of iesIfType specifies the type of this IES interface. This object can only be set at row creation time. 'service' - This is a normal IES interface. 'subscriber' - This is a subscriber interface, under which multiple group interfaces can be configured. 'group' - This is a group interface, belonging to a parent subscriber interface. 'redundant' - This is a redundant interface, used for dual homing. 'cem' - This is a CEM interface, used for IP/UDP encapsulated CEM IES interface. 'ipsec' - This is an IPsec interface, used for IPsec tunneling. 'ipMirror' - This is an IP interface, used for IP Mirroring.") iesIfParentIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 13), InterfaceIndexOrZero()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfParentIf.setStatus('current') if mibBuilder.loadTexts: iesIfParentIf.setDescription("The value of iesIfParentIf specifies the ifIndex of this interface's parent. This value can only be set at row creation time, and is only valid when iesIfType is 'group'. The interface pointed to by iesIfParentIf must be of type 'subscriber'.") iesIfShcvSource = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("interface", 1), ("vrrp", 2))).clone('interface')).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfShcvSource.setStatus('current') if mibBuilder.loadTexts: iesIfShcvSource.setDescription('The value of iesIfShcvSource specifies the source used for subscriber host connectivity checking') iesIfShcvAction = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("alarm", 1), ("remove", 2))).clone('alarm')).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfShcvAction.setStatus('current') if mibBuilder.loadTexts: iesIfShcvAction.setDescription('The value of iesIfShcvAction specifies the action to be taken for hosts on this interface whose host connectivity checking fails') iesIfShcvInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 16), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 6000))).setUnits('minutes').setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfShcvInterval.setStatus('current') if mibBuilder.loadTexts: iesIfShcvInterval.setDescription('The value of the object iesIfShcvInterval specifies the interval in minutes between connectivity checks. Zero means no in host-connection-verify') iesIfFwdServId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 17), TmnxServId()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfFwdServId.setStatus('current') if mibBuilder.loadTexts: iesIfFwdServId.setDescription("The value of iesIfFwdServId specifies the forwarding service ID for a subscriber interface in a retailer context. This value can only be set at row creation time along with iesIfFwdSubIf, and it is only valid when iesIfType is 'subscriber'. The iesIfFwdServId MUST correspond to a service of type 'vprn'.") iesIfFwdSubIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 18), InterfaceIndexOrZero()).setMaxAccess("readcreate") if mibBuilder.loadTexts: iesIfFwdSubIf.setStatus('current') if mibBuilder.loadTexts: iesIfFwdSubIf.setDescription("The value of iesIfFwdSubIf specifies the forwarding subscriber interface for a subscriber interface in a retailer context. This value can only be set at row creation time along with iesIfFwdServId, and it is only valid when iesIfType is 'subscriber'. The interface pointed to by iesIfFwdSubIf MUST be of type 'subscriber' in the the service context defined by iesIfFwdServId.") tlsShgInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6), ) if mibBuilder.loadTexts: tlsShgInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsShgInfoTable.setDescription("A table that contains TLS service split-horizon group information. A maximum of 30 split-horizon groups can be created in a given TLS service. Maximum is set to 15 for a TLS service with svcVplsType set to 'bVpls', or 'iVpls'.") tlsShgInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgName")) if mibBuilder.loadTexts: tlsShgInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsShgInfoEntry.setDescription('Split-horizon group information about a TLS service.') tlsShgName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 1), TNamedItem()) if mibBuilder.loadTexts: tlsShgName.setStatus('current') if mibBuilder.loadTexts: tlsShgName.setDescription('The value of the object tlsShgName specifies the name of the split-horizon group. The name must be unique within a TLS, however the same name can appear in different TLS services, in which case they denote different split-horizon groups.') tlsShgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsShgRowStatus.setDescription("The value of the object tlsShgRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'. To delete an entry from this table, there should be no TLS SAP's or TLS spoke SDP Bindings refering to it.") tlsShgCustId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 3), TmnxCustId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsShgCustId.setStatus('current') if mibBuilder.loadTexts: tlsShgCustId.setDescription('The value of the object tlsShgCustId indicates the Customer ID of the associated TLS service.') tlsShgInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 4), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsShgInstanceId.setStatus('current') if mibBuilder.loadTexts: tlsShgInstanceId.setDescription('The value of the object tlsShgInstanceId indicates the instance identifier for the split horizon group.') tlsShgDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 5), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgDescription.setStatus('current') if mibBuilder.loadTexts: tlsShgDescription.setDescription('The value of the object tlsShgDescription specifies generic information about this split-horizon group.') tlsShgLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 6), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsShgLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsShgLastMgmtChange.setDescription('The value of the object tlsShgLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this split-horizon group.') tlsShgResidential = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 7), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgResidential.setStatus('current') if mibBuilder.loadTexts: tlsShgResidential.setDescription('The value of the object tlsShgResidential specifies whether or not the split-horizon-group is residential.In a Residential Split Horizon Group (RSHG) there is no downstream broadcast, and all saps in the group will share the default ingress queue. The value can be specified during row-creation, cannot be changed later on.') tlsShgRestProtSrcMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 8), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgRestProtSrcMac.setStatus('current') if mibBuilder.loadTexts: tlsShgRestProtSrcMac.setDescription("The value of the object tlsShgRestProtSrcMac indicates how the agent will handle relearn requests for protected MAC addresses received on SAP's belonging to this SHG. When the value of this object is 'true' requests to relearn a protected MAC address will be ignored. In addition, if the value of tlsShgRestProtSrcMacAction is 'disable', then the SAP where the protected source MAC was seen will be brought operationally down.") tlsShgRestUnprotDstMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 9), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgRestUnprotDstMac.setStatus('current') if mibBuilder.loadTexts: tlsShgRestUnprotDstMac.setDescription("The value of the object tlsShgRestUnprotDstMac indicates how the system will forward packets destined to an unprotected MAC address. When the value of this object is 'true' packets destined to an unprotected MAC address will be dropped.") tlsShgRestProtSrcMacAction = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("disable", 1), ("alarm-only", 2))).clone('disable')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsShgRestProtSrcMacAction.setStatus('current') if mibBuilder.loadTexts: tlsShgRestProtSrcMacAction.setDescription("The value of the object tlsShgRestProtSrcMacAction indicates the action to take whenever a relearn request for a protected MAC is received on a restricted SAP belonging to this SHG. When the value of this object is 'disable' the SAP will be placed in the operational down state, with the operating flag 'recProtSrcMac' set. When the value of this object is 'alarm-only', the SAP will be left up and only a notification, sapReceivedProtSrcMac, will be generated.") tlsShgCreationOrigin = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 11), L2RouteOrigin()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsShgCreationOrigin.setStatus('current') if mibBuilder.loadTexts: tlsShgCreationOrigin.setDescription('The value of tlsShgCreationOrigin indicates the protocol or mechanism which created this SHG.') svcApipeInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7), ) if mibBuilder.loadTexts: svcApipeInfoTable.setStatus('current') if mibBuilder.loadTexts: svcApipeInfoTable.setDescription('A table that contains APIPE service information.') svcApipeInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: svcApipeInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcApipeInfoEntry.setDescription('APIPE specific information about a service.') svcApipeInterworking = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("frf-5", 2), ("frf-8-2-translate", 3))).clone('none')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcApipeInterworking.setStatus('current') if mibBuilder.loadTexts: svcApipeInterworking.setDescription('The value of the object svcApipeInterworking specifies the interworking function that should be applied for packets that ingress/egress SAPs that are part of a APIPE service.') tlsMFibInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8), ) if mibBuilder.loadTexts: tlsMFibInfoTable.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoTable.setDescription('tlsMFibInfoTable contains the IPv4 Multicast FIB for this Tls. This table was made obsolete in the 6.0 release. It is replaced by tlsMFibTable.') tlsMFibInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoGrpAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoSrcAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoLocale"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoPortId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoEncapValue"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoSdpId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoVcId")) if mibBuilder.loadTexts: tlsMFibInfoEntry.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoEntry.setDescription('An entry in the tlsMFibInfoTable. Each entry indicates whether traffic from a certain source to a certain multicast destination (group) needs to be forwarded or blocked on the indicated SAP/SDP.') tlsMFibInfoGrpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 1), IpAddress()) if mibBuilder.loadTexts: tlsMFibInfoGrpAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoGrpAddr.setDescription('The value of the object tlsMFibInfoGrpAddr indicates the IPv4 multicast destination address for which this table entry contains information.') tlsMFibInfoSrcAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 2), IpAddress()) if mibBuilder.loadTexts: tlsMFibInfoSrcAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSrcAddr.setDescription('tlsMFibInfoSrcAddr indicates the IPv4 unicast source address for which this table entry contains information.') tlsMFibInfoLocale = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 3), MfibLocation()) if mibBuilder.loadTexts: tlsMFibInfoLocale.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoLocale.setDescription("tlsMFibInfoLocale indicates if the information in this entry pertains to a 'sap' or to an 'sdp'.") tlsMFibInfoPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 4), TmnxPortID()) if mibBuilder.loadTexts: tlsMFibInfoPortId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoPortId.setDescription("When the value of tlsMFibInfoLocale is 'sap', the object tlsMFibInfoPortId along with the object tlsMFibInfoEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tlsMFibInfoEncapValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 5), TmnxEncapVal()) if mibBuilder.loadTexts: tlsMFibInfoEncapValue.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoEncapValue.setDescription("When the value of tlsMFibInfoLocale is 'sap', the object tlsMFibInfoEncapValue, along with the object tlsMFibInfoPortId, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tlsMFibInfoSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 6), SdpId()) if mibBuilder.loadTexts: tlsMFibInfoSdpId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSdpId.setDescription("When the value of tlsMFibInfoLocale is 'sdp', the object tlsMFibInfoSdpId, along with tlsMFibInfoVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tlsMFibInfoVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 7), Unsigned32()) if mibBuilder.loadTexts: tlsMFibInfoVcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoVcId.setDescription("When the value of tlsMFibInfoLocale is 'sdp', the object tlsMFibInfoVcId, along with tlsMFibInfoSdpId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tlsMFibInfoFwdOrBlk = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 8), MfibGrpSrcFwdOrBlk()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibInfoFwdOrBlk.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoFwdOrBlk.setDescription('tlsMFibInfoFwdOrBlk indicates if traffic for the indicated (S,G) pair will be blocked or forwarded on the indicated SAP or SDP.') tlsMFibInfoSvcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 9), TmnxServId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibInfoSvcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSvcId.setDescription('tlsMFibInfoSvcId indicates the TLS service to which the indicated SAP or SDP belongs.') tlsMFibGrpSrcStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9), ) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsTable.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsTable.setDescription('tlsMFibGrpSrcStatsTable contains statistics for the entries in the IPv4 Multicast FIB for this Tls. These statistics are collected by the forwarding engine. This table was made obsolete in the 6.0 release. It is replaced by tlsMFibStatsTable.') tlsMFibGrpSrcStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpSrcStatsGrpAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpSrcStatsSrcAddr")) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsEntry.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsEntry.setDescription('An entry in the tlsMFibGrpSrcStatsTable.') tlsMFibGrpSrcStatsGrpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 1), IpAddress()) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsGrpAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsGrpAddr.setDescription('tlsMFibGrpSrcStatsGrpAddr indicates the IPv4 multicast destination address for which this table entry contains information.') tlsMFibGrpSrcStatsSrcAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 2), IpAddress()) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsSrcAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsSrcAddr.setDescription('tlsMFibGrpSrcStatsSrcAddr indicates the IPv4 unicast source address for which this table entry contains information.') tlsMFibGrpSrcStatsForwardedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 3), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedPkts.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedPkts.setDescription('tlsMFibGrpSrcStatsForwardedPkts indicates the number of IPv4 multicast packets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tlsMFibGrpSrcStatsForwardedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 4), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedOctets.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedOctets.setDescription('tlsMFibGrpSrcStatsForwardedOctets indicates the number of octets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tlsRdntGrpTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10), ) if mibBuilder.loadTexts: tlsRdntGrpTable.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpTable.setDescription('A table that contains TLS service Redundant Group information. There is no limit on the number of Redundant Groups that can be created globally or within a service.') tlsRdntGrpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpName")) if mibBuilder.loadTexts: tlsRdntGrpEntry.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpEntry.setDescription('Redundant Group information') tlsRdntGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 1), TNamedItem()) if mibBuilder.loadTexts: tlsRdntGrpName.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpName.setDescription('The value of the object tlsRdntGrpName specifies the name of the redundant group. The name must be unique within a TLS, however the same name can appear in different TLS services, in which case they denote different redundant groups.') tlsRdntGrpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsRdntGrpRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpRowStatus.setDescription("The value of the object tlsRdntGrpRowStatus specifies the status of this row. The only values supported are 'active', 'createAndGo' and 'destroy'.") tlsRdntGrpDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 3), ServObjDesc().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsRdntGrpDescription.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpDescription.setDescription('The value of the object tlsRdntGrpDescription specifies generic information about this redundant group.') tlsRdntGrpLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 4), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsRdntGrpLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpLastMgmtChange.setDescription('The value of the object tlsRdntGrpLastMgmtChange indicates the sysUpTime at the time of the most recent management-initiated change to this redundant group.') tlsRdntGrpMemberTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11), ) if mibBuilder.loadTexts: tlsRdntGrpMemberTable.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberTable.setDescription('A table that holds information about the members of TLS redundant groups.') tlsRdntGrpMemberEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpName"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberRemoteNodeAddrTp"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberRemoteNodeAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberIsSap"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberPort"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberEncap")) if mibBuilder.loadTexts: tlsRdntGrpMemberEntry.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberEntry.setDescription('Redundant Group Member information.') tlsRdntGrpMemberRemoteNodeAddrTp = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 1), InetAddressType()) if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddrTp.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddrTp.setDescription('The value of the object tlsRdntGrpMemberRemoteNodeAddrTp specifies the addresstype of the remote ldp peer.') tlsRdntGrpMemberRemoteNodeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 2), InetAddress()) if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddr.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddr.setDescription('The value of the object tlsRdntGrpMemberRemoteNodeAddr specifies the ip address of the remote ldp peer.') tlsRdntGrpMemberIsSap = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 3), TruthValue()) if mibBuilder.loadTexts: tlsRdntGrpMemberIsSap.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberIsSap.setDescription('The value of the object tlsRdntGrpMemberIsSap specifies whether the Port ID and Encap describe a sap or a port (in which case Encap has no meaning).') tlsRdntGrpMemberPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 4), TmnxPortID()) if mibBuilder.loadTexts: tlsRdntGrpMemberPort.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberPort.setDescription("When the value of tlsRdntGrpMemberIsSap is 'sap', the value of the object tlsRdntGrpMemberPort, along with tlsRdntGrpMemberEncap, specifies a SAP, otherwise a port (in which case tlsRdntGrpMemberEncap is insignificant).") tlsRdntGrpMemberEncap = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 5), TmnxEncapVal()) if mibBuilder.loadTexts: tlsRdntGrpMemberEncap.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberEncap.setDescription("When the value of tlsRdntGrpMemberIsSap is 'sap', the value of the object tlsRdntGrpMemberEncap, along with tlsRdntGrpMemberPort, specifies a SAP. This object is otherwise insignificant and should contain a value of 0.") tlsRdntGrpMemberRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 6), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsRdntGrpMemberRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRowStatus.setDescription("The value of the object tlsRdntGrpMemberRowStatus specifies the status of this row. The only values supported are 'active', 'createAndGo' and 'destroy'.") tlsRdntGrpMemberLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 7), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsRdntGrpMemberLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberLastMgmtChange.setDescription('The value of the object tlsRdntGrpMemberLastMgmtChange indicates the time of the most recent management-initiated change to this redundant group member.') tlsMstiTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12), ) if mibBuilder.loadTexts: tlsMstiTable.setStatus('current') if mibBuilder.loadTexts: tlsMstiTable.setDescription('A table that contains Multiple Spanning Tree Instance (MSTI) information. Each management VPLS running MSTP can have upto 15 MSTI, not including the CIST.') tlsMstiEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiInstanceId")) if mibBuilder.loadTexts: tlsMstiEntry.setStatus('current') if mibBuilder.loadTexts: tlsMstiEntry.setDescription('Information about a specific MSTI.') tlsMstiInstanceId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 1), MstiInstanceId()) if mibBuilder.loadTexts: tlsMstiInstanceId.setStatus('current') if mibBuilder.loadTexts: tlsMstiInstanceId.setDescription('The value of the object tlsMstiInstanceId specifies the Multiple Spanning Tree Instance.') tlsMstiRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsMstiRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsMstiRowStatus.setDescription("The value of the object tlsMstiRowStatus specifies the status of this row. The only values supported during a set operation are 'active', 'createAndGo' and 'destroy'.") tlsMstiPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(32768)).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsMstiPriority.setStatus('current') if mibBuilder.loadTexts: tlsMstiPriority.setDescription("The value of the object tlsMstiPriority specifies the priority of this spcecific Multiple Spanning Tree Instance for this service. It is used as the highest 4 bits of the Bridge ID included in the MSTP BPDU's generated by this bridge. The tlsMstiPriority can only take-on values which multiples of 4096 (4k). If a value is specified which is not a multiple of 4K, then this value will be replaced by the closest multiple of 4K which is lower then the value entered.") tlsMstiLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 4), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMstiLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsMstiLastMgmtChange.setDescription('The value of the object tlsMstiLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this MSTI.') tlsMstiRegionalRoot = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 5), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMstiRegionalRoot.setStatus('current') if mibBuilder.loadTexts: tlsMstiRegionalRoot.setDescription('The value of the object tlsMstiRegionalRoot indicates the bridge identifier of the regional root of the MSTI spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the CIST Regional Root Identifier parameter in all MSTP BPDUs originated by this node.') tlsMstiIntRootCost = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 6), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMstiIntRootCost.setStatus('current') if mibBuilder.loadTexts: tlsMstiIntRootCost.setDescription('The value of the object tlsMstiIntRootCost indicates the cost of the path to the regional root bridge as seen from this bridge.') tlsMstiRemainingHopCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 7), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMstiRemainingHopCount.setStatus('current') if mibBuilder.loadTexts: tlsMstiRemainingHopCount.setDescription('The value of the object tlsMstiRemainingHopCount specifies the remaining number of hops.') tlsMstiRegionalRootPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 8), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMstiRegionalRootPort.setStatus('current') if mibBuilder.loadTexts: tlsMstiRegionalRootPort.setDescription('The value of the object tlsMstiRegionalRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the regional root bridge.') tlsMstiManagedVlanListTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13), ) if mibBuilder.loadTexts: tlsMstiManagedVlanListTable.setStatus('current') if mibBuilder.loadTexts: tlsMstiManagedVlanListTable.setDescription('This table is used only for a management VPLS when MSTP is running. It indicates for each multiple spanning tree instance the ranges of associated VLANs that will be affected when a certain SAP changes state.') tlsMstiManagedVlanListEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiInstanceId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiMvplsMinVlanTag"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiMvplsMaxVlanTag")) if mibBuilder.loadTexts: tlsMstiManagedVlanListEntry.setStatus('current') if mibBuilder.loadTexts: tlsMstiManagedVlanListEntry.setDescription('Each row specifies a range of VLANS associated with a SAP of a MVPLS. Ranges may contains overlapping sections only for Mvpls SAPs that belong to the same service.') tlsMstiMvplsMinVlanTag = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 1), QTag()) if mibBuilder.loadTexts: tlsMstiMvplsMinVlanTag.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsMinVlanTag.setDescription('The value of tlsMstiMvplsMinVlanTag specifies the left bound (i.e. min. value) of a range of VLANs that are associated with the Mvpls SAP. tlsMstiMvplsMinVlanTag must be smaller than (or equal to) tlsMstiMvplsMaxVlanTag.') tlsMstiMvplsMaxVlanTag = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 2), QTag()) if mibBuilder.loadTexts: tlsMstiMvplsMaxVlanTag.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsMaxVlanTag.setDescription('The value of tlsMstiMvplsMaxVlanTag specifies the right bound (i.e. max. value) of a range of VLANs that are associated with the Mvpls SAP.') tlsMstiMvplsRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 3), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsMstiMvplsRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsRowStatus.setDescription("The value of tlsMstiMvplsRowStatus specifies the status of this row. The only values supported during a set operation are 'active', 'createAndGo' and 'destroy'.") tlsEgressMulticastGroupTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14), ) if mibBuilder.loadTexts: tlsEgressMulticastGroupTable.setStatus('current') if mibBuilder.loadTexts: tlsEgressMulticastGroupTable.setDescription("This table is used to manage VPLS Egress Multicast Groups. These groups are used to group together VPLS SAP's in order to improve the efficiency of the egress multicast replication process.") tlsEgressMulticastGroupEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1), ).setIndexNames((1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpName")) if mibBuilder.loadTexts: tlsEgressMulticastGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlsEgressMulticastGroupEntry.setDescription('An entry containing management information applicable to a particular VPLS Egress Multicast Group.') tlsEgrMcGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 1), TNamedItem()) if mibBuilder.loadTexts: tlsEgrMcGrpName.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpName.setDescription('The value of tlsEgrMcGrpName indicates the name of the Egress Multicast Group.') tlsEgrMcGrpRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpRowStatus.setDescription('The value of tlsEgrMcGrpRowStatus controls the creation and deletion of rows in this table.') tlsEgrMcGrpLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsEgrMcGrpLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpLastMgmtChange.setDescription('The value of tlsEgrMcGrpLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') tlsEgrMcGrpDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 4), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpDescription.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpDescription.setDescription('Generic information about this Egress Multicast Group.') tlsEgrMcGrpChainLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(16)).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpChainLimit.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpChainLimit.setDescription("The value of tlsEgrMcGrpChainLimit specifies the maximum number of SAP's that can be placed together in a single chain on this Egress Multicast Group.") tlsEgrMcGrpEncapType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 10))).clone(namedValues=NamedValues(("unknown", 0), ("nullEncap", 1), ("qEncap", 2), ("qinqEncap", 10))).clone('nullEncap')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpEncapType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpEncapType.setDescription("The value of tlsEgrMcGrpEncapType specifies the common service encapsulation type used by all the SAP's on this Egress Multicast Group.") tlsEgrMcGrpDot1qEtherType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1536, 65535)).clone(33024)).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpDot1qEtherType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpDot1qEtherType.setDescription("The value of tlsEgrMcGrpDot1qEtherType specifies the common ethertype value used by all the 802.1Q SAP's on this Egress Multicast Group.") tlsEgrMcGrpMacFilterId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 8), TFilterID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpMacFilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpMacFilterId.setDescription("The value of tlsEgrMcGrpMacFilterId specifies the common egress MAC filter ID used by all the SAP's on this Egress Multicast Group.") tlsEgrMcGrpIpFilterId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 9), TFilterID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpIpFilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpIpFilterId.setDescription("The value of tlsEgrMcGrpIpFilterId specifies the common egress IP filter ID used by all the SAP's on this Egress Multicast Group.") tlsEgrMcGrpIpv6FilterId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 10), TFilterID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpIpv6FilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpIpv6FilterId.setDescription("The value of tlsEgrMcGrpIpv6FilterId specifies the common egress IPv6 filter ID used by all the SAP's on this Egress Multicast Group.") tlsEgrMcGrpQinqEtherType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1536, 65535)).clone(33024)).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpQinqEtherType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpQinqEtherType.setDescription("The value of tlsEgrMcGrpQinqEtherType specifies the common ethertype value used by all the 'QinQ' SAP's in this Egress Multicast Group.") tlsEgrMcGrpQinqFixedTagPosition = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("topTag", 2), ("bottomTag", 3))).clone('bottomTag')).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpQinqFixedTagPosition.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpQinqFixedTagPosition.setDescription("The value of tlsEgrMcGrpQinqFixedTagPosition specifies the common position of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group. This object has no meaning when the value of tlsEgrMcGrpEncapType is not 'qinqEncap'.") tlsEgrMcGrpAdminQinqFixedTagVal = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 13), Unsigned32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(0, 0), ValueRangeConstraint(1, 4094), ))).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsEgrMcGrpAdminQinqFixedTagVal.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpAdminQinqFixedTagVal.setDescription("The value of tlsEgrMcGrpAdminQinqFixedTagVal specifies the provisioned common value of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group. The value 0 is used to indicate that the actual value of the fixed tag will be defined implicitly by the corresponding tag of the first SAP added to this Egress Multicast Group.") tlsEgrMcGrpOperQinqFixedTagVal = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 14), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsEgrMcGrpOperQinqFixedTagVal.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpOperQinqFixedTagVal.setDescription("The value of tlsEgrMcGrpOperQinqFixedTagVal specifies the operating common value of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group.") svcDhcpLeaseStateTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16), ) if mibBuilder.loadTexts: svcDhcpLeaseStateTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateTable.setDescription('A table that contains DHCP lease states.') svcDhcpLeaseStateEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateCiAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateCiAddr")) if mibBuilder.loadTexts: svcDhcpLeaseStateEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateEntry.setDescription('Information about a specific DHCP lease state.') svcDhcpLseStateCiAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 1), InetAddressType()) if mibBuilder.loadTexts: svcDhcpLseStateCiAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddrType.setDescription('The value of svcDhcpLseStateCiAddrType indicates the address type of svcDhcpLseStateCiAddr.') svcDhcpLseStateCiAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 2), InetAddress()) if mibBuilder.loadTexts: svcDhcpLseStateCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddr.setDescription('The value of svcDhcpLseStateCiAddr indicates the IP address of the DHCP lease state.') svcDhcpLseStateLocale = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("sap", 1), ("sdp", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateLocale.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateLocale.setDescription('The value of svcDhcpLseStateLocale specifies if the DHCP lease state is learned via a SAP or SDP.') svcDhcpLseStatePortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 4), TmnxPortID()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePortId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePortId.setDescription("When the value of svcDhcpLseStateLocale is 'sap', the object svcDhcpLseStatePortId along with the object svcDhcpLseStateEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svcDhcpLseStateEncapValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 5), TmnxEncapVal()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateEncapValue.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateEncapValue.setDescription("When the value of svcDhcpLseStateLocale is 'sap', the object svcDhcpLseStatePortId along with the object svcDhcpLseStateEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svcDhcpLseStateSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 6), SdpId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSdpId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSdpId.setDescription("When the value of svcDhcpLseStateLocale is 'sdp', the object svcDhcpLseStateSdpId, along with the object svcDhcpLseStateVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svcDhcpLseStateVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 7), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateVcId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateVcId.setDescription("When the value of svcDhcpLseStateLocale is 'sdp', the object svcDhcpLseStateSdpId, along with the object svcDhcpLseStateVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svcDhcpLseStateChAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 8), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateChAddr.setDescription('The value of svcDhcpLseStateChAddr indicates the MAC address of the DHCP lease state.') svcDhcpLseStateRemainLseTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 9), Unsigned32()).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateRemainLseTime.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRemainLseTime.setDescription('The value of svcDhcpLseStateRemainLseTime indicates the remaining lease time of the DHCP lease state.') svcDhcpLseStateOption82 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 10), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateOption82.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOption82.setDescription('The value of svcDhcpLseStateOption82 indicates the content of option 82 for this DHCP lease state.') svcDhcpLseStatePersistKey = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 11), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePersistKey.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePersistKey.setDescription('The value of svcDhcpLseStatePersistKey indicates a key value that can be used to track this lease state in the persistence file.') svcDhcpLseStateSubscrIdent = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 12), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSubscrIdent.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSubscrIdent.setDescription('The value of svcDhcpLseStateSubscrIdent indicates the id of the parent subscriber of this DHCP lease state. The value of svcDhcpLseStateOriginSubscrId indicates whether this subscriber identification was received from the DHCP or from the Radius server.') svcDhcpLseStateSubProfString = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 13), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSubProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSubProfString.setDescription('The value of svcDhcpLseStateSubProfString indicates the subscriber profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this subscriber profile string was received from the DHCP or from the Radius server.') svcDhcpLseStateSlaProfString = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 14), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSlaProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSlaProfString.setDescription('The value of svcDhcpLseStateSlaProfString indicates the SLA profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this SLA profile string was received from the DHCP or from the Radius server.') svcDhcpLseStateShcvOperState = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("disabled", 1), ("undefined", 2), ("down", 3), ("up", 4)))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateShcvOperState.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvOperState.setDescription('The value of svcDhcpLseStateShcvOperState indicates the state of the subscriber host connectivity check for this DHCP lease state.') svcDhcpLseStateShcvChecks = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 16), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateShcvChecks.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvChecks.setDescription('The value of svcDhcpLseStateShcvChecks indicates the number of host connectivity check requests for this DHCP lease state.') svcDhcpLseStateShcvReplies = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 17), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateShcvReplies.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplies.setDescription('The value of svcDhcpLseStateShcvReplies indicates the number of host connectivity replies for this DHCP lease state.') svcDhcpLseStateShcvReplyTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 18), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateShcvReplyTime.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplyTime.setDescription('The value of svcDhcpLseStateShcvReplyTime indicates the time of the last successful host connectivity check for this DHCP lease state.') svcDhcpLseStateClientId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 19), OctetString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateClientId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateClientId.setDescription('The value of svcDhcpLseStateClientId indicates the DHCPv6 clients unique identifier (DUID) as generated by the client.') svcDhcpLseStateIAID = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 20), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateIAID.setReference('RFC 3315 section 10') if mibBuilder.loadTexts: svcDhcpLseStateIAID.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateIAID.setDescription('The value of svcDhcpLseStateIAID indicates the Identity Association ID (IAID) the address or prefix defined by svcDhcpLseStateCiAddr/svcDhcpLseStateCiAddrMaskLen has been assigned to. This object is only meaningful for DHCPv6 leases.') svcDhcpLseStateIAIDType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 21), IAIDType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setReference('RFC 3315') if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setDescription('The value of svcDhcpLseStateIAIDType indicates the type of svcDhcpLseStateIAID. This object is only meaningful for DHCPv6 leases.') svcDhcpLseStateCiAddrMaskLen = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 22), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 128))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateCiAddrMaskLen.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddrMaskLen.setDescription('The value of svcDhcpLseStateCiAddrMaskLen indicates the prefix length of the svcDhcpLseStateCiAddr for a DHCPv6 lease.') svcDhcpLseStateRetailerSvcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 23), TmnxServId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateRetailerSvcId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRetailerSvcId.setDescription('The value of svcDhcpLseStateRetailerSvcId indicates the service ID of the retailer VPRN service to which this DHCP lease belongs. When this object is non zero, the DHCP lease belongs to a retailer VPRN.') svcDhcpLseStateRetailerIf = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 24), InterfaceIndexOrZero()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateRetailerIf.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRetailerIf.setDescription('The value of svcDhcpLseStateRetailerIf indicates the interface index of the retailer VPRN interface to which this DHCP lease belongs. When this object is non zero, the DHCP lease belongs to a retailer VPRN.') svcDhcpLseStateAncpString = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 25), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(1, 63))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateAncpString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateAncpString.setDescription('The object svcDhcpLseStateAncpString indicates the value of the ancp-string received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginStrings.') svcDhcpLseStateFramedIpNetMaskTp = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 26), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMaskTp.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMaskTp.setDescription('The value of svcDhcpLseStateFramedIpNetMaskTp indicates the address type of svcDhcpLseStateFramedIpNetMask.') svcDhcpLseStateFramedIpNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 27), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMask.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMask.setDescription("The value of svcDhcpLseStateFramedIpNetMask indicates the framed IP netmask received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateBCastIpAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 28), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddrType.setDescription('The value of svcDhcpLseStateBCastIpAddrType indicates the address type of svcDhcpLseStateBCastIpAddr.') svcDhcpLseStateBCastIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 29), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddr.setDescription("The value of svcDhcpLseStateBCastIpAddr indicates the broadcast IP address received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateDefaultRouterTp = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 30), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouterTp.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouterTp.setDescription('The value of svcDhcpLseStateDefaultRouterTp indicates the address type of svcDhcpLseStateDefaultRouter.') svcDhcpLseStateDefaultRouter = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 31), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouter.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouter.setDescription("The value of svcDhcpLseStateDefaultRouter indicates the default router received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStatePrimaryDnsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 32), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDnsType.setDescription('The value of svcDhcpLseStatePrimaryDnsType indicates the address type of svcDhcpLseStatePrimaryDns.') svcDhcpLseStatePrimaryDns = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 33), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDns.setDescription("The value of svcDhcpLseStatePrimaryDns indicates the primary DNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateSecondaryDnsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 34), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDnsType.setDescription('The value of svcDhcpLseStateSecondaryDnsType indicates the address type of svcDhcpLseStateSecondaryDns.') svcDhcpLseStateSecondaryDns = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 35), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDns.setDescription("The value of svcDhcpLseStateSecondaryDns indicates the secondary DNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateSessionTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 36), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSessionTimeout.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSessionTimeout.setDescription('The value of svcDhcpLseStateSessionTimeout indicates the session timeout received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo.') svcDhcpLseStateServerLeaseStart = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 37), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseStart.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseStart.setDescription('The value of svcDhcpLseStateServerLeaseStart indicates when this lease was created.') svcDhcpLseStateServerLastRenew = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 38), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateServerLastRenew.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLastRenew.setDescription('The value of svcDhcpLseStateServerLastRenew indicates when we last received a renewal from either the DHCP or the Radius server.') svcDhcpLseStateServerLeaseEnd = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 39), DateAndTime()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseEnd.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseEnd.setDescription('The value of svcDhcpLseStateServerLeaseEnd indicates when the server will consider the lease as being expired.') svcDhcpLseStateDhcpServerAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 40), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddrType.setDescription('The value of svcDhcpLseStateDhcpServerAddrType indicates the address type of svcDhcpLseStateDhcpServerAddr.') svcDhcpLseStateDhcpServerAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 41), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddr.setDescription("The value of svcDhcpLseStateDhcpServerAddr indicates the IP address of the DHCP server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateOriginSubscrId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 42), DhcpLseStateInfoOrigin()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateOriginSubscrId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginSubscrId.setDescription('The value of svcDhcpLseStateOriginSubscrId indicates which source provided the subscriber-id.') svcDhcpLseStateOriginStrings = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 43), DhcpLseStateInfoOrigin()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateOriginStrings.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginStrings.setDescription('The value of svcDhcpLseStateOriginStrings indicates which server provided the Sub-profile, SLA profile, Ancp string and Intermediate Destination Id.') svcDhcpLseStateOriginLeaseInfo = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 44), DhcpLseStateInfoOrigin()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateOriginLeaseInfo.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginLeaseInfo.setDescription('The value of svcDhcpLseStateOriginLeaseInfo indicates which server provided the lease state information.') svcDhcpLseStateDhcpClientAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 45), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddrType.setDescription('The value of svcDhcpLseStateDhcpClientAddrType indicates the address type of svcDhcpLseStateDhcpClientAddr.') svcDhcpLseStateDhcpClientAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 46), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddr.setDescription('The value of svcDhcpLseStateDhcpClientAddr indicates the IP address of the DHCP Client that owns the lease info. In some cases this address can be different from the address specified in svcDhcpLseStateCiAddr, e.g. in case of DHCPv6 prefix delegation.') svcDhcpLseStateLeaseSplitActive = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 47), TruthValue()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateLeaseSplitActive.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateLeaseSplitActive.setDescription("The value of svcDhcpLseStateLeaseSplitActive indicates whether or not the current lease time resulted from a lease split. If svcDhcpLseStateLeaseSplitActive is 'true', the lease time passed to the client is determined by the value of the object sapTlsDhcpProxyLeaseTime for VPLS SAPs, or by the value of the object vRtrIfDHCPProxyLeaseTime for Layer 3 interfaces.") svcDhcpLseStateInterDestId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 48), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateInterDestId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateInterDestId.setDescription('The object svcDhcpLseStateInterDestId indicates the intermediate destination identifier received from either the DHCP or the Radius server or the local user database as indicated by the value of svcDhcpLseStateOriginStrings.') svcDhcpLseStatePrimaryNbnsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 49), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbnsType.setDescription('The value of svcDhcpLseStatePrimaryNbnsType indicates the address type of svcDhcpLseStatePrimaryNbns.') svcDhcpLseStatePrimaryNbns = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 50), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbns.setDescription("The value of svcDhcpLseStatePrimaryNbns indicates the primary NBNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateSecondaryNbnsType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 51), InetAddressType()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbnsType.setDescription('The value of svcDhcpLseStateSecondaryNbnsType indicates the address type of svcDhcpLseStateSecondaryNbns.') svcDhcpLseStateSecondaryNbns = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 52), InetAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbns.setDescription("The value of svcDhcpLseStateSecondaryNbns indicates the secondary NBNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svcDhcpLseStateAppProfString = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 53), DisplayString()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateAppProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateAppProfString.setDescription('The value of svcDhcpLseStateAppProfString indicates the application profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this application profile string was received from DHCP or from the Radius server.') svcDhcpLseStateNextHopMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 54), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpLseStateNextHopMacAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNextHopMacAddr.setDescription("The value of svcDhcpLseStateNextHopMacAddr indicates the MAC address of the next hop of this DHCP lease state. Normally, the next hop MAC address equals the value of svcDhcpLseStateChAddr. If the value of the object ALCATEL-IND1-TIMETRA-VRTR-MIB::vRtrIfDHCPLayer2Header is set to 'true', a routing device can be present between this node and the DHCP client. In that case, the value of the next hop MAC address contains the MAC address of this routing device.") tlsProtectedMacTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17), ) if mibBuilder.loadTexts: tlsProtectedMacTable.setStatus('current') if mibBuilder.loadTexts: tlsProtectedMacTable.setDescription("This table is used to manage protected MAC addresses within a VPLS's FDB.") tlsProtectedMacEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsProtMacAddress")) if mibBuilder.loadTexts: tlsProtectedMacEntry.setStatus('current') if mibBuilder.loadTexts: tlsProtectedMacEntry.setDescription('An entry containing management information applicable to a particular protected MAC address.') tlsProtMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 1), MacAddress()) if mibBuilder.loadTexts: tlsProtMacAddress.setStatus('current') if mibBuilder.loadTexts: tlsProtMacAddress.setDescription('The value of tlsProtMacAddress indicates the address of the protected MAC.') tlsProtMacRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: tlsProtMacRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsProtMacRowStatus.setDescription('The value of tlsProtMacRowStatus controls the creation and deletion of rows in this table.') tlsProtMacLastMgmtChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 3), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsProtMacLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsProtMacLastMgmtChange.setDescription('The value of tlsProtMacLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') svcDhcpLeaseStateModifyTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18), ) if mibBuilder.loadTexts: svcDhcpLeaseStateModifyTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateModifyTable.setDescription('The svcDhcpLeaseStateModifyTable augments the svcDhcpLeaseStateTable. The table allows the operator to modify attributes of the lease state.') svcDhcpLeaseStateModifyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1), ) svcDhcpLeaseStateEntry.registerAugmentions(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLeaseStateModifyEntry")) svcDhcpLeaseStateModifyEntry.setIndexNames(*svcDhcpLeaseStateEntry.getIndexNames()) if mibBuilder.loadTexts: svcDhcpLeaseStateModifyEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateModifyEntry.setDescription("Each row entry contains parameters that allow to modify a lease-state's attributes.") svcDhcpLseStateModifySubIndent = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 1), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32)).clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModifySubIndent.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySubIndent.setDescription('The value of svcDhcpLseStateModifySubIndent allows to specify a new subscriber name for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new subscriber name. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcDhcpLseStateModifySubProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModifySubProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySubProfile.setDescription('The value of svcDhcpLseStateModifySubProfile allows to specify a new subscriber profile string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new subscriber profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcDhcpLseStateModifySlaProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModifySlaProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySlaProfile.setDescription('The value of svcDhcpLseStateModifySlaProfile allows to specify a new SLA profile string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new SLA profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcDhcpLseStateEvaluateState = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 4), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateEvaluateState.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateEvaluateState.setDescription("The value of svcDhcpLseStateEvaluateState allows to cause a re-evaluation of the specified lease state. When this object is set to 'true', the system will perform a re-evaluation of the lease state. GETs and GETNEXTs on this variable return false. It is not possible to simultaneously request for a lease-state re-evaluation, and modify any of the svcDhcpLseStateModifySubIndent, svcDhcpLseStateModifySubProfile or svcDhcpLseStateModifySlaProfile values.") svcDhcpLseStateModInterDestId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32)).clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModInterDestId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModInterDestId.setDescription('The value of svcDhcpLseStateModInterDestId allows to specify a new intermediate destination id for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new intermediate destination id. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcDhcpLseStateModifyAncpString = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 6), TmnxAncpStringOrZero().clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModifyAncpString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifyAncpString.setDescription('The value of svcDhcpLseStateModifyAncpString allows to specify a new ANCP-string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new ANCP-string. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcDhcpLseStateModifyAppProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16)).clone(hexValue="")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateModifyAppProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifyAppProfile.setDescription('The value of svcDhcpLseStateModifyAppProfile specifies a new application profile string for this lease state. When a SET of this object is done with a non empty string, the system assigns a new application profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svcEndPointTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19), ) if mibBuilder.loadTexts: svcEndPointTable.setStatus('current') if mibBuilder.loadTexts: svcEndPointTable.setDescription('The svcEndPointTable has an entry for each service endpoint configured on this system.') svcEndPointEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointName")) if mibBuilder.loadTexts: svcEndPointEntry.setStatus('current') if mibBuilder.loadTexts: svcEndPointEntry.setDescription('Each row entry represents a particular service endpoint. Entries are created/deleted by the user.') svcEndPointName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 1), TNamedItem()) if mibBuilder.loadTexts: svcEndPointName.setStatus('current') if mibBuilder.loadTexts: svcEndPointName.setDescription('The value of svcEndPointName specifies the name of the service endpoint.') svcEndPointRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointRowStatus.setStatus('current') if mibBuilder.loadTexts: svcEndPointRowStatus.setDescription('The value of svcEndPointRowStatus is used for the creation and deletion of service endpoints.') svcEndPointDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 3), ServObjDesc()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointDescription.setStatus('current') if mibBuilder.loadTexts: svcEndPointDescription.setDescription('The value of svcEndPointDescription specifies the textual description of this service endpoint.') svcEndPointRevertTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(-1, -1), ValueRangeConstraint(0, 600), ))).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointRevertTime.setStatus('current') if mibBuilder.loadTexts: svcEndPointRevertTime.setDescription("The value of svcEndPointRevertTime specifies the time to wait before reverting back to the primary spoke-sdp defined on this service endpoint, after having failed over to a backup spoke-sdp. When the value is '-1', the spoke-sdp will never revert back.") svcEndPointTxActiveType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("none", 0), ("sap", 1), ("sdpBind", 2)))).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveType.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveType.setDescription('The value of svcEndPointTxActiveType indicates the type of end-point object that is current transmit active. ') svcEndPointTxActivePortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 6), TmnxPortID()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActivePortId.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActivePortId.setDescription("The value of svcEndPointTxActivePortId indicates the Port ID of the SAP that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sap'.") svcEndPointTxActiveEncap = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 7), TmnxEncapVal()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveEncap.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveEncap.setDescription("The value of svcEndPointTxActiveEncap indicates the encapsulation value of the SAP that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sap'.") svcEndPointTxActiveSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 8), SdpBindId()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveSdpId.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveSdpId.setDescription("The value of svcEndPointTxActiveSdpId indicates the SDP bind ID of the SDP bind that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sdpBind'.") svcEndPointForceSwitchOver = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 9), TmnxActionType().clone('notApplicable')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointForceSwitchOver.setStatus('current') if mibBuilder.loadTexts: svcEndPointForceSwitchOver.setDescription("The value of svcEndPointForceSwitchOver specifies whether to force a switchover of the active SDP bind. When it is set to 'doAction', the SDP bind specified by svcEndPointForceSwitchOverSdpId will become active.") svcEndPointForceSwitchOverSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 10), SdpBindId().clone(hexValue="0000000000000000")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointForceSwitchOverSdpId.setStatus('current') if mibBuilder.loadTexts: svcEndPointForceSwitchOverSdpId.setDescription("The value of svcEndPointForceSwitchOverSdpId specifies the SDP bind to switch over to when svcEndPointForceSwitchOver is set to 'doAction'. If the value of this object is non default, it indicates that a forced switchover has taken place. Setting this object to the default value clears any previous forced switchover. ") svcEndPointActiveHoldDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 11), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setUnits('deci-seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointActiveHoldDelay.setStatus('current') if mibBuilder.loadTexts: svcEndPointActiveHoldDelay.setDescription('The value of svcEndPointActiveHoldDelay specifies the amount of time in deci-seconds to hold the active state before going into the standby state when a local MC-LAG SAP goes down.') svcEndPointIgnoreStandbySig = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 12), TruthValue().clone('false')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointIgnoreStandbySig.setStatus('current') if mibBuilder.loadTexts: svcEndPointIgnoreStandbySig.setDescription("The value of svcEndPointIgnoreStandbySig specifies whether the local internal tasks will take into account the 'pseudo-wire forwarding standby' bit received from the LDP peer which is normally ignored. When set to 'true', this bit is not considered in the internal tasks. A similar object sdpBindTlsIgnoreStandbySig is present at the SDP level. The value of sdpBindTlsIgnoreStandbySig is set to the value of svcEndPointIgnoreStandbySig for the spoke-SDP associated with this endpoint.") svcEndPointMacPinning = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 13), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointMacPinning.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacPinning.setDescription('The value of svcEndPointMacPinning specifies whether or not MAC address pinning is active on this end-point.') svcEndPointMacLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 196607))).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointMacLimit.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimit.setDescription("The value of the object svcEndPointMacLimit specifies the maximum number of learned and static entries allowed for this end-point. The value 0 means: no limit for this end-point. When the value of ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the maximum value of svcEndPointMacLimit is '131071'.") svcEndPointSuppressStandbySig = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 15), TruthValue().clone('true')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEndPointSuppressStandbySig.setStatus('current') if mibBuilder.loadTexts: svcEndPointSuppressStandbySig.setDescription("The value of the object svcEndPointSuppressStandbySig specifies whether the 'pseudo wire forwarding standby' bit will be sent to the LDP peer whenever the spoke SDP 'svcEndPointTxActiveSdpId' is selected as standby. When set to 'true', this bit will not be sent.") svcEndPointRevertTimeCountDn = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(ValueRangeConstraint(-1, -1), ValueRangeConstraint(0, 600), ))).setUnits('seconds').setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointRevertTimeCountDn.setStatus('current') if mibBuilder.loadTexts: svcEndPointRevertTimeCountDn.setDescription('The value of svcEndPointRevertTimeCountDn indicates the timer count down before reverting back to the primary spoke-sdp defined on this service endpoint, after having failed over to a backup spoke-sdp. This timer count down begins after primary Spoke SDP becomes operational. The value of -1 indicates when revert is not-applicable.') svcEndPointTxActiveChangeCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 17), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveChangeCount.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveChangeCount.setDescription('The value of svcEndPointTxActiveChangeCount indicates the number of times active transmit change has taken place in this endpoint.') svcEndPointTxActiveLastChange = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 18), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveLastChange.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveLastChange.setDescription('The value of svcEndPointTxActiveLastChange indicates the value of sysUpTime at the time of the last active transmit change in this endpoint.') svcEndPointTxActiveUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 19), TimeTicks()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEndPointTxActiveUpTime.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveUpTime.setDescription("The value of svcEndPointTxActiveUpTime indicates the active 'up' time (in hundredths of a second) of the end-point object that is current transmit active.") iesGrpIfTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21), ) if mibBuilder.loadTexts: iesGrpIfTable.setStatus('current') if mibBuilder.loadTexts: iesGrpIfTable.setDescription('The iesGrpIfTable has entry for each group interface configured on this system.') iesGrpIfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex")) if mibBuilder.loadTexts: iesGrpIfEntry.setStatus('current') if mibBuilder.loadTexts: iesGrpIfEntry.setDescription("Each row entry represents the attributes of a group interface. Entries are create/destroyed when entries in iesIfEntry with iesIfType 'group' are created/destroyed.") iesGrpIfRedInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1, 1), InterfaceIndexOrZero()).setMaxAccess("readwrite") if mibBuilder.loadTexts: iesGrpIfRedInterface.setStatus('current') if mibBuilder.loadTexts: iesGrpIfRedInterface.setDescription("The value of iesGrpIfRedInterface specifies the ifIndex of the redundant interface this group interface is tied to. The interface pointed to by this object must be of type 'redundant'.") iesGrpIfOperUpWhileEmpty = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1, 2), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: iesGrpIfOperUpWhileEmpty.setStatus('current') if mibBuilder.loadTexts: iesGrpIfOperUpWhileEmpty.setDescription("The value of iesGrpIfOperUpWhileEmpty specifies the whether that operational status of the the IES group interface, as indicated by iesIfOperStatus, should have a value of 'up' even when there are no SAPs on the group interface. If the value of iesGrpIfOperUpWhileEmpty is 'true', the value of iesIfOperStatus for the IES group interface will be 'up' when there are no SAPs on the group interface. When the value of iesGrpIfOperUpWhileEmpty is 'false', the value of iesIfOperStatus will depend on the operational state of the SAPs on the group interface. The value of iesGrpIfOperUpWhileEmpty will be ignored when there are SAPs on the IES group interface.") svcPEDiscoveryPolicyTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22), ) if mibBuilder.loadTexts: svcPEDiscoveryPolicyTable.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyTable.setDescription('The svcPEDiscoveryPolicyTable has an entry for each PE policy.') svcPEDiscoveryPolicyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1), ).setIndexNames((1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyName")) if mibBuilder.loadTexts: svcPEDiscoveryPolicyEntry.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyEntry.setDescription('svcPEDiscoveryPolicyEntry is an entry (conceptual row) in the svcPEDiscoveryPolicyTable. Each entry represents the configuration of a PE Discovery Policy. Entries in this table can be created and deleted via SNMP SET operations to svcPEDiscoveryPolicyRowStatus.') svcPEDiscoveryPolicyName = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 1), TNamedItem()) if mibBuilder.loadTexts: svcPEDiscoveryPolicyName.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyName.setDescription('The value of the object svcPEDiscoveryPolicyName specifies the RADIUS PE Discovery Policy name.') svcPEDiscoveryPolicyRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscoveryPolicyRowStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyRowStatus.setDescription("svcPEDiscoveryPolicyRowStatus controls the creation and deletion of rows in the table. To create a row in the svcPEDiscoveryPolicyTable, set svcPEDiscoveryPolicyRowStatus to 'createAndGo'. All objects will take on default values and the agent will change svcPEDiscoveryPolicyRowStatus to 'active'. To delete a row in the svcPEDiscoveryPolicyTable, set svcPEDiscoveryPolicyRowStatus to 'delete'.") svcPEDiscoveryPolicyPassword = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 3), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 32)).clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscoveryPolicyPassword.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyPassword.setDescription('The value of svcPEDiscoveryPolicyPassword specifies the password that is used when contacting the RADIUS server for VPLS auto-discovery. The value of svcPEDiscPolServerSecret cannot be set to an empty string. GETs and GETNEXTs on this variable return an empty string.') svcPEDiscoveryPolicyInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(5)).setUnits('minutes').setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscoveryPolicyInterval.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyInterval.setDescription('The value of svcPEDiscoveryPolicyInterval specifies the polling interval for Radius PE discovery in minutes.') svcPEDiscoveryPolicyTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 90)).clone(3)).setUnits('seconds').setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscoveryPolicyTimeout.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyTimeout.setDescription('The value of svcPEDiscoveryPolicyTimeout specifies the number of seconds to wait before timing out a RADIUS server.') svcPEDiscPolServerTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23), ) if mibBuilder.loadTexts: svcPEDiscPolServerTable.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerTable.setDescription('The svcPEDiscPolServerTable has an entry for each RADIUS server. The table can have up to a maximum of 5 entries.') svcPEDiscPolServerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerIndex"), (1, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyName")) if mibBuilder.loadTexts: svcPEDiscPolServerEntry.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerEntry.setDescription('svcPEDiscPolServerEntry is an entry (conceptual row) in the svcPEDiscPolServerTable. Each entry represents the configuration for a RADIUS server. Entries in this table can be created and deleted via SNMP SET operations to svcPEDiscPolServerRowStatus.') svcPEDiscPolServerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))) if mibBuilder.loadTexts: svcPEDiscPolServerIndex.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerIndex.setDescription('The svcPEDiscPolServerIndex indicates the unique value which identifies a specific radius server.') svcPEDiscPolServerRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 2), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscPolServerRowStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerRowStatus.setDescription("svcPEDiscPolServerRowStatus controls the creation and deletion of rows in the table. To create a row in the svcPEDiscPolServerTable, set svcPEDiscPolServerRowStatus to 'createAndGo'. All objects except svcPEDiscPolServerSecret will take on default values and the agent will change svcPEDiscPolServerRowStatus to 'active'. A value for svcPEDiscPolServerSecret must be always specified or else the row creation will fail. To delete a row in the svcPEDiscPolServerTable, set tmnxRadiusServerRowStatus to 'delete'.") svcPEDiscPolServerAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 3), InetAddressType().clone('unknown')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscPolServerAddressType.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerAddressType.setDescription('The value of svcPEDiscPolServerAddressType is used to configure the address type of svcPEDiscPolServerAddress address.') svcPEDiscPolServerAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 4), InetAddress().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscPolServerAddress.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerAddress.setDescription('The value of svcPEDiscPolServerAddress is used to configure the IP address of the RADIUS server.') svcPEDiscPolServerSecret = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 20))).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscPolServerSecret.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerSecret.setDescription('The svcPEDiscPolServerSecret is used to configure the secret key associated with the RADIUS server. The value of svcPEDiscPolServerSecret cannot be set to an empty string. GETs and GETNEXTs on this variable return an empty string.') svcPEDiscPolServerOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 6), ServiceOperStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcPEDiscPolServerOperStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerOperStatus.setDescription('The svcPEDiscPolServerOperStatus indicates the current status of the RADIUS server.') svcPEDiscPolServerPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535)).clone(1812)).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcPEDiscPolServerPort.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerPort.setDescription('The svcPEDiscPolServerPort is used to configure the UDP port number on which to contact the RADIUS server.') svcWholesalerInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24), ) if mibBuilder.loadTexts: svcWholesalerInfoTable.setStatus('current') if mibBuilder.loadTexts: svcWholesalerInfoTable.setDescription('The svcWholesalerInfoTable has an entry for each wholesaler service associated with a retailer service on this system.') svcWholesalerInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcWholesalerID")) if mibBuilder.loadTexts: svcWholesalerInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcWholesalerInfoEntry.setDescription('Each row entry represents the attributes of a wholesaler-retailer pairing. Entries are created/destroyed when forwarding interfaces are defined.') svcWholesalerID = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 1), TmnxServId()) if mibBuilder.loadTexts: svcWholesalerID.setStatus('current') if mibBuilder.loadTexts: svcWholesalerID.setDescription('The value of svcWholesalerID is used to specify the service ID of the wholesaler.') svcWholesalerNumStaticHosts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 2), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcWholesalerNumStaticHosts.setStatus('current') if mibBuilder.loadTexts: svcWholesalerNumStaticHosts.setDescription('The value of svcWholesalerNumStaticHosts indicates the number of static hosts in the wholesaler indicated by svcWholesalerID that belong to subnets of the retailer service.') svcWholesalerNumDynamicHosts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 3), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcWholesalerNumDynamicHosts.setStatus('current') if mibBuilder.loadTexts: svcWholesalerNumDynamicHosts.setDescription('The value of svcWholesalerNumDynamicHosts indicates the number of dynamic hosts in the wholesaler indicated by svcWholesalerID that belong to subnets of the retailer service.') svcDhcpLeaseStateActionTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25), ) if mibBuilder.loadTexts: svcDhcpLeaseStateActionTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateActionTable.setDescription('The svcDhcpLeaseStateActionTable augments the svcDhcpLeaseStateTable. The table allows the operator to perform actions on the lease state.') svcDhcpLeaseStateActionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25, 1), ) svcDhcpLeaseStateEntry.registerAugmentions(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLeaseStateActionEntry")) svcDhcpLeaseStateActionEntry.setIndexNames(*svcDhcpLeaseStateEntry.getIndexNames()) if mibBuilder.loadTexts: svcDhcpLeaseStateActionEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateActionEntry.setDescription('Each row entry contains parameters that allow to perform an action on the corresponding lease-state.') svcDhcpLseStateForceRenew = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25, 1, 1), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcDhcpLseStateForceRenew.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateForceRenew.setDescription("The value of svcDhcpLseStateForceRenew allows to force the DHCP client to renew its lease. When the value of this object is set to 'true', the system will send a forcerenew DHCP message to the client. GETs and GETNEXTs on this variable return false.") svcIfDHCP6MsgStatTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26), ) if mibBuilder.loadTexts: svcIfDHCP6MsgStatTable.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatTable.setDescription('The vRtrDHCP6MsgStatTable has an entry for each interface defined in a service for which DHCP6 can be enabled.') svcIfDHCP6MsgStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex")) if mibBuilder.loadTexts: svcIfDHCP6MsgStatEntry.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatEntry.setDescription('Each row entry represents a collection of counters for each DHCP6 message type for an interface in a service. Entries cannot be created and deleted via SNMP SET operations.') svcIfDHCP6MsgStatsLstClrd = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 1), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcIfDHCP6MsgStatsLstClrd.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsLstClrd.setDescription('The value of svcIfDHCP6MsgStatsLstClrd indicates the sysUpTime when the counters of this row were last reset. A value of zero for this object indicates that the counters have not been reset since the system has last been initialized.') svcIfDHCP6MsgStatsRcvd = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 2), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcIfDHCP6MsgStatsRcvd.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsRcvd.setDescription('The value of svcIfDHCP6MsgStatsRcvd indicates the number of DHCP6 packets were received on this service interface.') svcIfDHCP6MsgStatsSent = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 3), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcIfDHCP6MsgStatsSent.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsSent.setDescription('The value of svcIfDHCP6MsgStatsSent indicates the number of DHCP6 packets were sent on this service interface.') svcIfDHCP6MsgStatsDropped = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 4), Gauge32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcIfDHCP6MsgStatsDropped.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsDropped.setDescription('The value of svcIfDHCP6MsgStatsDropped indicates the number of DHCP6 packets were dropped on this service interface.') svcTlsBackboneInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27), ) if mibBuilder.loadTexts: svcTlsBackboneInfoTable.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneInfoTable.setDescription('The svcTlsBackboneInfoTable augments the svcTlsInfoTable. The table allows the operator to modify attributes of the Provider Backbone Bridging feature.') svcTlsBackboneInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1), ) svcTlsInfoEntry.registerAugmentions(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneInfoEntry")) svcTlsBackboneInfoEntry.setIndexNames(*svcTlsInfoEntry.getIndexNames()) if mibBuilder.loadTexts: svcTlsBackboneInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneInfoEntry.setDescription('Each row entry contains objects that allows the modification of the Provider Backbone Bridging feature for a specific TLS service') svcTlsBackboneSrcMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 1), MacAddress().clone(hexValue="000000000000")).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsBackboneSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneSrcMac.setDescription("The value of svcTlsBackboneSrcMac specifies the Backbone Source MAC-Address for Provider Backbone Bridging packets. If not provisioned, it defaults to the loopback chassis MAC-Address. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'bVpls'.") svcTlsBackboneVplsSvcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 2), TmnxServId()).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsBackboneVplsSvcId.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcId.setDescription("The value of svcTlsBackboneVplsSvcId specifies the Backbone-VPLS service associated with this service. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'. Setting the value of this object to its default value will also set the value of svcTlsBackboneVplsStp to its default value.") svcTlsBackboneVplsSvcISID = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 3), SvcISID().clone(-1)).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsBackboneVplsSvcISID.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcISID.setDescription("The value of the object svcTlsBackboneVplsSvcISID specifies a 24 bit (0..16777215) service instance identifier for this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. The default value of -1 is used to indicate the value of this object is un-specified. This object must be set along with svcTlsBackboneVplsSvcId. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'.") svcTlsBackboneOperSrcMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 4), MacAddress()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsBackboneOperSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneOperSrcMac.setDescription('The value of svcTlsBackboneOperSrcMac indicates the operational Backbone Source MAC-Address for Provider Backbone Bridging packets.') svcTlsBackboneOperVplsSvcISID = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 5), SvcISID()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsBackboneOperVplsSvcISID.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneOperVplsSvcISID.setDescription('The value of svcTlsBackboneOperVplsSvcISID indicates operational value of service instance identifier used for this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field.') svcTlsBackboneLDPMacFlush = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 6), TruthValue().clone('false')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsBackboneLDPMacFlush.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneLDPMacFlush.setDescription("The value of svcTlsBackboneLDPMacFlush specifies whether 'LDP MAC withdraw all from me' message received in the 'iVpls' domain should attempt to generate a new 'LDP MAC withdraw all from me' message in the 'bVpls' domain. Generation of the 'LDP MAC withdraw all from me' message is still constrained by the svcTlsMacFlushOnFail value in the 'bVpls'. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'.") svcTlsBackboneVplsStp = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 7), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readwrite") if mibBuilder.loadTexts: svcTlsBackboneVplsStp.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsStp.setDescription("The value of svcTlsBackboneVplsStp specifies whether STP is enabled on the Backbone VPLS specified by svcTlsBackboneVplsSvcId. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls' or if an attempt is made to set this object to enable when the value of svcTlsBackboneVplsSvcId is set to the default. The value of this object is set to disable when the value of svcTlsBackboneVplsSvcId is set to default.") tlsMFibTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28), ) if mibBuilder.loadTexts: tlsMFibTable.setStatus('current') if mibBuilder.loadTexts: tlsMFibTable.setDescription('tlsMFibTable contains the Multicast FIB for this Tls.') tlsMFibEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibEntryType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpMacAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpInetAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpInetAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibSrcInetAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibSrcInetAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibLocale"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibPortId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibEncapValue"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibSdpId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibVcId")) if mibBuilder.loadTexts: tlsMFibEntry.setStatus('current') if mibBuilder.loadTexts: tlsMFibEntry.setDescription('An entry in the tlsMFibTable. Each entry indicates whether traffic from a certain source to a certain multicast destination (group) needs to be forwarded or blocked on the indicated SAP/SDP.') tlsMFibEntryType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipBased", 1), ("macBased", 2)))) if mibBuilder.loadTexts: tlsMFibEntryType.setStatus('current') if mibBuilder.loadTexts: tlsMFibEntryType.setDescription('The value of the object tlsMFibEntryType indicates the type of this tlsMFibEntry. - macBased: entry used for macBased multicast, as for MLD-snooping and 802.1ak MMRP. - ipBased: entry used for ip_based multicast, as for IGMP-snooping and PIM-snooping.') tlsMFibGrpMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 2), MacAddress()) if mibBuilder.loadTexts: tlsMFibGrpMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpMacAddr.setDescription("The value of the object tlsMFibGrpMacAddr indicates the MAC address for which this table entry contains information. This value is only meaningful if the value of tlsMFibEntryType is 'macBased (2)'.") tlsMFibGrpInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 3), InetAddressType()) if mibBuilder.loadTexts: tlsMFibGrpInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpInetAddrType.setDescription('The value of the object tlsMFibGrpInetAddrType indicates the type of tlsMFibGrpInetAddr.') tlsMFibGrpInetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(16, 16), ))) if mibBuilder.loadTexts: tlsMFibGrpInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpInetAddr.setDescription('The value of the object tlsMFibGrpInetAddr indicates the multicast destination IP address for which this table entry contains information.') tlsMFibSrcInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 5), InetAddressType()) if mibBuilder.loadTexts: tlsMFibSrcInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibSrcInetAddrType.setDescription('The value of tlsMFibSrcInetAddrType indicates the type of tlsMFibSrcInetAddr.') tlsMFibSrcInetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(16, 16), ))) if mibBuilder.loadTexts: tlsMFibSrcInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibSrcInetAddr.setDescription('The value of tlsMFibSrcInetAddr indicates the unicast source IP address for which this table entry contains information.') tlsMFibLocale = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 7), MfibLocation()) if mibBuilder.loadTexts: tlsMFibLocale.setStatus('current') if mibBuilder.loadTexts: tlsMFibLocale.setDescription("The value of tlsMFibLocale indicates if the information in this entry pertains to a 'sap' or to an 'sdp'.") tlsMFibPortId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 8), TmnxPortID()) if mibBuilder.loadTexts: tlsMFibPortId.setStatus('current') if mibBuilder.loadTexts: tlsMFibPortId.setDescription("The value of tlsMFibPortId indicates, together with the object tlsMFibEncapValue, the SAP for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sap'. Otherwise it contains the value 0.") tlsMFibEncapValue = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 9), TmnxEncapVal()) if mibBuilder.loadTexts: tlsMFibEncapValue.setStatus('current') if mibBuilder.loadTexts: tlsMFibEncapValue.setDescription("The value of tlsMFibEncapValue indicates, together with the object tlsMFibPortId, the SAP for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sap'. Otherwise it contains the value 0.") tlsMFibSdpId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 10), SdpId()) if mibBuilder.loadTexts: tlsMFibSdpId.setStatus('current') if mibBuilder.loadTexts: tlsMFibSdpId.setDescription("The value of tlsMFibSdpId indicates, together with the object tlsMFibVcId, the SDP Binding for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sdp'. Otherwise it contains the value 0.") tlsMFibVcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 11), Unsigned32()) if mibBuilder.loadTexts: tlsMFibVcId.setStatus('current') if mibBuilder.loadTexts: tlsMFibVcId.setDescription(" The value of tlsMFibVcId indicates, together with the object tlsMFibSdpId, the SDP Binding for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sdp'. Otherwise it contains the value 0.") tlsMFibFwdOrBlk = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 12), MfibGrpSrcFwdOrBlk()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibFwdOrBlk.setStatus('current') if mibBuilder.loadTexts: tlsMFibFwdOrBlk.setDescription('The value of tlsMFibFwdOrBlk indicates if traffic for the indicated (S,G) pair will be blocked or forwarded on the indicated SAP or SDP.') tlsMFibSvcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 13), TmnxServId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibSvcId.setStatus('current') if mibBuilder.loadTexts: tlsMFibSvcId.setDescription('The value of tlsMFibSvcId indicates the TLS service to which the indicated SAP or SDP belongs.') tlsMFibStatsTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29), ) if mibBuilder.loadTexts: tlsMFibStatsTable.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsTable.setDescription('tlsMFibStatsTable contains statistics for the entries in the IPv4 Multicast FIB for this Tls. These statistics are collected by the forwarding engine.') tlsMFibStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsEntryType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsGrpMacAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsGrpInetAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsGrpInetAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsSrcInetAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsSrcInetAddr")) if mibBuilder.loadTexts: tlsMFibStatsEntry.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsEntry.setDescription('An entry in the tlsMFibStatsTable.') tlsMFibStatsEntryType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipBased", 1), ("macBased", 2)))) if mibBuilder.loadTexts: tlsMFibStatsEntryType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsEntryType.setDescription('The value of the object tlsMFibStatsEntryType indicates the type of this tlsMFibStatsEntry. - macBased: entry used for macBased multicast, as for MLD-snooping and 802.1ak MMRP. - ipBased: entry used for ip_based multicast, as for IGMP-snooping and PIM-snooping.') tlsMFibStatsGrpMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 2), MacAddress()) if mibBuilder.loadTexts: tlsMFibStatsGrpMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpMacAddr.setDescription("The value of tlsMFibStatsGrpMacAddr indicates the MAC address for which this table entry contains information. This value is only meaningful if the value of tlsMFibStatsEntryType is 'macBased (2)'.") tlsMFibStatsGrpInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 3), InetAddressType()) if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddrType.setDescription('The value of tlsMFibStatsGrpInetAddrType indicates the type of tlsMFibStatsGrpInetAddr.') tlsMFibStatsGrpInetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 4), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(16, 16), ))) if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddr.setDescription('The value of tlsMFibStatsGrpInetAddr indicates the multicast destination IP address for which this table entry contains information.') tlsMFibStatsSrcInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 5), InetAddressType()) if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddrType.setDescription('The value of tlsMFibStatsSrcInetAddrType indicates the type of tlsMFibStatsSrcInetAddr.') tlsMFibStatsSrcInetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 6), InetAddress().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(4, 4), ValueSizeConstraint(16, 16), ))) if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddr.setDescription('The value of tlsMFibStatsSrcInetAddr indicates the unicast source IP address for which this table entry contains information.') tlsMFibStatsForwardedPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 7), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibStatsForwardedPkts.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsForwardedPkts.setDescription('The value of tlsMFibStatsForwardedPkts indicates the number of multicast packets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tlsMFibStatsForwardedOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 8), Counter64()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsMFibStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsForwardedOctets.setDescription('The value of tlsMFibStatsForwardedOctets indicates the number of octets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') svcTlsBgpADTableLastChanged = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 30), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsBgpADTableLastChanged.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADTableLastChanged.setDescription('The value of svcTlsBgpADTableLastChanged indicates the sysUpTime at the time of the last modification of svcTlsBgpADTable. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svcTlsBgpADTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31), ) if mibBuilder.loadTexts: svcTlsBgpADTable.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADTable.setDescription('svcTlsBgpADTable contains entries for BGP Auto-Discovery in a VPLS service context.') svcTlsBgpADEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: svcTlsBgpADEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADEntry.setDescription('A BGP Auto-Discovery entry in the svcTlsBgpADTable.') svcTlsBgpADRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 1), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADRowStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADRowStatus.setDescription('The value of svcTlsBgpADRowStatus is used for the creation and deletion of BGP Auto-Discovery context in a VPLS service.') svcTlsBgpADLastChanged = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 2), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTlsBgpADLastChanged.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADLastChanged.setDescription('The value of svcTlsBgpADLastChanged indicates the sysUpTime at the time of the last modification of this entry. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svcTlsBgpADVplsId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 3), TmnxVPNRouteDistinguisher().clone(hexValue="0000000000000000")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVplsId.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVplsId.setDescription("The value of svcTlsBgpADVplsId specifies the globally unique VPLS-id for BGP Auto-Discovery in this VPLS service. The value of svcTlsBgpADAdminStatus cannot be 'enabled' until a VPLS-id has been assigned which is not all zeros.") svcTlsBgpADVsiPrefix = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 4), Unsigned32()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiPrefix.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiPrefix.setDescription('The value of svcTlsBgpADVsiPrefix specifies the low-order 4 bytes used to compose the Virtual Switch Instance identifier (VSI-id) to use for NLRI in BGP Auto-Discovery in this VPLS service. If the value of svcTlsBgpADVsiPrefix is 0, the system IP address will be used.') svcTlsBgpADVsiRD = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 5), TmnxVPNRouteDistinguisher().clone(hexValue="0000000000000000")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiRD.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiRD.setDescription('The value of svcTlsBgpADVsiRD specifies the high-order 6 bytes used to compose the Virtual Switch Instance identifier (VSI-id) to use for NLRI in BGP Auto-Discovery in this VPLS service. If the value of svcTlsBgpADVsiRD is 0x0000000000000000, the lower 6 bytes of the VPLS-id, as specified by svcTlsBgpADVplsId, will be used.') svcTlsBgpADExportRteTarget = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 6), TNamedItemOrEmpty()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADExportRteTarget.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADExportRteTarget.setDescription("The value of svcTlsBgpADExportRteTarget specifies the extended community name for the default export policy to use for BGP Auto-Discovery in this VPLS service. This object cannot be set to a non-empty if svcTlsBgpADExportRteTarget has a non-empty value, otherwise an 'inconsistentValue' error will be returned.") svcTlsBgpADVsiExportPolicy1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 7), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy1.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy1.setDescription("The value of svcTlsBgpADVsiExportPolicy1 specifies the name of the first VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiExportPolicy2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 8), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy2.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy2.setDescription("The value of svcTlsBgpADVsiExportPolicy2 specifies the name of the second VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiExportPolicy3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 9), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy3.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy3.setDescription("The value of svcTlsBgpADVsiExportPolicy3 specifies the name of the third VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiExportPolicy4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 10), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy4.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy4.setDescription("The value of svcTlsBgpADVsiExportPolicy4 specifies the name of the forth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiExportPolicy5 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 11), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy5.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy5.setDescription("The value of svcTlsBgpADVsiExportPolicy5 specifies the name of the fifth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADImportRteTarget = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 12), TNamedItemOrEmpty()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADImportRteTarget.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADImportRteTarget.setDescription("The value of svcTlsBgpADImportRteTarget specifies the extended community name for the default import policy to use for BGP Auto-Discovery in this VPLS service. This object cannot be set to a non-empty if svcTlsBgpADImportRteTarget has a non-empty value, otherwise an 'inconsistentValue' error will be returned.") svcTlsBgpADVsiImportPolicy1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 13), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy1.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy1.setDescription("The value of svcTlsBgpADVsiImportPolicy1 specifies the name of the first VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiImportPolicy2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 14), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy2.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy2.setDescription("The value of svcTlsBgpADVsiImportPolicy2 specifies the name of the second VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiImportPolicy3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 15), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy3.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy3.setDescription("The value of svcTlsBgpADVsiImportPolicy3 specifies the name of the third VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiImportPolicy4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 16), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy4.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy4.setDescription("The value of svcTlsBgpADVsiImportPolicy4 specifies the name of the forth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADVsiImportPolicy5 = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 17), TPolicyStatementNameOrEmpty().clone(hexValue="")).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy5.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy5.setDescription("The value of svcTlsBgpADVsiImportPolicy5 specifies the name of the fifth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svcTlsBgpADAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 18), TmnxEnabledDisabled().clone('disabled')).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcTlsBgpADAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADAdminStatus.setDescription('The value of svcTlsBgpADAdminStatus specifies the desired administrative state for BGP Auto-Discovery in this VPLS service.') svcEpipePbbTableLastChanged = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 36), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEpipePbbTableLastChanged.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbTableLastChanged.setDescription('The value of svcEpipePbbTableLastChanged indicates the sysUpTime at the time of the last modification of svcEpipePbbTable. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svcEpipePbbTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37), ) if mibBuilder.loadTexts: svcEpipePbbTable.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbTable.setDescription("The svcEpipePbbTable contains objects related to Provider Backbone Bridging (PBB) feature as relates to 'epipe' services. Entries are created and destroyed using svcEpipePbbRowStatus object.") svcEpipePbbEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: svcEpipePbbEntry.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbEntry.setDescription("Each row entry contains objects that allows the modification of the PBB objects for an 'epipe' service.") svcEpipePbbRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 1), RowStatus()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEpipePbbRowStatus.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbRowStatus.setDescription('The value of svcEpipePbbRowStatus is used for the creation and deletion of Provider Backbone Bridging information in a EPIPE service. To create an entry in the table, svcEpipePbbBvplsSvcId, svcEpipePbbBvplsDstMac, svcEpipePbbSvcISID objects must be set.') svcEpipePbbLastChngd = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 2), TimeStamp()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcEpipePbbLastChngd.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbLastChngd.setDescription('The value of svcEpipePbbLastChngd indicates the sysUpTime at the time of the last modification of this entry. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svcEpipePbbBvplsSvcId = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 3), TmnxServId()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEpipePbbBvplsSvcId.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbBvplsSvcId.setDescription('The value of svcEpipePbbBvplsSvcId specifies the Backbone-VPLS service for the PBB tunnel associated with this service. This object must be set at the creation time and can not be modified later.') svcEpipePbbBvplsDstMac = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 4), MacAddress()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEpipePbbBvplsDstMac.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbBvplsDstMac.setDescription('The value of svcEpipePbbBvplsDstMac specifies the Backbone Destination MAC-Address for Provider Backbone Bridging packets. This object must be set along with svcEpipePbbBvplsSvcId.') svcEpipePbbSvcISID = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 5), SvcISID()).setMaxAccess("readcreate") if mibBuilder.loadTexts: svcEpipePbbSvcISID.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbSvcISID.setDescription('The value of the object svcEpipePbbSvcISID specifies a 24 bit (0..16777215) service instance identifier for the PBB tunnel associated with this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. This object must be set along with svcEpipePbbBvplsSvcId.') tlsPipInfoTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40), ) if mibBuilder.loadTexts: tlsPipInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsPipInfoTable.setDescription("A table that contains TLS PIP (Provider Internal Port) uplink information. PIP is the virtual link between I and B components of PBB (Provider Backbone Bridging) model. I component refers to a service with svcVplsType set to 'iVpls (3)' and B component refers to a service with svcVplsType set to 'bVpls (2)'. When any form of STP is enabled in the iVpls domain, the PIP uplink is modeled as a regular STP port.") tlsPipInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: tlsPipInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsPipInfoEntry.setDescription('TLS specific information about PIP uplink.') tlsPipStpPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 1), TStpPortState()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpPortState.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortState.setDescription("The value of tlsPipStpPortState indicates the PIP uplink's current state as defined by application of the Spanning Tree Protocol. This state controls what action PIP uplink takes on reception of a frame. If the bridge has detected a port that is malfunctioning it will place that port into the 'broken (6)' state.") tlsPipStpPortRole = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 2), StpPortRole()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpPortRole.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortRole.setDescription('The value of tlsPipStpPortRole indicates the current role of the PIP uplink as defined by the Rapid Spanning Tree Protocol.') tlsPipStpDesignatedBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 3), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpDesignatedBridge.setStatus('current') if mibBuilder.loadTexts: tlsPipStpDesignatedBridge.setDescription("The value of tlsPipStpDesignatedBridge indicates the Bridge Identifier of the bridge which this PIP uplink considers to be the Designated Bridge for this port's segment.") tlsPipStpDesignatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpDesignatedPort.setStatus('current') if mibBuilder.loadTexts: tlsPipStpDesignatedPort.setDescription("The value of tlsPipStpDesignatedPort indicates the Port Identifier of the port on the Designated Bridge for this port's segment.") tlsPipStpException = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 5), StpExceptionCondition()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpException.setStatus('current') if mibBuilder.loadTexts: tlsPipStpException.setDescription('The value of the object tlsPipStpException indicates whether an STP exception condition is present on this Pip. - none : no exception condition found. - oneWayCommuniation : The neighbor RSTP peer on this link is not able to detect our presence. - downstreamLoopDetected :A loop is detected on this link.') tlsPipStpForwardTransitions = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 6), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpForwardTransitions.setStatus('current') if mibBuilder.loadTexts: tlsPipStpForwardTransitions.setDescription('The value of the object tlsPipStpForwardTransitions indicates the number of times this port has transitioned from the Learning state to the Forwarding state.') tlsPipStpInConfigBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 7), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpInConfigBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInConfigBpdus.setDescription('The value of the object tlsPipStpInConfigBpdus indicates the number of Configuration BPDUs received on this PIP uplink.') tlsPipStpInTcnBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 8), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpInTcnBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInTcnBpdus.setDescription('The value of the object tlsPipStpInTcnBpdus indicates the number of Topology Change Notification BPDUs received on this PIP uplink.') tlsPipStpInRstBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 9), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpInRstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInRstBpdus.setDescription('The value of the object tlsPipStpInRstBpdus indicates the number of Rapid Spanning Tree (RST) BPDUs received on this PIP uplink.') tlsPipStpInMstBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 10), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpInMstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInMstBpdus.setDescription('The value of the object tlsPipStpInMstBpdus indicates the number of Multiple Spanning Tree (MST) BPDUs received on this PIP uplink.') tlsPipStpInBadBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 11), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpInBadBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInBadBpdus.setDescription('This object specifies the number of bad BPDUs received on this PIP uplink.') tlsPipStpOutConfigBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 12), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOutConfigBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutConfigBpdus.setDescription('The value of the object tlsPipStpOutConfigBpdus indicates the number of Configuration BPDUs sent out this PIP uplink.') tlsPipStpOutTcnBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 13), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOutTcnBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutTcnBpdus.setDescription('This object specifies the number of Topology Change Notification BPDUs sent out this PIP uplink.') tlsPipStpOutRstBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 14), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOutRstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutRstBpdus.setDescription('The value of the object tlsPipStpOutRstBpdus indicates the number of Rapid Spanning Tree (RST) BPDUs sent out on this PIP uplink.') tlsPipStpOutMstBpdus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 15), Counter32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOutMstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutMstBpdus.setDescription('The value of the object tlsPipStpOutMstBpdus indicates the number of Multiple Spanning Tree (MST) BPDUs sent out on this PIP uplink.') tlsPipStpOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 16), ServiceOperStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOperStatus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOperStatus.setDescription('The value of the object tlsPipStpOperStatus indicates the operational status of this PIP uplink.') tlsPipStpMvplsPruneState = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 17), MvplsPruneState()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpMvplsPruneState.setStatus('current') if mibBuilder.loadTexts: tlsPipStpMvplsPruneState.setDescription('The value of tlsPipStpMvplsPruneState indicates the mVPLS prune state of this PIP uplink. The state reflects whether or not this uplink is pruned by the STP instance running in the mVPLS instance.') tlsPipStpOperProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 18), StpProtocol()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpOperProtocol.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOperProtocol.setDescription("The value of tlsPipStpOperProtocol indicates whether 'stp', 'rstp' or 'mstp' is running on this PIP uplink. If the protocol is not enabled on this PIP uplink, the value 'notApplicable' is returned.") tlsPipStpPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 19), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4094))).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipStpPortNum.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortNum.setDescription('The value of the object tlsPipStpPortNum specifies the value of the port number field which is contained in the least significant 12 bits of the 16-bit Port ID associated with this PIP uplink.') tlsPipMstiTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41), ) if mibBuilder.loadTexts: tlsPipMstiTable.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiTable.setDescription('This table contains Multiple Spanning Tree Instance information for the PIP uplink. Each management VPLS running MSTP can have upto 15 MSTI. An entry in this table is automatically created when a tlsMstiEntry is created.') tlsPipMstiEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiInstanceId")) if mibBuilder.loadTexts: tlsPipMstiEntry.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiEntry.setDescription('Information about a specific MSTI for a PIP uplink.') tlsPipMstiPortRole = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 1), StpPortRole()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipMstiPortRole.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiPortRole.setDescription('tlsPipMstiPortRole indicates the current role of the PIP uplink in the MSTI as defined by the Spanning Tree Protocol.') tlsPipMstiPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 2), TStpPortState()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipMstiPortState.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiPortState.setDescription("The value of the object tlsPipMstiPortState indicates the port's current state as defined by application of the Spanning Tree Protocol. This state controls what action a port takes on reception of a frame. If the bridge has detected a port that is malfunctioning it will place that port into the broken(6) state.") tlsPipMstiDesignatedBridge = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 3), BridgeId()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipMstiDesignatedBridge.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiDesignatedBridge.setDescription("The value of the object tlsPipMstiDesignatedBridge indicates the Bridge Identifier of the bridge which this port considers to be the Designated Bridge for this port's segment for this MSTI.") tlsPipMstiDesignatedPort = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 4), Integer32()).setMaxAccess("readonly") if mibBuilder.loadTexts: tlsPipMstiDesignatedPort.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiDesignatedPort.setDescription("The value of the object tlsPipMstiDesignatedPort indicates the Port Identifier of the port on the Designated Bridge for this port's segment for this MSTI.") svcTotalFdbMimDestIdxEntries = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 42), Unsigned32()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcTotalFdbMimDestIdxEntries.setStatus('current') if mibBuilder.loadTexts: svcTotalFdbMimDestIdxEntries.setDescription('The value of the object svcTotalFdbMimDestIdxEntries indicates the number of system wide Backbone MAC address indices in use.') svcDhcpManagedRouteTable = MibTable((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43), ) if mibBuilder.loadTexts: svcDhcpManagedRouteTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteTable.setDescription('A table that contains DHCP managed routes.') svcDhcpManagedRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1), ).setIndexNames((0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateCiAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateCiAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpManagedRouteInetAddrType"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpManagedRouteInetAddr"), (0, "ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpManagedRoutePrefixLen")) if mibBuilder.loadTexts: svcDhcpManagedRouteEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteEntry.setDescription('A specific DHCP managed route.') svcDhcpManagedRouteInetAddrType = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 1), InetAddressType()) if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddrType.setDescription('The value of svcDhcpManagedRouteInetAddrType indicates the address type of svcDhcpManagedRouteInetAddr.') svcDhcpManagedRouteInetAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 2), InetAddress()) if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddr.setDescription('The value of svcDhcpManagedRouteInetAddr indicates the IP address of the managed route.') svcDhcpManagedRoutePrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 3), InetAddressPrefixLength().subtype(subtypeSpec=ValueRangeConstraint(0, 32))) if mibBuilder.loadTexts: svcDhcpManagedRoutePrefixLen.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRoutePrefixLen.setDescription('The value of svcDhcpManagedRoutePrefixLen indicates the prefix length of the subnet associated with svcDhcpManagedRouteInetAddr.') svcDhcpManagedRouteStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 4), TmnxManagedRouteStatus()).setMaxAccess("readonly") if mibBuilder.loadTexts: svcDhcpManagedRouteStatus.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteStatus.setDescription('The value of svcDhcpManagedRouteStatus indicates the state of this managed route.') macPinningMacAddress = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 1), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: macPinningMacAddress.setStatus('current') if mibBuilder.loadTexts: macPinningMacAddress.setDescription('The value of the object macPinningMacAddress indicates the pinned MAC address.') macPinningPinnedRow = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 2), RowPointer()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: macPinningPinnedRow.setStatus('current') if mibBuilder.loadTexts: macPinningPinnedRow.setDescription('The value of the object macPinningPinnedRow indicates where the MAC address is currently pinned on. Its value will be the OID of the first accessible object in the row of the sapTlsInfoTable or in the sdpBindTable, depending on whether the MAC address is pinned on a SAP or a SDP Bind.') macPinningPinnedRowDescr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 3), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: macPinningPinnedRowDescr.setStatus('current') if mibBuilder.loadTexts: macPinningPinnedRowDescr.setDescription('The value of the object macPinningPinnedRowDescr indicates where the MAC address is currently pinned on. The value will either be a SAP-id or a SDP id, presented in readable format, depending on whether the MAC is pinned to a SAP or a SDP.') macPinningViolatingRow = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 4), RowPointer()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: macPinningViolatingRow.setStatus('current') if mibBuilder.loadTexts: macPinningViolatingRow.setDescription('The value of the object macPinningViolatingRow indicates where the MAC address relearn attempt was detected. Its value will be the OID of the first accessible object in the row of the sapTlsInfoTable or in the sdpBindTable, depending on whether the MAC address is pinned on a SAP or a SDP Bind.') macPinningViolatingRowDescr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 5), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: macPinningViolatingRowDescr.setStatus('current') if mibBuilder.loadTexts: macPinningViolatingRowDescr.setDescription('The value of the object macPinningViolatingRowDescr indicates where the MAC address relearn attempt was detected. The value will either be a SAP-id or a SDP id, presented in readable format, depending on whether the MAC address relearn attempt was detected on a SAP or a SDP.') tlsDHCPClientLease = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 6), Integer32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDHCPClientLease.setStatus('obsolete') if mibBuilder.loadTexts: tlsDHCPClientLease.setDescription('The value of the object tlsDHCPClientLease indicates the lease time specified in the PDU causing the trap. Used by tmnxVRtrDHCPAFEntriesExceeded to report the lease time. This object was made obsolete in the 4.0 release.') tlsDhcpLseStateOldCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 7), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpLseStateOldCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateOldCiAddr.setDescription('The value of the object tlsDhcpLseStateOldCiAddr indicates the Client IP address that was formerly assigned to this Least state. Used in sapTlsDHCPLeaseStateOverride trap. This object was made obsolete in the 4.0 release.') tlsDhcpLseStateOldChAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 8), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpLseStateOldChAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateOldChAddr.setDescription('The value of the object tlsDhcpLseStateOldChAddr indicates the Client MAC address that was formerly assigned to this Least state. Used in sapTlsDHCPLeaseStateOverride trap. This object was made obsolete in the 4.0 release.') tlsDhcpLseStateNewCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 9), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpLseStateNewCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateNewCiAddr.setDescription('The value of the object tlsDhcpLseStateNewCiAddr indicates the Client IP address specified in the PDU causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpLseStateNewChAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 10), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpLseStateNewChAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateNewChAddr.setDescription('The value of the object tlsDhcpLseStateNewChAddr indicates the Client MAC address specified in the PDU causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpRestoreLseStateCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 11), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpRestoreLseStateCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateCiAddr.setDescription('The value of the object tlsDhcpRestoreLseStateCiAddr indicates the IP address specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpRestoreLseStateSvcId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 12), TmnxServId()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpRestoreLseStateSvcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateSvcId.setDescription('The value of the object tlsDhcpRestoreLseStateSvcId indicates the serviceId specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpRestoreLseStatePortId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 13), TmnxPortID()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpRestoreLseStatePortId.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStatePortId.setDescription('The value of the object tlsDhcpRestoreLseStatePortId indicates the Port ID specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpRestoreLseStateEncapVal = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 14), TmnxEncapVal()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpRestoreLseStateEncapVal.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateEncapVal.setDescription('The value of the object tlsDhcpRestoreLseStateEncapVal indicates the SAP encap value specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tlsDhcpRestoreLseStateProblem = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 15), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpRestoreLseStateProblem.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateProblem.setDescription('The value of the object tlsDhcpRestoreLseStateProblem indicates why the persistency record cannot be restored. This object was made obsolete in the 4.0 release.') tlsDhcpPacketProblem = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 16), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpPacketProblem.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpPacketProblem.setDescription('The value of the object tlsDhcpPacketProblem indicates information on a received DHCP packet is considered suspicious by the system. This object was made obsolete in the 4.0 release.') tlsDhcpLseStatePopulateError = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 17), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tlsDhcpLseStatePopulateError.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStatePopulateError.setDescription('The value of the object tlsDhcpLseStatePopulateError indicates why the system was unable to update the Lease State Table upon reception of a DHCP ACK message. This object was made obsolete in the 4.0 release.') svcDhcpRestoreLseStateCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 18), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpRestoreLseStateCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpRestoreLseStateCiAddr.setDescription('The value of the object svcDhcpRestoreLseStateCiAddr indicates the IP address specified in the persistency record causing the trap.') svcDhcpRestoreLseStateProblem = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 19), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpRestoreLseStateProblem.setStatus('current') if mibBuilder.loadTexts: svcDhcpRestoreLseStateProblem.setDescription('The value of the object svcDhcpRestoreLseStateProblem indicates why the persistency record cannot be restored.') svcDhcpLseStateOldCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 20), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpLseStateOldCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOldCiAddr.setDescription('The value of the object svcDhcpLseStateOldCiAddr indicates the client IP address that was formerly assigned to the specified DHCP lease state.') svcDhcpLseStateOldChAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 21), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpLseStateOldChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOldChAddr.setDescription('The value of the object svcDhcpLseStateOldChAddr indicates the client MAC address that was formerly assigned to the specified DHCP lease state.') svcDhcpLseStateNewCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 22), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpLseStateNewCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNewCiAddr.setDescription('The value of the object svcDhcpLseStateNewCiAddr indicates the client IP address specified in the DHCP PDU causing the trap.') svcDhcpLseStateNewChAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 23), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpLseStateNewChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNewChAddr.setDescription('The value of the object svcDhcpLseStateNewChAddr indicates the client MAC address specified in the DHCP PDU causing the trap.') svcDhcpClientLease = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 24), Integer32()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpClientLease.setStatus('current') if mibBuilder.loadTexts: svcDhcpClientLease.setDescription('The value of the object svcDhcpClientLease indicates the lease time specified in the DHCP PDU causing the trap.') svcDhcpPacketProblem = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 25), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpPacketProblem.setStatus('current') if mibBuilder.loadTexts: svcDhcpPacketProblem.setDescription('The value of the object svcDhcpPacketProblem indicates information on a received DHCP packet that is considered suspicious by the system.') svcDhcpLseStatePopulateError = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 26), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpLseStatePopulateError.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePopulateError.setDescription('The value of the object svcDhcpLseStatePopulateError indicates the reason why the system was unable to update the Lease State table upon reception of a DHCP ACK message.') hostConnectivityCiAddrType = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 27), InetAddressType()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: hostConnectivityCiAddrType.setStatus('current') if mibBuilder.loadTexts: hostConnectivityCiAddrType.setDescription('The value of the object hostConnectivityCiAddrType indicates the client address type causing the trap.') hostConnectivityCiAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 28), InetAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: hostConnectivityCiAddr.setStatus('current') if mibBuilder.loadTexts: hostConnectivityCiAddr.setDescription('The value of the object hostConnectivityCiAddr indicates the client INET address causing the trap.') hostConnectivityChAddr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 29), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: hostConnectivityChAddr.setStatus('current') if mibBuilder.loadTexts: hostConnectivityChAddr.setDescription('The value of the object hostConnectivityChAddr indicates the client MAC address causing the trap.') protectedMacForNotify = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 30), MacAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: protectedMacForNotify.setStatus('current') if mibBuilder.loadTexts: protectedMacForNotify.setDescription('The value of the object protectedMacForNotify indicates the protected MAC address that was received, causing the sapReceivedProtSrcMac notification.') staticHostDynamicMacIpAddress = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 31), IpAddress()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: staticHostDynamicMacIpAddress.setStatus('current') if mibBuilder.loadTexts: staticHostDynamicMacIpAddress.setDescription('The value of the object staticHostDynamicMacIpAddress indicates the IP address of the static host for which the sapStaticHostDynMacConflict notification is generated.') staticHostDynamicMacConflict = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 32), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: staticHostDynamicMacConflict.setStatus('current') if mibBuilder.loadTexts: staticHostDynamicMacConflict.setDescription('The value of the object staticHostDynamicMacConflict indicates the reason causing the sapStaticHostDynMacConflict notification.') tmnxSvcObjRow = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 33), RowPointer()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxSvcObjRow.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjRow.setDescription('The value of the object tmnxSvcObjRow indicates the object that has failed to perform the set action requested by the Time-Of-Day Suite. Its value will be the OID of the first accessible object in the row of the sapBaseInfoTable or in the custMultiServiceSiteTable, depending on whether the object is a SAP or a Customer Multi-Service Site.') tmnxSvcObjRowDescr = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 34), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxSvcObjRowDescr.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjRowDescr.setDescription('The value of the object tmnxSvcObjRowDescr indicates the object that has failed to perform the set action requested by the Time-Of-Day Suite. The value will either be a SAP-id or a Customer Multi-Service Site id, presented in readable format, depending on whether the object is a SAP or a Customer Multi-Service Site.') tmnxSvcObjTodSuite = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 35), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxSvcObjTodSuite.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjTodSuite.setDescription('The value of the object tmnxSvcObjTodSuite indicates the name of the involved ToD Suite.') tmnxFailureDescription = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 36), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxFailureDescription.setStatus('current') if mibBuilder.loadTexts: tmnxFailureDescription.setDescription('The value of the object tmnxFailureDescription is a printable character string which contains information about the reason why the notification is sent.') svcDhcpProxyError = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 37), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpProxyError.setStatus('current') if mibBuilder.loadTexts: svcDhcpProxyError.setDescription('The value of the object svcDhcpProxyError indicates the reason why the proxy server failed to operate.') svcDhcpCoAError = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 38), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpCoAError.setStatus('current') if mibBuilder.loadTexts: svcDhcpCoAError.setDescription('The value of the object svcDhcpCoAError indicates the reason why the node failed to process a Change of Authorization (CoA) request from a Radius server.') svcDhcpSubAuthError = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 39), DisplayString()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcDhcpSubAuthError.setStatus('current') if mibBuilder.loadTexts: svcDhcpSubAuthError.setDescription('The value of the object svcDhcpSubAuthError is a printable character string which contains information about the problem that occurred while trying to authenticate the subscriber.') svcTlsMrpAttrRegFailedReason = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("unknown", 1), ("attribute-limit-reached", 2), ("system-attr-limit-reached", 3), ("unsupported-attribute", 4), ("mfib-entry-create-failed", 5)))).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcTlsMrpAttrRegFailedReason.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrRegFailedReason.setDescription('The value of the object svcTlsMrpAttrRegFailedReason indicates the reason for MRP attribute registration failure.') svcTlsMrpAttrType = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 41), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcTlsMrpAttrType.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrType.setDescription('The value of the object svcTlsMrpAttrType indicates the type of MRP attribute.') svcTlsMrpAttrValue = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 42), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcTlsMrpAttrValue.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrValue.setDescription('The value of the object svcTlsMrpAttrValue indicates the value of MRP attribute.') svcMstiInstanceId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 43), MstiInstanceId()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: svcMstiInstanceId.setStatus('current') if mibBuilder.loadTexts: svcMstiInstanceId.setDescription('The value of the object svcMstiInstanceId indicates the Multiple Spanning Tree Instance.') svcCreated = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 1)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcType")) if mibBuilder.loadTexts: svcCreated.setStatus('obsolete') if mibBuilder.loadTexts: svcCreated.setDescription('This trap is sent when a new row is created in the svcBaseInfoTable.') svcDeleted = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 2)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcDeleted.setStatus('obsolete') if mibBuilder.loadTexts: svcDeleted.setDescription('This trap is sent when an existing row is deleted from the svcBaseInfoTable.') svcStatusChanged = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 3)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcOperStatus")) if mibBuilder.loadTexts: svcStatusChanged.setStatus('current') if mibBuilder.loadTexts: svcStatusChanged.setDescription('The svcStatusChanged notification is generated when there is a change in the administrative or operating status of a service.') svcTlsFdbTableFullAlarmRaised = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 4)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmRaised.setDescription('The svcTlsFdbTableFullAlarmRaised notification is generated when the utilization of the FDB table is above the value specified by svcTlsFdbTableFullHighWatermark.') svcTlsFdbTableFullAlarmCleared = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 5)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmCleared.setDescription('The svcTlsFdbTableFullAlarmCleared notification is generated when the utilization of the FDB table is below the value specified by svcTlsFdbTableFullLowWatermark.') iesIfCreated = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 6)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex")) if mibBuilder.loadTexts: iesIfCreated.setStatus('obsolete') if mibBuilder.loadTexts: iesIfCreated.setDescription('The iesIfCreated notification is generated when a new row is created in the iesIfTable.') iesIfDeleted = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 7)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex")) if mibBuilder.loadTexts: iesIfDeleted.setStatus('obsolete') if mibBuilder.loadTexts: iesIfDeleted.setDescription('The iesIfDeleted notification is sent when an existing row is deleted from the iesIfTable.') iesIfStatusChanged = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 8)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfOperStatus")) if mibBuilder.loadTexts: iesIfStatusChanged.setStatus('current') if mibBuilder.loadTexts: iesIfStatusChanged.setDescription('The iesIfStatusChanged notification is generated when there is a change in the administrative or operating status of an IES interface.') svcTlsMfibTableFullAlarmRaised = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 9)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmRaised.setDescription('The svcTlsMfibTableFullAlarmRaised notification is generated when the utilization of the MFIB table is above the value specified by svcTlsMfibTableFullHighWatermark.') svcTlsMfibTableFullAlarmCleared = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 10)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmCleared.setDescription('The svcTlsMfibTableFullAlarmCleared notification is generated when the utilization of the MFIB table is below the value specified by svcTlsMfibTableFullLowWatermark.') svcTlsMacPinningViolation = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 11)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningMacAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningPinnedRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningPinnedRowDescr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningViolatingRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningViolatingRowDescr")) if mibBuilder.loadTexts: svcTlsMacPinningViolation.setStatus('current') if mibBuilder.loadTexts: svcTlsMacPinningViolation.setDescription('The svcTlsMacPinningViolation notification is generated when an attempt is made to assign a MAC address to another interface while this MAC address is pinned (i.e. assigned fixed to an interface).') svcTlsDHCPLseStRestoreProblem = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 12)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStatePortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateEncapVal"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateProblem")) if mibBuilder.loadTexts: svcTlsDHCPLseStRestoreProblem.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsDHCPLseStRestoreProblem.setDescription('The svcTlsDHCPLseStRestoreProblem notification is generated when an an error is detected while processing a persistency record.') svcTlsDHCPLseStatePopulateErr = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 13)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStatePopulateError")) if mibBuilder.loadTexts: svcTlsDHCPLseStatePopulateErr.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsDHCPLseStatePopulateErr.setDescription('The svcTlsDHCPLseStatePopulateErr notification indicates that the system was unable to update the Lease State Table with the information contained in the DHCP ACK message. The DHCP ACK message has been discarded.') svcDHCPLseStateRestoreProblem = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 14)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpRestoreLseStateCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpRestoreLseStateProblem")) if mibBuilder.loadTexts: svcDHCPLseStateRestoreProblem.setStatus('current') if mibBuilder.loadTexts: svcDHCPLseStateRestoreProblem.setDescription('The svcDHCPLseStateRestoreProblem notification is generated when an an error is detected while processing a persistency record.') tmnxSvcObjTodSuiteApplicFailed = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 15)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjRowDescr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjTodSuite"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxFailureDescription")) if mibBuilder.loadTexts: tmnxSvcObjTodSuiteApplicFailed.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjTodSuiteApplicFailed.setDescription('The tmnxSvcObjTodSuiteApplicFailed notification is generated when the object has failed to perform the set action requested by the Time-Of-Day Suite. The object can be either a SAP or a Customer Multi-Service Site.') tmnxEndPointTxActiveChanged = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 16)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActivePortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveEncap"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveSdpId")) if mibBuilder.loadTexts: tmnxEndPointTxActiveChanged.setStatus('current') if mibBuilder.loadTexts: tmnxEndPointTxActiveChanged.setDescription('The tmnxEndPointTxActiveChanged notification is generated when the transmit active object on an endpoint changes.') tmnxSvcPEDiscPolServOperStatChg = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 17)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerAddressType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerOperStatus")) if mibBuilder.loadTexts: tmnxSvcPEDiscPolServOperStatChg.setStatus('current') if mibBuilder.loadTexts: tmnxSvcPEDiscPolServOperStatChg.setDescription("The tmnxSvcPEDiscPolServOperStatChg notification is generated when the operational status of a Radius server, configured for use as PE Discovery Policy Server, has transitioned either from 'up' to 'down' or from 'down' to 'up'.") svcEndPointMacLimitAlarmRaised = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 18)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacLimit")) if mibBuilder.loadTexts: svcEndPointMacLimitAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimitAlarmRaised.setDescription('The svcEndPointMacLimitAlarmRaised notification is sent whenever the number of MAC addresses stored in the FDB for this endpoint exceeds the watermark specified by the object svcTlsFdbTableFullHighWatermark. This alarm also takes into consideration static MAC addresses configured on the endpoint and learned MAC addresses in all spokes associated with this endpoint.') svcEndPointMacLimitAlarmCleared = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 19)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacLimit")) if mibBuilder.loadTexts: svcEndPointMacLimitAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimitAlarmCleared.setDescription('The svcEndPointMacLimitAlarmCleared notification is sent whenever the number of MAC addresses stored in the FDB for this endpoint drops below the watermark specified by the object svcTlsFdbTableFullLowWatermark. This alarm also takes into consideration static MAC addresses configured on the endpoint and learned MAC addresses in all spokes associated with this endpoint.') svcTlsMrpAttrRegistrationFailed = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 20)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrRegFailedReason"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrValue")) if mibBuilder.loadTexts: svcTlsMrpAttrRegistrationFailed.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrRegistrationFailed.setDescription('The svcTlsMrpAttrRegistrationFailed notification is generated when registration fails for an MRP attribute.') svcFdbMimDestTblFullAlrm = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 21)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTotalFdbMimDestIdxEntries")) if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrm.setStatus('current') if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrm.setDescription('The svcFdbMimDestTblFullAlrm notification is raised when system limit of Backbone MAC address indices limit is reached. Further traps are not generated as long as the value of svcTotalFdbMimDestIdxEntries object remains under 5 percent of the limit.') svcFdbMimDestTblFullAlrmCleared = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 22)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTotalFdbMimDestIdxEntries")) if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrmCleared.setStatus('current') if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrmCleared.setDescription('The svcFdbMimDestTblFullAlrmCleared notification is raised when number of Backbone MAC address indices used reaches under 95 percent of the system limit after svcFdbMimDestTblFullAlrm notification had been raised.') svcDHCPMiscellaneousProblem = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 23)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxFailureDescription")) if mibBuilder.loadTexts: svcDHCPMiscellaneousProblem.setStatus('current') if mibBuilder.loadTexts: svcDHCPMiscellaneousProblem.setDescription('The svcDHCPMiscellaneousProblem notification is generated on miscellaneous DHCP problems.') svcPersistencyProblem = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 24)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxFailureDescription")) if mibBuilder.loadTexts: svcPersistencyProblem.setStatus('current') if mibBuilder.loadTexts: svcPersistencyProblem.setDescription('The svcPersistencyProblem notification is generated on persistency problems.') svcTlsMrpAttrTblFullAlarmRaised = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 25)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmRaised.setDescription('The svcTlsMrpAttrTblFullAlarmRaised notification is generated when the utilization of the MRP attribute table is above the value specified by svcTlsMrpAttrTblHighWatermark.') svcTlsMrpAttrTblFullAlarmCleared = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 26)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId")) if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmCleared.setDescription('The svcTlsMrpAttrTblFullAlarmCleared notification is generated when the utilization of the MRP attribute table is below the value specified by svcTlsMrpAttrTblLowWatermark.') tmnxCustomerBridgeId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 1), BridgeId()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxCustomerBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxCustomerBridgeId.setDescription("tmnxCustomerBridgeId specifies the bridge identifier of the customer's device ") tmnxCustomerRootBridgeId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 2), BridgeId()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxCustomerRootBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxCustomerRootBridgeId.setDescription("tmnxCustomerRootBridgeId specifies the bridge identifier of the customer's designated root.") tmnxOtherBridgeId = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 3), BridgeId()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxOtherBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxOtherBridgeId.setDescription('tmnxOtherBridgeId specifies the bridge identifier of the device from which a BPDU was received.') tmnxOldSdpBindTlsStpPortState = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 4), TStpPortState()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxOldSdpBindTlsStpPortState.setStatus('current') if mibBuilder.loadTexts: tmnxOldSdpBindTlsStpPortState.setDescription('tmnxOldSdpBindTlsStpPortState specifies the previous state of an SDP binding.') tmnxVcpState = MibScalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 5), TStpPortState()).setMaxAccess("accessiblefornotify") if mibBuilder.loadTexts: tmnxVcpState.setStatus('current') if mibBuilder.loadTexts: tmnxVcpState.setDescription('tmnxVcpState specifies the current state of a Virtual Core Port (VCP).') topologyChangeVcpState = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 3)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxVcpState")) if mibBuilder.loadTexts: topologyChangeVcpState.setStatus('current') if mibBuilder.loadTexts: topologyChangeVcpState.setDescription('The topologyChangeVcpState notification is generated when a VCP has transitioned its state from disabled to forwarding or from forwarding to disabled. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') newRootVcpState = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 4)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: newRootVcpState.setStatus('current') if mibBuilder.loadTexts: newRootVcpState.setDescription('The newRootVcpState notification is generated when the previous root bridge has been aged out and a new root bridge has been elected. The new root bridge creates a new spanning tree topology and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') newRootBridge = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 7)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: newRootBridge.setStatus('current') if mibBuilder.loadTexts: newRootBridge.setDescription('The newRootBridge notification is generated when this bridge has been elected as the new root bridge. A new root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') vcpActiveProtocolChange = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 32)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpVcpOperProtocol")) if mibBuilder.loadTexts: vcpActiveProtocolChange.setStatus('current') if mibBuilder.loadTexts: vcpActiveProtocolChange.setDescription('The vcpActiveProtocolChange notification is generated when the spanning tree protocol on this VCP changes from rstp to stp or vise versa. No recovery is needed.') tmnxNewCistRegionalRootBridge = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 33)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpCistRegionalRoot")) if mibBuilder.loadTexts: tmnxNewCistRegionalRootBridge.setStatus('current') if mibBuilder.loadTexts: tmnxNewCistRegionalRootBridge.setDescription('The tmnxNewCistRegionalRootBridge notification is generated when a new regional root bridge has been elected for the Common and Internal Spanning Tree. A new regional root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') tmnxNewMstiRegionalRootBridge = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 34)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcMstiInstanceId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiRegionalRoot")) if mibBuilder.loadTexts: tmnxNewMstiRegionalRootBridge.setStatus('current') if mibBuilder.loadTexts: tmnxNewMstiRegionalRootBridge.setDescription('The tmnxNewMstiRegionalRootBridge notification is generated when a new regional root bridge has been elected for the Multiple Spanning Tree Instance. A new regional root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') topologyChangePipMajorState = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 39)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: topologyChangePipMajorState.setStatus('current') if mibBuilder.loadTexts: topologyChangePipMajorState.setDescription('The topologyChangePipMajorState notification is generated when a PIP Uplink has transitioned its state from learning to forwarding or from forwarding to blocking or broken. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine the severity of connectivity loss.') topologyChangePipState = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 40)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: topologyChangePipState.setStatus('current') if mibBuilder.loadTexts: topologyChangePipState.setDescription('The topologyChangePipState notification is generated when a PIP Uplink has transitioned state to blocking or broken from a state other than forwarding. This event complements what is not covered by topologyChangePipMajorState. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') tmnxPipStpExcepCondStateChng = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 41)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpException")) if mibBuilder.loadTexts: tmnxPipStpExcepCondStateChng.setStatus('current') if mibBuilder.loadTexts: tmnxPipStpExcepCondStateChng.setDescription('The tmnxPipStpExcepCondStateChng notification is generated when the value of the object tlsPipStpException has changed, i.e. when the exception condition changes on the indicated PIP Uplink.') pipActiveProtocolChange = NotificationType((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 42)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId")) if mibBuilder.loadTexts: pipActiveProtocolChange.setStatus('current') if mibBuilder.loadTexts: pipActiveProtocolChange.setDescription('The pipActiveProtocolChange notification is generated when the spanning tree protocol on this PIP Uplink changes from rstp to stp or vice-versa. No recovery is needed.') tmnxCustCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 1)) tmnxCustGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 2)) tmnxSvcCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1)) tmnxSvcGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2)) tmnxTstpCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5, 1)) tmnxTstpGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5, 2)) tmnxCustCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 1, 100)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxCustV6v0Group")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxCustCompliance = tmnxCustCompliance.setStatus('current') if mibBuilder.loadTexts: tmnxCustCompliance.setDescription('The compliance statement for management of services customers on Alcatel 7x50 SR series systems.') tmnxSvc7450V6v0Compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 100)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIesIfV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsShgV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMFibV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcRdntV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMstiV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsEgrV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcDhcpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEndPointV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcPEV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIfDHCP6V6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBackbone6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBgpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEpipeV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsPipV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObsoletedV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcNotifyV6v0Group")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvc7450V6v0Compliance = tmnxSvc7450V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7450V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7450 ESS series systems release R6.0.') tmnxSvc7750V6v0Compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 101)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsFdbV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIesIfV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsShgV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMFibV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcRdntV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMstiV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsEgrV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcDhcpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEndPointV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcPEV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIfDHCP6V6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBackbone6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBgpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEpipeV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsPipV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObsoletedV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcNotifyV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxApipeV3v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcRoutedCOV5v0Group")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvc7750V6v0Compliance = tmnxSvc7750V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7750V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7750 SR series systems release R6.0.') tmnxSvc7710V6v0Compliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 102)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsFdbV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIesIfV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsShgV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMFibV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcRdntV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsMstiV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsEgrV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcDhcpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEndPointV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcPEV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcIfDHCP6V6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBackbone6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsBgpV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcEpipeV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcTlsPipV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObsoletedV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcNotifyV6v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxApipeV3v0Group"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcRoutedCOV5v0Group")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvc7710V6v0Compliance = tmnxSvc7710V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7710V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7710 SR series systems release R6.0.') tmnxCustV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 2, 100)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custNumEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custNextFreeId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custContact"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custPhone"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteScope"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteAssignment"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteIngressSchedulerPolicy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteEgressSchedulerPolicy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteTodSuite"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteCurrentIngrSchedPlcy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteCurrentEgrSchedPlcy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteEgressAggRateLimit"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteIntendedIngrSchedPlcy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteIntendedEgrSchedPlcy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteFrameBasedAccnt"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosSchedStatsForwardedPackets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosSchedStatsForwardedOctets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosSchedStatsForwardedPackets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosSchedStatsForwardedOctets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosPortSchedFwdPkts"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngQosPortSchedFwdOctets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosPortSchedFwdPkts"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrQosPortSchedFwdOctets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSOverrideFlags"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSPIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSCIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssIngQosSSummedCIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSOverrideFlags"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSPIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSCIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMssEgrQosSSummedCIR"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngSchedPlcyStatsFwdPkt"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngSchedPlcyStatsFwdOct"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrSchedPlcyStatsFwdPkt"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrSchedPlcyStatsFwdOct"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngSchedPlcyPortStatsFwdPkt"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custIngSchedPlcyPortStatsFwdOct"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrSchedPlcyPortStatsFwdPkt"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custEgrSchedPlcyPortStatsFwdOct")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxCustV6v0Group = tmnxCustV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxCustV6v0Group.setDescription('The group of objects supporting management of Services customers general capabilities on Alcatel 7x50 SR series systems.') tmnxSvcV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 101)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcNumEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcCustId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcIpRouting"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcMtu"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcOperStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcNumSaps"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcNumSdps"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDefMeshVcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVRouterId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcAutoBind"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcLastStatusChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVllType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcMgmtVpls"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRadiusDiscovery"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRadiusUserName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRadiusUserNameType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVcSwitching"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRadiusPEDiscPolicy"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcRadiusDiscoveryShutdown"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcVplsType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTotalFdbMimDestIdxEntries")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcV6v0Group = tmnxSvcV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcV6v0Group.setDescription('The group of objects supporting management of Services general capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 102)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacLearning"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsDiscardUnknownDest"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbTableSize"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumStaticEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbLocalAgeTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbRemoteAgeTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpPriority"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpTimeSinceTopologyChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpTopologyChanges"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpDesignatedRoot"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpRootCost"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpRootPort"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpMaxAge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpHelloTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpForwardDelay"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeMaxAge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeHelloTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeForwardDelay"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpOperStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpVirtualRootBridgeStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacAgeing"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpTopologyChangeActive"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbTableFullHighWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbTableFullLowWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsCustId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpVersion"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpHoldCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpPrimaryBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeInstanceId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpVcpOperProtocol"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacMoveMaxRate"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacMoveRetryTimeout"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacMoveAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacRelearnOnly"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMfibTableSize"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMfibTableFullHighWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMfibTableFullLowWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacFlushOnFail"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpRegionName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpRegionRevision"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpBridgeMaxHops"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpCistRegionalRoot"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpCistIntRootCost"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpCistRemainingHopCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpCistRegionalRootPort"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumLearnedEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumOamEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumDhcpEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbNumHostEntries"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsShcvAction"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsShcvSrcIp"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsShcvSrcMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsShcvInterval"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsPriPortsCumulativeFactor"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsSecPortsCumulativeFactor"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsL2ptTermEnabled"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsPropagateMacFlush"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpMaxAttributes"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttributeCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpFailedRegisterCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpFloodTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrTblHighWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrTblLowWatermark"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMcPathMgmtPlcyName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpAdminQinqFixedTagVal")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsV6v0Group = tmnxSvcTlsV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsV6v0Group.setDescription('The group of objects supporting management of Services TLS general capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsFdbV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 103)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbMacAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbLocale"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbPortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbEncapValue"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbSdpId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbVcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbCustId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbLastStateChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbProtected"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbBackboneDstMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbNumIVplsMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbEndPointName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbEPMacOperSdpId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbEPMacOperVcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsFdbPbbNumEpipes"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsProtMacRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsProtMacLastMgmtChange")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsFdbV6v0Group = tmnxSvcTlsFdbV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsFdbV6v0Group.setDescription('The group of objects supporting management of Services TLS FDB capabilities on Alcatel 7x50 SR series systems.') tmnxSvcIesIfV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 104)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfIndex"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfName"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfAdminStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfOperStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfVpnId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfCustId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfLoopback"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfLastStatusChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfShcvSource"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfShcvAction"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfShcvInterval"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesGrpIfOperUpWhileEmpty")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcIesIfV6v0Group = tmnxSvcIesIfV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcIesIfV6v0Group.setDescription('The group of objects supporting management of Services IES interface capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsShgV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 105)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgCustId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgInstanceId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgResidential"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgRestProtSrcMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgRestUnprotDstMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgRestProtSrcMacAction"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsShgCreationOrigin")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsShgV6v0Group = tmnxSvcTlsShgV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsShgV6v0Group.setDescription('The group of objects supporting management of Services TLS Split Hoirizon Group capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsMFibV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 106)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibFwdOrBlk"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsForwardedPkts"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibStatsForwardedOctets")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsMFibV6v0Group = tmnxSvcTlsMFibV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsMFibV6v0Group.setDescription('The group of objects supporting management of Services TLS MFib capabilities on Alcatel 7x50 SR series systems.') tmnxSvcRdntV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 107)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsRdntGrpMemberLastMgmtChange")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcRdntV6v0Group = tmnxSvcRdntV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcRdntV6v0Group.setDescription('The group of objects supporting management of Services Redundancy group capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsMstiV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 108)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiPriority"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiRegionalRoot"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiIntRootCost"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiRemainingHopCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiRegionalRootPort"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMstiMvplsRowStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsMstiV6v0Group = tmnxSvcTlsMstiV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsMstiV6v0Group.setDescription('The group of objects supporting management of Services TLS MSTI capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsEgrV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 109)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpLastMgmtChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpChainLimit"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpEncapType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpDot1qEtherType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpQinqEtherType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpMacFilterId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpIpFilterId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpIpv6FilterId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpQinqFixedTagPosition"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsEgrMcGrpOperQinqFixedTagVal")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsEgrV6v0Group = tmnxSvcTlsEgrV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsEgrV6v0Group.setDescription('The group of objects supporting management of Services TLS Egress capabilities on Alcatel 7x50 SR series systems.') tmnxSvcDhcpV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 110)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateLocale"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateEncapValue"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSdpId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateVcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateRemainLseTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOption82"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePersistKey"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSubscrIdent"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSubProfString"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSlaProfString"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateShcvOperState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateShcvChecks"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateShcvReplies"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateShcvReplyTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateClientId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateIAID"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateIAIDType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateCiAddrMaskLen"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateRetailerSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateRetailerIf"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateAncpString"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateFramedIpNetMaskTp"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateFramedIpNetMask"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateBCastIpAddrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateBCastIpAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDefaultRouterTp"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDefaultRouter"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePrimaryDnsType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePrimaryDns"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSecondaryDnsType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSecondaryDns"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSessionTimeout"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateServerLeaseStart"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateServerLastRenew"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateServerLeaseEnd"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDhcpServerAddrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDhcpServerAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOriginSubscrId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOriginStrings"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOriginLeaseInfo"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDhcpClientAddrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateDhcpClientAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateLeaseSplitActive"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateInterDestId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePrimaryNbnsType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePrimaryNbns"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSecondaryNbnsType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateSecondaryNbns"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateNextHopMacAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModifySubIndent"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModifySubProfile"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModifySlaProfile"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateEvaluateState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModInterDestId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModifyAncpString"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateForceRenew"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpManagedRouteStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcDhcpV6v0Group = tmnxSvcDhcpV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcDhcpV6v0Group.setDescription('The group of objects supporting management of Services DHCP Lease capabilities on Alcatel 7x50 SR series systems.') tmnxSvcEndPointV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 111)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActivePortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveEncap"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveSdpId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointForceSwitchOver"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointForceSwitchOverSdpId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointActiveHoldDelay"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointIgnoreStandbySig"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacPinning"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacLimit"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointSuppressStandbySig"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveChangeCount"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveLastChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointTxActiveUpTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointRevertTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointRevertTimeCountDn")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcEndPointV6v0Group = tmnxSvcEndPointV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcEndPointV6v0Group.setDescription('The group of objects supporting management of Services endpoint capabilities on Alcatel 7x50 SR series systems.') tmnxSvcPEV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 112)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyPassword"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyInterval"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscoveryPolicyTimeout"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerAddressType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerSecret"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerOperStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPEDiscPolServerPort")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcPEV6v0Group = tmnxSvcPEV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcPEV6v0Group.setDescription('The group of objects supporting management of Services PE Discovery capabilities on Alcatel 7x50 SR series systems.') tmnxSvcIfDHCP6V6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 114)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcIfDHCP6MsgStatsLstClrd"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcIfDHCP6MsgStatsRcvd"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcIfDHCP6MsgStatsSent"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcIfDHCP6MsgStatsDropped")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcIfDHCP6V6v0Group = tmnxSvcIfDHCP6V6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcIfDHCP6V6v0Group.setDescription('The group of objects supporting management of Services interface DHCP capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsBackbone6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 115)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneSrcMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneVplsSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneVplsSvcISID"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneOperSrcMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneOperVplsSvcISID"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneLDPMacFlush"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBackboneVplsStp")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsBackbone6v0Group = tmnxSvcTlsBackbone6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsBackbone6v0Group.setDescription('The group of objects supporting management of Services PBB capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsBgpV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 116)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADTableLastChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADLastChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVplsId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiPrefix"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiRD"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADExportRteTarget"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiExportPolicy1"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiExportPolicy2"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiExportPolicy3"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiExportPolicy4"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiExportPolicy5"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADImportRteTarget"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiImportPolicy1"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiImportPolicy2"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiImportPolicy3"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiImportPolicy4"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADVsiImportPolicy5"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsBgpADAdminStatus")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsBgpV6v0Group = tmnxSvcTlsBgpV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsBgpV6v0Group.setDescription('The group of objects supporting management of Services BGP AD capabilities on Alcatel 7x50 SR series systems.') tmnxSvcEpipeV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 117)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbTableLastChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbRowStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbLastChngd"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbBvplsSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbBvplsDstMac"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEpipePbbSvcISID")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcEpipeV6v0Group = tmnxSvcEpipeV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcEpipeV6v0Group.setDescription('The group of objects supporting management of Services PBB Epipe capabilities on Alcatel 7x50 SR series systems.') tmnxSvcTlsPipV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 118)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpPortState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpPortRole"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpDesignatedBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpDesignatedPort"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpException"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpForwardTransitions"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpInConfigBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpInTcnBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpInRstBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpInMstBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpInBadBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOutConfigBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOutTcnBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOutRstBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOutMstBpdus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOperStatus"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpMvplsPruneState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpOperProtocol"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipStpPortNum"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipMstiPortRole"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipMstiPortState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipMstiDesignatedBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsPipMstiDesignatedPort")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcTlsPipV6v0Group = tmnxSvcTlsPipV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsPipV6v0Group.setDescription('The group of objects supporting management of Services TLS PIP capabilities on Alcatel 7x50 SR series systems.') tmnxApipeV3v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 119)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcApipeInterworking")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxApipeV3v0Group = tmnxApipeV3v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxApipeV3v0Group.setDescription('The group of objects supporting management of APIPE services on Alcatel 7x50 SR series systems release 3.0.') tmnxSvcRoutedCOV5v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 120)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfParentIf"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfFwdServId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfFwdSubIf"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesGrpIfRedInterface"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcWholesalerNumStaticHosts"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcWholesalerNumDynamicHosts")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcRoutedCOV5v0Group = tmnxSvcRoutedCOV5v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcRoutedCOV5v0Group.setDescription('The group of objects supporting routed CO Alcatel 7x50 SR systems.') tmnxSvcBsxV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 121)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateAppProfString"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateModifyAppProfile")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcBsxV6v0Group = tmnxSvcBsxV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcBsxV6v0Group.setDescription('The group of objects supporting management of BSX (Application Assurance) capabilities on Alcatel 7x50 SR series systems.') tmnxSvcNotifyObjsV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 200)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpRestoreLseStateCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpRestoreLseStateProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOldCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateOldChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateNewCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStateNewChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpClientLease"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpPacketProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpLseStatePopulateError"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "hostConnectivityCiAddrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "hostConnectivityCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "hostConnectivityChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "protectedMacForNotify"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "staticHostDynamicMacIpAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "staticHostDynamicMacConflict"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjRowDescr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjTodSuite"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxFailureDescription"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpProxyError"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpCoAError"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDhcpSubAuthError"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrRegFailedReason"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrType"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrValue"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcMstiInstanceId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxCustomerBridgeId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxCustomerRootBridgeId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxOtherBridgeId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxOldSdpBindTlsStpPortState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxVcpState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningMacAddress"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningPinnedRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningPinnedRowDescr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningViolatingRow"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "macPinningViolatingRowDescr")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcNotifyObjsV6v0Group = tmnxSvcNotifyObjsV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyObjsV6v0Group.setDescription('The group of objects supporting management of Services notification objects on Alcatel 7x50 SR series systems.') tmnxSvcObsoletedV6v0Group = ObjectGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 300)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsStpHoldTime"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoFwdOrBlk"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibInfoSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpSrcStatsForwardedPkts"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsMFibGrpSrcStatsForwardedOctets"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDHCPClientLease"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStateOldCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStateOldChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStateNewCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStateNewChAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateCiAddr"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateSvcId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStatePortId"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateEncapVal"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpRestoreLseStateProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpPacketProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tlsDhcpLseStatePopulateError")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcObsoletedV6v0Group = tmnxSvcObsoletedV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObsoletedV6v0Group.setDescription('The group of obsolete objects for the services feature on Alcatel 7x50 SR series systems.') tmnxSvcNotifyV6v0Group = NotificationGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 401)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcStatusChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbTableFullAlarmRaised"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsFdbTableFullAlarmCleared"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfStatusChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMfibTableFullAlarmRaised"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMfibTableFullAlarmCleared"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMacPinningViolation"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDHCPLseStateRestoreProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcObjTodSuiteApplicFailed"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxEndPointTxActiveChanged"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxSvcPEDiscPolServOperStatChg"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacLimitAlarmRaised"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcEndPointMacLimitAlarmCleared"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrRegistrationFailed"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrTblFullAlarmRaised"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsMrpAttrTblFullAlarmCleared"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "topologyChangeVcpState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "newRootVcpState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "newRootBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "vcpActiveProtocolChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxNewCistRegionalRootBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxNewMstiRegionalRootBridge"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "topologyChangePipMajorState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "topologyChangePipState"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "tmnxPipStpExcepCondStateChng"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "pipActiveProtocolChange"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcFdbMimDestTblFullAlrm"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcFdbMimDestTblFullAlrmCleared"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDHCPMiscellaneousProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcPersistencyProblem")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcNotifyV6v0Group = tmnxSvcNotifyV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyV6v0Group.setDescription('The group of notifications for the services feature on Alcatel 7x50 SR series systems.') tmnxSvcNotifyObsoletedGroup = NotificationGroup((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 402)).setObjects(("ALCATEL-IND1-TIMETRA-SERV-MIB", "custCreated"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custDeleted"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteCreated"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "custMultSvcSiteDeleted"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcCreated"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcDeleted"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfCreated"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "iesIfDeleted"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsDHCPLseStRestoreProblem"), ("ALCATEL-IND1-TIMETRA-SERV-MIB", "svcTlsDHCPLseStatePopulateErr")) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnxSvcNotifyObsoletedGroup = tmnxSvcNotifyObsoletedGroup.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyObsoletedGroup.setDescription('The group of notifications for the services feature on Alcatel 7x50 SR series systems.') mibBuilder.exportSymbols("ALCATEL-IND1-TIMETRA-SERV-MIB", tlsRdntGrpMemberTable=tlsRdntGrpMemberTable, svcTlsFdbTableFullHighWatermark=svcTlsFdbTableFullHighWatermark, svcPEDiscoveryPolicyTable=svcPEDiscoveryPolicyTable, tmnxEndPointTxActiveChanged=tmnxEndPointTxActiveChanged, iesIfVpnId=iesIfVpnId, SdpBindVcType=SdpBindVcType, svcDefMeshVcId=svcDefMeshVcId, svcIfDHCP6MsgStatEntry=svcIfDHCP6MsgStatEntry, custEgrSchedPlcyStatsFwdOct=custEgrSchedPlcyStatsFwdOct, StpExceptionCondition=StpExceptionCondition, tlsFdbSdpId=tlsFdbSdpId, tlsRdntGrpRowStatus=tlsRdntGrpRowStatus, svcDhcpLseStateOriginLeaseInfo=svcDhcpLseStateOriginLeaseInfo, svcEndPointIgnoreStandbySig=svcEndPointIgnoreStandbySig, svcPEDiscPolServerAddressType=svcPEDiscPolServerAddressType, tlsPipStpException=tlsPipStpException, tlsEgrMcGrpMacFilterId=tlsEgrMcGrpMacFilterId, custMultSvcSiteName=custMultSvcSiteName, tmnxNewCistRegionalRootBridge=tmnxNewCistRegionalRootBridge, tlsMFibStatsEntryType=tlsMFibStatsEntryType, svcTlsShcvSrcMac=svcTlsShcvSrcMac, svcDhcpLseStateDefaultRouter=svcDhcpLseStateDefaultRouter, LspIdList=LspIdList, svcTlsStpRootCost=svcTlsStpRootCost, svcDhcpManagedRoutePrefixLen=svcDhcpManagedRoutePrefixLen, tlsMFibStatsEntry=tlsMFibStatsEntry, svcTlsMacFlushOnFail=svcTlsMacFlushOnFail, tlsEgrMcGrpChainLimit=tlsEgrMcGrpChainLimit, svcDhcpLseStatePrimaryNbns=svcDhcpLseStatePrimaryNbns, svcDhcpLseStateInterDestId=svcDhcpLseStateInterDestId, svcTlsMacMoveRetryTimeout=svcTlsMacMoveRetryTimeout, StpPortRole=StpPortRole, custEgrQosPortIdSchedName=custEgrQosPortIdSchedName, svcTlsBackboneLDPMacFlush=svcTlsBackboneLDPMacFlush, svcEndPointTxActiveEncap=svcEndPointTxActiveEncap, svcTlsBackboneInfoEntry=svcTlsBackboneInfoEntry, svcPEDiscPolServerAddress=svcPEDiscPolServerAddress, TSapIngQueueId=TSapIngQueueId, custMssIngQosSchedInfoEntry=custMssIngQosSchedInfoEntry, custMultiSvcSiteIngSchedPlcyPortStatsTable=custMultiSvcSiteIngSchedPlcyPortStatsTable, svcLastMgmtChange=svcLastMgmtChange, tlsMstiEntry=tlsMstiEntry, tlsPipStpInTcnBpdus=tlsPipStpInTcnBpdus, tlsPipStpInBadBpdus=tlsPipStpInBadBpdus, custMultSvcSiteAssignment=custMultSvcSiteAssignment, tlsDhcpLseStateOldCiAddr=tlsDhcpLseStateOldCiAddr, svcWholesalerNumDynamicHosts=svcWholesalerNumDynamicHosts, tmnxTstpNotifyObjs=tmnxTstpNotifyObjs, tmnxVcpState=tmnxVcpState, svcTlsStpCistRegionalRootPort=svcTlsStpCistRegionalRootPort, tmnxSvcCompliances=tmnxSvcCompliances, tlsMstiMvplsMinVlanTag=tlsMstiMvplsMinVlanTag, svcEndPointTxActivePortId=svcEndPointTxActivePortId, svcPEDiscPolServerPort=svcPEDiscPolServerPort, iesIfName=iesIfName, custIngQosPortSchedFwdOctets=custIngQosPortSchedFwdOctets, svcDhcpLseStateAncpString=svcDhcpLseStateAncpString, svcBaseInfoEntry=svcBaseInfoEntry, protectedMacForNotify=protectedMacForNotify, svcDhcpLseStateSessionTimeout=svcDhcpLseStateSessionTimeout, iesIfType=iesIfType, tlsMstiRowStatus=tlsMstiRowStatus, custMultiSvcSiteEgrStatsTable=custMultiSvcSiteEgrStatsTable, custMultSvcSiteCurrentIngrSchedPlcy=custMultSvcSiteCurrentIngrSchedPlcy, custMssIngQosSRowStatus=custMssIngQosSRowStatus, custMultiSvcSiteEgrSchedPlcyStatsTable=custMultiSvcSiteEgrSchedPlcyStatsTable, svcRadiusPEDiscPolicy=svcRadiusPEDiscPolicy, svcTlsBgpADVsiRD=svcTlsBgpADVsiRD, tmnxSvcObjs=tmnxSvcObjs, custMssEgrQosSSummedCIR=custMssEgrQosSSummedCIR, ServType=ServType, ServObjDesc=ServObjDesc, custMultSvcSiteFrameBasedAccnt=custMultSvcSiteFrameBasedAccnt, tmnxOldSdpBindTlsStpPortState=tmnxOldSdpBindTlsStpPortState, svcTlsMfibTableFullAlarmCleared=svcTlsMfibTableFullAlarmCleared, custMultSvcSiteCreated=custMultSvcSiteCreated, svcTlsFdbNumDhcpEntries=svcTlsFdbNumDhcpEntries, tlsMFibGrpSrcStatsSrcAddr=tlsMFibGrpSrcStatsSrcAddr, svcEndPointMacPinning=svcEndPointMacPinning, svcTlsMrpAttrType=svcTlsMrpAttrType, tmnxSvcPEDiscPolServOperStatChg=tmnxSvcPEDiscPolServOperStatChg, TdmOptionsCasTrunkFraming=TdmOptionsCasTrunkFraming, tlsPipStpOutTcnBpdus=tlsPipStpOutTcnBpdus, tlsFdbVpnId=tlsFdbVpnId, custIngQosPortIdSchedStatsTable=custIngQosPortIdSchedStatsTable, tlsMFibInfoSrcAddr=tlsMFibInfoSrcAddr, svcCustId=svcCustId, custIngSchedPlcyStatsFwdOct=custIngSchedPlcyStatsFwdOct, svcIfDHCP6MsgStatTable=svcIfDHCP6MsgStatTable, svcTlsBgpADVsiExportPolicy4=svcTlsBgpADVsiExportPolicy4, tlsEgrMcGrpName=tlsEgrMcGrpName, svcEndPointDescription=svcEndPointDescription, svcTlsBgpADVsiImportPolicy3=svcTlsBgpADVsiImportPolicy3, tmnxSvcNotifyObsoletedGroup=tmnxSvcNotifyObsoletedGroup, tmnxFailureDescription=tmnxFailureDescription, tlsFdbCustId=tlsFdbCustId, iesIfCreated=iesIfCreated, svcTlsStpTimeSinceTopologyChange=svcTlsStpTimeSinceTopologyChange, svcEndPointRowStatus=svcEndPointRowStatus, svcDhcpLseStateShcvReplyTime=svcDhcpLseStateShcvReplyTime, macPinningMacAddress=macPinningMacAddress, tlsProtectedMacTable=tlsProtectedMacTable, svcIfDHCP6MsgStatsDropped=svcIfDHCP6MsgStatsDropped, svcEpipePbbLastChngd=svcEpipePbbLastChngd, tlsMFibLocale=tlsMFibLocale, tlsMFibInfoSvcId=tlsMFibInfoSvcId, TQosQueueAttribute=TQosQueueAttribute, svcDhcpLseStateShcvReplies=svcDhcpLseStateShcvReplies, staticHostDynamicMacConflict=staticHostDynamicMacConflict, DhcpLseStateInfoOrigin=DhcpLseStateInfoOrigin, svcDhcpLseStateRetailerSvcId=svcDhcpLseStateRetailerSvcId, svcEndPointMacLimitAlarmRaised=svcEndPointMacLimitAlarmRaised, iesIfLastStatusChange=iesIfLastStatusChange, tlsEgrMcGrpLastMgmtChange=tlsEgrMcGrpLastMgmtChange, svcEpipePbbSvcISID=svcEpipePbbSvcISID, tlsFdbMacAddr=tlsFdbMacAddr, custMssIngQosSSummedCIR=custMssIngQosSSummedCIR, custEgrSchedPlcyPortStatsPort=custEgrSchedPlcyPortStatsPort, tlsPipStpInMstBpdus=tlsPipStpInMstBpdus, iesIfOperStatus=iesIfOperStatus, svcEndPointMacLimitAlarmCleared=svcEndPointMacLimitAlarmCleared, tlsFdbPbbNumEpipes=tlsFdbPbbNumEpipes, custMultiServiceSiteEntry=custMultiServiceSiteEntry, tlsMstiMvplsRowStatus=tlsMstiMvplsRowStatus, svcEndPointRevertTimeCountDn=svcEndPointRevertTimeCountDn, tlsRdntGrpDescription=tlsRdntGrpDescription, svcDhcpLseStateSubProfString=svcDhcpLseStateSubProfString, svcRadiusUserName=svcRadiusUserName, svcDhcpLseStateShcvChecks=svcDhcpLseStateShcvChecks, svcDhcpLseStateOriginStrings=svcDhcpLseStateOriginStrings, tlsPipStpForwardTransitions=tlsPipStpForwardTransitions, svcDhcpLseStateSecondaryDns=svcDhcpLseStateSecondaryDns, custMultSvcSiteLastMgmtChange=custMultSvcSiteLastMgmtChange, tlsFdbPortId=tlsFdbPortId, svcDHCPLseStateRestoreProblem=svcDHCPLseStateRestoreProblem, tlsRdntGrpTable=tlsRdntGrpTable, svcDhcpLseStateSdpId=svcDhcpLseStateSdpId, tmnxSvcTlsV6v0Group=tmnxSvcTlsV6v0Group, svcDhcpLseStatePrimaryDnsType=svcDhcpLseStatePrimaryDnsType, custMultiSvcSiteIngSchedPlcyPortStatsEntry=custMultiSvcSiteIngSchedPlcyPortStatsEntry, svcTlsBgpADEntry=svcTlsBgpADEntry, IAIDType=IAIDType, custEgrQosPortSchedFwdPkts=custEgrQosPortSchedFwdPkts, svcTlsMrpAttrTblFullAlarmCleared=svcTlsMrpAttrTblFullAlarmCleared, custTraps=custTraps, svcDhcpLseStateDhcpServerAddr=svcDhcpLseStateDhcpServerAddr, svcPEDiscPolServerTable=svcPEDiscPolServerTable, tmnxSvcRoutedCOV5v0Group=tmnxSvcRoutedCOV5v0Group, tlsPipStpDesignatedPort=tlsPipStpDesignatedPort, tmnxSvcTlsEgrV6v0Group=tmnxSvcTlsEgrV6v0Group, svcPersistencyProblem=svcPersistencyProblem, svcEpipePbbBvplsDstMac=svcEpipePbbBvplsDstMac, tlsEgrMcGrpOperQinqFixedTagVal=tlsEgrMcGrpOperQinqFixedTagVal, svcDhcpLseStatePrimaryNbnsType=svcDhcpLseStatePrimaryNbnsType, tlsMFibInfoLocale=tlsMFibInfoLocale, svcTlsStpVcpOperProtocol=svcTlsStpVcpOperProtocol, custPhone=custPhone, tlsMFibEncapValue=tlsMFibEncapValue, tlsRdntGrpMemberRemoteNodeAddrTp=tlsRdntGrpMemberRemoteNodeAddrTp, svcTlsStpMaxAge=svcTlsStpMaxAge, svcTlsPriPortsCumulativeFactor=svcTlsPriPortsCumulativeFactor, custIngQosPortIdSchedName=custIngQosPortIdSchedName, svcEndPointTxActiveLastChange=svcEndPointTxActiveLastChange, svcTlsStpBridgeHelloTime=svcTlsStpBridgeHelloTime, tlsMstiManagedVlanListEntry=tlsMstiManagedVlanListEntry, svcDhcpManagedRouteTable=svcDhcpManagedRouteTable, svcTlsL2ptTermEnabled=svcTlsL2ptTermEnabled, svcDhcpLseStateBCastIpAddrType=svcDhcpLseStateBCastIpAddrType, tlsPipStpOperStatus=tlsPipStpOperStatus, tmnxSvcRdntV6v0Group=tmnxSvcRdntV6v0Group, tmnxSvcTlsFdbV6v0Group=tmnxSvcTlsFdbV6v0Group, custIngSchedPlcyPortStatsPort=custIngSchedPlcyPortStatsPort, custMultSvcSiteTodSuite=custMultSvcSiteTodSuite, custEgrQosPortIdSchedStatsTable=custEgrQosPortIdSchedStatsTable, svcVplsType=svcVplsType, svcTlsMfibTableFullAlarmRaised=svcTlsMfibTableFullAlarmRaised, svcRadiusUserNameType=svcRadiusUserNameType, custMssEgrQosSLastMgmtChange=custMssEgrQosSLastMgmtChange, custMssEgrQosSOverrideFlags=custMssEgrQosSOverrideFlags, tlsMFibGrpInetAddrType=tlsMFibGrpInetAddrType, tlsDhcpPacketProblem=tlsDhcpPacketProblem, svcTlsVpnId=svcTlsVpnId, svcApipeInterworking=svcApipeInterworking, tlsMstiRegionalRootPort=tlsMstiRegionalRootPort, tlsEgrMcGrpQinqFixedTagPosition=tlsEgrMcGrpQinqFixedTagPosition, svcDhcpProxyError=svcDhcpProxyError, svcDhcpLseStatePersistKey=svcDhcpLseStatePersistKey, custIngQosSchedName=custIngQosSchedName, tlsShgRestUnprotDstMac=tlsShgRestUnprotDstMac, tlsFdbInfoEntry=tlsFdbInfoEntry, svcPEDiscoveryPolicyTimeout=svcPEDiscoveryPolicyTimeout, tlsRdntGrpMemberRemoteNodeAddr=tlsRdntGrpMemberRemoteNodeAddr, tlsPipInfoTable=tlsPipInfoTable, svcTlsBackboneInfoTable=svcTlsBackboneInfoTable, tmnxSvcEndPointV6v0Group=tmnxSvcEndPointV6v0Group, tlsDhcpLseStatePopulateError=tlsDhcpLseStatePopulateError, svcTlsStpBridgeMaxAge=svcTlsStpBridgeMaxAge, svcEndPointMacLimit=svcEndPointMacLimit, svcLastStatusChange=svcLastStatusChange, tlsEgrMcGrpQinqEtherType=tlsEgrMcGrpQinqEtherType, svcPEDiscPolServerOperStatus=svcPEDiscPolServerOperStatus, iesIfFwdSubIf=iesIfFwdSubIf, svcNumSaps=svcNumSaps, svcDhcpLseStateOriginSubscrId=svcDhcpLseStateOriginSubscrId, tlsMFibInfoGrpAddr=tlsMFibInfoGrpAddr, tlsRdntGrpMemberPort=tlsRdntGrpMemberPort, macPinningPinnedRowDescr=macPinningPinnedRowDescr, tmnxSvcObjTodSuite=tmnxSvcObjTodSuite, custTrapsPrefix=custTrapsPrefix, svcDhcpLseStateBCastIpAddr=svcDhcpLseStateBCastIpAddr, svcTlsBgpADLastChanged=svcTlsBgpADLastChanged, svcCreated=svcCreated, tlsEgrMcGrpRowStatus=tlsEgrMcGrpRowStatus, svcEndPointSuppressStandbySig=svcEndPointSuppressStandbySig, tmnxApipeV3v0Group=tmnxApipeV3v0Group, tlsEgrMcGrpEncapType=tlsEgrMcGrpEncapType, tlsDhcpLseStateNewChAddr=tlsDhcpLseStateNewChAddr, tmnxCustomerBridgeId=tmnxCustomerBridgeId, svcTraps=svcTraps, tlsFdbVcId=tlsFdbVcId, topologyChangePipState=topologyChangePipState, svcTlsStpRegionName=svcTlsStpRegionName, svcWholesalerInfoTable=svcWholesalerInfoTable, tmnxTstpConformance=tmnxTstpConformance, svcDhcpLseStateSubscrIdent=svcDhcpLseStateSubscrIdent, MvplsPruneState=MvplsPruneState, tlsMFibInfoEncapValue=tlsMFibInfoEncapValue, tlsMstiManagedVlanListTable=tlsMstiManagedVlanListTable, tlsMFibStatsTable=tlsMFibStatsTable, svcTlsBgpADRowStatus=svcTlsBgpADRowStatus, tlsMFibInfoFwdOrBlk=tlsMFibInfoFwdOrBlk, tmnxSvcTlsMstiV6v0Group=tmnxSvcTlsMstiV6v0Group, svcEndPointTxActiveType=svcEndPointTxActiveType, tlsPipMstiPortState=tlsPipMstiPortState, custMultiSvcSiteEgrSchedPlcyPortStatsTable=custMultiSvcSiteEgrSchedPlcyPortStatsTable, tmnxSvcTlsBgpV6v0Group=tmnxSvcTlsBgpV6v0Group, tlsPipStpPortRole=tlsPipStpPortRole, tlsMFibInfoPortId=tlsMFibInfoPortId, svcIpRouting=svcIpRouting, tlsProtMacLastMgmtChange=tlsProtMacLastMgmtChange, tlsMFibInfoSdpId=tlsMFibInfoSdpId, custMssIngQosSCIR=custMssIngQosSCIR, tlsFdbProtected=tlsFdbProtected, tlsRdntGrpMemberRowStatus=tlsRdntGrpMemberRowStatus, tmnxServObjs=tmnxServObjs, tmnxSvcBsxV6v0Group=tmnxSvcBsxV6v0Group, custMultSvcSiteEgressSchedulerPolicy=custMultSvcSiteEgressSchedulerPolicy, svcBaseInfoTable=svcBaseInfoTable, tlsDhcpRestoreLseStatePortId=tlsDhcpRestoreLseStatePortId, iesIfShcvInterval=iesIfShcvInterval, tlsDhcpLseStateNewCiAddr=tlsDhcpLseStateNewCiAddr, tlsMFibVcId=tlsMFibVcId, tlsRdntGrpEntry=tlsRdntGrpEntry, svcDhcpLseStatePopulateError=svcDhcpLseStatePopulateError) mibBuilder.exportSymbols("ALCATEL-IND1-TIMETRA-SERV-MIB", svcTlsFdbNumStaticEntries=svcTlsFdbNumStaticEntries, tmnxOtherBridgeId=tmnxOtherBridgeId, MfibGrpSrcFwdOrBlk=MfibGrpSrcFwdOrBlk, custMultiSvcSiteEgrStatsEntry=custMultiSvcSiteEgrStatsEntry, svcDhcpLseStateSecondaryNbns=svcDhcpLseStateSecondaryNbns, tlsMFibStatsForwardedOctets=tlsMFibStatsForwardedOctets, svcTlsBgpADTableLastChanged=svcTlsBgpADTableLastChanged, svcEpipePbbTableLastChanged=svcEpipePbbTableLastChanged, tmnxSvcIesIfV6v0Group=tmnxSvcIesIfV6v0Group, custMultSvcSiteIntendedIngrSchedPlcy=custMultSvcSiteIntendedIngrSchedPlcy, tlsShgRestProtSrcMac=tlsShgRestProtSrcMac, svcEndPointForceSwitchOver=svcEndPointForceSwitchOver, tlsMFibInfoEntry=tlsMFibInfoEntry, svcTlsStpAdminStatus=svcTlsStpAdminStatus, ServObjLongDesc=ServObjLongDesc, svcEndPointTxActiveChangeCount=svcEndPointTxActiveChangeCount, svcTlsMcPathMgmtPlcyName=svcTlsMcPathMgmtPlcyName, tmnxSvcTlsPipV6v0Group=tmnxSvcTlsPipV6v0Group, svcEpipePbbRowStatus=svcEpipePbbRowStatus, svcStatusChanged=svcStatusChanged, svcTlsFdbTableSize=svcTlsFdbTableSize, tlsPipMstiTable=tlsPipMstiTable, custIngSchedPlcyPortStatsFwdOct=custIngSchedPlcyPortStatsFwdOct, svcDhcpLseStateServerLastRenew=svcDhcpLseStateServerLastRenew, svcTlsMacMoveMaxRate=svcTlsMacMoveMaxRate, svcTlsShcvInterval=svcTlsShcvInterval, tmnxPipStpExcepCondStateChng=tmnxPipStpExcepCondStateChng, tlsFdbNumIVplsMac=tlsFdbNumIVplsMac, svcEndPointRevertTime=svcEndPointRevertTime, tlsFdbLocale=tlsFdbLocale, svcTlsMrpAttrValue=svcTlsMrpAttrValue, svcTlsDiscardUnknownDest=svcTlsDiscardUnknownDest, svcDhcpPacketProblem=svcDhcpPacketProblem, custIngSchedPlcyStatsFwdPkt=custIngSchedPlcyStatsFwdPkt, custMultiServiceSiteTable=custMultiServiceSiteTable, svcTlsMfibTableSize=svcTlsMfibTableSize, svcDhcpLseStateOption82=svcDhcpLseStateOption82, svcTotalFdbMimDestIdxEntries=svcTotalFdbMimDestIdxEntries, tlsMFibGrpInetAddr=tlsMFibGrpInetAddr, svcDhcpLeaseStateModifyTable=svcDhcpLeaseStateModifyTable, macPinningViolatingRow=macPinningViolatingRow, custMssEgrQosSRowStatus=custMssEgrQosSRowStatus, svcEpipePbbTable=svcEpipePbbTable, iesGrpIfEntry=iesGrpIfEntry, tmnxCustCompliance=tmnxCustCompliance, svcIfDHCP6MsgStatsSent=svcIfDHCP6MsgStatsSent, iesGrpIfRedInterface=iesGrpIfRedInterface, SdpBindTlsBpduTranslation=SdpBindTlsBpduTranslation, tlsMstiRegionalRoot=tlsMstiRegionalRoot, svcDhcpLseStateDhcpClientAddrType=svcDhcpLseStateDhcpClientAddrType, svcVcSwitching=svcVcSwitching, svcTlsMacAgeing=svcTlsMacAgeing, svcTlsMrpAttrRegFailedReason=svcTlsMrpAttrRegFailedReason, svcTlsFdbNumOamEntries=svcTlsFdbNumOamEntries, svcDhcpLseStateDefaultRouterTp=svcDhcpLseStateDefaultRouterTp, iesIfIndex=iesIfIndex, tlsEgrMcGrpIpFilterId=tlsEgrMcGrpIpFilterId, custMultSvcSiteCurrentEgrSchedPlcy=custMultSvcSiteCurrentEgrSchedPlcy, svcVpnId=svcVpnId, svcDhcpLseStateModifySlaProfile=svcDhcpLseStateModifySlaProfile, svcTlsStpCistIntRootCost=svcTlsStpCistIntRootCost, svcTlsBackboneVplsSvcISID=svcTlsBackboneVplsSvcISID, timetraServicesMIBModule=timetraServicesMIBModule, svcTlsStpRegionRevision=svcTlsStpRegionRevision, svcTlsMrpAttrTblLowWatermark=svcTlsMrpAttrTblLowWatermark, tlsProtMacAddress=tlsProtMacAddress, svcTrapsPrefix=svcTrapsPrefix, tlsRdntGrpMemberEntry=tlsRdntGrpMemberEntry, tlsRdntGrpMemberIsSap=tlsRdntGrpMemberIsSap, tmnxSvcObjRowDescr=tmnxSvcObjRowDescr, svcTlsSecPortsCumulativeFactor=svcTlsSecPortsCumulativeFactor, custMultSvcSiteScope=custMultSvcSiteScope, tmnxSvcGroups=tmnxSvcGroups, tlsMFibSrcInetAddrType=tlsMFibSrcInetAddrType, svcTlsMrpAttributeCount=svcTlsMrpAttributeCount, svcTlsBackboneOperVplsSvcISID=svcTlsBackboneOperVplsSvcISID, TSapEgrQueueId=TSapEgrQueueId, tlsMFibStatsSrcInetAddrType=tlsMFibStatsSrcInetAddrType, svcTlsMacLearning=svcTlsMacLearning, svcDhcpLseStateCiAddrType=svcDhcpLseStateCiAddrType, tlsRdntGrpName=tlsRdntGrpName, tmnxSvcConformance=tmnxSvcConformance, tlsShgLastMgmtChange=tlsShgLastMgmtChange, custMssEgrQosSCIR=custMssEgrQosSCIR, svcTlsFdbNumLearnedEntries=svcTlsFdbNumLearnedEntries, svcWholesalerInfoEntry=svcWholesalerInfoEntry, svcTlsBgpADVsiImportPolicy5=svcTlsBgpADVsiImportPolicy5, svcDhcpLseStateCiAddr=svcDhcpLseStateCiAddr, svcTlsMrpAttrTblFullAlarmRaised=svcTlsMrpAttrTblFullAlarmRaised, custMssIngQosSOverrideFlags=custMssIngQosSOverrideFlags, svcIfDHCP6MsgStatsRcvd=svcIfDHCP6MsgStatsRcvd, svcDhcpLeaseStateEntry=svcDhcpLeaseStateEntry, tlsPipStpMvplsPruneState=tlsPipStpMvplsPruneState, iesIfLastMgmtChange=iesIfLastMgmtChange, svcTlsBgpADImportRteTarget=svcTlsBgpADImportRteTarget, svcDhcpManagedRouteEntry=svcDhcpManagedRouteEntry, CemSapReportAlarm=CemSapReportAlarm, svcTlsStpBridgeForwardDelay=svcTlsStpBridgeForwardDelay, tlsMFibGrpSrcStatsTable=tlsMFibGrpSrcStatsTable, custContact=custContact, tlsShgRowStatus=tlsShgRowStatus, CemSapEcid=CemSapEcid, svcAutoBind=svcAutoBind, tlsPipStpPortState=tlsPipStpPortState, svcTlsDHCPLseStatePopulateErr=svcTlsDHCPLseStatePopulateErr, MfibLocation=MfibLocation, iesIfDeleted=iesIfDeleted, tmnxSvc7750V6v0Compliance=tmnxSvc7750V6v0Compliance, tlsRdntGrpLastMgmtChange=tlsRdntGrpLastMgmtChange, tlsPipStpOutMstBpdus=tlsPipStpOutMstBpdus, tlsMFibStatsGrpMacAddr=tlsMFibStatsGrpMacAddr, iesIfShcvSource=iesIfShcvSource, tmnxSvcNotifyObjs=tmnxSvcNotifyObjs, tlsMFibSvcId=tlsMFibSvcId, MstiInstanceIdOrZero=MstiInstanceIdOrZero, tlsFdbEPMacOperSdpId=tlsFdbEPMacOperSdpId, svcApipeInfoTable=svcApipeInfoTable, tlsShgResidential=tlsShgResidential, iesIfFwdServId=iesIfFwdServId, svcEpipePbbEntry=svcEpipePbbEntry, svcTlsMfibTableFullLowWatermark=svcTlsMfibTableFullLowWatermark, custMultSvcSiteEgressAggRateLimit=custMultSvcSiteEgressAggRateLimit, iesIfCustId=iesIfCustId, svcDhcpLseStateModifySubProfile=svcDhcpLseStateModifySubProfile, svcDHCPMiscellaneousProblem=svcDHCPMiscellaneousProblem, tlsMFibInfoVcId=tlsMFibInfoVcId, tlsPipStpOutConfigBpdus=tlsPipStpOutConfigBpdus, custMultiSvcSiteIngStatsEntry=custMultiSvcSiteIngStatsEntry, svcDhcpLseStateChAddr=svcDhcpLseStateChAddr, svcDhcpLseStatePrimaryDns=svcDhcpLseStatePrimaryDns, svcTlsMrpAttrRegistrationFailed=svcTlsMrpAttrRegistrationFailed, tlsMFibGrpSrcStatsGrpAddr=tlsMFibGrpSrcStatsGrpAddr, svcTlsBgpADVsiImportPolicy4=svcTlsBgpADVsiImportPolicy4, svcTlsFdbRemoteAgeTime=svcTlsFdbRemoteAgeTime, svcTlsMrpAdminStatus=svcTlsMrpAdminStatus, custInfoEntry=custInfoEntry, custEgrQosSchedStatsForwardedOctets=custEgrQosSchedStatsForwardedOctets, svcPEDiscoveryPolicyInterval=svcPEDiscoveryPolicyInterval, tlsMFibPortId=tlsMFibPortId, iesIfLoopback=iesIfLoopback, svcEndPointName=svcEndPointName, svcDhcpCoAError=svcDhcpCoAError, svcDhcpLseStateNewChAddr=svcDhcpLseStateNewChAddr, tmnxCustomerRootBridgeId=tmnxCustomerRootBridgeId, svcDhcpRestoreLseStateCiAddr=svcDhcpRestoreLseStateCiAddr, tmnxSvcObjTodSuiteApplicFailed=tmnxSvcObjTodSuiteApplicFailed, svcDhcpLseStateNewCiAddr=svcDhcpLseStateNewCiAddr, hostConnectivityCiAddr=hostConnectivityCiAddr, SdpId=SdpId, svcDhcpLseStateLocale=svcDhcpLseStateLocale, tlsDHCPClientLease=tlsDHCPClientLease, tlsDhcpRestoreLseStateEncapVal=tlsDhcpRestoreLseStateEncapVal, tstpTraps=tstpTraps, svcTlsStpCistRemainingHopCount=svcTlsStpCistRemainingHopCount, tmnxCustV6v0Group=tmnxCustV6v0Group, svcDhcpLseStateCiAddrMaskLen=svcDhcpLseStateCiAddrMaskLen, svcTlsCustId=svcTlsCustId, svcTlsInfoEntry=svcTlsInfoEntry, tlsEgrMcGrpIpv6FilterId=tlsEgrMcGrpIpv6FilterId, custMultSvcSiteDeleted=custMultSvcSiteDeleted, svcDeleted=svcDeleted, tmnxCustConformance=tmnxCustConformance, PYSNMP_MODULE_ID=timetraServicesMIBModule, staticHostDynamicMacIpAddress=staticHostDynamicMacIpAddress, svcEndPointActiveHoldDelay=svcEndPointActiveHoldDelay, svcDhcpLseStateEvaluateState=svcDhcpLseStateEvaluateState, custEgrQosSchedName=custEgrQosSchedName, svcRowStatus=svcRowStatus, svcDhcpClientLease=svcDhcpClientLease, svcTlsMfibTableFullHighWatermark=svcTlsMfibTableFullHighWatermark, vcpActiveProtocolChange=vcpActiveProtocolChange, tlsPipInfoEntry=tlsPipInfoEntry, custMultSvcSiteRowStatus=custMultSvcSiteRowStatus, svcTlsStpBridgeAddress=svcTlsStpBridgeAddress, MstiInstanceId=MstiInstanceId, custRowStatus=custRowStatus, svcMtu=svcMtu, PWTemplateId=PWTemplateId, tlsFdbType=tlsFdbType, tlsShgRestProtSrcMacAction=tlsShgRestProtSrcMacAction, SdpBFHundredthsOfPercent=SdpBFHundredthsOfPercent, tlsShgInfoTable=tlsShgInfoTable, custMultSvcSiteDescription=custMultSvcSiteDescription, tlsShgCustId=tlsShgCustId, tlsMFibInfoTable=tlsMFibInfoTable, svcDhcpLseStateIAIDType=svcDhcpLseStateIAIDType, custLastMgmtChange=custLastMgmtChange, svcTlsStpForwardDelay=svcTlsStpForwardDelay, svcDhcpLseStateVcId=svcDhcpLseStateVcId, tmnxServConformance=tmnxServConformance, hostConnectivityCiAddrType=hostConnectivityCiAddrType, tlsPipStpInRstBpdus=tlsPipStpInRstBpdus, custInfoTable=custInfoTable, tlsMFibSdpId=tlsMFibSdpId, svcDhcpLeaseStateActionEntry=svcDhcpLeaseStateActionEntry, topologyChangeVcpState=topologyChangeVcpState, tlsMstiTable=tlsMstiTable, tlsPipStpPortNum=tlsPipStpPortNum, svcEndPointTxActiveUpTime=svcEndPointTxActiveUpTime, svcWholesalerNumStaticHosts=svcWholesalerNumStaticHosts, SdpTemplateId=SdpTemplateId, TVirtSchedAttribute=TVirtSchedAttribute, svcDhcpLseStateAppProfString=svcDhcpLseStateAppProfString, svcDhcpLseStateForceRenew=svcDhcpLseStateForceRenew, svcTlsBgpADExportRteTarget=svcTlsBgpADExportRteTarget, tlsPipMstiDesignatedBridge=tlsPipMstiDesignatedBridge, svcPEDiscoveryPolicyEntry=svcPEDiscoveryPolicyEntry, svcDhcpLseStateSecondaryDnsType=svcDhcpLseStateSecondaryDnsType, custNumEntries=custNumEntries, svcDhcpLseStateClientId=svcDhcpLseStateClientId, tlsMFibStatsForwardedPkts=tlsMFibStatsForwardedPkts, custMultSvcSiteIntendedEgrSchedPlcy=custMultSvcSiteIntendedEgrSchedPlcy, svcTlsFdbNumHostEntries=svcTlsFdbNumHostEntries, TlsLimitMacMoveLevel=TlsLimitMacMoveLevel, svcDhcpLseStateServerLeaseStart=svcDhcpLseStateServerLeaseStart, svcTlsBackboneVplsSvcId=svcTlsBackboneVplsSvcId, tlsDhcpRestoreLseStateSvcId=tlsDhcpRestoreLseStateSvcId, svcId=svcId, custMultiSvcSiteEgrSchedPlcyStatsEntry=custMultiSvcSiteEgrSchedPlcyStatsEntry, custIngQosPortSchedFwdPkts=custIngQosPortSchedFwdPkts, svcTlsStpHelloTime=svcTlsStpHelloTime, custIngQosAssignmentPortId=custIngQosAssignmentPortId, svcType=svcType, tlsDhcpRestoreLseStateProblem=tlsDhcpRestoreLseStateProblem, svcTlsStpVersion=svcTlsStpVersion, tlsMstiRemainingHopCount=tlsMstiRemainingHopCount, svcDhcpLseStateEncapValue=svcDhcpLseStateEncapValue, svcTlsStpTopologyChangeActive=svcTlsStpTopologyChangeActive, tlsDhcpLseStateOldChAddr=tlsDhcpLseStateOldChAddr, L2ptProtocols=L2ptProtocols, svcEndPointTable=svcEndPointTable, tlsDhcpRestoreLseStateCiAddr=tlsDhcpRestoreLseStateCiAddr, tmnxSvcDhcpV6v0Group=tmnxSvcDhcpV6v0Group, svcTlsBgpADVplsId=svcTlsBgpADVplsId, custMssIngQosSPIR=custMssIngQosSPIR, tmnxSvcTlsShgV6v0Group=tmnxSvcTlsShgV6v0Group, svcAdminStatus=svcAdminStatus, tmnxSvcTlsMFibV6v0Group=tmnxSvcTlsMFibV6v0Group, svcNumEntries=svcNumEntries, tmnxSvcObsoletedV6v0Group=tmnxSvcObsoletedV6v0Group, svcVRouterId=svcVRouterId, svcDhcpLseStateModInterDestId=svcDhcpLseStateModInterDestId, BridgeId=BridgeId, tmnxSvc7710V6v0Compliance=tmnxSvc7710V6v0Compliance, tmnxSvc7450V6v0Compliance=tmnxSvc7450V6v0Compliance, custEgrSchedPlcyPortStatsFwdPkt=custEgrSchedPlcyPortStatsFwdPkt, tlsPipStpInConfigBpdus=tlsPipStpInConfigBpdus, tlsEgrMcGrpDescription=tlsEgrMcGrpDescription, tlsProtMacRowStatus=tlsProtMacRowStatus, SdpBindBandwidth=SdpBindBandwidth, svcTlsMrpMaxAttributes=svcTlsMrpMaxAttributes, svcDescription=svcDescription, tmnxTstpCompliances=tmnxTstpCompliances, svcTlsBgpADVsiImportPolicy1=svcTlsBgpADVsiImportPolicy1) mibBuilder.exportSymbols("ALCATEL-IND1-TIMETRA-SERV-MIB", svcDhcpLeaseStateTable=svcDhcpLeaseStateTable, tlsRdntGrpMemberEncap=tlsRdntGrpMemberEncap, tlsMstiMvplsMaxVlanTag=tlsMstiMvplsMaxVlanTag, svcTlsBgpADVsiExportPolicy1=svcTlsBgpADVsiExportPolicy1, svcTlsStpVirtualRootBridgeStatus=svcTlsStpVirtualRootBridgeStatus, tlsMstiPriority=tlsMstiPriority, tlsMFibEntry=tlsMFibEntry, topologyChangePipMajorState=topologyChangePipMajorState, svcPEDiscoveryPolicyPassword=svcPEDiscoveryPolicyPassword, custMssEgrQosSName=custMssEgrQosSName, svcDhcpLseStateNextHopMacAddr=svcDhcpLseStateNextHopMacAddr, tlsMFibStatsGrpInetAddrType=tlsMFibStatsGrpInetAddrType, tlsShgInstanceId=tlsShgInstanceId, tlsFdbEndPointName=tlsFdbEndPointName, svcTlsBgpADTable=svcTlsBgpADTable, svcTlsInfoTable=svcTlsInfoTable, custCreated=custCreated, macPinningPinnedRow=macPinningPinnedRow, tmnxCustGroups=tmnxCustGroups, iesIfDescription=iesIfDescription, ConfigStatus=ConfigStatus, svcTlsFdbLocalAgeTime=svcTlsFdbLocalAgeTime, custMultSvcSiteIngressSchedulerPolicy=custMultSvcSiteIngressSchedulerPolicy, svcTlsStpBridgeInstanceId=svcTlsStpBridgeInstanceId, custMultiSvcSiteIngStatsTable=custMultiSvcSiteIngStatsTable, svcNumSdps=svcNumSdps, tlsFdbRowStatus=tlsFdbRowStatus, tlsFdbBackboneDstMac=tlsFdbBackboneDstMac, tlsPipMstiEntry=tlsPipMstiEntry, tmnxSvcV6v0Group=tmnxSvcV6v0Group, svcTlsStpOperStatus=svcTlsStpOperStatus, svcTlsFdbNumEntries=svcTlsFdbNumEntries, svcPEDiscPolServerEntry=svcPEDiscPolServerEntry, custMultiSvcSiteIngSchedPlcyStatsEntry=custMultiSvcSiteIngSchedPlcyStatsEntry, custEgrQosAssignmentPortId=custEgrQosAssignmentPortId, custMssIngQosSchedInfoTable=custMssIngQosSchedInfoTable, custEgrSchedPlcyPortStatsFwdOct=custEgrSchedPlcyPortStatsFwdOct, svcEndPointForceSwitchOverSdpId=svcEndPointForceSwitchOverSdpId, svcRadiusDiscovery=svcRadiusDiscovery, tlsMFibGrpSrcStatsForwardedPkts=tlsMFibGrpSrcStatsForwardedPkts, svcVllType=svcVllType, svcPEDiscPolServerRowStatus=svcPEDiscPolServerRowStatus, tlsFdbEncapValue=tlsFdbEncapValue, iesIfParentIf=iesIfParentIf, svcPEDiscPolServerIndex=svcPEDiscPolServerIndex, svcDhcpLseStateModifyAppProfile=svcDhcpLseStateModifyAppProfile, svcFdbMimDestTblFullAlrm=svcFdbMimDestTblFullAlrm, custIngQosSchedStatsForwardedOctets=custIngQosSchedStatsForwardedOctets, custEgrQosPortIdSchedStatsEntry=custEgrQosPortIdSchedStatsEntry, svcDhcpLseStateDhcpClientAddr=svcDhcpLseStateDhcpClientAddr, custId=custId, tlsEgressMulticastGroupEntry=tlsEgressMulticastGroupEntry, tlsShgCreationOrigin=tlsShgCreationOrigin, tlsRdntGrpMemberLastMgmtChange=tlsRdntGrpMemberLastMgmtChange, svcTlsFdbTableFullLowWatermark=svcTlsFdbTableFullLowWatermark, custMssEgrQosSchedInfoTable=custMssEgrQosSchedInfoTable, svcDhcpLeaseStateModifyEntry=svcDhcpLeaseStateModifyEntry, svcDhcpLseStateFramedIpNetMask=svcDhcpLseStateFramedIpNetMask, iesGrpIfOperUpWhileEmpty=iesGrpIfOperUpWhileEmpty, svcEndPointTxActiveSdpId=svcEndPointTxActiveSdpId, svcTlsBackboneOperSrcMac=svcTlsBackboneOperSrcMac, svcDhcpSubAuthError=svcDhcpSubAuthError, tmnxSvcPEV6v0Group=tmnxSvcPEV6v0Group, svcTlsStpHoldTime=svcTlsStpHoldTime, iesIfStatusChanged=iesIfStatusChanged, newRootBridge=newRootBridge, TStpPortState=TStpPortState, custMssIngQosSName=custMssIngQosSName, svcPEDiscPolServerSecret=svcPEDiscPolServerSecret, tlsMFibEntryType=tlsMFibEntryType, svcApipeInfoEntry=svcApipeInfoEntry, svcFdbMimDestTblFullAlrmCleared=svcFdbMimDestTblFullAlrmCleared, svcTlsBgpADVsiImportPolicy2=svcTlsBgpADVsiImportPolicy2, custMssEgrQosSPIR=custMssEgrQosSPIR, tmnxSvcEpipeV6v0Group=tmnxSvcEpipeV6v0Group, svcTlsPropagateMacFlush=svcTlsPropagateMacFlush, svcTlsMrpFailedRegisterCount=svcTlsMrpFailedRegisterCount, custEgrSchedPlcyStatsFwdPkt=custEgrSchedPlcyStatsFwdPkt, tlsMFibSrcInetAddr=tlsMFibSrcInetAddr, tlsShgName=tlsShgName, svcTlsBgpADVsiExportPolicy2=svcTlsBgpADVsiExportPolicy2, custMssEgrQosSchedInfoEntry=custMssEgrQosSchedInfoEntry, svcTlsFdbTableFullAlarmRaised=svcTlsFdbTableFullAlarmRaised, custDescription=custDescription, TdmOptionsSigPkts=TdmOptionsSigPkts, tmnxServNotifications=tmnxServNotifications, iesIfShcvAction=iesIfShcvAction, tlsEgressMulticastGroupTable=tlsEgressMulticastGroupTable, newRootVcpState=newRootVcpState, svcTlsDHCPLseStRestoreProblem=svcTlsDHCPLseStRestoreProblem, svcDhcpLseStateShcvOperState=svcDhcpLseStateShcvOperState, tlsPipMstiDesignatedPort=tlsPipMstiDesignatedPort, svcMstiInstanceId=svcMstiInstanceId, tmnxSvcTlsBackbone6v0Group=tmnxSvcTlsBackbone6v0Group, tlsFdbInfoTable=tlsFdbInfoTable, svcTlsStpTopologyChanges=svcTlsStpTopologyChanges, tlsEgrMcGrpAdminQinqFixedTagVal=tlsEgrMcGrpAdminQinqFixedTagVal, custEgrQosSchedStatsForwardedPackets=custEgrQosSchedStatsForwardedPackets, svcDhcpLseStateLeaseSplitActive=svcDhcpLseStateLeaseSplitActive, tlsMFibTable=tlsMFibTable, L2RouteOrigin=L2RouteOrigin, svcTlsStpRootPort=svcTlsStpRootPort, svcDhcpLseStateModifyAncpString=svcDhcpLseStateModifyAncpString, svcTlsBackboneSrcMac=svcTlsBackboneSrcMac, svcTlsFdbTableFullAlarmCleared=svcTlsFdbTableFullAlarmCleared, tmnxSvcNotifyV6v0Group=tmnxSvcNotifyV6v0Group, iesIfRowStatus=iesIfRowStatus, macPinningViolatingRowDescr=macPinningViolatingRowDescr, tlsMFibFwdOrBlk=tlsMFibFwdOrBlk, svcDhcpLseStateRetailerIf=svcDhcpLseStateRetailerIf, svcTlsShcvSrcIp=svcTlsShcvSrcIp, hostConnectivityChAddr=hostConnectivityChAddr, tlsMstiIntRootCost=tlsMstiIntRootCost, svcDhcpLseStatePortId=svcDhcpLseStatePortId, tlsPipStpDesignatedBridge=tlsPipStpDesignatedBridge, svcTlsMacMoveAdminStatus=svcTlsMacMoveAdminStatus, svcEpipePbbBvplsSvcId=svcEpipePbbBvplsSvcId, custDeleted=custDeleted, svcDhcpLseStateSecondaryNbnsType=svcDhcpLseStateSecondaryNbnsType, tlsFdbEPMacOperVcId=tlsFdbEPMacOperVcId, SvcISID=SvcISID, svcDhcpLseStateRemainLseTime=svcDhcpLseStateRemainLseTime, custMssIngQosSLastMgmtChange=custMssIngQosSLastMgmtChange, svcIfDHCP6MsgStatsLstClrd=svcIfDHCP6MsgStatsLstClrd, tlsMFibGrpSrcStatsEntry=tlsMFibGrpSrcStatsEntry, custNextFreeId=custNextFreeId, tlsPipStpOperProtocol=tlsPipStpOperProtocol, svcDhcpLseStateModifySubIndent=svcDhcpLseStateModifySubIndent, tmnxCustObjs=tmnxCustObjs, custIngQosPortIdSchedStatsEntry=custIngQosPortIdSchedStatsEntry, tlsMstiInstanceId=tlsMstiInstanceId, svcWholesalerID=svcWholesalerID, tlsMFibGrpMacAddr=tlsMFibGrpMacAddr, svcTlsStpBridgeMaxHops=svcTlsStpBridgeMaxHops, tlsMstiLastMgmtChange=tlsMstiLastMgmtChange, tlsMFibStatsGrpInetAddr=tlsMFibStatsGrpInetAddr, ServObjName=ServObjName, svcTlsMrpFloodTime=svcTlsMrpFloodTime, svcTlsStpHoldCount=svcTlsStpHoldCount, tlsShgDescription=tlsShgDescription, svcDhcpLseStateIAID=svcDhcpLseStateIAID, svcDhcpRestoreLseStateProblem=svcDhcpRestoreLseStateProblem, svcTlsMacPinningViolation=svcTlsMacPinningViolation, tmnxNewMstiRegionalRootBridge=tmnxNewMstiRegionalRootBridge, tmnxSvcObjRow=tmnxSvcObjRow, svcTlsBgpADVsiExportPolicy3=svcTlsBgpADVsiExportPolicy3, tmnxSvcIfDHCP6V6v0Group=tmnxSvcIfDHCP6V6v0Group, iesGrpIfTable=iesGrpIfTable, tlsProtectedMacEntry=tlsProtectedMacEntry, tmnxTstpGroups=tmnxTstpGroups, TlsLimitMacMove=TlsLimitMacMove, svcPEDiscoveryPolicyName=svcPEDiscoveryPolicyName, svcMgmtVpls=svcMgmtVpls, svcTlsBgpADVsiPrefix=svcTlsBgpADVsiPrefix, svcTlsShcvAction=svcTlsShcvAction, svcDhcpManagedRouteStatus=svcDhcpManagedRouteStatus, tlsFdbLastStateChange=tlsFdbLastStateChange, tlsMFibGrpSrcStatsForwardedOctets=tlsMFibGrpSrcStatsForwardedOctets, iesIfTable=iesIfTable, tlsPipMstiPortRole=tlsPipMstiPortRole, iesIfAdminStatus=iesIfAdminStatus, svcDhcpManagedRouteInetAddr=svcDhcpManagedRouteInetAddr, svcTlsBgpADVsiExportPolicy5=svcTlsBgpADVsiExportPolicy5, custIngSchedPlcyPortStatsFwdPkt=custIngSchedPlcyPortStatsFwdPkt, tlsEgrMcGrpDot1qEtherType=tlsEgrMcGrpDot1qEtherType, VpnId=VpnId, svcTlsMacRelearnOnly=svcTlsMacRelearnOnly, custEgrQosPortSchedFwdOctets=custEgrQosPortSchedFwdOctets, tlsMFibStatsSrcInetAddr=tlsMFibStatsSrcInetAddr, svcDhcpLseStateSlaProfString=svcDhcpLseStateSlaProfString, svcTlsBackboneVplsStp=svcTlsBackboneVplsStp, svcTlsMrpAttrTblHighWatermark=svcTlsMrpAttrTblHighWatermark, svcTlsStpDesignatedRoot=svcTlsStpDesignatedRoot, tlsShgInfoEntry=tlsShgInfoEntry, svcRadiusDiscoveryShutdown=svcRadiusDiscoveryShutdown, StpProtocol=StpProtocol, svcDhcpLseStateOldCiAddr=svcDhcpLseStateOldCiAddr, svcDhcpManagedRouteInetAddrType=svcDhcpManagedRouteInetAddrType, svcDhcpLseStateFramedIpNetMaskTp=svcDhcpLseStateFramedIpNetMaskTp, tmnxCustCompliances=tmnxCustCompliances, svcEndPointEntry=svcEndPointEntry, custMultiSvcSiteEgrSchedPlcyPortStatsEntry=custMultiSvcSiteEgrSchedPlcyPortStatsEntry, custIngQosSchedStatsForwardedPackets=custIngQosSchedStatsForwardedPackets, pipActiveProtocolChange=pipActiveProtocolChange, svcDhcpLseStateDhcpServerAddrType=svcDhcpLseStateDhcpServerAddrType, tlsPipStpOutRstBpdus=tlsPipStpOutRstBpdus, svcDhcpLseStateServerLeaseEnd=svcDhcpLseStateServerLeaseEnd, svcDhcpLeaseStateActionTable=svcDhcpLeaseStateActionTable, svcTlsBgpADAdminStatus=svcTlsBgpADAdminStatus, iesIfEntry=iesIfEntry, tmnxSvcNotifyObjsV6v0Group=tmnxSvcNotifyObjsV6v0Group, svcTlsStpCistRegionalRoot=svcTlsStpCistRegionalRoot, svcTlsStpPrimaryBridge=svcTlsStpPrimaryBridge, tstpTrapsPrefix=tstpTrapsPrefix, svcPEDiscoveryPolicyRowStatus=svcPEDiscoveryPolicyRowStatus, svcDhcpLseStateOldChAddr=svcDhcpLseStateOldChAddr, custMultiSvcSiteIngSchedPlcyStatsTable=custMultiSvcSiteIngSchedPlcyStatsTable, svcTlsStpPriority=svcTlsStpPriority, svcOperStatus=svcOperStatus)
(t_filter_id,) = mibBuilder.importSymbols('ALCATEL-IND1-TIMETRA-FILTER-MIB', 'TFilterID') (tmnx_sr_objs, timetra_srmib_modules, tmnx_sr_notify_prefix, tmnx_sr_confs) = mibBuilder.importSymbols('ALCATEL-IND1-TIMETRA-GLOBAL-MIB', 'tmnxSRObjs', 'timetraSRMIBModules', 'tmnxSRNotifyPrefix', 'tmnxSRConfs') (t_scheduler_policy_name, t_virtual_scheduler_name) = mibBuilder.importSymbols('ALCATEL-IND1-TIMETRA-QOS-MIB', 'tSchedulerPolicyName', 'tVirtualSchedulerName') (tmnx_enabled_disabled, tmnx_cust_id, t_named_item, tcir_rate, tmnx_v_rtr_id_or_zero, tmnx_managed_route_status, tmnx_ancp_string_or_zero, service_admin_status, tmnx_port_id, tmnx_action_type, tmnx_serv_id, tpir_rate, t_policy_statement_name_or_empty, service_oper_status, sdp_bind_id, tmnx_vpn_route_distinguisher, tmnx_encap_val, t_port_scheduler_pir, t_named_item_or_empty, q_tag) = mibBuilder.importSymbols('ALCATEL-IND1-TIMETRA-TC-MIB', 'TmnxEnabledDisabled', 'TmnxCustId', 'TNamedItem', 'TCIRRate', 'TmnxVRtrIDOrZero', 'TmnxManagedRouteStatus', 'TmnxAncpStringOrZero', 'ServiceAdminStatus', 'TmnxPortID', 'TmnxActionType', 'TmnxServId', 'TPIRRate', 'TPolicyStatementNameOrEmpty', 'ServiceOperStatus', 'SdpBindId', 'TmnxVPNRouteDistinguisher', 'TmnxEncapVal', 'TPortSchedulerPIR', 'TNamedItemOrEmpty', 'QTag') (integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier') (named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues') (single_value_constraint, constraints_union, constraints_intersection, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint') (interface_index, interface_index_or_zero) = mibBuilder.importSymbols('IF-MIB', 'InterfaceIndex', 'InterfaceIndexOrZero') (inet_address_prefix_length, inet_address, inet_address_type) = mibBuilder.importSymbols('INET-ADDRESS-MIB', 'InetAddressPrefixLength', 'InetAddress', 'InetAddressType') (notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup') (module_identity, counter64, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, time_ticks, counter32, ip_address, bits, mib_identifier, notification_type, integer32, gauge32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Counter64', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'TimeTicks', 'Counter32', 'IpAddress', 'Bits', 'MibIdentifier', 'NotificationType', 'Integer32', 'Gauge32', 'Unsigned32') (display_string, truth_value, date_and_time, textual_convention, mac_address, row_status, time_stamp, row_pointer) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TruthValue', 'DateAndTime', 'TextualConvention', 'MacAddress', 'RowStatus', 'TimeStamp', 'RowPointer') timetra_services_mib_module = module_identity((1, 3, 6, 1, 4, 1, 6527, 1, 1, 3, 4)) timetraServicesMIBModule.setRevisions(('1908-01-01 00:00', '1907-01-01 00:00', '1906-02-28 00:00', '1905-08-31 00:00', '1905-01-24 00:00', '1904-01-15 00:00', '1903-08-15 00:00', '1903-01-20 00:00', '1900-08-14 00:00')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): if mibBuilder.loadTexts: timetraServicesMIBModule.setRevisionsDescriptions(('Rev 6.0 01 Jan 2008 00:00 6.0 release of the TIMETRA-SERV-MIB.', 'Rev 5.0 01 Jan 2007 00:00 5.0 release of the TIMETRA-SERV-MIB.', 'Rev 4.0 28 Feb 2006 00:00 4.0 release of the TIMETRA-SERV-MIB.', 'Rev 3.0 31 Aug 2005 00:00 3.0 release of the TIMETRA-SERV-MIB.', 'Rev 2.1 24 Jan 2005 00:00 2.1 release of the TIMETRA-SERV-MIB.', 'Rev 2.0 15 Jan 2004 00:00 2.0 release of the TIMETRA-SERV-MIB.', 'Rev 1.2 15 Aug 2003 00:00 1.2 release of the TIMETRA-SERV-MIB.', 'Rev 1.0 20 Jan 2003 00:00 1.0 Release of the TIMETRA-SERV-MIB.', 'Rev 0.1 14 Aug 2000 00:00 Initial version of the TIMETRA-SERV-MIB.')) if mibBuilder.loadTexts: timetraServicesMIBModule.setLastUpdated('0801010000Z') if mibBuilder.loadTexts: timetraServicesMIBModule.setOrganization('Alcatel') if mibBuilder.loadTexts: timetraServicesMIBModule.setContactInfo('Alcatel 7x50 Support Web: http://www.alcatel.com/comps/pages/carrier_support.jhtml') if mibBuilder.loadTexts: timetraServicesMIBModule.setDescription("This document is the SNMP MIB module to manage and provision the various services of the Alcatel 7x50 SR system. Copyright 2003-2008 Alcatel-Lucent. All rights reserved. Reproduction of this document is authorized on the condition that the foregoing copyright notice is included. This SNMP MIB module (Specification) embodies Alcatel's proprietary intellectual property. Alcatel retains all title and ownership in the Specification, including any revisions. Alcatel grants all interested parties a non-exclusive license to use and distribute an unmodified copy of this Specification in connection with management of Alcatel products, and without fee, provided this copyright notice and license appear on all copies. This Specification is supplied `as is', and Alcatel makes no warranty, either express or implied, as to the use, operation, condition, or performance of the Specification.") tmnx_serv_objs = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4)) tmnx_cust_objs = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1)) tmnx_svc_objs = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2)) tmnx_tstp_notify_objs = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5)) tmnx_svc_notify_objs = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6)) tmnx_serv_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4)) tmnx_cust_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1)) tmnx_svc_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2)) tmnx_tstp_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5)) tmnx_serv_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4)) cust_traps_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1)) cust_traps = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0)) svc_traps_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2)) svc_traps = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0)) tstp_traps_prefix = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5)) tstp_traps = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0)) class Servobjname(TextualConvention, OctetString): description = 'ASCII string used to name various service objects.' status = 'current' display_hint = '255a' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 32) class Servobjdesc(TextualConvention, OctetString): description = 'ASCII string used to describe various service objects.' status = 'current' display_hint = '255a' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 80) class Servobjlongdesc(TextualConvention, OctetString): description = 'Long ASCII string used to describe various service objects.' status = 'current' display_hint = '255a' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 160) class Servtype(TextualConvention, Integer32): description = 'This textual convention is used to specify the type of a given service.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10)) named_values = named_values(('unknown', 0), ('epipe', 1), ('p3pipe', 2), ('tls', 3), ('vprn', 4), ('ies', 5), ('mirror', 6), ('apipe', 7), ('fpipe', 8), ('ipipe', 9), ('cpipe', 10)) class Vpnid(TextualConvention, Unsigned32): description = 'A number used to identify a VPN. In general each service corresponds to a single VPN, but under some circumstances a VPN may be composed of multiple services.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 2147483647)) class Sdpid(TextualConvention, Unsigned32): description = 'A 16-bit number used to identify a Service Distribution Point. This ID must be unique only within the ESR where it is defined. The value 0 is used as the null ID.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 17407)) class Sdptemplateid(TextualConvention, Unsigned32): description = 'A number used to uniquely identify a template for the creation of a Service Distribution Point. The value 0 is used as the null ID.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 2147483647)) class Pwtemplateid(TextualConvention, Unsigned32): description = 'A number used to uniquely identify an pseudowire (PW) template for the creation of a Service Distribution Point. The value 0 is used as the null ID.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 2147483647)) class Sdpbindtlsbpdutranslation(TextualConvention, Integer32): description = "This textual convention is used to specify whether received L2 Protocol Tunnel pdu's are translated before being sent out on a port or sap." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6)) named_values = named_values(('auto', 1), ('disabled', 2), ('pvst', 3), ('stp', 4), ('cdp', 5), ('vtp', 6)) class Tlslimitmacmovelevel(TextualConvention, Integer32): description = 'This textual convention is used to specify the hierarchy in which spoke-SDPs are blocked when a MAC-move limit is exceeded. When a MAC is moving among multiple SAPs or spoke-SDPs, the SAP bind or spoke-SDP bind with the lower level is blocked first. (tertiary is the lowest)' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('primary', 1), ('secondary', 2), ('tertiary', 3)) class Tlslimitmacmove(TextualConvention, Integer32): description = "This textual convention is used to specify the behavior when the re-learn rate specified by svcTlsMacMoveMaxRate is exceeded. A value of 'blockable' specifies that the agent will monitor the MAC relearn rate on a SAP or SDP Bind and it will block it when the re-learn rate specified by svcTlsMacMoveMaxRate is exceeded. A value of 'nonBlockable' specifies that the SAP or SDP Bind will not be blocked, and another blockable SAP or SDP Bind will be blocked instead." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('blockable', 1), ('nonBlockable', 2)) class Sdpbindvctype(TextualConvention, Integer32): description = "This textual convention is used to specify the type of virtual circuit (VC) associated with the SDP binding. The value 'vpls' is no longer supported." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17)) named_values = named_values(('undef', 1), ('ether', 2), ('vlan', 4), ('mirror', 5), ('atmSdu', 6), ('atmCell', 7), ('atmVcc', 8), ('atmVpc', 9), ('frDlci', 10), ('ipipe', 11), ('satopE1', 12), ('satopT1', 13), ('satopE3', 14), ('satopT3', 15), ('cesopsn', 16), ('cesopsnCas', 17)) class Stpexceptioncondition(TextualConvention, Integer32): description = 'This textual convention is used to specify an STP exception condition encountered on an interface - none : no exception condition found. - oneWayCommuniation : The neighbor RSTP peer on this link is not able to detect our presence. - downstreamLoopDetected : A loop is detected on this link.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('none', 1), ('oneWayCommuniation', 2), ('downstreamLoopDetected', 3)) class Lspidlist(TextualConvention, OctetString): description = 'Each group of four octets in this string specify a 32-bit LSP ID, which corresponds to the vRtrMplsLspIndex of the given MPLS LSP. The LSP IDs are stored in network byte order; i.e. octet N corresponds to the most significant 8 bits of the LSP ID, and octet N+3 correspond to the least significant 8 bits. The list is terminated by the null LSP ID. The LSP IDs in this list are not required to be sorted in any specific order. The list is large enough to hold up to 16 LSP IDs, plus the null terminator.' status = 'current' subtype_spec = OctetString.subtypeSpec + value_size_constraint(0, 68) class Bridgeid(TextualConvention, OctetString): description = 'The Bridge-Identifier used by the Spanning Tree Protocol to uniquely identify a bridge. The first two octets represent the bridge priority (in big endian format) while the remaining six octets represent the main MAC address of the bridge.' status = 'current' subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 8) fixed_length = 8 class Tsapingqueueid(TextualConvention, Unsigned32): description = 'The value used to uniquely identify a SAP ingress queue. The actual valid values are those defined in the given SAP ingress QoS policy.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(1, 32) class Tsapegrqueueid(TextualConvention, Unsigned32): description = 'The value used to uniquely identify a SAP egress queue. The actual valid values are those defined in the given SAP egress QoS policy.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(1, 8) class Tstpportstate(TextualConvention, Integer32): description = 'The value used to specify the port state as defined by application of the Spanning Tree Protocol. This state controls what action a port takes on reception of a frame.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7)) named_values = named_values(('disabled', 1), ('blocking', 2), ('listening', 3), ('learning', 4), ('forwarding', 5), ('broken', 6), ('discarding', 7)) class Stpportrole(TextualConvention, Integer32): description = 'the stp portrole defined by the Rapid Spanning Tree Protocol.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5)) named_values = named_values(('master', 0), ('root', 1), ('designated', 2), ('alternate', 3), ('backup', 4), ('disabled', 5)) class Stpprotocol(TextualConvention, Integer32): description = 'indicates all possible version of the stp protocol.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3)) named_values = named_values(('notApplicable', 0), ('stp', 1), ('rstp', 2), ('mstp', 3)) class Mfiblocation(TextualConvention, Integer32): description = "MfibLocation represents the type of local 'interface': -'sap': sap interface -'sdp': mesh-sdp or spoke-sdp interface." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('sap', 1), ('sdp', 2)) class Mfibgrpsrcfwdorblk(TextualConvention, Integer32): description = 'MfibGrpSrcFwdOrBlk describes whether traffic for the related source-group is to be forwarded or blocked.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2)) named_values = named_values(('forward', 1), ('block', 2)) class Mvplsprunestate(TextualConvention, Integer32): description = 'Managed VPLS (mVPLS): state of a SAP or spoke-SDP in a user VPLS (uVPLS). - notApplicable : the SAP or spoke SDP of a uVPLS is not managed by a SAP or spoke SDP of a mVPLS. - notPruned: the SAP or spoke SDP of a uVPLS is managed by a mVPLS, but the link is not pruned. -pruned the SAP or spoke SDP of a uVPLS is managed by a mVPLS, but the link is pruned as a result of an STP decision taken in the STP instance running in the mVPLS.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('notApplicable', 1), ('notPruned', 2), ('pruned', 3)) class Tqosqueueattribute(TextualConvention, Bits): description = 'Indicates attributes of a QoS queue' status = 'current' named_values = named_values(('cbs', 0), ('cir', 1), ('cirAdaptRule', 2), ('mbs', 3), ('pir', 4), ('pirAdaptRule', 5), ('hiPrioOnly', 6), ('avgOverhead', 7)) class Tvirtschedattribute(TextualConvention, Bits): description = 'Indicates attributes of a virtual scheduler' status = 'current' named_values = named_values(('cir', 0), ('pir', 1), ('summedCir', 2)) class Mstiinstanceid(TextualConvention, Unsigned32): description = 'indicates all possible multiple spanning tree instances, not including the CIST.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(1, 4094) class Mstiinstanceidorzero(TextualConvention, Unsigned32): description = "indicates all possible multiple spanning tree instances, including the CIST (for which case the value '0' is reserved)." status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 4094) class Dhcplsestateinfoorigin(TextualConvention, Integer32): description = 'Indicates the originator of the provided information.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5)) named_values = named_values(('none', 0), ('dhcp', 1), ('radius', 2), ('retailerRadius', 3), ('retailerDhcp', 4), ('default', 5)) class Iaidtype(TextualConvention, Integer32): description = 'Indicates the type of the addresses that are associated with the Identity Association ID (IAID)' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3)) named_values = named_values(('undefined', 0), ('temporary', 1), ('non-temporary', 2), ('prefix', 3)) class Tdmoptionssigpkts(TextualConvention, Integer32): description = "Encodes support for the cpipe circuit emulation (CE) application signaling packets: - 'noSigPkts' : for a cpipe that does not use signalling packets. - 'dataPkts' : for a cpipe carrying TDM data packets and expecting CE application signalling packets in a separate cpipe. - 'sigPkts' : for a cpipe carrying CE application signalling packets with the data packets in a separate cpipe. - 'dataAndSigPkts' : for a cpipe carrying TDM data and CE application signalling on the same cpipe." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3)) named_values = named_values(('noSigPkts', 0), ('dataPkts', 1), ('sigPkts', 2), ('dataAndSigPkts', 3)) class Tdmoptionscastrunkframing(TextualConvention, Integer32): description = "Encodes the CEM SAPs CAS trunk framing type: - 'noCas' : for all CEM SAPs except 'nxDS0WithCas'. - 'e1Trunk' : for a 'nxDS0WithCas' SAP with E1 trunk. - 't1EsfTrunk' : for a 'nxDS0WithCas' SAP with T1 ESF trunk. - 't1SfTrunk' : for a 'nxDS0WithCas' SAP with T1 SF trunk." status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 1, 2, 3)) named_values = named_values(('noCas', 0), ('e1Trunk', 1), ('t1EsfTrunk', 2), ('t1SfTrunk', 3)) class Cemsapreportalarm(TextualConvention, Bits): description = 'The CemSapReportAlarm data type indicates the type of CEM SAP alarm: strayPkts - receiving stray packets. malformedPkts - detecting malformed packets. pktLoss - experiencing packet loss. bfrOverrun - experiencing jitter buffer overrun. bfrUnderrun - experiencing jitter buffer underrun. rmtPktLoss - remote packet loss indication. rmtFault - remote TDM fault indication. rmtRdi - remote RDI indication.' status = 'current' named_values = named_values(('notUsed', 0), ('strayPkts', 1), ('malformedPkts', 2), ('pktLoss', 3), ('bfrOverrun', 4), ('bfrUnderrun', 5), ('rmtPktLoss', 6), ('rmtFault', 7), ('rmtRdi', 8)) class Cemsapecid(TextualConvention, Unsigned32): description = 'The Emulated Circuit Identifier (ECID) is a 20 bit unsigned binary field containing an identifier for the circuit being emulated. ECIDs have local significance only and are associated with a specific MAC address. Therefore the SAP can have a different ECID for each direction.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 1048575) class Sdpbfhundredthsofpercent(TextualConvention, Integer32): description = 'The percentage of total SDP bandwidth reserved for SDP bindings with two decimal places accuracy.' status = 'current' subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 10000) class Sdpbindbandwidth(TextualConvention, Unsigned32): description = 'The required SDP binding bandwidth, in kbps.' status = 'current' subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 100000000) class L2Ptprotocols(TextualConvention, Bits): description = "The L2ptProtocols indicates which L2 protocols should have their tunnels terminated when 'L2ptTermination' is enabled. stp - spanning tree protocols stp/mstp/pvst/rstp cdp - cisco discovery protocol vtp - virtual trunk protocol dtp - dynamic trunking protocol pagp - port aggregation protocol udld - unidirectional link detection" status = 'current' named_values = named_values(('stp', 0), ('cdp', 1), ('vtp', 2), ('dtp', 3), ('pagp', 4), ('udld', 5)) class Svcisid(TextualConvention, Integer32): description = 'The SvcISID specifies a 24 bit (0..16777215) service instance identifier for the service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. The value of -1 is used to indicate the value of this object is un-specified.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(value_range_constraint(-1, -1), value_range_constraint(0, 16777215)) class L2Routeorigin(TextualConvention, Integer32): description = 'The L2RouteOrigin indicates the source from which an L2 route was learned.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('manual', 1), ('bgp-l2vpn', 2), ('radius', 3)) class Configstatus(TextualConvention, Integer32): description = 'The ConfigStatus indicates the status of the configuration for the purpose of notifications.' status = 'current' subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3)) named_values = named_values(('created', 1), ('modified', 2), ('deleted', 3)) cust_num_entries = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: custNumEntries.setStatus('current') if mibBuilder.loadTexts: custNumEntries.setDescription('The value of the object custNumEntries indicates the current number of customer records configured in this device.') cust_next_free_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 2), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: custNextFreeId.setStatus('current') if mibBuilder.loadTexts: custNextFreeId.setDescription('The value of the object custNextFreeId indicates the next available value for custId, the index for the custInfoTable.') cust_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3)) if mibBuilder.loadTexts: custInfoTable.setStatus('current') if mibBuilder.loadTexts: custInfoTable.setDescription('A table that contains customer information. There is an entry in this table corresponding to the default customer. This entry cannot be edited or deleted, and it is used as the default customer for newly created services.') cust_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId')) if mibBuilder.loadTexts: custInfoEntry.setStatus('current') if mibBuilder.loadTexts: custInfoEntry.setDescription('Information about a specific customer.') cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 1), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: custId.setStatus('current') if mibBuilder.loadTexts: custId.setDescription('Customer identifier. This ID must be unique within a service domain.') cust_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custRowStatus.setStatus('current') if mibBuilder.loadTexts: custRowStatus.setDescription('The value of the object custRowStatus specifies the status of this row.') cust_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 3), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custDescription.setStatus('current') if mibBuilder.loadTexts: custDescription.setDescription('The value of the object custDescription specifies optional, generic information about this customer in a displayable format.') cust_contact = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 4), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custContact.setStatus('current') if mibBuilder.loadTexts: custContact.setDescription('The value of the object custContact specifies the name of the primary contact person for this customer.') cust_phone = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 5), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custPhone.setStatus('current') if mibBuilder.loadTexts: custPhone.setDescription('The value of the object custPhone specifies the phone/pager number used to reach the primary contact person.') cust_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 3, 1, 6), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: custLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custLastMgmtChange.setDescription('The value of the object custLastMgmtChange indicates the value of the object sysUpTime at the time of the most recent management-initiated change to this customer.') cust_multi_service_site_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4)) if mibBuilder.loadTexts: custMultiServiceSiteTable.setStatus('current') if mibBuilder.loadTexts: custMultiServiceSiteTable.setDescription('') cust_multi_service_site_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName')) if mibBuilder.loadTexts: custMultiServiceSiteEntry.setStatus('current') if mibBuilder.loadTexts: custMultiServiceSiteEntry.setDescription("Information about a specific customer's multi-service site.") cust_mult_svc_site_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 1), t_named_item()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteName.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteName.setDescription('') cust_mult_svc_site_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteRowStatus.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteRowStatus.setDescription('The value of the object custMultSvcSiteRowStatus specifies the status of this row.') cust_mult_svc_site_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 3), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteDescription.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteDescription.setDescription("The value of the object custMultSvcSiteDescription specifies option, generic information about this customer's Multi-Service Site.") cust_mult_svc_site_scope = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('port', 1), ('card', 2))).clone('port')).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteScope.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteScope.setDescription("The value of the object custMultSvcSiteScope specifies the scope of the ingress and egress QoS scheduler policies assigned to this Multi-Service Site. When the value is 'port' all the SAPs that are members of this Multi-Service Site must be defined on the same port. Similarly for the case of'card'.") cust_mult_svc_site_assignment = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 5), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteAssignment.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteAssignment.setDescription('The value of the object custMultSvcSiteAssignment specifies the port ID, MDA, or card number, where the SAPs that are members of this Multi- Service Site are defined.') cust_mult_svc_site_ingress_scheduler_policy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 6), serv_obj_name()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteIngressSchedulerPolicy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIngressSchedulerPolicy.setDescription('The value of the object custMultSvcSiteIngressSchedulerPolicy specifies the ingress QoS scheduler policy assigned to this Multi-Service Site.') cust_mult_svc_site_egress_scheduler_policy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 7), serv_obj_name()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteEgressSchedulerPolicy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteEgressSchedulerPolicy.setDescription('The value of the object custMultSvcSiteEgressSchedulerPolicy specifies the egress QoS scheduler policy assigned to this Multi-Service Site.') cust_mult_svc_site_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 8), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteLastMgmtChange.setDescription('The value of the object custMultSvcSiteLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this multi-service site.') cust_mult_svc_site_tod_suite = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 9), t_named_item_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteTodSuite.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteTodSuite.setDescription('The value of the object custMultSvcSiteTodSuite specifies the Time of Day (ToD) suite to be applied on this multi-service site. An empty string indicates that no ToD suite is applied on this multi-service Site. A set request will only be allowed, if the indicated suite is defined is TIMETRA-SCHEDULER-MIB::tmnxTodSuiteTable. Using a suite the values of custMultSvcSiteIngressSchedulerPolicy and custMultSvcSiteEgressSchedulerPolicy can be time based manipulated.') cust_mult_svc_site_current_ingr_sched_plcy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 10), serv_obj_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteCurrentIngrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteCurrentIngrSchedPlcy.setDescription('The value of the object custMultSvcSiteCurrentIngrSchedPlcy indicates the Ingress QoS scheduler on this multi-service Site, or zero if none is currently active. The active policy may deviate from custMultSvcSiteIngressSchedulerPolicy in case it is overruled by a ToD-suite policy defined on this multi-service site.') cust_mult_svc_site_current_egr_sched_plcy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 11), serv_obj_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteCurrentEgrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteCurrentEgrSchedPlcy.setDescription('The value of the object custMultSvcSiteCurrentEgrSchedPlcy indicates the Egress QoS scheduler on this SAP, or zero if none is currently active. The active policy may deviate from the sapEgressQosSchedulerPolicy in case it is overruled by a ToD-suite policy defined on this multi-service site.') cust_mult_svc_site_egress_agg_rate_limit = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 12), t_port_scheduler_pir().clone(-1)).setUnits('kbps').setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteEgressAggRateLimit.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteEgressAggRateLimit.setDescription("The value of the object custMultSvcSiteEgressAggRateLimit specifies the maximum total rate of all egress queues for this multi-service site. The value '-1' means that there is no limit.") cust_mult_svc_site_intended_ingr_sched_plcy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 13), serv_obj_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteIntendedIngrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIntendedIngrSchedPlcy.setDescription('The value of the object custMultSvcSiteIntendedIngrSchedPlcy indicates indicates the Ingress QoS scheduler on this multi-service Site that should be applied. If it deviates from custMultSvcSiteCurrentIngrSchedPlcy, this means that there was a problem when trying to activate this filter. It can only deviate when using tod-suites for the SAP. When the tod-suites decides that a new filter must be applied, it will try to do this. If it fails, the current and intended field are not equal.') cust_mult_svc_site_intended_egr_sched_plcy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 14), serv_obj_name()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMultSvcSiteIntendedEgrSchedPlcy.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteIntendedEgrSchedPlcy.setDescription('The value of the object custMultSvcSiteIntendedEgrSchedPlcy indicates indicates the Egress QoS scheduler on this multi-service Site that should be applied. If it deviates from custMultSvcSiteCurrentEgrSchedPlcy, this means that there was a problem when trying to activate this filter. It can only deviate when using tod-suites for the SAP. When the tod-suites decides that a new filter must be applied, it will try to do this. If it fails, the current and intended field are not equal.') cust_mult_svc_site_frame_based_accnt = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 4, 1, 15), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMultSvcSiteFrameBasedAccnt.setStatus('current') if mibBuilder.loadTexts: custMultSvcSiteFrameBasedAccnt.setDescription("The value of custMultSvcSiteFrameBasedAccnt specifies whether to use frame-based accounting when evaluating custMultSvcSiteEgressAggRateLimit for the egress queues for this multi-service site. If the value is 'false', the default packet-based accounting method will be used.") cust_multi_svc_site_ing_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5)) if mibBuilder.loadTexts: custMultiSvcSiteIngStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngStatsTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site.') cust_multi_svc_site_ing_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosSchedName')) if mibBuilder.loadTexts: custMultiSvcSiteIngStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngStatsEntry.setDescription('Ingress statistics about a specific customer multi service site ingress scheduler.') cust_ing_qos_sched_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 1), t_named_item()) if mibBuilder.loadTexts: custIngQosSchedName.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedName.setDescription('The index of the ingress QoS scheduler of this customer multi service site.') cust_ing_qos_sched_stats_forwarded_packets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedPackets.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedPackets.setDescription('The value of the object custIngQosSchedStatsForwardedPackets indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') cust_ing_qos_sched_stats_forwarded_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 5, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: custIngQosSchedStatsForwardedOctets.setDescription('The value of the object custIngQosSchedStatsForwardedOctets indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') cust_multi_svc_site_egr_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6)) if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site.') cust_multi_svc_site_egr_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosSchedName')) if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrStatsEntry.setDescription('Egress statistics about a specific customer multi service site egress scheduler.') cust_egr_qos_sched_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 1), t_named_item()) if mibBuilder.loadTexts: custEgrQosSchedName.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedName.setDescription('The index of the egress QoS scheduler of this customer multi service site.') cust_egr_qos_sched_stats_forwarded_packets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedPackets.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedPackets.setDescription('The value of the object custEgrQosSchedStatsForwardedPackets indicates number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') cust_egr_qos_sched_stats_forwarded_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 6, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: custEgrQosSchedStatsForwardedOctets.setDescription('The value of the object custEgrQosSchedStatsForwardedOctets indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') cust_ing_qos_port_id_sched_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7)) if mibBuilder.loadTexts: custIngQosPortIdSchedStatsTable.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedStatsTable.setDescription('The custIngQosPortIdSchedStatsTable contains ingress QoS scheduler statistics for the customer multi service site.') cust_ing_qos_port_id_sched_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosPortIdSchedName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosAssignmentPortId')) if mibBuilder.loadTexts: custIngQosPortIdSchedStatsEntry.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedStatsEntry.setDescription('Each entry represents the ingress statistics about a specific customer multi service site ingress scheduler. Entries are created when a scheduler policy is applied to an MSS.') cust_ing_qos_port_id_sched_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 1), t_named_item()) if mibBuilder.loadTexts: custIngQosPortIdSchedName.setStatus('current') if mibBuilder.loadTexts: custIngQosPortIdSchedName.setDescription('The value of custIngQosPortIdSchedName is used as an index of the ingress QoS scheduler of this customer multi service site.') cust_ing_qos_assignment_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 2), tmnx_port_id()) if mibBuilder.loadTexts: custIngQosAssignmentPortId.setStatus('current') if mibBuilder.loadTexts: custIngQosAssignmentPortId.setDescription("The value of custIngQosAssignmentPortId is used as an index of the ingress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") cust_ing_qos_port_sched_fwd_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngQosPortSchedFwdPkts.setStatus('current') if mibBuilder.loadTexts: custIngQosPortSchedFwdPkts.setDescription('The value of custIngQosPortSchedFwdPkts indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') cust_ing_qos_port_sched_fwd_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 7, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngQosPortSchedFwdOctets.setStatus('current') if mibBuilder.loadTexts: custIngQosPortSchedFwdOctets.setDescription('The value of custIngQosPortSchedFwdOctets indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') cust_egr_qos_port_id_sched_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8)) if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsTable.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsTable.setDescription('The custEgrQosPortIdSchedStatsTable contains egress QoS scheduler statistics for the customer multi service site.') cust_egr_qos_port_id_sched_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosPortIdSchedName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosAssignmentPortId')) if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsEntry.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedStatsEntry.setDescription('Each row entry represents the egress statistics for a customer multi-service-site egress scheduler. Entries are created when a scheduler policy is applied to an MSS.') cust_egr_qos_port_id_sched_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 1), t_named_item()) if mibBuilder.loadTexts: custEgrQosPortIdSchedName.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortIdSchedName.setDescription('The value of custEgrQosPortIdSchedName is used as an index of the egress QoS scheduler of this customer multi service site.') cust_egr_qos_assignment_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 2), tmnx_port_id()) if mibBuilder.loadTexts: custEgrQosAssignmentPortId.setStatus('current') if mibBuilder.loadTexts: custEgrQosAssignmentPortId.setDescription("The value of custEgrQosAssignmentPortId is used as an index of the egress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") cust_egr_qos_port_sched_fwd_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrQosPortSchedFwdPkts.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortSchedFwdPkts.setDescription('The value of custEgrQosPortSchedFwdPkts indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') cust_egr_qos_port_sched_fwd_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 8, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrQosPortSchedFwdOctets.setStatus('current') if mibBuilder.loadTexts: custEgrQosPortSchedFwdOctets.setDescription('The value of custEgrQosPortSchedFwdOctets indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') cust_mss_ing_qos_sched_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9)) if mibBuilder.loadTexts: custMssIngQosSchedInfoTable.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSchedInfoTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site.') cust_mss_ing_qos_sched_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSName')) if mibBuilder.loadTexts: custMssIngQosSchedInfoEntry.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSchedInfoEntry.setDescription('Ingress statistics about a specific customer multi service site ingress scheduler.') cust_mss_ing_qos_s_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 1), t_named_item()) if mibBuilder.loadTexts: custMssIngQosSName.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSName.setDescription('The value of custMssIngQosSName indicates the name of the virtual scheduler whose parameters are to be overridden.') cust_mss_ing_qos_s_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssIngQosSRowStatus.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSRowStatus.setDescription('The value of custMssIngQosSRowStatus controls the creation and deletion of rows in this table.') cust_mss_ing_qos_s_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMssIngQosSLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSLastMgmtChange.setDescription('The value of custMssIngQosSLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') cust_mss_ing_qos_s_override_flags = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 4), t_virt_sched_attribute()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssIngQosSOverrideFlags.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSOverrideFlags.setDescription("The value of custMssIngQosSOverrideFlags specifies the set of attributes whose values have been overridden via management on this virtual scheduler. Clearing a given flag will return the corresponding overridden attribute to the value defined on the SAP's ingress scheduler policy.") cust_mss_ing_qos_spir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 5), tpir_rate().clone(-1)).setUnits('kilo bits per second').setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssIngQosSPIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSPIR.setDescription('The value of custMssIngQosSPIR specifies the desired PIR value for this virtual scheduler.') cust_mss_ing_qos_scir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 6), tcir_rate().clone(-1)).setUnits('kilo bits per second').setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssIngQosSCIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSCIR.setDescription('The value of custMssIngQosSCIR specifies the desired CIR value for this virtual scheduler.') cust_mss_ing_qos_s_summed_cir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 9, 1, 7), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssIngQosSSummedCIR.setStatus('current') if mibBuilder.loadTexts: custMssIngQosSSummedCIR.setDescription("The value of custMssIngQosSSummedCIR specifies if the CIR should be used as the summed CIR values of the children schedulers or queues. If set to 'true', the applicable scheduler CIR (custMssIngQosSCIR) loses its meaning.") cust_mss_egr_qos_sched_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10)) if mibBuilder.loadTexts: custMssEgrQosSchedInfoTable.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSchedInfoTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site.') cust_mss_egr_qos_sched_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSName')) if mibBuilder.loadTexts: custMssEgrQosSchedInfoEntry.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSchedInfoEntry.setDescription('Egrress statistics about a specific customer multi service site egress scheduler.') cust_mss_egr_qos_s_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 1), t_named_item()) if mibBuilder.loadTexts: custMssEgrQosSName.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSName.setDescription('The value of custMssEgrQosSName indicates the name of the virtual scheduler whose parameters are to be overridden.') cust_mss_egr_qos_s_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssEgrQosSRowStatus.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSRowStatus.setDescription('The value of custMssEgrQosSRowStatus controls the creation and deletion of rows in this table.') cust_mss_egr_qos_s_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: custMssEgrQosSLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSLastMgmtChange.setDescription('The value of custMssEgrQosSLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') cust_mss_egr_qos_s_override_flags = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 4), t_virt_sched_attribute()).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssEgrQosSOverrideFlags.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSOverrideFlags.setDescription("The value of custMssEgrQosSOverrideFlags specifies the set of attributes whose values have been overridden via management on this virtual scheduler. Clearing a given flag will return the corresponding overridden attribute to the value defined on the SAP's ingress scheduler policy.") cust_mss_egr_qos_spir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 5), tpir_rate().clone(-1)).setUnits('kilo bits per second').setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssEgrQosSPIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSPIR.setDescription('The value of custMssEgrQosSPIR specifies the desired PIR value for this virtual scheduler.') cust_mss_egr_qos_scir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 6), tcir_rate().clone(-1)).setUnits('kilo bits per second').setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssEgrQosSCIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSCIR.setDescription('The value of custMssEgrQosSCIR specifies the desired CIR value for this virtual scheduler.') cust_mss_egr_qos_s_summed_cir = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 10, 1, 7), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: custMssEgrQosSSummedCIR.setStatus('current') if mibBuilder.loadTexts: custMssEgrQosSSummedCIR.setDescription("The value of custMssEgrQosSSummedCIR specifies if the CIR should be used as the summed CIR values of the children schedulers or queues. If set to 'true', the applicable scheduler CIR (custMssEgrQosSCIR) loses its meaning.") cust_multi_svc_site_ing_sched_plcy_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11)) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsTable.setDescription('A table that contains ingress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') cust_multi_svc_site_ing_sched_plcy_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tSchedulerPolicyName'), (1, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tVirtualSchedulerName')) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyStatsEntry.setDescription('Ingress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') cust_ing_sched_plcy_stats_fwd_pkt = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1, 1), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdPkt.setDescription('The value of the object custIngSchedPlcyStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') cust_ing_sched_plcy_stats_fwd_oct = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 11, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyStatsFwdOct.setDescription('The value of the object custIngSchedPlcyStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') cust_multi_svc_site_egr_sched_plcy_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12)) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsTable.setDescription('A table that contains egress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') cust_multi_svc_site_egr_sched_plcy_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tSchedulerPolicyName'), (1, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tVirtualSchedulerName')) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyStatsEntry.setDescription('Egress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') cust_egr_sched_plcy_stats_fwd_pkt = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1, 1), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdPkt.setDescription('The value of the object custEgrSchedPlcyStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') cust_egr_sched_plcy_stats_fwd_oct = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 12, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyStatsFwdOct.setDescription('The value of the object custEgrSchedPlcyStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') cust_multi_svc_site_ing_sched_plcy_port_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13)) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsTable.setDescription('The custMultiSvcSiteIngSchedPlcyPortStatsTable contains ingress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') cust_multi_svc_site_ing_sched_plcy_port_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tSchedulerPolicyName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tVirtualSchedulerName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngSchedPlcyPortStatsPort')) if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteIngSchedPlcyPortStatsEntry.setDescription('Each entry represents the ingress statistics about a specific customer multi service site ingress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') cust_ing_sched_plcy_port_stats_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 1), tmnx_port_id()) if mibBuilder.loadTexts: custIngSchedPlcyPortStatsPort.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsPort.setDescription("The value of custIngSchedPlcyPortStatsPort is used as an index of the ingress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") cust_ing_sched_plcy_port_stats_fwd_pkt = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdPkt.setDescription('The value of custIngSchedPlcyPortStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site ingress scheduler policy.') cust_ing_sched_plcy_port_stats_fwd_oct = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 13, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custIngSchedPlcyPortStatsFwdOct.setDescription('The value of custIngSchedPlcyPortStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site ingress scheduler policy.') cust_multi_svc_site_egr_sched_plcy_port_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14)) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsTable.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsTable.setDescription('The custMultiSvcSiteEgrSchedPlcyPortStatsTable contains egress QoS scheduler statistics for the customer multi service site, organized by scheduler policy.') cust_multi_svc_site_egr_sched_plcy_port_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tSchedulerPolicyName'), (0, 'ALCATEL-IND1-TIMETRA-QOS-MIB', 'tVirtualSchedulerName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrSchedPlcyPortStatsPort')) if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsEntry.setStatus('current') if mibBuilder.loadTexts: custMultiSvcSiteEgrSchedPlcyPortStatsEntry.setDescription('Each entry represents the egress statistics about a specific customer multi service site egress scheduler. Entries are created when a scheduler policy of a MSS is replaced with another one due to Time-Of-Day policies.') cust_egr_sched_plcy_port_stats_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 1), tmnx_port_id()) if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsPort.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsPort.setDescription("The value of custEgrSchedPlcyPortStatsPort is used as an index of the egress QoS scheduler of this customer multi service site. When an MSS assignment is an aps/ccag/lag in 'link' mode, each member-port of the aps/ccag/lag has its own scheduler. This object refers to the TmnxPortID of these member-ports.") cust_egr_sched_plcy_port_stats_fwd_pkt = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 2), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdPkt.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdPkt.setDescription('The value of custEgrSchedPlcyPortStatsFwdPkt indicates the number of forwarded packets, as determined by the customer multi service site egress scheduler policy.') cust_egr_sched_plcy_port_stats_fwd_oct = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 1, 14, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdOct.setStatus('current') if mibBuilder.loadTexts: custEgrSchedPlcyPortStatsFwdOct.setDescription('The value of custEgrSchedPlcyPortStatsFwdOct indicates the number of forwarded octets, as determined by the customer multi service site egress scheduler policy.') cust_created = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 1)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId')) if mibBuilder.loadTexts: custCreated.setStatus('obsolete') if mibBuilder.loadTexts: custCreated.setDescription('The trap custCreated is sent when a new row is created in the custInfoTable.') cust_deleted = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 2)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId')) if mibBuilder.loadTexts: custDeleted.setStatus('obsolete') if mibBuilder.loadTexts: custDeleted.setDescription('The trap custDeleted is sent when an existing row is deleted from the custInfoTable.') cust_mult_svc_site_created = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 3)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName')) if mibBuilder.loadTexts: custMultSvcSiteCreated.setStatus('obsolete') if mibBuilder.loadTexts: custMultSvcSiteCreated.setDescription('The trap custMultSvcSiteCreated is sent when a new row is created in the custMultiServiceSiteTable.') cust_mult_svc_site_deleted = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 1, 0, 4)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName')) if mibBuilder.loadTexts: custMultSvcSiteDeleted.setStatus('obsolete') if mibBuilder.loadTexts: custMultSvcSiteDeleted.setDescription('The trap custMultSvcSiteDeleted is sent when an existing row is deleted from the custMultiServiceSiteTable.') svc_num_entries = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 1), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcNumEntries.setStatus('current') if mibBuilder.loadTexts: svcNumEntries.setDescription('The current number of services configured on this node.') svc_base_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2)) if mibBuilder.loadTexts: svcBaseInfoTable.setStatus('current') if mibBuilder.loadTexts: svcBaseInfoTable.setDescription('A table that contains basic service information.') svc_base_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: svcBaseInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcBaseInfoEntry.setDescription('Basic information about a specific service.') svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 1), tmnx_serv_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcId.setStatus('current') if mibBuilder.loadTexts: svcId.setDescription('The value of the object svcId specifies the Service identifier. This value should be unique within the service domain.') svc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRowStatus.setStatus('current') if mibBuilder.loadTexts: svcRowStatus.setDescription("This value of the object svcRowStatus specifies the status of this row. To delete an entry from this table, the corresponding service must be administratively down, have no SAP's defined on it, and have no SDP bindings. For svcType 'vprn', the service can be associated with a routing instance by specifying svcVRouterId during the creation of the service. The value of the object svcVplsType specifies the VPLS service type. The value of this object must be specified when the row is created and cannot be changed while the svcRowStatus is 'active'.") svc_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 3), serv_type()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcType.setStatus('current') if mibBuilder.loadTexts: svcType.setDescription("The value of the object svcType specifies the service type: e.g. epipe, tls, etc. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svc_cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 4), tmnx_cust_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcCustId.setStatus('current') if mibBuilder.loadTexts: svcCustId.setDescription("The value of the object svcCustId specifies the ID of the customer who owns this service. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svc_ip_routing = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 5), tmnx_enabled_disabled()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcIpRouting.setStatus('current') if mibBuilder.loadTexts: svcIpRouting.setDescription("The value of the object svcIpRouting specifies, for a 'tls' service, whether IP routing is enabled. For 'epipe', 'p3pipe', 'apipe', 'fpipe', 'ipipe' and 'cpipe' services, this object cannot be set and has the value 'disabled', whereas for 'vprn' and 'ies' services the value is 'enabled' and cannot be set either. For 'tls' services the value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") svc_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 6), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcDescription.setStatus('current') if mibBuilder.loadTexts: svcDescription.setDescription('The value of the object svcDescription specifiers an optional, generic information about this service.') svc_mtu = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 9194))).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcMtu.setStatus('current') if mibBuilder.loadTexts: svcMtu.setDescription('The value of the object svcMtu specifies the largest frame size (in octets) that this service can handle. The default value of this object depends on the service type: 1514 octets for epipe, p3pipe and tls, 1508 for apipe and fpipe, and 1500 octets for vprn, ipipe and ies, 1514 octets for cpipe.') svc_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 8), service_admin_status().clone('down')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcAdminStatus.setDescription('The value of the object svcAdminStatus specifies the desired state of this service.') svc_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 9), service_oper_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcOperStatus.setStatus('current') if mibBuilder.loadTexts: svcOperStatus.setDescription("The value of the object svcOperStatus indicates the operating state of this service. The requirements for a service to be operationally up depend on the service type: epipe, p3pipe, apipe, fpipe, ipipe and cpipe services are 'up' when the service is administratively up and either both SAP's or a SAP and a spoke SDP Bind are operationally up. tls services are 'up' when the service is administratively up and either at least two SAP's or spoke SDP Bind's, or one SAP or spoke SDP Bind and at least one mesh SDP Bind are operationally up. vprn and ies services are 'up' when the service is administratively up and at least one interface is operationally up.") svc_num_saps = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 10), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcNumSaps.setStatus('current') if mibBuilder.loadTexts: svcNumSaps.setDescription('The value of the object svcNumSaps indicates the number of SAPs defined on this service.') svc_num_sdps = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 11), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcNumSdps.setStatus('current') if mibBuilder.loadTexts: svcNumSdps.setDescription('The value of the object svcNumSdps indicates the number of SDPs bound to this service.') svc_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 12), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: svcLastMgmtChange.setDescription('The value of of the object svcLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this service.') svc_def_mesh_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 13), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcDefMeshVcId.setStatus('current') if mibBuilder.loadTexts: svcDefMeshVcId.setDescription('The value of the object svcDefMeshVcId specifies, only in services that accept mesh SDP bindings, the VC ID portion of the sdpBindId index of each mesh SDP binding defined in the service. The default value of this object is equal to the service ID.') svc_vpn_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 14), vpn_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcVpnId.setStatus('current') if mibBuilder.loadTexts: svcVpnId.setDescription('The value of the object svcVpnId specifies the VPN ID assigned to this service. The value of this object can be specified only when the row is created. If the value is not specified, it defaults to the service ID.') svc_v_router_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 15), tmnx_v_rtr_id_or_zero()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcVRouterId.setStatus('current') if mibBuilder.loadTexts: svcVRouterId.setDescription('The value of the object svcVRouterId specifies, for a IES or VPRN service the associated virtual router instance where its interfaces are defined. This object has a special significance for the VPRN service as it can be used to associate the service to a specific virtual router instance. If no routing instance is specified or a value of zero (0) is specified, the agent will assign the vRtrID index value that would have been returned by the vRtrNextVRtrID object in the ALCATEL-IND1-TIMETRA-VRTR-MIB. The agent supports an SNMP SET operation to the svcVRouterId object only during row creation.') svc_auto_bind = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('gre', 2), ('ldp', 3))).clone('none')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcAutoBind.setStatus('current') if mibBuilder.loadTexts: svcAutoBind.setDescription('The value of the object svcAutoBind specifies, for a VPRN service, the type of lookup to be used by the routing instance if no SDP to the destination exists.') svc_last_status_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 17), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcLastStatusChange.setStatus('current') if mibBuilder.loadTexts: svcLastStatusChange.setDescription('The value of the object svcLastStatusChange indicates the value of sysUpTime at the time of the most recent operating status change to his service.') svc_vll_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('undef', 1), ('atmSdu', 6), ('atmCell', 7), ('atmVcc', 8), ('atmVpc', 9), ('frDlci', 10), ('satopE1', 12), ('satopT1', 13), ('satopE3', 14), ('satopT3', 15), ('cesopsn', 16), ('cesopsnCas', 17)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcVllType.setStatus('current') if mibBuilder.loadTexts: svcVllType.setDescription("The value of the object svcVllType specifies, for a apipe, fpipe or cpipe service, the type of pseudo-wire to be signalled for the service. The default for this object depends on the service type: 'atmSdu' for apipes, 'frDlci' for fpipes, satopE1 for cpipes, and 'undef' for all other service types.") svc_mgmt_vpls = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 19), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcMgmtVpls.setStatus('current') if mibBuilder.loadTexts: svcMgmtVpls.setDescription("The value of the object svcMgmtVpls specifies, only if svcType = 'tls' whether or not the service is a management vpls. If set to false the service is acting as a regular VPLS service. If set to true, the service is acting as a management VPLS service. This implies that RSTP will always be enabled, and that the conclusions of this RSTP can be associated to different (regular) VPLSs. The value of this object cannot be changed after creation.") svc_radius_discovery = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 20), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRadiusDiscovery.setStatus('current') if mibBuilder.loadTexts: svcRadiusDiscovery.setDescription('The value of the object svcRadiusDiscovery specifies whether RADIUS auto-discovery is enabled on this service.') svc_radius_user_name_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('vpn-id', 1), ('router-distinguisher', 2))).clone('none')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRadiusUserNameType.setStatus('current') if mibBuilder.loadTexts: svcRadiusUserNameType.setDescription("The value of the object svcRadiusUserNameType specifies whether RADIUS user name is vpn-id or router-distinguisher. By default, the value of this object is 'none'. svcRadiusUserNameType and svcRadiusUserName, which indicates the RADIUS username, must be set together in the same SNMP request PDU if svcRadiusUserNameType is vpn-id or router-distinguisher or else the set request will fail with an inconsistentValue error.") svc_radius_user_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 22), display_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRadiusUserName.setStatus('current') if mibBuilder.loadTexts: svcRadiusUserName.setDescription('The value of the object svcRadiusUserName specifies the RADIUS user name. svcRadiusUserNameType specifies the type of the username and has to be set along with svcRadiusUserName when svcRadiusUserName can either be a vpn-id or a router-distinguisher.') svc_vc_switching = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 23), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcVcSwitching.setStatus('current') if mibBuilder.loadTexts: svcVcSwitching.setDescription('The value of the object svcVcSwitching specifies if the PW switching signalling is used for the Spokes configured under the service. This object can only be specified when the row is created.') svc_radius_pe_disc_policy = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 24), t_named_item_or_empty()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRadiusPEDiscPolicy.setStatus('current') if mibBuilder.loadTexts: svcRadiusPEDiscPolicy.setDescription('The value of the object svcRadiusPEDiscPolicy specifies the RADIUS PE Discovery Policy name. ') svc_radius_discovery_shutdown = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 25), service_admin_status().clone('down')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcRadiusDiscoveryShutdown.setStatus('current') if mibBuilder.loadTexts: svcRadiusDiscoveryShutdown.setDescription("The value of svcRadiusDiscoveryShutdown specifies the desired administrative state for the RADIUS auto-discovery server. When the server is 'down' the operational state of the server is disabled. By default, state of the RADIUS auto-discovery server is 'down'.") svc_vpls_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 2, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('bVpls', 2), ('iVpls', 3))).clone('none')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcVplsType.setStatus('current') if mibBuilder.loadTexts: svcVplsType.setDescription("Backbone VPLS ('bVpls') refers to the B-Component instance of the Provider Backbone Bridging (PBB/IEEE 802.1ah) feature. It represents the Multi-point tunneling component that multiplexes multiple Customer VPNs (ISIDs) together. It is similar to a regular VPLS instance that operates on the Backbone MAC addresses. ISID VPLS ('iVpls') or I-VPLS refers to the I-Component instance of the Provider Backbone Bridging (PBB/IEEE 802.1ah) feature. It identifies the specific VPN entity associated to a customer Multipoint (ELAN) service. It is similar to a regular VPLS instance that operates on the Customer MAC addresses. The value of the object svcVplsType specifies the VPLS service type. The value of this object must be specified when the row is created and cannot be changed while the svcRowStatus is 'active'.") svc_tls_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3)) if mibBuilder.loadTexts: svcTlsInfoTable.setStatus('current') if mibBuilder.loadTexts: svcTlsInfoTable.setDescription('A table that contains TLS service information.') svc_tls_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: svcTlsInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsInfoEntry.setDescription('TLS specific information about a service.') svc_tls_mac_learning = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 1), tmnx_enabled_disabled().clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacLearning.setStatus('current') if mibBuilder.loadTexts: svcTlsMacLearning.setDescription('The value of the object svcTlsMacLearning specifies whether the MAC learning process is enabled in this TLS.') svc_tls_discard_unknown_dest = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 2), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsDiscardUnknownDest.setStatus('current') if mibBuilder.loadTexts: svcTlsDiscardUnknownDest.setDescription('The value of the object svcTlsDiscardUnknownDest specifies whether frames received with an unknown destination MAC are discarded in this TLS.') svc_tls_fdb_table_size = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 196607)).clone(250)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsFdbTableSize.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableSize.setDescription("The value of the object svcTlsFdbTableSize specifies the maximum number of learned and static entries allowed in the FDB of this service. When the value of ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the maximum value of svcTlsFdbTableSize is '131071'.") svc_tls_fdb_num_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumEntries.setDescription('The value of the object svcTlsFdbNumEntries indicates the current number of entries in the FDB of this service.') svc_tls_fdb_num_static_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 5), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumStaticEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumStaticEntries.setDescription('The value of the object svcTlsFdbNumStaticEntries indicates the current number of static entries in the FDB of this service.') svc_tls_fdb_local_age_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(60, 86400)).clone(300)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsFdbLocalAgeTime.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbLocalAgeTime.setDescription('The value of the object svcTlsFdbLocalAgeTime specifies the number of seconds used to age out TLS FDB entries learned on local SAPs.') svc_tls_fdb_remote_age_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(60, 86400)).clone(900)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsFdbRemoteAgeTime.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbRemoteAgeTime.setDescription('The value of the object svcTlsFdbRemoteAgeTime specifies the number of seconds used to age out TLS FDB entries learned on an SDP. These entries correspond to MAC addresses learned on remote SAPs.') svc_tls_stp_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 8), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpAdminStatus.setDescription('The value of the object svcTlsStpAdminStatus specifies the administrative state of the Spanning Tree Protocol instance associated with this service.') svc_tls_stp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(32768)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpPriority.setStatus('current') if mibBuilder.loadTexts: svcTlsStpPriority.setDescription("The value of the object svcTlsStpPriority specifies the priority of the Spanning Tree Protocol instance associated with this service. It is used as the highest 4 bits of the Bridge ID included in the Configuration BPDU's generated by this bridge. The svcTlsStpPriority can only take-on values which multiples of 4096 (4k). If a value is specified which is not a multiple of 4K, then this value will be replaced by the closest multiple of 4K which is lower then the value entered.") svc_tls_stp_bridge_address = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 10), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpBridgeAddress.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeAddress.setDescription("The value of the object svcTlsStpBridgeAddress indicates the MAC address used to identify this bridge in the network. It is used as the last six octets of the Bridge ID included in the Configuration BPDU's generated by this bridge. The most significant 38 bits of the bridge address are taken from the base MAC address of the device, while the least significant 10 bits are based on the corresponding TLS instance ID.") svc_tls_stp_time_since_topology_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 11), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpTimeSinceTopologyChange.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTimeSinceTopologyChange.setDescription('The value of the object svcTlsStpTimeSinceTopologyChange indicates the time (in hundredths of a second) since the last time a topology change was detected by the Spanning Tree Protocol instance associated with this service.') svc_tls_stp_topology_changes = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 12), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpTopologyChanges.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTopologyChanges.setDescription('The value of the object svcTlsStpTopologyChanges indicates the total number of topology changes detected by the Spanning Tree Protocol instance associated with this service since the management entity was last reset or initialized.') svc_tls_stp_designated_root = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 13), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpDesignatedRoot.setStatus('current') if mibBuilder.loadTexts: svcTlsStpDesignatedRoot.setDescription('The value of the object svcTlsStpDesignatedRoot indicates the bridge identifier of the root of the spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the Root Identifier parameter in all Configuration BPDUs originated by this node.') svc_tls_stp_root_cost = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 14), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpRootCost.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRootCost.setDescription('The value of the object svcTlsStpRootCost indicates the cost of the path to the root bridge as seen from this bridge.') svc_tls_stp_root_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 15), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpRootPort.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRootPort.setDescription('The value of the object svcTlsStpRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the root bridge.') svc_tls_stp_max_age = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 16), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpMaxAge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpMaxAge.setDescription('The value of the object svcTlsStpMaxAge indicates the maximum age of Spanning Tree Protocol information learned from the network on any port before it is discarded. This is the actual value that this bridge is currently using.') svc_tls_stp_hello_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 17), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpHelloTime.setStatus('current') if mibBuilder.loadTexts: svcTlsStpHelloTime.setDescription('The value of the object svcTlsStpHelloTime indicates the amount of time between the transmission of Configuration BPDUs. This is the actual value that this bridge is currently using.') svc_tls_stp_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 18), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpHoldTime.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsStpHoldTime.setDescription('The value of the object svcTlsStpHoldTime indicates the interval length during which no more than two Configuration BPDUs shall be transmitted by this bridge. This object is no longer used. It is replaced by the object svcTlsStpHoldCount. This object was made obsolete in the 3.0 release.') svc_tls_stp_forward_delay = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 19), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpForwardDelay.setStatus('current') if mibBuilder.loadTexts: svcTlsStpForwardDelay.setDescription('The value of the object svcTlsStpForwardDelay indicates how fast a port changes its state when moving towards the Forwarding state. The value determines how long the port stays in each of the Listening and Learning states, which precede the Forwarding state. This value is also used to age all dynamic entries in the Forwarding Database when a topology change has been detected and is underway. This is the actual value that this bridge is currently using.') svc_tls_stp_bridge_max_age = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(6, 40))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpBridgeMaxAge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeMaxAge.setDescription("The value of the object svcTlsStpBridgeMaxAge specifies the value that all bridges should use for 'MaxAge' when this bridge is acting as the root bridge.") svc_tls_stp_bridge_hello_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 10))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpBridgeHelloTime.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeHelloTime.setDescription("The value of the object svcTlsStpBridgeHelloTime specifies the value that all bridges should use for 'HelloTime' when this bridge is acting as the root bridge.") svc_tls_stp_bridge_forward_delay = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(4, 30))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpBridgeForwardDelay.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeForwardDelay.setDescription("The value of the object svcTlsStpBridgeForwardDelay specifies the value that all bridges should use for 'ForwardDelay' when this bridge is acting as the root bridge.") svc_tls_stp_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpOperStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpOperStatus.setDescription('The value of the object svcTlsStpOperStatus indicates the operating status of the Spanning Tree Protocol instance associated with this service.') svc_tls_stp_virtual_root_bridge_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpVirtualRootBridgeStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVirtualRootBridgeStatus.setDescription("The value of the object svcTlsStpVirtualRootBridgeStatus indicates the operating status of the Virtual Root Bridge of the Spanning Tree Protocol instance associated with this service. The status of the Virtual Root Bridge is 'up' when there is connectivity to the core: i.e. one or more SDP's in this service are operationally up.") svc_tls_mac_ageing = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 32), tmnx_enabled_disabled().clone('enabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacAgeing.setStatus('current') if mibBuilder.loadTexts: svcTlsMacAgeing.setDescription('The value of the object svcTlsMacAgeing specifies whether the MAC aging process is enabled in this TLS.') svc_tls_stp_topology_change_active = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 33), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpTopologyChangeActive.setStatus('current') if mibBuilder.loadTexts: svcTlsStpTopologyChangeActive.setDescription("The value of the object svcTlsStpTopologyChangeActive indicates, when set to 'true', that a topology change is currently in progress.") svc_tls_fdb_table_full_high_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(95)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsFdbTableFullHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullHighWatermark.setDescription('The value of the object svcTlsFdbTableFullHighWatermark specifies the utilization of the FDB table of this TLS service at which a table full alarm will be raised by the agent.') svc_tls_fdb_table_full_low_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsFdbTableFullLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullLowWatermark.setDescription('The value of the object svcTlsFdbTableFullLowWatermark specifies the utilization of the FDB table of this TLS service at which a table full alarm will be raised by the agent.') svc_tls_vpn_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 36), vpn_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsVpnId.setStatus('current') if mibBuilder.loadTexts: svcTlsVpnId.setDescription('The value of the object svcTlsVpnId indicates the VPN ID of the associated TLS service.') svc_tls_cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 37), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsCustId.setStatus('current') if mibBuilder.loadTexts: svcTlsCustId.setDescription('The vakue of the object svcTlsCustId indicates the Customer ID of the associated TLS service.') svc_tls_stp_version = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6))).clone(namedValues=named_values(('rstp', 2), ('compDot1w', 3), ('dot1w', 4), ('mstp', 5), ('pmstp', 6))).clone('rstp')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpVersion.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVersion.setDescription("The value of the object svcTlsStpVersion specifies the version of Spanning Tree Protocol the bridge is currently running. The value 'rstp' corresponds to the Rapid Spanning Tree Protocol specified in IEEE 802.1D/D4-2003. The value 'compDot1w' corresponds to the mode where the Rapid Spanning Tree is backward compatible with IEEE 802.1w. The value 'dot1w' corresponds to the Rapid Spanning Tree Protocol fully conformant to IEEE 802.1w. The value 'mstp' corresponds to the Multiple Spanning Tree Protocol specified in IEEE 802.1Q-REV/D3.0-04/2005. The value 'pmstp' corresponds to Provider MSTP protocol compliant with IEEE-802.1ad-2005. New values may be defined as future versions of the protocol become available.") svc_tls_stp_hold_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(6)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpHoldCount.setReference('IEEE 802.1w clause 17.16.6') if mibBuilder.loadTexts: svcTlsStpHoldCount.setStatus('current') if mibBuilder.loadTexts: svcTlsStpHoldCount.setDescription("The value of the object svcTlsStpHoldCount specifies the maximum number of BPDUs that are transmitted in any 'HelloTime' interval. The value used by the bridge to limit the maximum transmission rate of BPDUs.") svc_tls_stp_primary_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 40), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpPrimaryBridge.setStatus('current') if mibBuilder.loadTexts: svcTlsStpPrimaryBridge.setDescription('The value of the object svcTlsStpPrimaryBridge indicates the BridgeId of the bridge that acts as the primary bridge, being the gateway from the core mesh towards the root bridge.') svc_tls_stp_bridge_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpBridgeInstanceId.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeInstanceId.setDescription("The value of the object svcTlsStpBridgeInstanceId indicates a 12 bit value chosen by the the system. It is part of the STP bridge Id, which consists of 8 octets: - 4 highest bits of octet 1: the bridge priority (ref svcTlsStpPriority) - 12 bits (4 lowest bits of octet 1 + 8 bits of octet 2): bridge instance Id (this object!). - 6 octets: bridge MAC addess ref svcTlsStpBridgeAddress The value is set to 0 if svcTlsStpOperStatus is not 'up'.") svc_tls_stp_vcp_oper_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 42), stp_protocol()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpVcpOperProtocol.setStatus('current') if mibBuilder.loadTexts: svcTlsStpVcpOperProtocol.setDescription('The value of the object svcTlsStpVcpOperProtocol indicates whether stp, rstp or mstp is running on this VCP. If the protocol is not enabled on this VCP, the value notApplicable is returned.') svc_tls_mac_move_max_rate = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 43), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 10)).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacMoveMaxRate.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveMaxRate.setDescription("The value of the object svcTlsMacMoveMaxRate specifies the maximum rate at which MAC's can be re-learned in this TLS service, before the SAP where the moving MAC was last seen is automatically disabled in order to protect the system against undetected loops or duplicate MAC's. The rate is computed as the maximum number of re-learns allowed in a 5 second interval: e.g. the default rate of 2 re-learns per second corresponds to 10 re-learns in a 5 second period.") svc_tls_mac_move_retry_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 44), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 600)).clone(10)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacMoveRetryTimeout.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveRetryTimeout.setDescription('The value of the object svcTlsMacMoveRetryTimeout specifies the time in seconds to wait before a SAP that has been disabled after exceeding the maximum re-learn rate is re-enabled. A value of zero indicates that the SAP will not be automatically re-enabled after being disabled. If after the SAP is re-enabled it is disabled again, the effective retry timeout is doubled in order to avoid thrashing. An inconsistentValue error is returned if the value of this object is set to less than fie times the value of svcTlsSecPortsCumulativeFactor.') svc_tls_mac_move_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 45), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacMoveAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsMacMoveAdminStatus.setDescription('The value of the object svcTlsMacMoveAdminStatus specifies the administrative state of the MAC movement feature associated with this service.') svc_tls_mac_relearn_only = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 46), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsMacRelearnOnly.setStatus('current') if mibBuilder.loadTexts: svcTlsMacRelearnOnly.setDescription("The value of the object svcTlsMacRelearnOnly indicates when set to 'true' that either the FDB table of this TLS service is full, or that the maximum system-wide number of MAC's supported by the agent has been reached, and thus MAC learning is temporary disabled, and only MAC re-learns can take place.") svc_tls_mfib_table_size = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 16383))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMfibTableSize.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableSize.setDescription('The value of the object svcTlsMfibTableSize specifies the maximum number of entries allowed in the MFIB table of this service. If the value is 0, then there is no limit.') svc_tls_mfib_table_full_high_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 48), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(95)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMfibTableFullHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullHighWatermark.setDescription('The value of the object svcTlsMfibTableFullHighWatermark specifies the utilization of the MFIB table of this TLS service at which a table full alarm will be raised by the agent.') svc_tls_mfib_table_full_low_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 49), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMfibTableFullLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullLowWatermark.setDescription('The value of the object svcTlsMfibTableFullLowWatermark specifies utilization of the MFIB table of this TLS service at which a table full alarm will be cleared by the agent.') svc_tls_mac_flush_on_fail = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 50), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMacFlushOnFail.setStatus('current') if mibBuilder.loadTexts: svcTlsMacFlushOnFail.setDescription('The value of the object svcTlsMacFlushOnFail specifies whether a special mac-flush is sent when a port or sap becomes operational down.') svc_tls_stp_region_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 51), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpRegionName.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRegionName.setDescription('The value of the object svcTlsStpRegionName specifies the MSTP region name. Together with region revision and VLAN-to-instance assignment it defines the MSTP region.') svc_tls_stp_region_revision = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 52), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpRegionRevision.setStatus('current') if mibBuilder.loadTexts: svcTlsStpRegionRevision.setDescription('The value of the object svcTlsStpRegionRevision specifies the MSTP region revision number. Together with region name and VLAN-to-instance assignment it defines the MSTP region.') svc_tls_stp_bridge_max_hops = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 53), integer32().subtype(subtypeSpec=value_range_constraint(1, 40)).clone(20)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsStpBridgeMaxHops.setStatus('current') if mibBuilder.loadTexts: svcTlsStpBridgeMaxHops.setDescription("The value of the object svcTlsStpBridgeMaxHops specifies the maximum number of hops (known as 'MaxHops' in 802.1Q).") svc_tls_stp_cist_regional_root = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 54), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpCistRegionalRoot.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRegionalRoot.setDescription('The value of the object svcTlsStpCistRegionalRoot indicates the bridge identifier of the regional root of the CIST spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the CIST Regional Root Identifier parameter in all MSTP BPDUs originated by this node.') svc_tls_stp_cist_int_root_cost = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 55), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpCistIntRootCost.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistIntRootCost.setDescription('The value of the object svcTlsStpCistIntRootCost indicates the cost of the path to the CIST regional root bridge as seen from this bridge.') svc_tls_stp_cist_remaining_hop_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 56), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpCistRemainingHopCount.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRemainingHopCount.setDescription('The value of the object svcTlsStpCistRemainingHopCount specifies the remaining number of hops.') svc_tls_stp_cist_regional_root_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 57), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsStpCistRegionalRootPort.setStatus('current') if mibBuilder.loadTexts: svcTlsStpCistRegionalRootPort.setDescription('The value of the object svcTlsStpCistRegionalRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the regional root bridge.') svc_tls_fdb_num_learned_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 58), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumLearnedEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumLearnedEntries.setDescription('The value of the object svcTlsFdbNumLearnedEntries indicates the current number of learned entries in the FDB of this service.') svc_tls_fdb_num_oam_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 59), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumOamEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumOamEntries.setDescription('The value of the object svcTlsFdbNumOamEntries indicates the current number of OAM entries in the FDB of this service.') svc_tls_fdb_num_dhcp_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 60), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumDhcpEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumDhcpEntries.setDescription('The value of the object svcTlsFdbNumDhcpEntries indicates the current number of dhcp-learned entries in the FDB of this service.') svc_tls_fdb_num_host_entries = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 61), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsFdbNumHostEntries.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbNumHostEntries.setDescription('The value of the object svcTlsFdbNumHostEntries indicates the current number of host-learned entries in the FDB of this service.') svc_tls_shcv_action = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 62), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('alarm', 1), ('remove', 2))).clone('alarm')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsShcvAction.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvAction.setDescription('The value of the object svcTlsShcvAction indicates whether any action should be triggered when the connectivity check fails.') svc_tls_shcv_src_ip = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 63), ip_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsShcvSrcIp.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvSrcIp.setDescription('The value of the object svcTlsShcvSrcIp specifies the source IP address used when doing the connectivity check. The value 0.0.0.0 indicates that no host IP address is specified.') svc_tls_shcv_src_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 64), mac_address()).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsShcvSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvSrcMac.setDescription('The value of the object svcTlsShcvSrcMac specifies the MAC address used when doing the connectivity check. The value 0:0:0:0:0:0 indicates that no host MAC address is specified.') svc_tls_shcv_interval = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 65), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 6000))).setUnits('minutes').setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsShcvInterval.setStatus('current') if mibBuilder.loadTexts: svcTlsShcvInterval.setDescription('The value of the object svcTlsShcvInterval specifies the interval in minutes between connectivity checks. Zero means no connectivity checking.') svc_tls_pri_ports_cumulative_factor = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 66), unsigned32().subtype(subtypeSpec=value_range_constraint(3, 10)).clone(3)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsPriPortsCumulativeFactor.setStatus('current') if mibBuilder.loadTexts: svcTlsPriPortsCumulativeFactor.setDescription('The value of the object svcTlsPriPortsCumulativeFactor specifies a factor for the primary ports defining how many MAC-relearn periods should be used to measure the MAC-relearn rate, svcTlsMacMoveMaxRate. This rate must be exceeded during consecutive periods before the corresponding ports (SAP and/or spoke-SDP) are blocked by the MAC-move feature. An inconsistentValue error is returned if an attempt is made to set the value of svcTlsPriPortsCumulativeFactor to a value lower than or equal to svcTlsSecPortsCumulativeFactor.') svc_tls_sec_ports_cumulative_factor = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 67), unsigned32().subtype(subtypeSpec=value_range_constraint(2, 9)).clone(2)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsSecPortsCumulativeFactor.setStatus('current') if mibBuilder.loadTexts: svcTlsSecPortsCumulativeFactor.setDescription('The value of the object svcTlsSecPortsCumulativeFactor specifies a factor for the secondary ports defining how many MAC-relearn periods should be used to measure the MAC-relearn rate, svcTlsMacMoveMaxRate. This rate must be exceeded during consecutive periods before the corresponding ports (SAP and/or spoke-SDP) are blocked by the MAC-move feature. An inconsistentValue error is returned if an attempt is made to set the value of svcTlsSecPortsCumulativeFactor to a value greater than or equal to svcTlsPriPortsCumulativeFactor.') svc_tls_l2pt_term_enabled = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 68), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsL2ptTermEnabled.setStatus('current') if mibBuilder.loadTexts: svcTlsL2ptTermEnabled.setDescription("The value of the object svcTlsL2ptTermEnabled indicates if L2PT-termination and/or Bpdu-translation is in use in this service by at least one SAP or spoke SDP Bind. If the value is 'true', it means that at least one of L2PT-termination or Bpdu-translation is enabled. When enabled it is not possible to enable stp on this service.") svc_tls_propagate_mac_flush = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 69), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsPropagateMacFlush.setStatus('current') if mibBuilder.loadTexts: svcTlsPropagateMacFlush.setDescription("The value of svcTlsPropagateMacFlush specifies whether 'MAC flush' messages received from the given LDP are propagated to all spoke-SDPs and mesh-SDPs within the context of this VPLS service. The propagation will follow the 'split-horizon' principle and any data-path blocking in order to avoid the looping of these messages. The value of 'true' enables the propagation.") svc_tls_mrp_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 70), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMrpAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAdminStatus.setDescription('The value of the object svcTlsMrpAdminStatus specifies whether the Multiple Registration Protocol (MRP) is enabled in this TLS.') svc_tls_mrp_max_attributes = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 71), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 2048))).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMrpMaxAttributes.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpMaxAttributes.setDescription('The value of the object svcTlsMrpMaxAttributes indicates maximum number of MRP attributes supported in this TLS. In most cases the default value is 2048 MRP attributes. For some platform and chassis types, especially single slot chassises, the default value will be lower due to resource constraints. An inconsistentValue error is returned if an attempt is made to set this object to a value the platform cannot support.') svc_tls_mrp_attribute_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 72), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsMrpAttributeCount.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttributeCount.setDescription('The value of the object svcTlsMrpAttributeCount indicates number of MRP attributes currently registered in this TLS.') svc_tls_mrp_failed_register_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 73), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsMrpFailedRegisterCount.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpFailedRegisterCount.setDescription('The value of the object svcTlsMrpFailedRegisterCount indicates number of failed MRP attribute registrations in this TLS.') svc_tls_mc_path_mgmt_plcy_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 74), t_named_item().clone('default')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMcPathMgmtPlcyName.setStatus('current') if mibBuilder.loadTexts: svcTlsMcPathMgmtPlcyName.setDescription('The value of svcTlsMcPathMgmtPlcyName specifies the multicast policy name configured on this service.') svc_tls_mrp_flood_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 75), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(3, 600)))).setUnits('seconds').setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMrpFloodTime.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpFloodTime.setDescription('The value of the object svcTlsMrpFloodTime specifies the amount of time in seconds after a status change in the TLS during which traffic is flooded. Once that time expires, traffic will be delivered according to the MRP registrations which exist in the TLS. The value of 0 indicates that no flooding will occur on state changes in the TLS.') svc_tls_mrp_attr_tbl_high_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 76), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(95)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMrpAttrTblHighWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblHighWatermark.setDescription('The value of the object svcTlsMrpAttrTblHighWatermark specifies the utilization of the MRP attribute table of this TLS service at which a table full alarm will be raised by the agent.') svc_tls_mrp_attr_tbl_low_watermark = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 3, 1, 77), integer32().subtype(subtypeSpec=value_range_constraint(0, 100)).clone(90)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsMrpAttrTblLowWatermark.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblLowWatermark.setDescription('The value of the object svcTlsMrpAttrTblLowWatermark specifies utilization of the MRP attribute table of this TLS service at which a table full alarm will be cleared by the agent.') tls_fdb_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4)) if mibBuilder.loadTexts: tlsFdbInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsFdbInfoTable.setDescription('A table that contains TLS FDB information.') tls_fdb_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbMacAddr')) if mibBuilder.loadTexts: tlsFdbInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsFdbInfoEntry.setDescription('Information about a specific TLS FDB.') tls_fdb_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 1), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsFdbMacAddr.setDescription('The value of the object tlsFdbMacAddr specifies the 48-bit IEEE 802.3 MAC address.') tls_fdb_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsFdbRowStatus.setDescription("The value of the object tlsFdbRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'.") tls_fdb_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('static', 1), ('learned', 2), ('oam', 3), ('dhcp', 4), ('host', 5)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbType.setStatus('current') if mibBuilder.loadTexts: tlsFdbType.setDescription(" The value of the object tlsFdbType specifies: - 'static': Static TLS FDB entries created via management - 'learned': dynamic entries created via the learning process - 'oam': entries created via the OAM process - 'dhcp': learned addresses can be temporarily frozen by the DHCP snooping application for the duration of a DHCP lease - 'host': entry added by the system for a static configured subscriber host.") tls_fdb_locale = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('sap', 1), ('sdp', 2), ('cpm', 3), ('endpoint', 4)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbLocale.setStatus('current') if mibBuilder.loadTexts: tlsFdbLocale.setDescription("The value of the object tlsFdbLocale specifies for TLS FDB entries defined on a local SAP the value 'sap', remote entries defined on an SDP have the value 'sdp', entries associated with the Control Processor have the value 'cpm' and entries associated with the explicit endpoint have the value 'endpoint'. The value of this object must be specified when the row is created and cannot be changed while the row status is 'active'.") tls_fdb_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 5), tmnx_port_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbPortId.setStatus('current') if mibBuilder.loadTexts: tlsFdbPortId.setDescription("When the value of tlsFdbLocale is 'sap', this object, along with tlsFdbEncapValue, specifies the SAP associated with the MAC address defined by tlsFdbMacAddr. This object is otherwise insignificant and should contain a value of 0.") tls_fdb_encap_value = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 6), tmnx_encap_val()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbEncapValue.setStatus('current') if mibBuilder.loadTexts: tlsFdbEncapValue.setDescription("The value of the object tlsFdbEncapValue specifies, when the value of tlsFdbLocale is 'sap', along with tlsFdbPortId, SAP associated with the MAC address defined by tlsFdbMacAddr. This object is otherwise insignificant and should contain a value of 0.") tls_fdb_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 7), sdp_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbSdpId.setStatus('current') if mibBuilder.loadTexts: tlsFdbSdpId.setDescription("The value of the object tlsFdbSdpId specifies, when the value of tlsFdbLocale is 'sdp', along with tlsFdbVcId,the SDP Binding associated with the MAC address defined by tlsFdbMacAddr. This object is other- wise insignificant and should contain a value of 0.") tls_fdb_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 8), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbVcId.setStatus('current') if mibBuilder.loadTexts: tlsFdbVcId.setDescription("The value of the object tlsFdbVcId specifies, when the value of tlsFdbLocale is 'sdp', along with tlsFdbSdpId, the SDP Binding associated with the MAC address defined by tlsFdbMacAddr. This object is other-wise insignificant and should contain a value of 0.") tls_fdb_vpn_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 9), vpn_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbVpnId.setStatus('current') if mibBuilder.loadTexts: tlsFdbVpnId.setDescription('The value of the object tlsFdbVpnId indicates the VPN ID of the associated TLS.') tls_fdb_cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 10), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbCustId.setStatus('current') if mibBuilder.loadTexts: tlsFdbCustId.setDescription('The value of the object tlsFdbCustId indicates the Customer ID of the associated TLS.') tls_fdb_last_state_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 11), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbLastStateChange.setStatus('current') if mibBuilder.loadTexts: tlsFdbLastStateChange.setDescription('The value of the object tlsFdbLastStateChange indicates the value of sysUpTime at the time of the most recent state change of this entry. A state change is defined as a change in the value of: tlsFdbRowStatus, tlsFdbType, tlsFdbLocale, tlsFdbPortId, tlsFdbEncapValue, tlsFdbSdpId or tlsFdbVcId.') tls_fdb_protected = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 12), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbProtected.setStatus('current') if mibBuilder.loadTexts: tlsFdbProtected.setDescription("The value of the object tlsFdbProtected indicates whether or not this MAC is protected. When the value of this object is 'true' the agent will protect the MAC from being learned or re-learned on a SAP that has restricted learning enabled.") tls_fdb_backbone_dst_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 13), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbBackboneDstMac.setStatus('current') if mibBuilder.loadTexts: tlsFdbBackboneDstMac.setDescription("The value of the object tlsFdbBackboneDstMac indicates the Backbone VPLS service MAC address used as destination MAC address in the Provider Backbone Bridging frames for this tlsFdbMacAddr. This object is insignificant for services with svcVplsType not set to 'iVpls' and should contain a value of 0:0:0:0:0:0.") tls_fdb_num_i_vpls_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbNumIVplsMac.setStatus('current') if mibBuilder.loadTexts: tlsFdbNumIVplsMac.setDescription("The value of the object tlsFdbNumIVplsMac indicates the number of ISID VPLS service MAC addressess which are using this Backbone MAC address defined by tlsFdbMacAddr. This object is insignificant for services with svcVplsType not set to 'bVpls' and should contain a value of 0.") tls_fdb_end_point_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 15), t_named_item_or_empty()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsFdbEndPointName.setStatus('current') if mibBuilder.loadTexts: tlsFdbEndPointName.setDescription('The value of tlsFdbEndPointName specifies the name of the service endpoint associated with the MAC Address.') tls_fdb_ep_mac_oper_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 16), sdp_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbEPMacOperSdpId.setStatus('current') if mibBuilder.loadTexts: tlsFdbEPMacOperSdpId.setDescription("The value of the object tlsFdbEPMacOperSdpId along with tlsFdbEPMacOperVcId indicates the SDP binding associated with this static MAC address for this endpoint. This object is valid when tlsFdbLocale is 'endpoint', otherwise it should contain a value of 0.") tls_fdb_ep_mac_oper_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 17), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbEPMacOperVcId.setStatus('current') if mibBuilder.loadTexts: tlsFdbEPMacOperVcId.setDescription("The value of the object tlsFdbEPMacOperVcId along with tlsFdbEPMacOperSdpId indicates the SDP binding associated with this static MAC address for this endpoint. This object is valid when tlsFdbLocale is 'endpoint', otherwise it should contain a value of 0.") tls_fdb_pbb_num_epipes = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 4, 1, 18), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsFdbPbbNumEpipes.setStatus('current') if mibBuilder.loadTexts: tlsFdbPbbNumEpipes.setDescription("The value of the object tlsFdbPbbNumEpipes indicates number of E-Pipes that resolve to this MAC Address. This object is valid for service with svcVplsType set to 'bVpls', otherwise it should contain a value of 0.") ies_if_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5)) if mibBuilder.loadTexts: iesIfTable.setStatus('current') if mibBuilder.loadTexts: iesIfTable.setDescription('A table that contains IES interface information.') ies_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex')) if mibBuilder.loadTexts: iesIfEntry.setStatus('current') if mibBuilder.loadTexts: iesIfEntry.setDescription('Information about a specific IES interface.') ies_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 1), interface_index()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfIndex.setStatus('current') if mibBuilder.loadTexts: iesIfIndex.setDescription('The secondary index of the row in the vRtrIfTable corresponding to this IES interface. The primary index is 1; i.e. all IES interfaces are defined in the Base virtual router context.') ies_if_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfRowStatus.setStatus('current') if mibBuilder.loadTexts: iesIfRowStatus.setDescription("The value of the object iesIfRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'.") ies_if_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 3), t_named_item()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfName.setStatus('current') if mibBuilder.loadTexts: iesIfName.setDescription("The value of the object iesIfName specifies the name used to refer to this IES interface. This name must be unique within the Base virtual router context. This object must be specified when the row is created, and cannot be changed while the rowstatus is 'active'.") ies_if_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 4), serv_obj_long_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfDescription.setStatus('current') if mibBuilder.loadTexts: iesIfDescription.setDescription('The value of the object iesIfDescription specifies generic information about this IES interface.') ies_if_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 5), service_admin_status().clone('up')).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfAdminStatus.setStatus('current') if mibBuilder.loadTexts: iesIfAdminStatus.setDescription('The value of the object iesIfAdminStatus specifies the desired state of this IES interface.') ies_if_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 6), service_oper_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfOperStatus.setStatus('current') if mibBuilder.loadTexts: iesIfOperStatus.setDescription('The value of the object iesIfOperStatus indicates the operating state of this IES interface.') ies_if_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 7), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: iesIfLastMgmtChange.setDescription('The value of the object iesIfLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this IES interface.') ies_if_vpn_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 8), vpn_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfVpnId.setStatus('current') if mibBuilder.loadTexts: iesIfVpnId.setDescription('The value of the object iesIfVpnId indicates the VPN ID of the associated IES service.') ies_if_cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 9), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfCustId.setStatus('current') if mibBuilder.loadTexts: iesIfCustId.setDescription('The value of the object iesIfCustId indicates the Customer ID of the associated IES service.') ies_if_loopback = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 10), truth_value()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfLoopback.setStatus('current') if mibBuilder.loadTexts: iesIfLoopback.setDescription("When the value of iesIfLoopback is set to 'true', loopback is enabled on the IES interface represented by this row entry. When the value is 'false', loopback is disabled.") ies_if_last_status_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 11), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: iesIfLastStatusChange.setStatus('current') if mibBuilder.loadTexts: iesIfLastStatusChange.setDescription('The value of the object iesIfLastStatusChange indicates the value of sysUpTime at the time of the most recent operating status change to his interface.') ies_if_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('service', 1), ('subscriber', 2), ('group', 3), ('redundant', 4), ('cem', 5), ('ipsec', 6), ('ipMirror', 7))).clone('service')).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfType.setStatus('current') if mibBuilder.loadTexts: iesIfType.setDescription("The value of iesIfType specifies the type of this IES interface. This object can only be set at row creation time. 'service' - This is a normal IES interface. 'subscriber' - This is a subscriber interface, under which multiple group interfaces can be configured. 'group' - This is a group interface, belonging to a parent subscriber interface. 'redundant' - This is a redundant interface, used for dual homing. 'cem' - This is a CEM interface, used for IP/UDP encapsulated CEM IES interface. 'ipsec' - This is an IPsec interface, used for IPsec tunneling. 'ipMirror' - This is an IP interface, used for IP Mirroring.") ies_if_parent_if = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 13), interface_index_or_zero()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfParentIf.setStatus('current') if mibBuilder.loadTexts: iesIfParentIf.setDescription("The value of iesIfParentIf specifies the ifIndex of this interface's parent. This value can only be set at row creation time, and is only valid when iesIfType is 'group'. The interface pointed to by iesIfParentIf must be of type 'subscriber'.") ies_if_shcv_source = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('interface', 1), ('vrrp', 2))).clone('interface')).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfShcvSource.setStatus('current') if mibBuilder.loadTexts: iesIfShcvSource.setDescription('The value of iesIfShcvSource specifies the source used for subscriber host connectivity checking') ies_if_shcv_action = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('alarm', 1), ('remove', 2))).clone('alarm')).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfShcvAction.setStatus('current') if mibBuilder.loadTexts: iesIfShcvAction.setDescription('The value of iesIfShcvAction specifies the action to be taken for hosts on this interface whose host connectivity checking fails') ies_if_shcv_interval = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 16), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 6000))).setUnits('minutes').setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfShcvInterval.setStatus('current') if mibBuilder.loadTexts: iesIfShcvInterval.setDescription('The value of the object iesIfShcvInterval specifies the interval in minutes between connectivity checks. Zero means no in host-connection-verify') ies_if_fwd_serv_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 17), tmnx_serv_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfFwdServId.setStatus('current') if mibBuilder.loadTexts: iesIfFwdServId.setDescription("The value of iesIfFwdServId specifies the forwarding service ID for a subscriber interface in a retailer context. This value can only be set at row creation time along with iesIfFwdSubIf, and it is only valid when iesIfType is 'subscriber'. The iesIfFwdServId MUST correspond to a service of type 'vprn'.") ies_if_fwd_sub_if = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 5, 1, 18), interface_index_or_zero()).setMaxAccess('readcreate') if mibBuilder.loadTexts: iesIfFwdSubIf.setStatus('current') if mibBuilder.loadTexts: iesIfFwdSubIf.setDescription("The value of iesIfFwdSubIf specifies the forwarding subscriber interface for a subscriber interface in a retailer context. This value can only be set at row creation time along with iesIfFwdServId, and it is only valid when iesIfType is 'subscriber'. The interface pointed to by iesIfFwdSubIf MUST be of type 'subscriber' in the the service context defined by iesIfFwdServId.") tls_shg_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6)) if mibBuilder.loadTexts: tlsShgInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsShgInfoTable.setDescription("A table that contains TLS service split-horizon group information. A maximum of 30 split-horizon groups can be created in a given TLS service. Maximum is set to 15 for a TLS service with svcVplsType set to 'bVpls', or 'iVpls'.") tls_shg_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgName')) if mibBuilder.loadTexts: tlsShgInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsShgInfoEntry.setDescription('Split-horizon group information about a TLS service.') tls_shg_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 1), t_named_item()) if mibBuilder.loadTexts: tlsShgName.setStatus('current') if mibBuilder.loadTexts: tlsShgName.setDescription('The value of the object tlsShgName specifies the name of the split-horizon group. The name must be unique within a TLS, however the same name can appear in different TLS services, in which case they denote different split-horizon groups.') tls_shg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsShgRowStatus.setDescription("The value of the object tlsShgRowStatus specifies the status of this row. The only values supported during a set operation are 'createAndGo' and 'destroy'. To delete an entry from this table, there should be no TLS SAP's or TLS spoke SDP Bindings refering to it.") tls_shg_cust_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 3), tmnx_cust_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsShgCustId.setStatus('current') if mibBuilder.loadTexts: tlsShgCustId.setDescription('The value of the object tlsShgCustId indicates the Customer ID of the associated TLS service.') tls_shg_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 4), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsShgInstanceId.setStatus('current') if mibBuilder.loadTexts: tlsShgInstanceId.setDescription('The value of the object tlsShgInstanceId indicates the instance identifier for the split horizon group.') tls_shg_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 5), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgDescription.setStatus('current') if mibBuilder.loadTexts: tlsShgDescription.setDescription('The value of the object tlsShgDescription specifies generic information about this split-horizon group.') tls_shg_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 6), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsShgLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsShgLastMgmtChange.setDescription('The value of the object tlsShgLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this split-horizon group.') tls_shg_residential = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 7), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgResidential.setStatus('current') if mibBuilder.loadTexts: tlsShgResidential.setDescription('The value of the object tlsShgResidential specifies whether or not the split-horizon-group is residential.In a Residential Split Horizon Group (RSHG) there is no downstream broadcast, and all saps in the group will share the default ingress queue. The value can be specified during row-creation, cannot be changed later on.') tls_shg_rest_prot_src_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 8), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgRestProtSrcMac.setStatus('current') if mibBuilder.loadTexts: tlsShgRestProtSrcMac.setDescription("The value of the object tlsShgRestProtSrcMac indicates how the agent will handle relearn requests for protected MAC addresses received on SAP's belonging to this SHG. When the value of this object is 'true' requests to relearn a protected MAC address will be ignored. In addition, if the value of tlsShgRestProtSrcMacAction is 'disable', then the SAP where the protected source MAC was seen will be brought operationally down.") tls_shg_rest_unprot_dst_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 9), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgRestUnprotDstMac.setStatus('current') if mibBuilder.loadTexts: tlsShgRestUnprotDstMac.setDescription("The value of the object tlsShgRestUnprotDstMac indicates how the system will forward packets destined to an unprotected MAC address. When the value of this object is 'true' packets destined to an unprotected MAC address will be dropped.") tls_shg_rest_prot_src_mac_action = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('disable', 1), ('alarm-only', 2))).clone('disable')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsShgRestProtSrcMacAction.setStatus('current') if mibBuilder.loadTexts: tlsShgRestProtSrcMacAction.setDescription("The value of the object tlsShgRestProtSrcMacAction indicates the action to take whenever a relearn request for a protected MAC is received on a restricted SAP belonging to this SHG. When the value of this object is 'disable' the SAP will be placed in the operational down state, with the operating flag 'recProtSrcMac' set. When the value of this object is 'alarm-only', the SAP will be left up and only a notification, sapReceivedProtSrcMac, will be generated.") tls_shg_creation_origin = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 6, 1, 11), l2_route_origin()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsShgCreationOrigin.setStatus('current') if mibBuilder.loadTexts: tlsShgCreationOrigin.setDescription('The value of tlsShgCreationOrigin indicates the protocol or mechanism which created this SHG.') svc_apipe_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7)) if mibBuilder.loadTexts: svcApipeInfoTable.setStatus('current') if mibBuilder.loadTexts: svcApipeInfoTable.setDescription('A table that contains APIPE service information.') svc_apipe_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: svcApipeInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcApipeInfoEntry.setDescription('APIPE specific information about a service.') svc_apipe_interworking = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 7, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('frf-5', 2), ('frf-8-2-translate', 3))).clone('none')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcApipeInterworking.setStatus('current') if mibBuilder.loadTexts: svcApipeInterworking.setDescription('The value of the object svcApipeInterworking specifies the interworking function that should be applied for packets that ingress/egress SAPs that are part of a APIPE service.') tls_m_fib_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8)) if mibBuilder.loadTexts: tlsMFibInfoTable.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoTable.setDescription('tlsMFibInfoTable contains the IPv4 Multicast FIB for this Tls. This table was made obsolete in the 6.0 release. It is replaced by tlsMFibTable.') tls_m_fib_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoGrpAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoSrcAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoLocale'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoPortId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoEncapValue'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoSdpId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoVcId')) if mibBuilder.loadTexts: tlsMFibInfoEntry.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoEntry.setDescription('An entry in the tlsMFibInfoTable. Each entry indicates whether traffic from a certain source to a certain multicast destination (group) needs to be forwarded or blocked on the indicated SAP/SDP.') tls_m_fib_info_grp_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 1), ip_address()) if mibBuilder.loadTexts: tlsMFibInfoGrpAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoGrpAddr.setDescription('The value of the object tlsMFibInfoGrpAddr indicates the IPv4 multicast destination address for which this table entry contains information.') tls_m_fib_info_src_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 2), ip_address()) if mibBuilder.loadTexts: tlsMFibInfoSrcAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSrcAddr.setDescription('tlsMFibInfoSrcAddr indicates the IPv4 unicast source address for which this table entry contains information.') tls_m_fib_info_locale = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 3), mfib_location()) if mibBuilder.loadTexts: tlsMFibInfoLocale.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoLocale.setDescription("tlsMFibInfoLocale indicates if the information in this entry pertains to a 'sap' or to an 'sdp'.") tls_m_fib_info_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 4), tmnx_port_id()) if mibBuilder.loadTexts: tlsMFibInfoPortId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoPortId.setDescription("When the value of tlsMFibInfoLocale is 'sap', the object tlsMFibInfoPortId along with the object tlsMFibInfoEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tls_m_fib_info_encap_value = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 5), tmnx_encap_val()) if mibBuilder.loadTexts: tlsMFibInfoEncapValue.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoEncapValue.setDescription("When the value of tlsMFibInfoLocale is 'sap', the object tlsMFibInfoEncapValue, along with the object tlsMFibInfoPortId, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tls_m_fib_info_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 6), sdp_id()) if mibBuilder.loadTexts: tlsMFibInfoSdpId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSdpId.setDescription("When the value of tlsMFibInfoLocale is 'sdp', the object tlsMFibInfoSdpId, along with tlsMFibInfoVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tls_m_fib_info_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 7), unsigned32()) if mibBuilder.loadTexts: tlsMFibInfoVcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoVcId.setDescription("When the value of tlsMFibInfoLocale is 'sdp', the object tlsMFibInfoVcId, along with tlsMFibInfoSdpId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") tls_m_fib_info_fwd_or_blk = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 8), mfib_grp_src_fwd_or_blk()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibInfoFwdOrBlk.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoFwdOrBlk.setDescription('tlsMFibInfoFwdOrBlk indicates if traffic for the indicated (S,G) pair will be blocked or forwarded on the indicated SAP or SDP.') tls_m_fib_info_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 8, 1, 9), tmnx_serv_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibInfoSvcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibInfoSvcId.setDescription('tlsMFibInfoSvcId indicates the TLS service to which the indicated SAP or SDP belongs.') tls_m_fib_grp_src_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9)) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsTable.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsTable.setDescription('tlsMFibGrpSrcStatsTable contains statistics for the entries in the IPv4 Multicast FIB for this Tls. These statistics are collected by the forwarding engine. This table was made obsolete in the 6.0 release. It is replaced by tlsMFibStatsTable.') tls_m_fib_grp_src_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpSrcStatsGrpAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpSrcStatsSrcAddr')) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsEntry.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsEntry.setDescription('An entry in the tlsMFibGrpSrcStatsTable.') tls_m_fib_grp_src_stats_grp_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 1), ip_address()) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsGrpAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsGrpAddr.setDescription('tlsMFibGrpSrcStatsGrpAddr indicates the IPv4 multicast destination address for which this table entry contains information.') tls_m_fib_grp_src_stats_src_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 2), ip_address()) if mibBuilder.loadTexts: tlsMFibGrpSrcStatsSrcAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsSrcAddr.setDescription('tlsMFibGrpSrcStatsSrcAddr indicates the IPv4 unicast source address for which this table entry contains information.') tls_m_fib_grp_src_stats_forwarded_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 3), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedPkts.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedPkts.setDescription('tlsMFibGrpSrcStatsForwardedPkts indicates the number of IPv4 multicast packets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tls_m_fib_grp_src_stats_forwarded_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 9, 1, 4), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedOctets.setStatus('obsolete') if mibBuilder.loadTexts: tlsMFibGrpSrcStatsForwardedOctets.setDescription('tlsMFibGrpSrcStatsForwardedOctets indicates the number of octets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tls_rdnt_grp_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10)) if mibBuilder.loadTexts: tlsRdntGrpTable.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpTable.setDescription('A table that contains TLS service Redundant Group information. There is no limit on the number of Redundant Groups that can be created globally or within a service.') tls_rdnt_grp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpName')) if mibBuilder.loadTexts: tlsRdntGrpEntry.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpEntry.setDescription('Redundant Group information') tls_rdnt_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 1), t_named_item()) if mibBuilder.loadTexts: tlsRdntGrpName.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpName.setDescription('The value of the object tlsRdntGrpName specifies the name of the redundant group. The name must be unique within a TLS, however the same name can appear in different TLS services, in which case they denote different redundant groups.') tls_rdnt_grp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsRdntGrpRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpRowStatus.setDescription("The value of the object tlsRdntGrpRowStatus specifies the status of this row. The only values supported are 'active', 'createAndGo' and 'destroy'.") tls_rdnt_grp_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 3), serv_obj_desc().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsRdntGrpDescription.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpDescription.setDescription('The value of the object tlsRdntGrpDescription specifies generic information about this redundant group.') tls_rdnt_grp_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 10, 1, 4), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsRdntGrpLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpLastMgmtChange.setDescription('The value of the object tlsRdntGrpLastMgmtChange indicates the sysUpTime at the time of the most recent management-initiated change to this redundant group.') tls_rdnt_grp_member_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11)) if mibBuilder.loadTexts: tlsRdntGrpMemberTable.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberTable.setDescription('A table that holds information about the members of TLS redundant groups.') tls_rdnt_grp_member_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpName'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberRemoteNodeAddrTp'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberRemoteNodeAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberIsSap'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberPort'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberEncap')) if mibBuilder.loadTexts: tlsRdntGrpMemberEntry.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberEntry.setDescription('Redundant Group Member information.') tls_rdnt_grp_member_remote_node_addr_tp = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 1), inet_address_type()) if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddrTp.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddrTp.setDescription('The value of the object tlsRdntGrpMemberRemoteNodeAddrTp specifies the addresstype of the remote ldp peer.') tls_rdnt_grp_member_remote_node_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 2), inet_address()) if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddr.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRemoteNodeAddr.setDescription('The value of the object tlsRdntGrpMemberRemoteNodeAddr specifies the ip address of the remote ldp peer.') tls_rdnt_grp_member_is_sap = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 3), truth_value()) if mibBuilder.loadTexts: tlsRdntGrpMemberIsSap.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberIsSap.setDescription('The value of the object tlsRdntGrpMemberIsSap specifies whether the Port ID and Encap describe a sap or a port (in which case Encap has no meaning).') tls_rdnt_grp_member_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 4), tmnx_port_id()) if mibBuilder.loadTexts: tlsRdntGrpMemberPort.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberPort.setDescription("When the value of tlsRdntGrpMemberIsSap is 'sap', the value of the object tlsRdntGrpMemberPort, along with tlsRdntGrpMemberEncap, specifies a SAP, otherwise a port (in which case tlsRdntGrpMemberEncap is insignificant).") tls_rdnt_grp_member_encap = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 5), tmnx_encap_val()) if mibBuilder.loadTexts: tlsRdntGrpMemberEncap.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberEncap.setDescription("When the value of tlsRdntGrpMemberIsSap is 'sap', the value of the object tlsRdntGrpMemberEncap, along with tlsRdntGrpMemberPort, specifies a SAP. This object is otherwise insignificant and should contain a value of 0.") tls_rdnt_grp_member_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 6), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsRdntGrpMemberRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberRowStatus.setDescription("The value of the object tlsRdntGrpMemberRowStatus specifies the status of this row. The only values supported are 'active', 'createAndGo' and 'destroy'.") tls_rdnt_grp_member_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 11, 1, 7), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsRdntGrpMemberLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsRdntGrpMemberLastMgmtChange.setDescription('The value of the object tlsRdntGrpMemberLastMgmtChange indicates the time of the most recent management-initiated change to this redundant group member.') tls_msti_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12)) if mibBuilder.loadTexts: tlsMstiTable.setStatus('current') if mibBuilder.loadTexts: tlsMstiTable.setDescription('A table that contains Multiple Spanning Tree Instance (MSTI) information. Each management VPLS running MSTP can have upto 15 MSTI, not including the CIST.') tls_msti_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiInstanceId')) if mibBuilder.loadTexts: tlsMstiEntry.setStatus('current') if mibBuilder.loadTexts: tlsMstiEntry.setDescription('Information about a specific MSTI.') tls_msti_instance_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 1), msti_instance_id()) if mibBuilder.loadTexts: tlsMstiInstanceId.setStatus('current') if mibBuilder.loadTexts: tlsMstiInstanceId.setDescription('The value of the object tlsMstiInstanceId specifies the Multiple Spanning Tree Instance.') tls_msti_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsMstiRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsMstiRowStatus.setDescription("The value of the object tlsMstiRowStatus specifies the status of this row. The only values supported during a set operation are 'active', 'createAndGo' and 'destroy'.") tls_msti_priority = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(32768)).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsMstiPriority.setStatus('current') if mibBuilder.loadTexts: tlsMstiPriority.setDescription("The value of the object tlsMstiPriority specifies the priority of this spcecific Multiple Spanning Tree Instance for this service. It is used as the highest 4 bits of the Bridge ID included in the MSTP BPDU's generated by this bridge. The tlsMstiPriority can only take-on values which multiples of 4096 (4k). If a value is specified which is not a multiple of 4K, then this value will be replaced by the closest multiple of 4K which is lower then the value entered.") tls_msti_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 4), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMstiLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsMstiLastMgmtChange.setDescription('The value of the object tlsMstiLastMgmtChange indicates the value of sysUpTime at the time of the most recent management-initiated change to this MSTI.') tls_msti_regional_root = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 5), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMstiRegionalRoot.setStatus('current') if mibBuilder.loadTexts: tlsMstiRegionalRoot.setDescription('The value of the object tlsMstiRegionalRoot indicates the bridge identifier of the regional root of the MSTI spanning tree as determined by the Spanning Tree Protocol instance associated with this service. This value is used as the CIST Regional Root Identifier parameter in all MSTP BPDUs originated by this node.') tls_msti_int_root_cost = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 6), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMstiIntRootCost.setStatus('current') if mibBuilder.loadTexts: tlsMstiIntRootCost.setDescription('The value of the object tlsMstiIntRootCost indicates the cost of the path to the regional root bridge as seen from this bridge.') tls_msti_remaining_hop_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 7), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMstiRemainingHopCount.setStatus('current') if mibBuilder.loadTexts: tlsMstiRemainingHopCount.setDescription('The value of the object tlsMstiRemainingHopCount specifies the remaining number of hops.') tls_msti_regional_root_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 12, 1, 8), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMstiRegionalRootPort.setStatus('current') if mibBuilder.loadTexts: tlsMstiRegionalRootPort.setDescription('The value of the object tlsMstiRegionalRootPort indicates the port number of the port which offers the lowest cost path from this bridge to the regional root bridge.') tls_msti_managed_vlan_list_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13)) if mibBuilder.loadTexts: tlsMstiManagedVlanListTable.setStatus('current') if mibBuilder.loadTexts: tlsMstiManagedVlanListTable.setDescription('This table is used only for a management VPLS when MSTP is running. It indicates for each multiple spanning tree instance the ranges of associated VLANs that will be affected when a certain SAP changes state.') tls_msti_managed_vlan_list_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiInstanceId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiMvplsMinVlanTag'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiMvplsMaxVlanTag')) if mibBuilder.loadTexts: tlsMstiManagedVlanListEntry.setStatus('current') if mibBuilder.loadTexts: tlsMstiManagedVlanListEntry.setDescription('Each row specifies a range of VLANS associated with a SAP of a MVPLS. Ranges may contains overlapping sections only for Mvpls SAPs that belong to the same service.') tls_msti_mvpls_min_vlan_tag = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 1), q_tag()) if mibBuilder.loadTexts: tlsMstiMvplsMinVlanTag.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsMinVlanTag.setDescription('The value of tlsMstiMvplsMinVlanTag specifies the left bound (i.e. min. value) of a range of VLANs that are associated with the Mvpls SAP. tlsMstiMvplsMinVlanTag must be smaller than (or equal to) tlsMstiMvplsMaxVlanTag.') tls_msti_mvpls_max_vlan_tag = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 2), q_tag()) if mibBuilder.loadTexts: tlsMstiMvplsMaxVlanTag.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsMaxVlanTag.setDescription('The value of tlsMstiMvplsMaxVlanTag specifies the right bound (i.e. max. value) of a range of VLANs that are associated with the Mvpls SAP.') tls_msti_mvpls_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 13, 1, 3), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsMstiMvplsRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsMstiMvplsRowStatus.setDescription("The value of tlsMstiMvplsRowStatus specifies the status of this row. The only values supported during a set operation are 'active', 'createAndGo' and 'destroy'.") tls_egress_multicast_group_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14)) if mibBuilder.loadTexts: tlsEgressMulticastGroupTable.setStatus('current') if mibBuilder.loadTexts: tlsEgressMulticastGroupTable.setDescription("This table is used to manage VPLS Egress Multicast Groups. These groups are used to group together VPLS SAP's in order to improve the efficiency of the egress multicast replication process.") tls_egress_multicast_group_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1)).setIndexNames((1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpName')) if mibBuilder.loadTexts: tlsEgressMulticastGroupEntry.setStatus('current') if mibBuilder.loadTexts: tlsEgressMulticastGroupEntry.setDescription('An entry containing management information applicable to a particular VPLS Egress Multicast Group.') tls_egr_mc_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 1), t_named_item()) if mibBuilder.loadTexts: tlsEgrMcGrpName.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpName.setDescription('The value of tlsEgrMcGrpName indicates the name of the Egress Multicast Group.') tls_egr_mc_grp_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpRowStatus.setDescription('The value of tlsEgrMcGrpRowStatus controls the creation and deletion of rows in this table.') tls_egr_mc_grp_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsEgrMcGrpLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpLastMgmtChange.setDescription('The value of tlsEgrMcGrpLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') tls_egr_mc_grp_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 4), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpDescription.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpDescription.setDescription('Generic information about this Egress Multicast Group.') tls_egr_mc_grp_chain_limit = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(16)).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpChainLimit.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpChainLimit.setDescription("The value of tlsEgrMcGrpChainLimit specifies the maximum number of SAP's that can be placed together in a single chain on this Egress Multicast Group.") tls_egr_mc_grp_encap_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 10))).clone(namedValues=named_values(('unknown', 0), ('nullEncap', 1), ('qEncap', 2), ('qinqEncap', 10))).clone('nullEncap')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpEncapType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpEncapType.setDescription("The value of tlsEgrMcGrpEncapType specifies the common service encapsulation type used by all the SAP's on this Egress Multicast Group.") tls_egr_mc_grp_dot1q_ether_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(1536, 65535)).clone(33024)).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpDot1qEtherType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpDot1qEtherType.setDescription("The value of tlsEgrMcGrpDot1qEtherType specifies the common ethertype value used by all the 802.1Q SAP's on this Egress Multicast Group.") tls_egr_mc_grp_mac_filter_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 8), t_filter_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpMacFilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpMacFilterId.setDescription("The value of tlsEgrMcGrpMacFilterId specifies the common egress MAC filter ID used by all the SAP's on this Egress Multicast Group.") tls_egr_mc_grp_ip_filter_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 9), t_filter_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpIpFilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpIpFilterId.setDescription("The value of tlsEgrMcGrpIpFilterId specifies the common egress IP filter ID used by all the SAP's on this Egress Multicast Group.") tls_egr_mc_grp_ipv6_filter_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 10), t_filter_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpIpv6FilterId.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpIpv6FilterId.setDescription("The value of tlsEgrMcGrpIpv6FilterId specifies the common egress IPv6 filter ID used by all the SAP's on this Egress Multicast Group.") tls_egr_mc_grp_qinq_ether_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(1536, 65535)).clone(33024)).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpQinqEtherType.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpQinqEtherType.setDescription("The value of tlsEgrMcGrpQinqEtherType specifies the common ethertype value used by all the 'QinQ' SAP's in this Egress Multicast Group.") tls_egr_mc_grp_qinq_fixed_tag_position = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('topTag', 2), ('bottomTag', 3))).clone('bottomTag')).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpQinqFixedTagPosition.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpQinqFixedTagPosition.setDescription("The value of tlsEgrMcGrpQinqFixedTagPosition specifies the common position of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group. This object has no meaning when the value of tlsEgrMcGrpEncapType is not 'qinqEncap'.") tls_egr_mc_grp_admin_qinq_fixed_tag_val = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 13), unsigned32().subtype(subtypeSpec=constraints_union(value_range_constraint(0, 0), value_range_constraint(1, 4094)))).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsEgrMcGrpAdminQinqFixedTagVal.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpAdminQinqFixedTagVal.setDescription("The value of tlsEgrMcGrpAdminQinqFixedTagVal specifies the provisioned common value of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group. The value 0 is used to indicate that the actual value of the fixed tag will be defined implicitly by the corresponding tag of the first SAP added to this Egress Multicast Group.") tls_egr_mc_grp_oper_qinq_fixed_tag_val = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 14, 1, 14), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsEgrMcGrpOperQinqFixedTagVal.setStatus('current') if mibBuilder.loadTexts: tlsEgrMcGrpOperQinqFixedTagVal.setDescription("The value of tlsEgrMcGrpOperQinqFixedTagVal specifies the operating common value of the fixed 802.1Q tag of all the 'QinQ' SAP's in this Egress Multicast Group.") svc_dhcp_lease_state_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16)) if mibBuilder.loadTexts: svcDhcpLeaseStateTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateTable.setDescription('A table that contains DHCP lease states.') svc_dhcp_lease_state_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateCiAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateCiAddr')) if mibBuilder.loadTexts: svcDhcpLeaseStateEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateEntry.setDescription('Information about a specific DHCP lease state.') svc_dhcp_lse_state_ci_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 1), inet_address_type()) if mibBuilder.loadTexts: svcDhcpLseStateCiAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddrType.setDescription('The value of svcDhcpLseStateCiAddrType indicates the address type of svcDhcpLseStateCiAddr.') svc_dhcp_lse_state_ci_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 2), inet_address()) if mibBuilder.loadTexts: svcDhcpLseStateCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddr.setDescription('The value of svcDhcpLseStateCiAddr indicates the IP address of the DHCP lease state.') svc_dhcp_lse_state_locale = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('sap', 1), ('sdp', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateLocale.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateLocale.setDescription('The value of svcDhcpLseStateLocale specifies if the DHCP lease state is learned via a SAP or SDP.') svc_dhcp_lse_state_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 4), tmnx_port_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePortId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePortId.setDescription("When the value of svcDhcpLseStateLocale is 'sap', the object svcDhcpLseStatePortId along with the object svcDhcpLseStateEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svc_dhcp_lse_state_encap_value = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 5), tmnx_encap_val()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateEncapValue.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateEncapValue.setDescription("When the value of svcDhcpLseStateLocale is 'sap', the object svcDhcpLseStatePortId along with the object svcDhcpLseStateEncapValue, indicates the SAP for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svc_dhcp_lse_state_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 6), sdp_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSdpId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSdpId.setDescription("When the value of svcDhcpLseStateLocale is 'sdp', the object svcDhcpLseStateSdpId, along with the object svcDhcpLseStateVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svc_dhcp_lse_state_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 7), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateVcId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateVcId.setDescription("When the value of svcDhcpLseStateLocale is 'sdp', the object svcDhcpLseStateSdpId, along with the object svcDhcpLseStateVcId, indicates the SDP Binding for which this entry contains information. This object is otherwise insignificant and contains the value 0.") svc_dhcp_lse_state_ch_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 8), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateChAddr.setDescription('The value of svcDhcpLseStateChAddr indicates the MAC address of the DHCP lease state.') svc_dhcp_lse_state_remain_lse_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 9), unsigned32()).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateRemainLseTime.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRemainLseTime.setDescription('The value of svcDhcpLseStateRemainLseTime indicates the remaining lease time of the DHCP lease state.') svc_dhcp_lse_state_option82 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 10), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateOption82.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOption82.setDescription('The value of svcDhcpLseStateOption82 indicates the content of option 82 for this DHCP lease state.') svc_dhcp_lse_state_persist_key = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 11), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePersistKey.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePersistKey.setDescription('The value of svcDhcpLseStatePersistKey indicates a key value that can be used to track this lease state in the persistence file.') svc_dhcp_lse_state_subscr_ident = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 12), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSubscrIdent.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSubscrIdent.setDescription('The value of svcDhcpLseStateSubscrIdent indicates the id of the parent subscriber of this DHCP lease state. The value of svcDhcpLseStateOriginSubscrId indicates whether this subscriber identification was received from the DHCP or from the Radius server.') svc_dhcp_lse_state_sub_prof_string = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 13), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSubProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSubProfString.setDescription('The value of svcDhcpLseStateSubProfString indicates the subscriber profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this subscriber profile string was received from the DHCP or from the Radius server.') svc_dhcp_lse_state_sla_prof_string = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 14), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSlaProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSlaProfString.setDescription('The value of svcDhcpLseStateSlaProfString indicates the SLA profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this SLA profile string was received from the DHCP or from the Radius server.') svc_dhcp_lse_state_shcv_oper_state = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('disabled', 1), ('undefined', 2), ('down', 3), ('up', 4)))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateShcvOperState.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvOperState.setDescription('The value of svcDhcpLseStateShcvOperState indicates the state of the subscriber host connectivity check for this DHCP lease state.') svc_dhcp_lse_state_shcv_checks = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 16), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateShcvChecks.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvChecks.setDescription('The value of svcDhcpLseStateShcvChecks indicates the number of host connectivity check requests for this DHCP lease state.') svc_dhcp_lse_state_shcv_replies = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 17), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplies.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplies.setDescription('The value of svcDhcpLseStateShcvReplies indicates the number of host connectivity replies for this DHCP lease state.') svc_dhcp_lse_state_shcv_reply_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 18), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplyTime.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateShcvReplyTime.setDescription('The value of svcDhcpLseStateShcvReplyTime indicates the time of the last successful host connectivity check for this DHCP lease state.') svc_dhcp_lse_state_client_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 19), octet_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateClientId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateClientId.setDescription('The value of svcDhcpLseStateClientId indicates the DHCPv6 clients unique identifier (DUID) as generated by the client.') svc_dhcp_lse_state_iaid = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 20), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateIAID.setReference('RFC 3315 section 10') if mibBuilder.loadTexts: svcDhcpLseStateIAID.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateIAID.setDescription('The value of svcDhcpLseStateIAID indicates the Identity Association ID (IAID) the address or prefix defined by svcDhcpLseStateCiAddr/svcDhcpLseStateCiAddrMaskLen has been assigned to. This object is only meaningful for DHCPv6 leases.') svc_dhcp_lse_state_iaid_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 21), iaid_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setReference('RFC 3315') if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateIAIDType.setDescription('The value of svcDhcpLseStateIAIDType indicates the type of svcDhcpLseStateIAID. This object is only meaningful for DHCPv6 leases.') svc_dhcp_lse_state_ci_addr_mask_len = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 22), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 128))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateCiAddrMaskLen.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateCiAddrMaskLen.setDescription('The value of svcDhcpLseStateCiAddrMaskLen indicates the prefix length of the svcDhcpLseStateCiAddr for a DHCPv6 lease.') svc_dhcp_lse_state_retailer_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 23), tmnx_serv_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateRetailerSvcId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRetailerSvcId.setDescription('The value of svcDhcpLseStateRetailerSvcId indicates the service ID of the retailer VPRN service to which this DHCP lease belongs. When this object is non zero, the DHCP lease belongs to a retailer VPRN.') svc_dhcp_lse_state_retailer_if = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 24), interface_index_or_zero()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateRetailerIf.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateRetailerIf.setDescription('The value of svcDhcpLseStateRetailerIf indicates the interface index of the retailer VPRN interface to which this DHCP lease belongs. When this object is non zero, the DHCP lease belongs to a retailer VPRN.') svc_dhcp_lse_state_ancp_string = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 25), display_string().subtype(subtypeSpec=value_size_constraint(1, 63))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateAncpString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateAncpString.setDescription('The object svcDhcpLseStateAncpString indicates the value of the ancp-string received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginStrings.') svc_dhcp_lse_state_framed_ip_net_mask_tp = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 26), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMaskTp.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMaskTp.setDescription('The value of svcDhcpLseStateFramedIpNetMaskTp indicates the address type of svcDhcpLseStateFramedIpNetMask.') svc_dhcp_lse_state_framed_ip_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 27), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMask.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateFramedIpNetMask.setDescription("The value of svcDhcpLseStateFramedIpNetMask indicates the framed IP netmask received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_b_cast_ip_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 28), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddrType.setDescription('The value of svcDhcpLseStateBCastIpAddrType indicates the address type of svcDhcpLseStateBCastIpAddr.') svc_dhcp_lse_state_b_cast_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 29), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateBCastIpAddr.setDescription("The value of svcDhcpLseStateBCastIpAddr indicates the broadcast IP address received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_default_router_tp = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 30), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouterTp.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouterTp.setDescription('The value of svcDhcpLseStateDefaultRouterTp indicates the address type of svcDhcpLseStateDefaultRouter.') svc_dhcp_lse_state_default_router = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 31), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouter.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDefaultRouter.setDescription("The value of svcDhcpLseStateDefaultRouter indicates the default router received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_primary_dns_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 32), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDnsType.setDescription('The value of svcDhcpLseStatePrimaryDnsType indicates the address type of svcDhcpLseStatePrimaryDns.') svc_dhcp_lse_state_primary_dns = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 33), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryDns.setDescription("The value of svcDhcpLseStatePrimaryDns indicates the primary DNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_secondary_dns_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 34), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDnsType.setDescription('The value of svcDhcpLseStateSecondaryDnsType indicates the address type of svcDhcpLseStateSecondaryDns.') svc_dhcp_lse_state_secondary_dns = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 35), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryDns.setDescription("The value of svcDhcpLseStateSecondaryDns indicates the secondary DNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_session_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 36), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSessionTimeout.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSessionTimeout.setDescription('The value of svcDhcpLseStateSessionTimeout indicates the session timeout received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo.') svc_dhcp_lse_state_server_lease_start = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 37), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseStart.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseStart.setDescription('The value of svcDhcpLseStateServerLeaseStart indicates when this lease was created.') svc_dhcp_lse_state_server_last_renew = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 38), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateServerLastRenew.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLastRenew.setDescription('The value of svcDhcpLseStateServerLastRenew indicates when we last received a renewal from either the DHCP or the Radius server.') svc_dhcp_lse_state_server_lease_end = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 39), date_and_time()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseEnd.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateServerLeaseEnd.setDescription('The value of svcDhcpLseStateServerLeaseEnd indicates when the server will consider the lease as being expired.') svc_dhcp_lse_state_dhcp_server_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 40), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddrType.setDescription('The value of svcDhcpLseStateDhcpServerAddrType indicates the address type of svcDhcpLseStateDhcpServerAddr.') svc_dhcp_lse_state_dhcp_server_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 41), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpServerAddr.setDescription("The value of svcDhcpLseStateDhcpServerAddr indicates the IP address of the DHCP server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_origin_subscr_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 42), dhcp_lse_state_info_origin()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateOriginSubscrId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginSubscrId.setDescription('The value of svcDhcpLseStateOriginSubscrId indicates which source provided the subscriber-id.') svc_dhcp_lse_state_origin_strings = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 43), dhcp_lse_state_info_origin()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateOriginStrings.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginStrings.setDescription('The value of svcDhcpLseStateOriginStrings indicates which server provided the Sub-profile, SLA profile, Ancp string and Intermediate Destination Id.') svc_dhcp_lse_state_origin_lease_info = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 44), dhcp_lse_state_info_origin()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateOriginLeaseInfo.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOriginLeaseInfo.setDescription('The value of svcDhcpLseStateOriginLeaseInfo indicates which server provided the lease state information.') svc_dhcp_lse_state_dhcp_client_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 45), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddrType.setDescription('The value of svcDhcpLseStateDhcpClientAddrType indicates the address type of svcDhcpLseStateDhcpClientAddr.') svc_dhcp_lse_state_dhcp_client_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 46), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateDhcpClientAddr.setDescription('The value of svcDhcpLseStateDhcpClientAddr indicates the IP address of the DHCP Client that owns the lease info. In some cases this address can be different from the address specified in svcDhcpLseStateCiAddr, e.g. in case of DHCPv6 prefix delegation.') svc_dhcp_lse_state_lease_split_active = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 47), truth_value()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateLeaseSplitActive.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateLeaseSplitActive.setDescription("The value of svcDhcpLseStateLeaseSplitActive indicates whether or not the current lease time resulted from a lease split. If svcDhcpLseStateLeaseSplitActive is 'true', the lease time passed to the client is determined by the value of the object sapTlsDhcpProxyLeaseTime for VPLS SAPs, or by the value of the object vRtrIfDHCPProxyLeaseTime for Layer 3 interfaces.") svc_dhcp_lse_state_inter_dest_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 48), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateInterDestId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateInterDestId.setDescription('The object svcDhcpLseStateInterDestId indicates the intermediate destination identifier received from either the DHCP or the Radius server or the local user database as indicated by the value of svcDhcpLseStateOriginStrings.') svc_dhcp_lse_state_primary_nbns_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 49), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbnsType.setDescription('The value of svcDhcpLseStatePrimaryNbnsType indicates the address type of svcDhcpLseStatePrimaryNbns.') svc_dhcp_lse_state_primary_nbns = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 50), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePrimaryNbns.setDescription("The value of svcDhcpLseStatePrimaryNbns indicates the primary NBNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_secondary_nbns_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 51), inet_address_type()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbnsType.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbnsType.setDescription('The value of svcDhcpLseStateSecondaryNbnsType indicates the address type of svcDhcpLseStateSecondaryNbns.') svc_dhcp_lse_state_secondary_nbns = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 52), inet_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbns.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateSecondaryNbns.setDescription("The value of svcDhcpLseStateSecondaryNbns indicates the secondary NBNS server received from either the DHCP or the Radius server as indicated by the value of svcDhcpLseStateOriginLeaseInfo. The value of this object is ''H when not applicable.") svc_dhcp_lse_state_app_prof_string = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 53), display_string()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateAppProfString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateAppProfString.setDescription('The value of svcDhcpLseStateAppProfString indicates the application profile string applicable for this DHCP lease state. The value of svcDhcpLseStateOriginStrings indicates whether this application profile string was received from DHCP or from the Radius server.') svc_dhcp_lse_state_next_hop_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 16, 1, 54), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpLseStateNextHopMacAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNextHopMacAddr.setDescription("The value of svcDhcpLseStateNextHopMacAddr indicates the MAC address of the next hop of this DHCP lease state. Normally, the next hop MAC address equals the value of svcDhcpLseStateChAddr. If the value of the object ALCATEL-IND1-TIMETRA-VRTR-MIB::vRtrIfDHCPLayer2Header is set to 'true', a routing device can be present between this node and the DHCP client. In that case, the value of the next hop MAC address contains the MAC address of this routing device.") tls_protected_mac_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17)) if mibBuilder.loadTexts: tlsProtectedMacTable.setStatus('current') if mibBuilder.loadTexts: tlsProtectedMacTable.setDescription("This table is used to manage protected MAC addresses within a VPLS's FDB.") tls_protected_mac_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsProtMacAddress')) if mibBuilder.loadTexts: tlsProtectedMacEntry.setStatus('current') if mibBuilder.loadTexts: tlsProtectedMacEntry.setDescription('An entry containing management information applicable to a particular protected MAC address.') tls_prot_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 1), mac_address()) if mibBuilder.loadTexts: tlsProtMacAddress.setStatus('current') if mibBuilder.loadTexts: tlsProtMacAddress.setDescription('The value of tlsProtMacAddress indicates the address of the protected MAC.') tls_prot_mac_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: tlsProtMacRowStatus.setStatus('current') if mibBuilder.loadTexts: tlsProtMacRowStatus.setDescription('The value of tlsProtMacRowStatus controls the creation and deletion of rows in this table.') tls_prot_mac_last_mgmt_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 17, 1, 3), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsProtMacLastMgmtChange.setStatus('current') if mibBuilder.loadTexts: tlsProtMacLastMgmtChange.setDescription('The value of tlsProtMacLastMgmtChange indicates the value of sysUpTime at the time of the last management change of any writable object of this row.') svc_dhcp_lease_state_modify_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18)) if mibBuilder.loadTexts: svcDhcpLeaseStateModifyTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateModifyTable.setDescription('The svcDhcpLeaseStateModifyTable augments the svcDhcpLeaseStateTable. The table allows the operator to modify attributes of the lease state.') svc_dhcp_lease_state_modify_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1)) svcDhcpLeaseStateEntry.registerAugmentions(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLeaseStateModifyEntry')) svcDhcpLeaseStateModifyEntry.setIndexNames(*svcDhcpLeaseStateEntry.getIndexNames()) if mibBuilder.loadTexts: svcDhcpLeaseStateModifyEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateModifyEntry.setDescription("Each row entry contains parameters that allow to modify a lease-state's attributes.") svc_dhcp_lse_state_modify_sub_indent = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 1), display_string().subtype(subtypeSpec=value_size_constraint(0, 32)).clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModifySubIndent.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySubIndent.setDescription('The value of svcDhcpLseStateModifySubIndent allows to specify a new subscriber name for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new subscriber name. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_dhcp_lse_state_modify_sub_profile = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModifySubProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySubProfile.setDescription('The value of svcDhcpLseStateModifySubProfile allows to specify a new subscriber profile string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new subscriber profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_dhcp_lse_state_modify_sla_profile = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModifySlaProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifySlaProfile.setDescription('The value of svcDhcpLseStateModifySlaProfile allows to specify a new SLA profile string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new SLA profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_dhcp_lse_state_evaluate_state = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 4), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateEvaluateState.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateEvaluateState.setDescription("The value of svcDhcpLseStateEvaluateState allows to cause a re-evaluation of the specified lease state. When this object is set to 'true', the system will perform a re-evaluation of the lease state. GETs and GETNEXTs on this variable return false. It is not possible to simultaneously request for a lease-state re-evaluation, and modify any of the svcDhcpLseStateModifySubIndent, svcDhcpLseStateModifySubProfile or svcDhcpLseStateModifySlaProfile values.") svc_dhcp_lse_state_mod_inter_dest_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 32)).clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModInterDestId.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModInterDestId.setDescription('The value of svcDhcpLseStateModInterDestId allows to specify a new intermediate destination id for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new intermediate destination id. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_dhcp_lse_state_modify_ancp_string = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 6), tmnx_ancp_string_or_zero().clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModifyAncpString.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifyAncpString.setDescription('The value of svcDhcpLseStateModifyAncpString allows to specify a new ANCP-string for this lease state. When a SET of this object is done with a non empty string, the system will attempt to assign a new ANCP-string. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_dhcp_lse_state_modify_app_profile = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 18, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 16)).clone(hexValue='')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateModifyAppProfile.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateModifyAppProfile.setDescription('The value of svcDhcpLseStateModifyAppProfile specifies a new application profile string for this lease state. When a SET of this object is done with a non empty string, the system assigns a new application profile. A SET with an empty string has no effect on the system. (NOOP). GETs and GETNEXTs on this variable return an empty string.') svc_end_point_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19)) if mibBuilder.loadTexts: svcEndPointTable.setStatus('current') if mibBuilder.loadTexts: svcEndPointTable.setDescription('The svcEndPointTable has an entry for each service endpoint configured on this system.') svc_end_point_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointName')) if mibBuilder.loadTexts: svcEndPointEntry.setStatus('current') if mibBuilder.loadTexts: svcEndPointEntry.setDescription('Each row entry represents a particular service endpoint. Entries are created/deleted by the user.') svc_end_point_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 1), t_named_item()) if mibBuilder.loadTexts: svcEndPointName.setStatus('current') if mibBuilder.loadTexts: svcEndPointName.setDescription('The value of svcEndPointName specifies the name of the service endpoint.') svc_end_point_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointRowStatus.setStatus('current') if mibBuilder.loadTexts: svcEndPointRowStatus.setDescription('The value of svcEndPointRowStatus is used for the creation and deletion of service endpoints.') svc_end_point_description = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 3), serv_obj_desc()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointDescription.setStatus('current') if mibBuilder.loadTexts: svcEndPointDescription.setDescription('The value of svcEndPointDescription specifies the textual description of this service endpoint.') svc_end_point_revert_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 4), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(-1, -1), value_range_constraint(0, 600)))).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointRevertTime.setStatus('current') if mibBuilder.loadTexts: svcEndPointRevertTime.setDescription("The value of svcEndPointRevertTime specifies the time to wait before reverting back to the primary spoke-sdp defined on this service endpoint, after having failed over to a backup spoke-sdp. When the value is '-1', the spoke-sdp will never revert back.") svc_end_point_tx_active_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('none', 0), ('sap', 1), ('sdpBind', 2)))).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveType.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveType.setDescription('The value of svcEndPointTxActiveType indicates the type of end-point object that is current transmit active. ') svc_end_point_tx_active_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 6), tmnx_port_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActivePortId.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActivePortId.setDescription("The value of svcEndPointTxActivePortId indicates the Port ID of the SAP that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sap'.") svc_end_point_tx_active_encap = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 7), tmnx_encap_val()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveEncap.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveEncap.setDescription("The value of svcEndPointTxActiveEncap indicates the encapsulation value of the SAP that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sap'.") svc_end_point_tx_active_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 8), sdp_bind_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveSdpId.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveSdpId.setDescription("The value of svcEndPointTxActiveSdpId indicates the SDP bind ID of the SDP bind that is transmit active. This object is only valid when svcEndPointTxActiveType is 'sdpBind'.") svc_end_point_force_switch_over = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 9), tmnx_action_type().clone('notApplicable')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointForceSwitchOver.setStatus('current') if mibBuilder.loadTexts: svcEndPointForceSwitchOver.setDescription("The value of svcEndPointForceSwitchOver specifies whether to force a switchover of the active SDP bind. When it is set to 'doAction', the SDP bind specified by svcEndPointForceSwitchOverSdpId will become active.") svc_end_point_force_switch_over_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 10), sdp_bind_id().clone(hexValue='0000000000000000')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointForceSwitchOverSdpId.setStatus('current') if mibBuilder.loadTexts: svcEndPointForceSwitchOverSdpId.setDescription("The value of svcEndPointForceSwitchOverSdpId specifies the SDP bind to switch over to when svcEndPointForceSwitchOver is set to 'doAction'. If the value of this object is non default, it indicates that a forced switchover has taken place. Setting this object to the default value clears any previous forced switchover. ") svc_end_point_active_hold_delay = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 11), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 60))).setUnits('deci-seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointActiveHoldDelay.setStatus('current') if mibBuilder.loadTexts: svcEndPointActiveHoldDelay.setDescription('The value of svcEndPointActiveHoldDelay specifies the amount of time in deci-seconds to hold the active state before going into the standby state when a local MC-LAG SAP goes down.') svc_end_point_ignore_standby_sig = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 12), truth_value().clone('false')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointIgnoreStandbySig.setStatus('current') if mibBuilder.loadTexts: svcEndPointIgnoreStandbySig.setDescription("The value of svcEndPointIgnoreStandbySig specifies whether the local internal tasks will take into account the 'pseudo-wire forwarding standby' bit received from the LDP peer which is normally ignored. When set to 'true', this bit is not considered in the internal tasks. A similar object sdpBindTlsIgnoreStandbySig is present at the SDP level. The value of sdpBindTlsIgnoreStandbySig is set to the value of svcEndPointIgnoreStandbySig for the spoke-SDP associated with this endpoint.") svc_end_point_mac_pinning = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 13), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointMacPinning.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacPinning.setDescription('The value of svcEndPointMacPinning specifies whether or not MAC address pinning is active on this end-point.') svc_end_point_mac_limit = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 196607))).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointMacLimit.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimit.setDescription("The value of the object svcEndPointMacLimit specifies the maximum number of learned and static entries allowed for this end-point. The value 0 means: no limit for this end-point. When the value of ALCATEL-IND1-TIMETRA-CHASSIS-MIB::tmnxChassisOperMode is not 'c', the maximum value of svcEndPointMacLimit is '131071'.") svc_end_point_suppress_standby_sig = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 15), truth_value().clone('true')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEndPointSuppressStandbySig.setStatus('current') if mibBuilder.loadTexts: svcEndPointSuppressStandbySig.setDescription("The value of the object svcEndPointSuppressStandbySig specifies whether the 'pseudo wire forwarding standby' bit will be sent to the LDP peer whenever the spoke SDP 'svcEndPointTxActiveSdpId' is selected as standby. When set to 'true', this bit will not be sent.") svc_end_point_revert_time_count_dn = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 16), integer32().subtype(subtypeSpec=constraints_union(value_range_constraint(-1, -1), value_range_constraint(0, 600)))).setUnits('seconds').setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointRevertTimeCountDn.setStatus('current') if mibBuilder.loadTexts: svcEndPointRevertTimeCountDn.setDescription('The value of svcEndPointRevertTimeCountDn indicates the timer count down before reverting back to the primary spoke-sdp defined on this service endpoint, after having failed over to a backup spoke-sdp. This timer count down begins after primary Spoke SDP becomes operational. The value of -1 indicates when revert is not-applicable.') svc_end_point_tx_active_change_count = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 17), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveChangeCount.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveChangeCount.setDescription('The value of svcEndPointTxActiveChangeCount indicates the number of times active transmit change has taken place in this endpoint.') svc_end_point_tx_active_last_change = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 18), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveLastChange.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveLastChange.setDescription('The value of svcEndPointTxActiveLastChange indicates the value of sysUpTime at the time of the last active transmit change in this endpoint.') svc_end_point_tx_active_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 19, 1, 19), time_ticks()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEndPointTxActiveUpTime.setStatus('current') if mibBuilder.loadTexts: svcEndPointTxActiveUpTime.setDescription("The value of svcEndPointTxActiveUpTime indicates the active 'up' time (in hundredths of a second) of the end-point object that is current transmit active.") ies_grp_if_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21)) if mibBuilder.loadTexts: iesGrpIfTable.setStatus('current') if mibBuilder.loadTexts: iesGrpIfTable.setDescription('The iesGrpIfTable has entry for each group interface configured on this system.') ies_grp_if_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex')) if mibBuilder.loadTexts: iesGrpIfEntry.setStatus('current') if mibBuilder.loadTexts: iesGrpIfEntry.setDescription("Each row entry represents the attributes of a group interface. Entries are create/destroyed when entries in iesIfEntry with iesIfType 'group' are created/destroyed.") ies_grp_if_red_interface = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1, 1), interface_index_or_zero()).setMaxAccess('readwrite') if mibBuilder.loadTexts: iesGrpIfRedInterface.setStatus('current') if mibBuilder.loadTexts: iesGrpIfRedInterface.setDescription("The value of iesGrpIfRedInterface specifies the ifIndex of the redundant interface this group interface is tied to. The interface pointed to by this object must be of type 'redundant'.") ies_grp_if_oper_up_while_empty = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 21, 1, 2), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: iesGrpIfOperUpWhileEmpty.setStatus('current') if mibBuilder.loadTexts: iesGrpIfOperUpWhileEmpty.setDescription("The value of iesGrpIfOperUpWhileEmpty specifies the whether that operational status of the the IES group interface, as indicated by iesIfOperStatus, should have a value of 'up' even when there are no SAPs on the group interface. If the value of iesGrpIfOperUpWhileEmpty is 'true', the value of iesIfOperStatus for the IES group interface will be 'up' when there are no SAPs on the group interface. When the value of iesGrpIfOperUpWhileEmpty is 'false', the value of iesIfOperStatus will depend on the operational state of the SAPs on the group interface. The value of iesGrpIfOperUpWhileEmpty will be ignored when there are SAPs on the IES group interface.") svc_pe_discovery_policy_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22)) if mibBuilder.loadTexts: svcPEDiscoveryPolicyTable.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyTable.setDescription('The svcPEDiscoveryPolicyTable has an entry for each PE policy.') svc_pe_discovery_policy_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1)).setIndexNames((1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyName')) if mibBuilder.loadTexts: svcPEDiscoveryPolicyEntry.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyEntry.setDescription('svcPEDiscoveryPolicyEntry is an entry (conceptual row) in the svcPEDiscoveryPolicyTable. Each entry represents the configuration of a PE Discovery Policy. Entries in this table can be created and deleted via SNMP SET operations to svcPEDiscoveryPolicyRowStatus.') svc_pe_discovery_policy_name = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 1), t_named_item()) if mibBuilder.loadTexts: svcPEDiscoveryPolicyName.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyName.setDescription('The value of the object svcPEDiscoveryPolicyName specifies the RADIUS PE Discovery Policy name.') svc_pe_discovery_policy_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscoveryPolicyRowStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyRowStatus.setDescription("svcPEDiscoveryPolicyRowStatus controls the creation and deletion of rows in the table. To create a row in the svcPEDiscoveryPolicyTable, set svcPEDiscoveryPolicyRowStatus to 'createAndGo'. All objects will take on default values and the agent will change svcPEDiscoveryPolicyRowStatus to 'active'. To delete a row in the svcPEDiscoveryPolicyTable, set svcPEDiscoveryPolicyRowStatus to 'delete'.") svc_pe_discovery_policy_password = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 3), octet_string().subtype(subtypeSpec=value_size_constraint(0, 32)).clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscoveryPolicyPassword.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyPassword.setDescription('The value of svcPEDiscoveryPolicyPassword specifies the password that is used when contacting the RADIUS server for VPLS auto-discovery. The value of svcPEDiscPolServerSecret cannot be set to an empty string. GETs and GETNEXTs on this variable return an empty string.') svc_pe_discovery_policy_interval = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(5)).setUnits('minutes').setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscoveryPolicyInterval.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyInterval.setDescription('The value of svcPEDiscoveryPolicyInterval specifies the polling interval for Radius PE discovery in minutes.') svc_pe_discovery_policy_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 22, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 90)).clone(3)).setUnits('seconds').setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscoveryPolicyTimeout.setStatus('current') if mibBuilder.loadTexts: svcPEDiscoveryPolicyTimeout.setDescription('The value of svcPEDiscoveryPolicyTimeout specifies the number of seconds to wait before timing out a RADIUS server.') svc_pe_disc_pol_server_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23)) if mibBuilder.loadTexts: svcPEDiscPolServerTable.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerTable.setDescription('The svcPEDiscPolServerTable has an entry for each RADIUS server. The table can have up to a maximum of 5 entries.') svc_pe_disc_pol_server_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerIndex'), (1, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyName')) if mibBuilder.loadTexts: svcPEDiscPolServerEntry.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerEntry.setDescription('svcPEDiscPolServerEntry is an entry (conceptual row) in the svcPEDiscPolServerTable. Each entry represents the configuration for a RADIUS server. Entries in this table can be created and deleted via SNMP SET operations to svcPEDiscPolServerRowStatus.') svc_pe_disc_pol_server_index = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 5))) if mibBuilder.loadTexts: svcPEDiscPolServerIndex.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerIndex.setDescription('The svcPEDiscPolServerIndex indicates the unique value which identifies a specific radius server.') svc_pe_disc_pol_server_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 2), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscPolServerRowStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerRowStatus.setDescription("svcPEDiscPolServerRowStatus controls the creation and deletion of rows in the table. To create a row in the svcPEDiscPolServerTable, set svcPEDiscPolServerRowStatus to 'createAndGo'. All objects except svcPEDiscPolServerSecret will take on default values and the agent will change svcPEDiscPolServerRowStatus to 'active'. A value for svcPEDiscPolServerSecret must be always specified or else the row creation will fail. To delete a row in the svcPEDiscPolServerTable, set tmnxRadiusServerRowStatus to 'delete'.") svc_pe_disc_pol_server_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 3), inet_address_type().clone('unknown')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscPolServerAddressType.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerAddressType.setDescription('The value of svcPEDiscPolServerAddressType is used to configure the address type of svcPEDiscPolServerAddress address.') svc_pe_disc_pol_server_address = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 4), inet_address().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscPolServerAddress.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerAddress.setDescription('The value of svcPEDiscPolServerAddress is used to configure the IP address of the RADIUS server.') svc_pe_disc_pol_server_secret = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(0, 20))).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscPolServerSecret.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerSecret.setDescription('The svcPEDiscPolServerSecret is used to configure the secret key associated with the RADIUS server. The value of svcPEDiscPolServerSecret cannot be set to an empty string. GETs and GETNEXTs on this variable return an empty string.') svc_pe_disc_pol_server_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 6), service_oper_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcPEDiscPolServerOperStatus.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerOperStatus.setDescription('The svcPEDiscPolServerOperStatus indicates the current status of the RADIUS server.') svc_pe_disc_pol_server_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 23, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 65535)).clone(1812)).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcPEDiscPolServerPort.setStatus('current') if mibBuilder.loadTexts: svcPEDiscPolServerPort.setDescription('The svcPEDiscPolServerPort is used to configure the UDP port number on which to contact the RADIUS server.') svc_wholesaler_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24)) if mibBuilder.loadTexts: svcWholesalerInfoTable.setStatus('current') if mibBuilder.loadTexts: svcWholesalerInfoTable.setDescription('The svcWholesalerInfoTable has an entry for each wholesaler service associated with a retailer service on this system.') svc_wholesaler_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcWholesalerID')) if mibBuilder.loadTexts: svcWholesalerInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcWholesalerInfoEntry.setDescription('Each row entry represents the attributes of a wholesaler-retailer pairing. Entries are created/destroyed when forwarding interfaces are defined.') svc_wholesaler_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 1), tmnx_serv_id()) if mibBuilder.loadTexts: svcWholesalerID.setStatus('current') if mibBuilder.loadTexts: svcWholesalerID.setDescription('The value of svcWholesalerID is used to specify the service ID of the wholesaler.') svc_wholesaler_num_static_hosts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 2), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcWholesalerNumStaticHosts.setStatus('current') if mibBuilder.loadTexts: svcWholesalerNumStaticHosts.setDescription('The value of svcWholesalerNumStaticHosts indicates the number of static hosts in the wholesaler indicated by svcWholesalerID that belong to subnets of the retailer service.') svc_wholesaler_num_dynamic_hosts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 24, 1, 3), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcWholesalerNumDynamicHosts.setStatus('current') if mibBuilder.loadTexts: svcWholesalerNumDynamicHosts.setDescription('The value of svcWholesalerNumDynamicHosts indicates the number of dynamic hosts in the wholesaler indicated by svcWholesalerID that belong to subnets of the retailer service.') svc_dhcp_lease_state_action_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25)) if mibBuilder.loadTexts: svcDhcpLeaseStateActionTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateActionTable.setDescription('The svcDhcpLeaseStateActionTable augments the svcDhcpLeaseStateTable. The table allows the operator to perform actions on the lease state.') svc_dhcp_lease_state_action_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25, 1)) svcDhcpLeaseStateEntry.registerAugmentions(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLeaseStateActionEntry')) svcDhcpLeaseStateActionEntry.setIndexNames(*svcDhcpLeaseStateEntry.getIndexNames()) if mibBuilder.loadTexts: svcDhcpLeaseStateActionEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpLeaseStateActionEntry.setDescription('Each row entry contains parameters that allow to perform an action on the corresponding lease-state.') svc_dhcp_lse_state_force_renew = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 25, 1, 1), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcDhcpLseStateForceRenew.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateForceRenew.setDescription("The value of svcDhcpLseStateForceRenew allows to force the DHCP client to renew its lease. When the value of this object is set to 'true', the system will send a forcerenew DHCP message to the client. GETs and GETNEXTs on this variable return false.") svc_if_dhcp6_msg_stat_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26)) if mibBuilder.loadTexts: svcIfDHCP6MsgStatTable.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatTable.setDescription('The vRtrDHCP6MsgStatTable has an entry for each interface defined in a service for which DHCP6 can be enabled.') svc_if_dhcp6_msg_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex')) if mibBuilder.loadTexts: svcIfDHCP6MsgStatEntry.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatEntry.setDescription('Each row entry represents a collection of counters for each DHCP6 message type for an interface in a service. Entries cannot be created and deleted via SNMP SET operations.') svc_if_dhcp6_msg_stats_lst_clrd = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 1), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsLstClrd.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsLstClrd.setDescription('The value of svcIfDHCP6MsgStatsLstClrd indicates the sysUpTime when the counters of this row were last reset. A value of zero for this object indicates that the counters have not been reset since the system has last been initialized.') svc_if_dhcp6_msg_stats_rcvd = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 2), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsRcvd.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsRcvd.setDescription('The value of svcIfDHCP6MsgStatsRcvd indicates the number of DHCP6 packets were received on this service interface.') svc_if_dhcp6_msg_stats_sent = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 3), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsSent.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsSent.setDescription('The value of svcIfDHCP6MsgStatsSent indicates the number of DHCP6 packets were sent on this service interface.') svc_if_dhcp6_msg_stats_dropped = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 26, 1, 4), gauge32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsDropped.setStatus('current') if mibBuilder.loadTexts: svcIfDHCP6MsgStatsDropped.setDescription('The value of svcIfDHCP6MsgStatsDropped indicates the number of DHCP6 packets were dropped on this service interface.') svc_tls_backbone_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27)) if mibBuilder.loadTexts: svcTlsBackboneInfoTable.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneInfoTable.setDescription('The svcTlsBackboneInfoTable augments the svcTlsInfoTable. The table allows the operator to modify attributes of the Provider Backbone Bridging feature.') svc_tls_backbone_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1)) svcTlsInfoEntry.registerAugmentions(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneInfoEntry')) svcTlsBackboneInfoEntry.setIndexNames(*svcTlsInfoEntry.getIndexNames()) if mibBuilder.loadTexts: svcTlsBackboneInfoEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneInfoEntry.setDescription('Each row entry contains objects that allows the modification of the Provider Backbone Bridging feature for a specific TLS service') svc_tls_backbone_src_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 1), mac_address().clone(hexValue='000000000000')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsBackboneSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneSrcMac.setDescription("The value of svcTlsBackboneSrcMac specifies the Backbone Source MAC-Address for Provider Backbone Bridging packets. If not provisioned, it defaults to the loopback chassis MAC-Address. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'bVpls'.") svc_tls_backbone_vpls_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 2), tmnx_serv_id()).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcId.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcId.setDescription("The value of svcTlsBackboneVplsSvcId specifies the Backbone-VPLS service associated with this service. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'. Setting the value of this object to its default value will also set the value of svcTlsBackboneVplsStp to its default value.") svc_tls_backbone_vpls_svc_isid = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 3), svc_isid().clone(-1)).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcISID.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsSvcISID.setDescription("The value of the object svcTlsBackboneVplsSvcISID specifies a 24 bit (0..16777215) service instance identifier for this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. The default value of -1 is used to indicate the value of this object is un-specified. This object must be set along with svcTlsBackboneVplsSvcId. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'.") svc_tls_backbone_oper_src_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 4), mac_address()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsBackboneOperSrcMac.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneOperSrcMac.setDescription('The value of svcTlsBackboneOperSrcMac indicates the operational Backbone Source MAC-Address for Provider Backbone Bridging packets.') svc_tls_backbone_oper_vpls_svc_isid = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 5), svc_isid()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsBackboneOperVplsSvcISID.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneOperVplsSvcISID.setDescription('The value of svcTlsBackboneOperVplsSvcISID indicates operational value of service instance identifier used for this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field.') svc_tls_backbone_ldp_mac_flush = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 6), truth_value().clone('false')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsBackboneLDPMacFlush.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneLDPMacFlush.setDescription("The value of svcTlsBackboneLDPMacFlush specifies whether 'LDP MAC withdraw all from me' message received in the 'iVpls' domain should attempt to generate a new 'LDP MAC withdraw all from me' message in the 'bVpls' domain. Generation of the 'LDP MAC withdraw all from me' message is still constrained by the svcTlsMacFlushOnFail value in the 'bVpls'. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls'.") svc_tls_backbone_vpls_stp = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 27, 1, 7), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readwrite') if mibBuilder.loadTexts: svcTlsBackboneVplsStp.setStatus('current') if mibBuilder.loadTexts: svcTlsBackboneVplsStp.setDescription("The value of svcTlsBackboneVplsStp specifies whether STP is enabled on the Backbone VPLS specified by svcTlsBackboneVplsSvcId. An inconsistentValue error is returned if an attempt is made to set this object when the value of svcVplsType is not 'iVpls' or if an attempt is made to set this object to enable when the value of svcTlsBackboneVplsSvcId is set to the default. The value of this object is set to disable when the value of svcTlsBackboneVplsSvcId is set to default.") tls_m_fib_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28)) if mibBuilder.loadTexts: tlsMFibTable.setStatus('current') if mibBuilder.loadTexts: tlsMFibTable.setDescription('tlsMFibTable contains the Multicast FIB for this Tls.') tls_m_fib_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibEntryType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpMacAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpInetAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpInetAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibSrcInetAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibSrcInetAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibLocale'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibPortId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibEncapValue'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibSdpId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibVcId')) if mibBuilder.loadTexts: tlsMFibEntry.setStatus('current') if mibBuilder.loadTexts: tlsMFibEntry.setDescription('An entry in the tlsMFibTable. Each entry indicates whether traffic from a certain source to a certain multicast destination (group) needs to be forwarded or blocked on the indicated SAP/SDP.') tls_m_fib_entry_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipBased', 1), ('macBased', 2)))) if mibBuilder.loadTexts: tlsMFibEntryType.setStatus('current') if mibBuilder.loadTexts: tlsMFibEntryType.setDescription('The value of the object tlsMFibEntryType indicates the type of this tlsMFibEntry. - macBased: entry used for macBased multicast, as for MLD-snooping and 802.1ak MMRP. - ipBased: entry used for ip_based multicast, as for IGMP-snooping and PIM-snooping.') tls_m_fib_grp_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 2), mac_address()) if mibBuilder.loadTexts: tlsMFibGrpMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpMacAddr.setDescription("The value of the object tlsMFibGrpMacAddr indicates the MAC address for which this table entry contains information. This value is only meaningful if the value of tlsMFibEntryType is 'macBased (2)'.") tls_m_fib_grp_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 3), inet_address_type()) if mibBuilder.loadTexts: tlsMFibGrpInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpInetAddrType.setDescription('The value of the object tlsMFibGrpInetAddrType indicates the type of tlsMFibGrpInetAddr.') tls_m_fib_grp_inet_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(16, 16)))) if mibBuilder.loadTexts: tlsMFibGrpInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibGrpInetAddr.setDescription('The value of the object tlsMFibGrpInetAddr indicates the multicast destination IP address for which this table entry contains information.') tls_m_fib_src_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 5), inet_address_type()) if mibBuilder.loadTexts: tlsMFibSrcInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibSrcInetAddrType.setDescription('The value of tlsMFibSrcInetAddrType indicates the type of tlsMFibSrcInetAddr.') tls_m_fib_src_inet_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(16, 16)))) if mibBuilder.loadTexts: tlsMFibSrcInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibSrcInetAddr.setDescription('The value of tlsMFibSrcInetAddr indicates the unicast source IP address for which this table entry contains information.') tls_m_fib_locale = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 7), mfib_location()) if mibBuilder.loadTexts: tlsMFibLocale.setStatus('current') if mibBuilder.loadTexts: tlsMFibLocale.setDescription("The value of tlsMFibLocale indicates if the information in this entry pertains to a 'sap' or to an 'sdp'.") tls_m_fib_port_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 8), tmnx_port_id()) if mibBuilder.loadTexts: tlsMFibPortId.setStatus('current') if mibBuilder.loadTexts: tlsMFibPortId.setDescription("The value of tlsMFibPortId indicates, together with the object tlsMFibEncapValue, the SAP for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sap'. Otherwise it contains the value 0.") tls_m_fib_encap_value = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 9), tmnx_encap_val()) if mibBuilder.loadTexts: tlsMFibEncapValue.setStatus('current') if mibBuilder.loadTexts: tlsMFibEncapValue.setDescription("The value of tlsMFibEncapValue indicates, together with the object tlsMFibPortId, the SAP for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sap'. Otherwise it contains the value 0.") tls_m_fib_sdp_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 10), sdp_id()) if mibBuilder.loadTexts: tlsMFibSdpId.setStatus('current') if mibBuilder.loadTexts: tlsMFibSdpId.setDescription("The value of tlsMFibSdpId indicates, together with the object tlsMFibVcId, the SDP Binding for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sdp'. Otherwise it contains the value 0.") tls_m_fib_vc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 11), unsigned32()) if mibBuilder.loadTexts: tlsMFibVcId.setStatus('current') if mibBuilder.loadTexts: tlsMFibVcId.setDescription(" The value of tlsMFibVcId indicates, together with the object tlsMFibSdpId, the SDP Binding for which this entry contains information. This value of this object is only meaningful when the value of tlsMFibLocale is 'sdp'. Otherwise it contains the value 0.") tls_m_fib_fwd_or_blk = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 12), mfib_grp_src_fwd_or_blk()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibFwdOrBlk.setStatus('current') if mibBuilder.loadTexts: tlsMFibFwdOrBlk.setDescription('The value of tlsMFibFwdOrBlk indicates if traffic for the indicated (S,G) pair will be blocked or forwarded on the indicated SAP or SDP.') tls_m_fib_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 28, 1, 13), tmnx_serv_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibSvcId.setStatus('current') if mibBuilder.loadTexts: tlsMFibSvcId.setDescription('The value of tlsMFibSvcId indicates the TLS service to which the indicated SAP or SDP belongs.') tls_m_fib_stats_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29)) if mibBuilder.loadTexts: tlsMFibStatsTable.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsTable.setDescription('tlsMFibStatsTable contains statistics for the entries in the IPv4 Multicast FIB for this Tls. These statistics are collected by the forwarding engine.') tls_m_fib_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsEntryType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsGrpMacAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsGrpInetAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsGrpInetAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsSrcInetAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsSrcInetAddr')) if mibBuilder.loadTexts: tlsMFibStatsEntry.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsEntry.setDescription('An entry in the tlsMFibStatsTable.') tls_m_fib_stats_entry_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipBased', 1), ('macBased', 2)))) if mibBuilder.loadTexts: tlsMFibStatsEntryType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsEntryType.setDescription('The value of the object tlsMFibStatsEntryType indicates the type of this tlsMFibStatsEntry. - macBased: entry used for macBased multicast, as for MLD-snooping and 802.1ak MMRP. - ipBased: entry used for ip_based multicast, as for IGMP-snooping and PIM-snooping.') tls_m_fib_stats_grp_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 2), mac_address()) if mibBuilder.loadTexts: tlsMFibStatsGrpMacAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpMacAddr.setDescription("The value of tlsMFibStatsGrpMacAddr indicates the MAC address for which this table entry contains information. This value is only meaningful if the value of tlsMFibStatsEntryType is 'macBased (2)'.") tls_m_fib_stats_grp_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 3), inet_address_type()) if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddrType.setDescription('The value of tlsMFibStatsGrpInetAddrType indicates the type of tlsMFibStatsGrpInetAddr.') tls_m_fib_stats_grp_inet_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 4), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(16, 16)))) if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsGrpInetAddr.setDescription('The value of tlsMFibStatsGrpInetAddr indicates the multicast destination IP address for which this table entry contains information.') tls_m_fib_stats_src_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 5), inet_address_type()) if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddrType.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddrType.setDescription('The value of tlsMFibStatsSrcInetAddrType indicates the type of tlsMFibStatsSrcInetAddr.') tls_m_fib_stats_src_inet_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 6), inet_address().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(4, 4), value_size_constraint(16, 16)))) if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddr.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsSrcInetAddr.setDescription('The value of tlsMFibStatsSrcInetAddr indicates the unicast source IP address for which this table entry contains information.') tls_m_fib_stats_forwarded_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 7), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibStatsForwardedPkts.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsForwardedPkts.setDescription('The value of tlsMFibStatsForwardedPkts indicates the number of multicast packets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') tls_m_fib_stats_forwarded_octets = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 29, 1, 8), counter64()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsMFibStatsForwardedOctets.setStatus('current') if mibBuilder.loadTexts: tlsMFibStatsForwardedOctets.setDescription('The value of tlsMFibStatsForwardedOctets indicates the number of octets that were forwarded to the SAPs and SDPs listed in the tlsMFibInfoTable.') svc_tls_bgp_ad_table_last_changed = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 30), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsBgpADTableLastChanged.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADTableLastChanged.setDescription('The value of svcTlsBgpADTableLastChanged indicates the sysUpTime at the time of the last modification of svcTlsBgpADTable. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svc_tls_bgp_ad_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31)) if mibBuilder.loadTexts: svcTlsBgpADTable.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADTable.setDescription('svcTlsBgpADTable contains entries for BGP Auto-Discovery in a VPLS service context.') svc_tls_bgp_ad_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: svcTlsBgpADEntry.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADEntry.setDescription('A BGP Auto-Discovery entry in the svcTlsBgpADTable.') svc_tls_bgp_ad_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 1), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADRowStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADRowStatus.setDescription('The value of svcTlsBgpADRowStatus is used for the creation and deletion of BGP Auto-Discovery context in a VPLS service.') svc_tls_bgp_ad_last_changed = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 2), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTlsBgpADLastChanged.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADLastChanged.setDescription('The value of svcTlsBgpADLastChanged indicates the sysUpTime at the time of the last modification of this entry. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svc_tls_bgp_ad_vpls_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 3), tmnx_vpn_route_distinguisher().clone(hexValue='0000000000000000')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVplsId.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVplsId.setDescription("The value of svcTlsBgpADVplsId specifies the globally unique VPLS-id for BGP Auto-Discovery in this VPLS service. The value of svcTlsBgpADAdminStatus cannot be 'enabled' until a VPLS-id has been assigned which is not all zeros.") svc_tls_bgp_ad_vsi_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 4), unsigned32()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiPrefix.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiPrefix.setDescription('The value of svcTlsBgpADVsiPrefix specifies the low-order 4 bytes used to compose the Virtual Switch Instance identifier (VSI-id) to use for NLRI in BGP Auto-Discovery in this VPLS service. If the value of svcTlsBgpADVsiPrefix is 0, the system IP address will be used.') svc_tls_bgp_ad_vsi_rd = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 5), tmnx_vpn_route_distinguisher().clone(hexValue='0000000000000000')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiRD.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiRD.setDescription('The value of svcTlsBgpADVsiRD specifies the high-order 6 bytes used to compose the Virtual Switch Instance identifier (VSI-id) to use for NLRI in BGP Auto-Discovery in this VPLS service. If the value of svcTlsBgpADVsiRD is 0x0000000000000000, the lower 6 bytes of the VPLS-id, as specified by svcTlsBgpADVplsId, will be used.') svc_tls_bgp_ad_export_rte_target = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 6), t_named_item_or_empty()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADExportRteTarget.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADExportRteTarget.setDescription("The value of svcTlsBgpADExportRteTarget specifies the extended community name for the default export policy to use for BGP Auto-Discovery in this VPLS service. This object cannot be set to a non-empty if svcTlsBgpADExportRteTarget has a non-empty value, otherwise an 'inconsistentValue' error will be returned.") svc_tls_bgp_ad_vsi_export_policy1 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 7), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy1.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy1.setDescription("The value of svcTlsBgpADVsiExportPolicy1 specifies the name of the first VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_export_policy2 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 8), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy2.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy2.setDescription("The value of svcTlsBgpADVsiExportPolicy2 specifies the name of the second VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_export_policy3 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 9), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy3.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy3.setDescription("The value of svcTlsBgpADVsiExportPolicy3 specifies the name of the third VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_export_policy4 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 10), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy4.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy4.setDescription("The value of svcTlsBgpADVsiExportPolicy4 specifies the name of the forth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_export_policy5 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 11), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy5.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiExportPolicy5.setDescription("The value of svcTlsBgpADVsiExportPolicy5 specifies the name of the fifth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiExportPolicy1 through svcTlsBgpADVsiExportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_import_rte_target = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 12), t_named_item_or_empty()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADImportRteTarget.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADImportRteTarget.setDescription("The value of svcTlsBgpADImportRteTarget specifies the extended community name for the default import policy to use for BGP Auto-Discovery in this VPLS service. This object cannot be set to a non-empty if svcTlsBgpADImportRteTarget has a non-empty value, otherwise an 'inconsistentValue' error will be returned.") svc_tls_bgp_ad_vsi_import_policy1 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 13), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy1.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy1.setDescription("The value of svcTlsBgpADVsiImportPolicy1 specifies the name of the first VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_import_policy2 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 14), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy2.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy2.setDescription("The value of svcTlsBgpADVsiImportPolicy2 specifies the name of the second VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_import_policy3 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 15), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy3.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy3.setDescription("The value of svcTlsBgpADVsiImportPolicy3 specifies the name of the third VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_import_policy4 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 16), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy4.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy4.setDescription("The value of svcTlsBgpADVsiImportPolicy4 specifies the name of the forth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_vsi_import_policy5 = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 17), t_policy_statement_name_or_empty().clone(hexValue='')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy5.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADVsiImportPolicy5.setDescription("The value of svcTlsBgpADVsiImportPolicy5 specifies the name of the fifth VSI export policy to be used for BGP Auto-Discovery in this VPLS service. If multiple policy names are specified, the policies are evaluated in the order they are specified. The first policy that matches is applied. The import policy name list, svcTlsBgpADVsiImportPolicy1 through svcTlsBgpADVsiImportPolicy5, is handled by the SNMP agent as a single entity. When an SNMP SET request is received to modify one or more of the policy names, all the policy variables are first set to the empty string, ''H, and then the new names are set into the specified policy variables within a single SNMP SET PDU.") svc_tls_bgp_ad_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 31, 1, 18), tmnx_enabled_disabled().clone('disabled')).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcTlsBgpADAdminStatus.setStatus('current') if mibBuilder.loadTexts: svcTlsBgpADAdminStatus.setDescription('The value of svcTlsBgpADAdminStatus specifies the desired administrative state for BGP Auto-Discovery in this VPLS service.') svc_epipe_pbb_table_last_changed = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 36), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEpipePbbTableLastChanged.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbTableLastChanged.setDescription('The value of svcEpipePbbTableLastChanged indicates the sysUpTime at the time of the last modification of svcEpipePbbTable. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svc_epipe_pbb_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37)) if mibBuilder.loadTexts: svcEpipePbbTable.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbTable.setDescription("The svcEpipePbbTable contains objects related to Provider Backbone Bridging (PBB) feature as relates to 'epipe' services. Entries are created and destroyed using svcEpipePbbRowStatus object.") svc_epipe_pbb_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: svcEpipePbbEntry.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbEntry.setDescription("Each row entry contains objects that allows the modification of the PBB objects for an 'epipe' service.") svc_epipe_pbb_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 1), row_status()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEpipePbbRowStatus.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbRowStatus.setDescription('The value of svcEpipePbbRowStatus is used for the creation and deletion of Provider Backbone Bridging information in a EPIPE service. To create an entry in the table, svcEpipePbbBvplsSvcId, svcEpipePbbBvplsDstMac, svcEpipePbbSvcISID objects must be set.') svc_epipe_pbb_last_chngd = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 2), time_stamp()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcEpipePbbLastChngd.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbLastChngd.setDescription('The value of svcEpipePbbLastChngd indicates the sysUpTime at the time of the last modification of this entry. If no changes were made to the entry since the last re-initialization of the local network management subsystem, then this object contains a zero value.') svc_epipe_pbb_bvpls_svc_id = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 3), tmnx_serv_id()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEpipePbbBvplsSvcId.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbBvplsSvcId.setDescription('The value of svcEpipePbbBvplsSvcId specifies the Backbone-VPLS service for the PBB tunnel associated with this service. This object must be set at the creation time and can not be modified later.') svc_epipe_pbb_bvpls_dst_mac = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 4), mac_address()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEpipePbbBvplsDstMac.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbBvplsDstMac.setDescription('The value of svcEpipePbbBvplsDstMac specifies the Backbone Destination MAC-Address for Provider Backbone Bridging packets. This object must be set along with svcEpipePbbBvplsSvcId.') svc_epipe_pbb_svc_isid = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 37, 1, 5), svc_isid()).setMaxAccess('readcreate') if mibBuilder.loadTexts: svcEpipePbbSvcISID.setStatus('current') if mibBuilder.loadTexts: svcEpipePbbSvcISID.setDescription('The value of the object svcEpipePbbSvcISID specifies a 24 bit (0..16777215) service instance identifier for the PBB tunnel associated with this service. As part of the Provider Backbone Bridging frames, it is used at the destination PE as a demultiplexor field. This object must be set along with svcEpipePbbBvplsSvcId.') tls_pip_info_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40)) if mibBuilder.loadTexts: tlsPipInfoTable.setStatus('current') if mibBuilder.loadTexts: tlsPipInfoTable.setDescription("A table that contains TLS PIP (Provider Internal Port) uplink information. PIP is the virtual link between I and B components of PBB (Provider Backbone Bridging) model. I component refers to a service with svcVplsType set to 'iVpls (3)' and B component refers to a service with svcVplsType set to 'bVpls (2)'. When any form of STP is enabled in the iVpls domain, the PIP uplink is modeled as a regular STP port.") tls_pip_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: tlsPipInfoEntry.setStatus('current') if mibBuilder.loadTexts: tlsPipInfoEntry.setDescription('TLS specific information about PIP uplink.') tls_pip_stp_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 1), t_stp_port_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpPortState.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortState.setDescription("The value of tlsPipStpPortState indicates the PIP uplink's current state as defined by application of the Spanning Tree Protocol. This state controls what action PIP uplink takes on reception of a frame. If the bridge has detected a port that is malfunctioning it will place that port into the 'broken (6)' state.") tls_pip_stp_port_role = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 2), stp_port_role()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpPortRole.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortRole.setDescription('The value of tlsPipStpPortRole indicates the current role of the PIP uplink as defined by the Rapid Spanning Tree Protocol.') tls_pip_stp_designated_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 3), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpDesignatedBridge.setStatus('current') if mibBuilder.loadTexts: tlsPipStpDesignatedBridge.setDescription("The value of tlsPipStpDesignatedBridge indicates the Bridge Identifier of the bridge which this PIP uplink considers to be the Designated Bridge for this port's segment.") tls_pip_stp_designated_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpDesignatedPort.setStatus('current') if mibBuilder.loadTexts: tlsPipStpDesignatedPort.setDescription("The value of tlsPipStpDesignatedPort indicates the Port Identifier of the port on the Designated Bridge for this port's segment.") tls_pip_stp_exception = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 5), stp_exception_condition()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpException.setStatus('current') if mibBuilder.loadTexts: tlsPipStpException.setDescription('The value of the object tlsPipStpException indicates whether an STP exception condition is present on this Pip. - none : no exception condition found. - oneWayCommuniation : The neighbor RSTP peer on this link is not able to detect our presence. - downstreamLoopDetected :A loop is detected on this link.') tls_pip_stp_forward_transitions = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 6), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpForwardTransitions.setStatus('current') if mibBuilder.loadTexts: tlsPipStpForwardTransitions.setDescription('The value of the object tlsPipStpForwardTransitions indicates the number of times this port has transitioned from the Learning state to the Forwarding state.') tls_pip_stp_in_config_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 7), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpInConfigBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInConfigBpdus.setDescription('The value of the object tlsPipStpInConfigBpdus indicates the number of Configuration BPDUs received on this PIP uplink.') tls_pip_stp_in_tcn_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 8), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpInTcnBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInTcnBpdus.setDescription('The value of the object tlsPipStpInTcnBpdus indicates the number of Topology Change Notification BPDUs received on this PIP uplink.') tls_pip_stp_in_rst_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 9), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpInRstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInRstBpdus.setDescription('The value of the object tlsPipStpInRstBpdus indicates the number of Rapid Spanning Tree (RST) BPDUs received on this PIP uplink.') tls_pip_stp_in_mst_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 10), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpInMstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInMstBpdus.setDescription('The value of the object tlsPipStpInMstBpdus indicates the number of Multiple Spanning Tree (MST) BPDUs received on this PIP uplink.') tls_pip_stp_in_bad_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 11), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpInBadBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpInBadBpdus.setDescription('This object specifies the number of bad BPDUs received on this PIP uplink.') tls_pip_stp_out_config_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 12), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOutConfigBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutConfigBpdus.setDescription('The value of the object tlsPipStpOutConfigBpdus indicates the number of Configuration BPDUs sent out this PIP uplink.') tls_pip_stp_out_tcn_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 13), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOutTcnBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutTcnBpdus.setDescription('This object specifies the number of Topology Change Notification BPDUs sent out this PIP uplink.') tls_pip_stp_out_rst_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 14), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOutRstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutRstBpdus.setDescription('The value of the object tlsPipStpOutRstBpdus indicates the number of Rapid Spanning Tree (RST) BPDUs sent out on this PIP uplink.') tls_pip_stp_out_mst_bpdus = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 15), counter32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOutMstBpdus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOutMstBpdus.setDescription('The value of the object tlsPipStpOutMstBpdus indicates the number of Multiple Spanning Tree (MST) BPDUs sent out on this PIP uplink.') tls_pip_stp_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 16), service_oper_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOperStatus.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOperStatus.setDescription('The value of the object tlsPipStpOperStatus indicates the operational status of this PIP uplink.') tls_pip_stp_mvpls_prune_state = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 17), mvpls_prune_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpMvplsPruneState.setStatus('current') if mibBuilder.loadTexts: tlsPipStpMvplsPruneState.setDescription('The value of tlsPipStpMvplsPruneState indicates the mVPLS prune state of this PIP uplink. The state reflects whether or not this uplink is pruned by the STP instance running in the mVPLS instance.') tls_pip_stp_oper_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 18), stp_protocol()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpOperProtocol.setStatus('current') if mibBuilder.loadTexts: tlsPipStpOperProtocol.setDescription("The value of tlsPipStpOperProtocol indicates whether 'stp', 'rstp' or 'mstp' is running on this PIP uplink. If the protocol is not enabled on this PIP uplink, the value 'notApplicable' is returned.") tls_pip_stp_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 40, 1, 19), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4094))).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipStpPortNum.setStatus('current') if mibBuilder.loadTexts: tlsPipStpPortNum.setDescription('The value of the object tlsPipStpPortNum specifies the value of the port number field which is contained in the least significant 12 bits of the 16-bit Port ID associated with this PIP uplink.') tls_pip_msti_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41)) if mibBuilder.loadTexts: tlsPipMstiTable.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiTable.setDescription('This table contains Multiple Spanning Tree Instance information for the PIP uplink. Each management VPLS running MSTP can have upto 15 MSTI. An entry in this table is automatically created when a tlsMstiEntry is created.') tls_pip_msti_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiInstanceId')) if mibBuilder.loadTexts: tlsPipMstiEntry.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiEntry.setDescription('Information about a specific MSTI for a PIP uplink.') tls_pip_msti_port_role = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 1), stp_port_role()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipMstiPortRole.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiPortRole.setDescription('tlsPipMstiPortRole indicates the current role of the PIP uplink in the MSTI as defined by the Spanning Tree Protocol.') tls_pip_msti_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 2), t_stp_port_state()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipMstiPortState.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiPortState.setDescription("The value of the object tlsPipMstiPortState indicates the port's current state as defined by application of the Spanning Tree Protocol. This state controls what action a port takes on reception of a frame. If the bridge has detected a port that is malfunctioning it will place that port into the broken(6) state.") tls_pip_msti_designated_bridge = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 3), bridge_id()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipMstiDesignatedBridge.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiDesignatedBridge.setDescription("The value of the object tlsPipMstiDesignatedBridge indicates the Bridge Identifier of the bridge which this port considers to be the Designated Bridge for this port's segment for this MSTI.") tls_pip_msti_designated_port = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 41, 1, 4), integer32()).setMaxAccess('readonly') if mibBuilder.loadTexts: tlsPipMstiDesignatedPort.setStatus('current') if mibBuilder.loadTexts: tlsPipMstiDesignatedPort.setDescription("The value of the object tlsPipMstiDesignatedPort indicates the Port Identifier of the port on the Designated Bridge for this port's segment for this MSTI.") svc_total_fdb_mim_dest_idx_entries = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 42), unsigned32()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcTotalFdbMimDestIdxEntries.setStatus('current') if mibBuilder.loadTexts: svcTotalFdbMimDestIdxEntries.setDescription('The value of the object svcTotalFdbMimDestIdxEntries indicates the number of system wide Backbone MAC address indices in use.') svc_dhcp_managed_route_table = mib_table((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43)) if mibBuilder.loadTexts: svcDhcpManagedRouteTable.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteTable.setDescription('A table that contains DHCP managed routes.') svc_dhcp_managed_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1)).setIndexNames((0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateCiAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateCiAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpManagedRouteInetAddrType'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpManagedRouteInetAddr'), (0, 'ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpManagedRoutePrefixLen')) if mibBuilder.loadTexts: svcDhcpManagedRouteEntry.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteEntry.setDescription('A specific DHCP managed route.') svc_dhcp_managed_route_inet_addr_type = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 1), inet_address_type()) if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddrType.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddrType.setDescription('The value of svcDhcpManagedRouteInetAddrType indicates the address type of svcDhcpManagedRouteInetAddr.') svc_dhcp_managed_route_inet_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 2), inet_address()) if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteInetAddr.setDescription('The value of svcDhcpManagedRouteInetAddr indicates the IP address of the managed route.') svc_dhcp_managed_route_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 3), inet_address_prefix_length().subtype(subtypeSpec=value_range_constraint(0, 32))) if mibBuilder.loadTexts: svcDhcpManagedRoutePrefixLen.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRoutePrefixLen.setDescription('The value of svcDhcpManagedRoutePrefixLen indicates the prefix length of the subnet associated with svcDhcpManagedRouteInetAddr.') svc_dhcp_managed_route_status = mib_table_column((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 2, 43, 1, 4), tmnx_managed_route_status()).setMaxAccess('readonly') if mibBuilder.loadTexts: svcDhcpManagedRouteStatus.setStatus('current') if mibBuilder.loadTexts: svcDhcpManagedRouteStatus.setDescription('The value of svcDhcpManagedRouteStatus indicates the state of this managed route.') mac_pinning_mac_address = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 1), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: macPinningMacAddress.setStatus('current') if mibBuilder.loadTexts: macPinningMacAddress.setDescription('The value of the object macPinningMacAddress indicates the pinned MAC address.') mac_pinning_pinned_row = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 2), row_pointer()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: macPinningPinnedRow.setStatus('current') if mibBuilder.loadTexts: macPinningPinnedRow.setDescription('The value of the object macPinningPinnedRow indicates where the MAC address is currently pinned on. Its value will be the OID of the first accessible object in the row of the sapTlsInfoTable or in the sdpBindTable, depending on whether the MAC address is pinned on a SAP or a SDP Bind.') mac_pinning_pinned_row_descr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 3), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: macPinningPinnedRowDescr.setStatus('current') if mibBuilder.loadTexts: macPinningPinnedRowDescr.setDescription('The value of the object macPinningPinnedRowDescr indicates where the MAC address is currently pinned on. The value will either be a SAP-id or a SDP id, presented in readable format, depending on whether the MAC is pinned to a SAP or a SDP.') mac_pinning_violating_row = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 4), row_pointer()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: macPinningViolatingRow.setStatus('current') if mibBuilder.loadTexts: macPinningViolatingRow.setDescription('The value of the object macPinningViolatingRow indicates where the MAC address relearn attempt was detected. Its value will be the OID of the first accessible object in the row of the sapTlsInfoTable or in the sdpBindTable, depending on whether the MAC address is pinned on a SAP or a SDP Bind.') mac_pinning_violating_row_descr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 5), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: macPinningViolatingRowDescr.setStatus('current') if mibBuilder.loadTexts: macPinningViolatingRowDescr.setDescription('The value of the object macPinningViolatingRowDescr indicates where the MAC address relearn attempt was detected. The value will either be a SAP-id or a SDP id, presented in readable format, depending on whether the MAC address relearn attempt was detected on a SAP or a SDP.') tls_dhcp_client_lease = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 6), integer32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDHCPClientLease.setStatus('obsolete') if mibBuilder.loadTexts: tlsDHCPClientLease.setDescription('The value of the object tlsDHCPClientLease indicates the lease time specified in the PDU causing the trap. Used by tmnxVRtrDHCPAFEntriesExceeded to report the lease time. This object was made obsolete in the 4.0 release.') tls_dhcp_lse_state_old_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 7), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpLseStateOldCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateOldCiAddr.setDescription('The value of the object tlsDhcpLseStateOldCiAddr indicates the Client IP address that was formerly assigned to this Least state. Used in sapTlsDHCPLeaseStateOverride trap. This object was made obsolete in the 4.0 release.') tls_dhcp_lse_state_old_ch_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 8), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpLseStateOldChAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateOldChAddr.setDescription('The value of the object tlsDhcpLseStateOldChAddr indicates the Client MAC address that was formerly assigned to this Least state. Used in sapTlsDHCPLeaseStateOverride trap. This object was made obsolete in the 4.0 release.') tls_dhcp_lse_state_new_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 9), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpLseStateNewCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateNewCiAddr.setDescription('The value of the object tlsDhcpLseStateNewCiAddr indicates the Client IP address specified in the PDU causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_lse_state_new_ch_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 10), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpLseStateNewChAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStateNewChAddr.setDescription('The value of the object tlsDhcpLseStateNewChAddr indicates the Client MAC address specified in the PDU causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_restore_lse_state_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 11), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateCiAddr.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateCiAddr.setDescription('The value of the object tlsDhcpRestoreLseStateCiAddr indicates the IP address specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_restore_lse_state_svc_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 12), tmnx_serv_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateSvcId.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateSvcId.setDescription('The value of the object tlsDhcpRestoreLseStateSvcId indicates the serviceId specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_restore_lse_state_port_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 13), tmnx_port_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpRestoreLseStatePortId.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStatePortId.setDescription('The value of the object tlsDhcpRestoreLseStatePortId indicates the Port ID specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_restore_lse_state_encap_val = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 14), tmnx_encap_val()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateEncapVal.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateEncapVal.setDescription('The value of the object tlsDhcpRestoreLseStateEncapVal indicates the SAP encap value specified in the persistency record causing the trap. This object was made obsolete in the 4.0 release.') tls_dhcp_restore_lse_state_problem = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 15), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateProblem.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpRestoreLseStateProblem.setDescription('The value of the object tlsDhcpRestoreLseStateProblem indicates why the persistency record cannot be restored. This object was made obsolete in the 4.0 release.') tls_dhcp_packet_problem = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 16), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpPacketProblem.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpPacketProblem.setDescription('The value of the object tlsDhcpPacketProblem indicates information on a received DHCP packet is considered suspicious by the system. This object was made obsolete in the 4.0 release.') tls_dhcp_lse_state_populate_error = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 17), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tlsDhcpLseStatePopulateError.setStatus('obsolete') if mibBuilder.loadTexts: tlsDhcpLseStatePopulateError.setDescription('The value of the object tlsDhcpLseStatePopulateError indicates why the system was unable to update the Lease State Table upon reception of a DHCP ACK message. This object was made obsolete in the 4.0 release.') svc_dhcp_restore_lse_state_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 18), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpRestoreLseStateCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpRestoreLseStateCiAddr.setDescription('The value of the object svcDhcpRestoreLseStateCiAddr indicates the IP address specified in the persistency record causing the trap.') svc_dhcp_restore_lse_state_problem = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 19), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpRestoreLseStateProblem.setStatus('current') if mibBuilder.loadTexts: svcDhcpRestoreLseStateProblem.setDescription('The value of the object svcDhcpRestoreLseStateProblem indicates why the persistency record cannot be restored.') svc_dhcp_lse_state_old_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 20), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpLseStateOldCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOldCiAddr.setDescription('The value of the object svcDhcpLseStateOldCiAddr indicates the client IP address that was formerly assigned to the specified DHCP lease state.') svc_dhcp_lse_state_old_ch_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 21), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpLseStateOldChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateOldChAddr.setDescription('The value of the object svcDhcpLseStateOldChAddr indicates the client MAC address that was formerly assigned to the specified DHCP lease state.') svc_dhcp_lse_state_new_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 22), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpLseStateNewCiAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNewCiAddr.setDescription('The value of the object svcDhcpLseStateNewCiAddr indicates the client IP address specified in the DHCP PDU causing the trap.') svc_dhcp_lse_state_new_ch_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 23), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpLseStateNewChAddr.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStateNewChAddr.setDescription('The value of the object svcDhcpLseStateNewChAddr indicates the client MAC address specified in the DHCP PDU causing the trap.') svc_dhcp_client_lease = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 24), integer32()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpClientLease.setStatus('current') if mibBuilder.loadTexts: svcDhcpClientLease.setDescription('The value of the object svcDhcpClientLease indicates the lease time specified in the DHCP PDU causing the trap.') svc_dhcp_packet_problem = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 25), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpPacketProblem.setStatus('current') if mibBuilder.loadTexts: svcDhcpPacketProblem.setDescription('The value of the object svcDhcpPacketProblem indicates information on a received DHCP packet that is considered suspicious by the system.') svc_dhcp_lse_state_populate_error = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 26), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpLseStatePopulateError.setStatus('current') if mibBuilder.loadTexts: svcDhcpLseStatePopulateError.setDescription('The value of the object svcDhcpLseStatePopulateError indicates the reason why the system was unable to update the Lease State table upon reception of a DHCP ACK message.') host_connectivity_ci_addr_type = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 27), inet_address_type()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: hostConnectivityCiAddrType.setStatus('current') if mibBuilder.loadTexts: hostConnectivityCiAddrType.setDescription('The value of the object hostConnectivityCiAddrType indicates the client address type causing the trap.') host_connectivity_ci_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 28), inet_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: hostConnectivityCiAddr.setStatus('current') if mibBuilder.loadTexts: hostConnectivityCiAddr.setDescription('The value of the object hostConnectivityCiAddr indicates the client INET address causing the trap.') host_connectivity_ch_addr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 29), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: hostConnectivityChAddr.setStatus('current') if mibBuilder.loadTexts: hostConnectivityChAddr.setDescription('The value of the object hostConnectivityChAddr indicates the client MAC address causing the trap.') protected_mac_for_notify = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 30), mac_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: protectedMacForNotify.setStatus('current') if mibBuilder.loadTexts: protectedMacForNotify.setDescription('The value of the object protectedMacForNotify indicates the protected MAC address that was received, causing the sapReceivedProtSrcMac notification.') static_host_dynamic_mac_ip_address = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 31), ip_address()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: staticHostDynamicMacIpAddress.setStatus('current') if mibBuilder.loadTexts: staticHostDynamicMacIpAddress.setDescription('The value of the object staticHostDynamicMacIpAddress indicates the IP address of the static host for which the sapStaticHostDynMacConflict notification is generated.') static_host_dynamic_mac_conflict = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 32), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: staticHostDynamicMacConflict.setStatus('current') if mibBuilder.loadTexts: staticHostDynamicMacConflict.setDescription('The value of the object staticHostDynamicMacConflict indicates the reason causing the sapStaticHostDynMacConflict notification.') tmnx_svc_obj_row = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 33), row_pointer()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxSvcObjRow.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjRow.setDescription('The value of the object tmnxSvcObjRow indicates the object that has failed to perform the set action requested by the Time-Of-Day Suite. Its value will be the OID of the first accessible object in the row of the sapBaseInfoTable or in the custMultiServiceSiteTable, depending on whether the object is a SAP or a Customer Multi-Service Site.') tmnx_svc_obj_row_descr = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 34), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxSvcObjRowDescr.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjRowDescr.setDescription('The value of the object tmnxSvcObjRowDescr indicates the object that has failed to perform the set action requested by the Time-Of-Day Suite. The value will either be a SAP-id or a Customer Multi-Service Site id, presented in readable format, depending on whether the object is a SAP or a Customer Multi-Service Site.') tmnx_svc_obj_tod_suite = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 35), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxSvcObjTodSuite.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjTodSuite.setDescription('The value of the object tmnxSvcObjTodSuite indicates the name of the involved ToD Suite.') tmnx_failure_description = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 36), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxFailureDescription.setStatus('current') if mibBuilder.loadTexts: tmnxFailureDescription.setDescription('The value of the object tmnxFailureDescription is a printable character string which contains information about the reason why the notification is sent.') svc_dhcp_proxy_error = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 37), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpProxyError.setStatus('current') if mibBuilder.loadTexts: svcDhcpProxyError.setDescription('The value of the object svcDhcpProxyError indicates the reason why the proxy server failed to operate.') svc_dhcp_co_a_error = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 38), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpCoAError.setStatus('current') if mibBuilder.loadTexts: svcDhcpCoAError.setDescription('The value of the object svcDhcpCoAError indicates the reason why the node failed to process a Change of Authorization (CoA) request from a Radius server.') svc_dhcp_sub_auth_error = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 39), display_string()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcDhcpSubAuthError.setStatus('current') if mibBuilder.loadTexts: svcDhcpSubAuthError.setDescription('The value of the object svcDhcpSubAuthError is a printable character string which contains information about the problem that occurred while trying to authenticate the subscriber.') svc_tls_mrp_attr_reg_failed_reason = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('unknown', 1), ('attribute-limit-reached', 2), ('system-attr-limit-reached', 3), ('unsupported-attribute', 4), ('mfib-entry-create-failed', 5)))).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcTlsMrpAttrRegFailedReason.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrRegFailedReason.setDescription('The value of the object svcTlsMrpAttrRegFailedReason indicates the reason for MRP attribute registration failure.') svc_tls_mrp_attr_type = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 41), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcTlsMrpAttrType.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrType.setDescription('The value of the object svcTlsMrpAttrType indicates the type of MRP attribute.') svc_tls_mrp_attr_value = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 42), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcTlsMrpAttrValue.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrValue.setDescription('The value of the object svcTlsMrpAttrValue indicates the value of MRP attribute.') svc_msti_instance_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 6, 43), msti_instance_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: svcMstiInstanceId.setStatus('current') if mibBuilder.loadTexts: svcMstiInstanceId.setDescription('The value of the object svcMstiInstanceId indicates the Multiple Spanning Tree Instance.') svc_created = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 1)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcType')) if mibBuilder.loadTexts: svcCreated.setStatus('obsolete') if mibBuilder.loadTexts: svcCreated.setDescription('This trap is sent when a new row is created in the svcBaseInfoTable.') svc_deleted = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 2)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcDeleted.setStatus('obsolete') if mibBuilder.loadTexts: svcDeleted.setDescription('This trap is sent when an existing row is deleted from the svcBaseInfoTable.') svc_status_changed = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 3)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcOperStatus')) if mibBuilder.loadTexts: svcStatusChanged.setStatus('current') if mibBuilder.loadTexts: svcStatusChanged.setDescription('The svcStatusChanged notification is generated when there is a change in the administrative or operating status of a service.') svc_tls_fdb_table_full_alarm_raised = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 4)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmRaised.setDescription('The svcTlsFdbTableFullAlarmRaised notification is generated when the utilization of the FDB table is above the value specified by svcTlsFdbTableFullHighWatermark.') svc_tls_fdb_table_full_alarm_cleared = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 5)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsFdbTableFullAlarmCleared.setDescription('The svcTlsFdbTableFullAlarmCleared notification is generated when the utilization of the FDB table is below the value specified by svcTlsFdbTableFullLowWatermark.') ies_if_created = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 6)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex')) if mibBuilder.loadTexts: iesIfCreated.setStatus('obsolete') if mibBuilder.loadTexts: iesIfCreated.setDescription('The iesIfCreated notification is generated when a new row is created in the iesIfTable.') ies_if_deleted = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 7)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex')) if mibBuilder.loadTexts: iesIfDeleted.setStatus('obsolete') if mibBuilder.loadTexts: iesIfDeleted.setDescription('The iesIfDeleted notification is sent when an existing row is deleted from the iesIfTable.') ies_if_status_changed = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 8)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfOperStatus')) if mibBuilder.loadTexts: iesIfStatusChanged.setStatus('current') if mibBuilder.loadTexts: iesIfStatusChanged.setDescription('The iesIfStatusChanged notification is generated when there is a change in the administrative or operating status of an IES interface.') svc_tls_mfib_table_full_alarm_raised = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 9)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmRaised.setDescription('The svcTlsMfibTableFullAlarmRaised notification is generated when the utilization of the MFIB table is above the value specified by svcTlsMfibTableFullHighWatermark.') svc_tls_mfib_table_full_alarm_cleared = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 10)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsMfibTableFullAlarmCleared.setDescription('The svcTlsMfibTableFullAlarmCleared notification is generated when the utilization of the MFIB table is below the value specified by svcTlsMfibTableFullLowWatermark.') svc_tls_mac_pinning_violation = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 11)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningMacAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningPinnedRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningPinnedRowDescr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningViolatingRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningViolatingRowDescr')) if mibBuilder.loadTexts: svcTlsMacPinningViolation.setStatus('current') if mibBuilder.loadTexts: svcTlsMacPinningViolation.setDescription('The svcTlsMacPinningViolation notification is generated when an attempt is made to assign a MAC address to another interface while this MAC address is pinned (i.e. assigned fixed to an interface).') svc_tls_dhcp_lse_st_restore_problem = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 12)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStatePortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateEncapVal'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateProblem')) if mibBuilder.loadTexts: svcTlsDHCPLseStRestoreProblem.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsDHCPLseStRestoreProblem.setDescription('The svcTlsDHCPLseStRestoreProblem notification is generated when an an error is detected while processing a persistency record.') svc_tls_dhcp_lse_state_populate_err = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 13)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStatePopulateError')) if mibBuilder.loadTexts: svcTlsDHCPLseStatePopulateErr.setStatus('obsolete') if mibBuilder.loadTexts: svcTlsDHCPLseStatePopulateErr.setDescription('The svcTlsDHCPLseStatePopulateErr notification indicates that the system was unable to update the Lease State Table with the information contained in the DHCP ACK message. The DHCP ACK message has been discarded.') svc_dhcp_lse_state_restore_problem = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 14)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpRestoreLseStateCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpRestoreLseStateProblem')) if mibBuilder.loadTexts: svcDHCPLseStateRestoreProblem.setStatus('current') if mibBuilder.loadTexts: svcDHCPLseStateRestoreProblem.setDescription('The svcDHCPLseStateRestoreProblem notification is generated when an an error is detected while processing a persistency record.') tmnx_svc_obj_tod_suite_applic_failed = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 15)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjRowDescr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjTodSuite'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxFailureDescription')) if mibBuilder.loadTexts: tmnxSvcObjTodSuiteApplicFailed.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObjTodSuiteApplicFailed.setDescription('The tmnxSvcObjTodSuiteApplicFailed notification is generated when the object has failed to perform the set action requested by the Time-Of-Day Suite. The object can be either a SAP or a Customer Multi-Service Site.') tmnx_end_point_tx_active_changed = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 16)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActivePortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveEncap'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveSdpId')) if mibBuilder.loadTexts: tmnxEndPointTxActiveChanged.setStatus('current') if mibBuilder.loadTexts: tmnxEndPointTxActiveChanged.setDescription('The tmnxEndPointTxActiveChanged notification is generated when the transmit active object on an endpoint changes.') tmnx_svc_pe_disc_pol_serv_oper_stat_chg = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 17)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerAddressType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerOperStatus')) if mibBuilder.loadTexts: tmnxSvcPEDiscPolServOperStatChg.setStatus('current') if mibBuilder.loadTexts: tmnxSvcPEDiscPolServOperStatChg.setDescription("The tmnxSvcPEDiscPolServOperStatChg notification is generated when the operational status of a Radius server, configured for use as PE Discovery Policy Server, has transitioned either from 'up' to 'down' or from 'down' to 'up'.") svc_end_point_mac_limit_alarm_raised = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 18)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacLimit')) if mibBuilder.loadTexts: svcEndPointMacLimitAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimitAlarmRaised.setDescription('The svcEndPointMacLimitAlarmRaised notification is sent whenever the number of MAC addresses stored in the FDB for this endpoint exceeds the watermark specified by the object svcTlsFdbTableFullHighWatermark. This alarm also takes into consideration static MAC addresses configured on the endpoint and learned MAC addresses in all spokes associated with this endpoint.') svc_end_point_mac_limit_alarm_cleared = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 19)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacLimit')) if mibBuilder.loadTexts: svcEndPointMacLimitAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcEndPointMacLimitAlarmCleared.setDescription('The svcEndPointMacLimitAlarmCleared notification is sent whenever the number of MAC addresses stored in the FDB for this endpoint drops below the watermark specified by the object svcTlsFdbTableFullLowWatermark. This alarm also takes into consideration static MAC addresses configured on the endpoint and learned MAC addresses in all spokes associated with this endpoint.') svc_tls_mrp_attr_registration_failed = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 20)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrRegFailedReason'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrValue')) if mibBuilder.loadTexts: svcTlsMrpAttrRegistrationFailed.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrRegistrationFailed.setDescription('The svcTlsMrpAttrRegistrationFailed notification is generated when registration fails for an MRP attribute.') svc_fdb_mim_dest_tbl_full_alrm = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 21)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTotalFdbMimDestIdxEntries')) if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrm.setStatus('current') if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrm.setDescription('The svcFdbMimDestTblFullAlrm notification is raised when system limit of Backbone MAC address indices limit is reached. Further traps are not generated as long as the value of svcTotalFdbMimDestIdxEntries object remains under 5 percent of the limit.') svc_fdb_mim_dest_tbl_full_alrm_cleared = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 22)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTotalFdbMimDestIdxEntries')) if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrmCleared.setStatus('current') if mibBuilder.loadTexts: svcFdbMimDestTblFullAlrmCleared.setDescription('The svcFdbMimDestTblFullAlrmCleared notification is raised when number of Backbone MAC address indices used reaches under 95 percent of the system limit after svcFdbMimDestTblFullAlrm notification had been raised.') svc_dhcp_miscellaneous_problem = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 23)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxFailureDescription')) if mibBuilder.loadTexts: svcDHCPMiscellaneousProblem.setStatus('current') if mibBuilder.loadTexts: svcDHCPMiscellaneousProblem.setDescription('The svcDHCPMiscellaneousProblem notification is generated on miscellaneous DHCP problems.') svc_persistency_problem = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 24)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxFailureDescription')) if mibBuilder.loadTexts: svcPersistencyProblem.setStatus('current') if mibBuilder.loadTexts: svcPersistencyProblem.setDescription('The svcPersistencyProblem notification is generated on persistency problems.') svc_tls_mrp_attr_tbl_full_alarm_raised = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 25)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmRaised.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmRaised.setDescription('The svcTlsMrpAttrTblFullAlarmRaised notification is generated when the utilization of the MRP attribute table is above the value specified by svcTlsMrpAttrTblHighWatermark.') svc_tls_mrp_attr_tbl_full_alarm_cleared = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 2, 0, 26)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId')) if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmCleared.setStatus('current') if mibBuilder.loadTexts: svcTlsMrpAttrTblFullAlarmCleared.setDescription('The svcTlsMrpAttrTblFullAlarmCleared notification is generated when the utilization of the MRP attribute table is below the value specified by svcTlsMrpAttrTblLowWatermark.') tmnx_customer_bridge_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 1), bridge_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxCustomerBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxCustomerBridgeId.setDescription("tmnxCustomerBridgeId specifies the bridge identifier of the customer's device ") tmnx_customer_root_bridge_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 2), bridge_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxCustomerRootBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxCustomerRootBridgeId.setDescription("tmnxCustomerRootBridgeId specifies the bridge identifier of the customer's designated root.") tmnx_other_bridge_id = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 3), bridge_id()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxOtherBridgeId.setStatus('current') if mibBuilder.loadTexts: tmnxOtherBridgeId.setDescription('tmnxOtherBridgeId specifies the bridge identifier of the device from which a BPDU was received.') tmnx_old_sdp_bind_tls_stp_port_state = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 4), t_stp_port_state()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxOldSdpBindTlsStpPortState.setStatus('current') if mibBuilder.loadTexts: tmnxOldSdpBindTlsStpPortState.setDescription('tmnxOldSdpBindTlsStpPortState specifies the previous state of an SDP binding.') tmnx_vcp_state = mib_scalar((1, 3, 6, 1, 4, 1, 6527, 3, 1, 2, 4, 5, 5), t_stp_port_state()).setMaxAccess('accessiblefornotify') if mibBuilder.loadTexts: tmnxVcpState.setStatus('current') if mibBuilder.loadTexts: tmnxVcpState.setDescription('tmnxVcpState specifies the current state of a Virtual Core Port (VCP).') topology_change_vcp_state = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 3)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxVcpState')) if mibBuilder.loadTexts: topologyChangeVcpState.setStatus('current') if mibBuilder.loadTexts: topologyChangeVcpState.setDescription('The topologyChangeVcpState notification is generated when a VCP has transitioned its state from disabled to forwarding or from forwarding to disabled. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') new_root_vcp_state = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 4)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: newRootVcpState.setStatus('current') if mibBuilder.loadTexts: newRootVcpState.setDescription('The newRootVcpState notification is generated when the previous root bridge has been aged out and a new root bridge has been elected. The new root bridge creates a new spanning tree topology and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') new_root_bridge = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 7)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: newRootBridge.setStatus('current') if mibBuilder.loadTexts: newRootBridge.setDescription('The newRootBridge notification is generated when this bridge has been elected as the new root bridge. A new root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') vcp_active_protocol_change = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 32)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpVcpOperProtocol')) if mibBuilder.loadTexts: vcpActiveProtocolChange.setStatus('current') if mibBuilder.loadTexts: vcpActiveProtocolChange.setDescription('The vcpActiveProtocolChange notification is generated when the spanning tree protocol on this VCP changes from rstp to stp or vise versa. No recovery is needed.') tmnx_new_cist_regional_root_bridge = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 33)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpCistRegionalRoot')) if mibBuilder.loadTexts: tmnxNewCistRegionalRootBridge.setStatus('current') if mibBuilder.loadTexts: tmnxNewCistRegionalRootBridge.setDescription('The tmnxNewCistRegionalRootBridge notification is generated when a new regional root bridge has been elected for the Common and Internal Spanning Tree. A new regional root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') tmnx_new_msti_regional_root_bridge = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 34)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcMstiInstanceId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiRegionalRoot')) if mibBuilder.loadTexts: tmnxNewMstiRegionalRootBridge.setStatus('current') if mibBuilder.loadTexts: tmnxNewMstiRegionalRootBridge.setDescription('The tmnxNewMstiRegionalRootBridge notification is generated when a new regional root bridge has been elected for the Multiple Spanning Tree Instance. A new regional root bridge creates a new spanning tree topology and may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') topology_change_pip_major_state = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 39)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: topologyChangePipMajorState.setStatus('current') if mibBuilder.loadTexts: topologyChangePipMajorState.setDescription('The topologyChangePipMajorState notification is generated when a PIP Uplink has transitioned its state from learning to forwarding or from forwarding to blocking or broken. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine the severity of connectivity loss.') topology_change_pip_state = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 40)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: topologyChangePipState.setStatus('current') if mibBuilder.loadTexts: topologyChangePipState.setDescription('The topologyChangePipState notification is generated when a PIP Uplink has transitioned state to blocking or broken from a state other than forwarding. This event complements what is not covered by topologyChangePipMajorState. The spanning tree topology has been modified and it may denote loss of customer access or redundancy. Check the new topology against the provisioned topology to determine severity of connectivity loss.') tmnx_pip_stp_excep_cond_state_chng = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 41)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpException')) if mibBuilder.loadTexts: tmnxPipStpExcepCondStateChng.setStatus('current') if mibBuilder.loadTexts: tmnxPipStpExcepCondStateChng.setDescription('The tmnxPipStpExcepCondStateChng notification is generated when the value of the object tlsPipStpException has changed, i.e. when the exception condition changes on the indicated PIP Uplink.') pip_active_protocol_change = notification_type((1, 3, 6, 1, 4, 1, 6527, 3, 1, 3, 4, 5, 0, 42)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId')) if mibBuilder.loadTexts: pipActiveProtocolChange.setStatus('current') if mibBuilder.loadTexts: pipActiveProtocolChange.setDescription('The pipActiveProtocolChange notification is generated when the spanning tree protocol on this PIP Uplink changes from rstp to stp or vice-versa. No recovery is needed.') tmnx_cust_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 1)) tmnx_cust_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 2)) tmnx_svc_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1)) tmnx_svc_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2)) tmnx_tstp_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5, 1)) tmnx_tstp_groups = mib_identifier((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 5, 2)) tmnx_cust_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 1, 100)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxCustV6v0Group')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_cust_compliance = tmnxCustCompliance.setStatus('current') if mibBuilder.loadTexts: tmnxCustCompliance.setDescription('The compliance statement for management of services customers on Alcatel 7x50 SR series systems.') tmnx_svc7450_v6v0_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 100)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIesIfV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsShgV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMFibV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcRdntV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMstiV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsEgrV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcDhcpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEndPointV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcPEV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIfDHCP6V6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBackbone6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBgpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEpipeV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsPipV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObsoletedV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcNotifyV6v0Group')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc7450_v6v0_compliance = tmnxSvc7450V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7450V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7450 ESS series systems release R6.0.') tmnx_svc7750_v6v0_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 101)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsFdbV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIesIfV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsShgV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMFibV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcRdntV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMstiV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsEgrV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcDhcpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEndPointV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcPEV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIfDHCP6V6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBackbone6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBgpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEpipeV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsPipV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObsoletedV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcNotifyV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxApipeV3v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcRoutedCOV5v0Group')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc7750_v6v0_compliance = tmnxSvc7750V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7750V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7750 SR series systems release R6.0.') tmnx_svc7710_v6v0_compliance = module_compliance((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 1, 102)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsFdbV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIesIfV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsShgV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMFibV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcRdntV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsMstiV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsEgrV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcDhcpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEndPointV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcPEV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcIfDHCP6V6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBackbone6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsBgpV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcEpipeV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcTlsPipV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObsoletedV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcNotifyV6v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxApipeV3v0Group'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcRoutedCOV5v0Group')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc7710_v6v0_compliance = tmnxSvc7710V6v0Compliance.setStatus('current') if mibBuilder.loadTexts: tmnxSvc7710V6v0Compliance.setDescription('The compliance statement for management of services on Alcatel 7710 SR series systems release R6.0.') tmnx_cust_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 1, 2, 100)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custNumEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custNextFreeId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custContact'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custPhone'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteScope'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteAssignment'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteIngressSchedulerPolicy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteEgressSchedulerPolicy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteTodSuite'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteCurrentIngrSchedPlcy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteCurrentEgrSchedPlcy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteEgressAggRateLimit'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteIntendedIngrSchedPlcy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteIntendedEgrSchedPlcy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteFrameBasedAccnt'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosSchedStatsForwardedPackets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosSchedStatsForwardedOctets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosSchedStatsForwardedPackets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosSchedStatsForwardedOctets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosPortSchedFwdPkts'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngQosPortSchedFwdOctets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosPortSchedFwdPkts'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrQosPortSchedFwdOctets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSOverrideFlags'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSPIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSCIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssIngQosSSummedCIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSOverrideFlags'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSPIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSCIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMssEgrQosSSummedCIR'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngSchedPlcyStatsFwdPkt'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngSchedPlcyStatsFwdOct'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrSchedPlcyStatsFwdPkt'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrSchedPlcyStatsFwdOct'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngSchedPlcyPortStatsFwdPkt'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custIngSchedPlcyPortStatsFwdOct'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrSchedPlcyPortStatsFwdPkt'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custEgrSchedPlcyPortStatsFwdOct')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_cust_v6v0_group = tmnxCustV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxCustV6v0Group.setDescription('The group of objects supporting management of Services customers general capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 101)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcNumEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcCustId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcIpRouting'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcMtu'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcOperStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcNumSaps'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcNumSdps'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDefMeshVcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVRouterId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcAutoBind'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcLastStatusChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVllType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcMgmtVpls'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRadiusDiscovery'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRadiusUserName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRadiusUserNameType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVcSwitching'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRadiusPEDiscPolicy'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcRadiusDiscoveryShutdown'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcVplsType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTotalFdbMimDestIdxEntries')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_v6v0_group = tmnxSvcV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcV6v0Group.setDescription('The group of objects supporting management of Services general capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 102)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacLearning'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsDiscardUnknownDest'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbTableSize'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumStaticEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbLocalAgeTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbRemoteAgeTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpPriority'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpTimeSinceTopologyChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpTopologyChanges'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpDesignatedRoot'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpRootCost'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpRootPort'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpMaxAge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpHelloTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpForwardDelay'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeMaxAge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeHelloTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeForwardDelay'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpOperStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpVirtualRootBridgeStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacAgeing'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpTopologyChangeActive'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbTableFullHighWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbTableFullLowWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsCustId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpVersion'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpHoldCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpPrimaryBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeInstanceId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpVcpOperProtocol'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacMoveMaxRate'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacMoveRetryTimeout'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacMoveAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacRelearnOnly'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMfibTableSize'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMfibTableFullHighWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMfibTableFullLowWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacFlushOnFail'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpRegionName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpRegionRevision'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpBridgeMaxHops'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpCistRegionalRoot'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpCistIntRootCost'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpCistRemainingHopCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpCistRegionalRootPort'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumLearnedEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumOamEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumDhcpEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbNumHostEntries'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsShcvAction'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsShcvSrcIp'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsShcvSrcMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsShcvInterval'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsPriPortsCumulativeFactor'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsSecPortsCumulativeFactor'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsL2ptTermEnabled'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsPropagateMacFlush'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpMaxAttributes'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttributeCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpFailedRegisterCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpFloodTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrTblHighWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrTblLowWatermark'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMcPathMgmtPlcyName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpAdminQinqFixedTagVal')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_v6v0_group = tmnxSvcTlsV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsV6v0Group.setDescription('The group of objects supporting management of Services TLS general capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_fdb_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 103)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbMacAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbLocale'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbPortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbEncapValue'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbSdpId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbVcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbCustId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbLastStateChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbProtected'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbBackboneDstMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbNumIVplsMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbEndPointName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbEPMacOperSdpId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbEPMacOperVcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsFdbPbbNumEpipes'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsProtMacRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsProtMacLastMgmtChange')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_fdb_v6v0_group = tmnxSvcTlsFdbV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsFdbV6v0Group.setDescription('The group of objects supporting management of Services TLS FDB capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_ies_if_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 104)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfIndex'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfName'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfAdminStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfOperStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfVpnId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfCustId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfLoopback'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfLastStatusChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfShcvSource'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfShcvAction'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfShcvInterval'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesGrpIfOperUpWhileEmpty')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_ies_if_v6v0_group = tmnxSvcIesIfV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcIesIfV6v0Group.setDescription('The group of objects supporting management of Services IES interface capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_shg_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 105)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgCustId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgInstanceId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgResidential'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgRestProtSrcMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgRestUnprotDstMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgRestProtSrcMacAction'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsShgCreationOrigin')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_shg_v6v0_group = tmnxSvcTlsShgV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsShgV6v0Group.setDescription('The group of objects supporting management of Services TLS Split Hoirizon Group capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_m_fib_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 106)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibFwdOrBlk'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsForwardedPkts'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibStatsForwardedOctets')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_m_fib_v6v0_group = tmnxSvcTlsMFibV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsMFibV6v0Group.setDescription('The group of objects supporting management of Services TLS MFib capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_rdnt_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 107)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsRdntGrpMemberLastMgmtChange')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_rdnt_v6v0_group = tmnxSvcRdntV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcRdntV6v0Group.setDescription('The group of objects supporting management of Services Redundancy group capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_msti_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 108)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiPriority'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiRegionalRoot'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiIntRootCost'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiRemainingHopCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiRegionalRootPort'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMstiMvplsRowStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_msti_v6v0_group = tmnxSvcTlsMstiV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsMstiV6v0Group.setDescription('The group of objects supporting management of Services TLS MSTI capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_egr_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 109)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpLastMgmtChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpChainLimit'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpEncapType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpDot1qEtherType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpQinqEtherType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpMacFilterId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpIpFilterId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpIpv6FilterId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpQinqFixedTagPosition'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsEgrMcGrpOperQinqFixedTagVal')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_egr_v6v0_group = tmnxSvcTlsEgrV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsEgrV6v0Group.setDescription('The group of objects supporting management of Services TLS Egress capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_dhcp_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 110)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateLocale'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateEncapValue'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSdpId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateVcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateRemainLseTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOption82'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePersistKey'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSubscrIdent'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSubProfString'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSlaProfString'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateShcvOperState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateShcvChecks'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateShcvReplies'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateShcvReplyTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateClientId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateIAID'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateIAIDType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateCiAddrMaskLen'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateRetailerSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateRetailerIf'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateAncpString'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateFramedIpNetMaskTp'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateFramedIpNetMask'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateBCastIpAddrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateBCastIpAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDefaultRouterTp'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDefaultRouter'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePrimaryDnsType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePrimaryDns'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSecondaryDnsType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSecondaryDns'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSessionTimeout'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateServerLeaseStart'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateServerLastRenew'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateServerLeaseEnd'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDhcpServerAddrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDhcpServerAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOriginSubscrId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOriginStrings'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOriginLeaseInfo'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDhcpClientAddrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateDhcpClientAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateLeaseSplitActive'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateInterDestId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePrimaryNbnsType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePrimaryNbns'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSecondaryNbnsType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateSecondaryNbns'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateNextHopMacAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModifySubIndent'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModifySubProfile'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModifySlaProfile'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateEvaluateState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModInterDestId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModifyAncpString'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateForceRenew'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpManagedRouteStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_dhcp_v6v0_group = tmnxSvcDhcpV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcDhcpV6v0Group.setDescription('The group of objects supporting management of Services DHCP Lease capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_end_point_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 111)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActivePortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveEncap'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveSdpId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointForceSwitchOver'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointForceSwitchOverSdpId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointActiveHoldDelay'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointIgnoreStandbySig'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacPinning'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacLimit'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointSuppressStandbySig'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveChangeCount'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveLastChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointTxActiveUpTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointRevertTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointRevertTimeCountDn')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_end_point_v6v0_group = tmnxSvcEndPointV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcEndPointV6v0Group.setDescription('The group of objects supporting management of Services endpoint capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_pev6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 112)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyPassword'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyInterval'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscoveryPolicyTimeout'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerAddressType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerSecret'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerOperStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPEDiscPolServerPort')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_pev6v0_group = tmnxSvcPEV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcPEV6v0Group.setDescription('The group of objects supporting management of Services PE Discovery capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_if_dhcp6_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 114)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcIfDHCP6MsgStatsLstClrd'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcIfDHCP6MsgStatsRcvd'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcIfDHCP6MsgStatsSent'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcIfDHCP6MsgStatsDropped')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_if_dhcp6_v6v0_group = tmnxSvcIfDHCP6V6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcIfDHCP6V6v0Group.setDescription('The group of objects supporting management of Services interface DHCP capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_backbone6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 115)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneSrcMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneVplsSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneVplsSvcISID'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneOperSrcMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneOperVplsSvcISID'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneLDPMacFlush'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBackboneVplsStp')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_backbone6v0_group = tmnxSvcTlsBackbone6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsBackbone6v0Group.setDescription('The group of objects supporting management of Services PBB capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_bgp_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 116)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADTableLastChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADLastChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVplsId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiPrefix'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiRD'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADExportRteTarget'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiExportPolicy1'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiExportPolicy2'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiExportPolicy3'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiExportPolicy4'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiExportPolicy5'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADImportRteTarget'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiImportPolicy1'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiImportPolicy2'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiImportPolicy3'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiImportPolicy4'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADVsiImportPolicy5'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsBgpADAdminStatus')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_bgp_v6v0_group = tmnxSvcTlsBgpV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsBgpV6v0Group.setDescription('The group of objects supporting management of Services BGP AD capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_epipe_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 117)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbTableLastChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbRowStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbLastChngd'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbBvplsSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbBvplsDstMac'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEpipePbbSvcISID')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_epipe_v6v0_group = tmnxSvcEpipeV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcEpipeV6v0Group.setDescription('The group of objects supporting management of Services PBB Epipe capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_tls_pip_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 118)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpPortState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpPortRole'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpDesignatedBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpDesignatedPort'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpException'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpForwardTransitions'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpInConfigBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpInTcnBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpInRstBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpInMstBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpInBadBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOutConfigBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOutTcnBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOutRstBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOutMstBpdus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOperStatus'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpMvplsPruneState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpOperProtocol'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipStpPortNum'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipMstiPortRole'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipMstiPortState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipMstiDesignatedBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsPipMstiDesignatedPort')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_tls_pip_v6v0_group = tmnxSvcTlsPipV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcTlsPipV6v0Group.setDescription('The group of objects supporting management of Services TLS PIP capabilities on Alcatel 7x50 SR series systems.') tmnx_apipe_v3v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 119)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcApipeInterworking')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_apipe_v3v0_group = tmnxApipeV3v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxApipeV3v0Group.setDescription('The group of objects supporting management of APIPE services on Alcatel 7x50 SR series systems release 3.0.') tmnx_svc_routed_cov5v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 120)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfParentIf'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfFwdServId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfFwdSubIf'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesGrpIfRedInterface'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcWholesalerNumStaticHosts'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcWholesalerNumDynamicHosts')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_routed_cov5v0_group = tmnxSvcRoutedCOV5v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcRoutedCOV5v0Group.setDescription('The group of objects supporting routed CO Alcatel 7x50 SR systems.') tmnx_svc_bsx_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 121)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateAppProfString'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateModifyAppProfile')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_bsx_v6v0_group = tmnxSvcBsxV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcBsxV6v0Group.setDescription('The group of objects supporting management of BSX (Application Assurance) capabilities on Alcatel 7x50 SR series systems.') tmnx_svc_notify_objs_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 200)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpRestoreLseStateCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpRestoreLseStateProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOldCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateOldChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateNewCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStateNewChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpClientLease'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpPacketProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpLseStatePopulateError'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'hostConnectivityCiAddrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'hostConnectivityCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'hostConnectivityChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'protectedMacForNotify'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'staticHostDynamicMacIpAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'staticHostDynamicMacConflict'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjRowDescr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjTodSuite'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxFailureDescription'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpProxyError'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpCoAError'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDhcpSubAuthError'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrRegFailedReason'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrType'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrValue'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcMstiInstanceId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxCustomerBridgeId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxCustomerRootBridgeId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxOtherBridgeId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxOldSdpBindTlsStpPortState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxVcpState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningMacAddress'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningPinnedRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningPinnedRowDescr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningViolatingRow'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'macPinningViolatingRowDescr')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_notify_objs_v6v0_group = tmnxSvcNotifyObjsV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyObjsV6v0Group.setDescription('The group of objects supporting management of Services notification objects on Alcatel 7x50 SR series systems.') tmnx_svc_obsoleted_v6v0_group = object_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 300)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsStpHoldTime'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoFwdOrBlk'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibInfoSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpSrcStatsForwardedPkts'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsMFibGrpSrcStatsForwardedOctets'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDHCPClientLease'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStateOldCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStateOldChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStateNewCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStateNewChAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateCiAddr'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateSvcId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStatePortId'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateEncapVal'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpRestoreLseStateProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpPacketProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tlsDhcpLseStatePopulateError')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_obsoleted_v6v0_group = tmnxSvcObsoletedV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcObsoletedV6v0Group.setDescription('The group of obsolete objects for the services feature on Alcatel 7x50 SR series systems.') tmnx_svc_notify_v6v0_group = notification_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 401)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcStatusChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbTableFullAlarmRaised'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsFdbTableFullAlarmCleared'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfStatusChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMfibTableFullAlarmRaised'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMfibTableFullAlarmCleared'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMacPinningViolation'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDHCPLseStateRestoreProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcObjTodSuiteApplicFailed'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxEndPointTxActiveChanged'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxSvcPEDiscPolServOperStatChg'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacLimitAlarmRaised'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcEndPointMacLimitAlarmCleared'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrRegistrationFailed'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrTblFullAlarmRaised'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsMrpAttrTblFullAlarmCleared'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'topologyChangeVcpState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'newRootVcpState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'newRootBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'vcpActiveProtocolChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxNewCistRegionalRootBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxNewMstiRegionalRootBridge'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'topologyChangePipMajorState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'topologyChangePipState'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'tmnxPipStpExcepCondStateChng'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'pipActiveProtocolChange'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcFdbMimDestTblFullAlrm'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcFdbMimDestTblFullAlrmCleared'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDHCPMiscellaneousProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcPersistencyProblem')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_notify_v6v0_group = tmnxSvcNotifyV6v0Group.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyV6v0Group.setDescription('The group of notifications for the services feature on Alcatel 7x50 SR series systems.') tmnx_svc_notify_obsoleted_group = notification_group((1, 3, 6, 1, 4, 1, 6527, 3, 1, 1, 4, 2, 2, 402)).setObjects(('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custCreated'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custDeleted'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteCreated'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'custMultSvcSiteDeleted'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcCreated'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcDeleted'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfCreated'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'iesIfDeleted'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsDHCPLseStRestoreProblem'), ('ALCATEL-IND1-TIMETRA-SERV-MIB', 'svcTlsDHCPLseStatePopulateErr')) if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0): tmnx_svc_notify_obsoleted_group = tmnxSvcNotifyObsoletedGroup.setStatus('current') if mibBuilder.loadTexts: tmnxSvcNotifyObsoletedGroup.setDescription('The group of notifications for the services feature on Alcatel 7x50 SR series systems.') mibBuilder.exportSymbols('ALCATEL-IND1-TIMETRA-SERV-MIB', tlsRdntGrpMemberTable=tlsRdntGrpMemberTable, svcTlsFdbTableFullHighWatermark=svcTlsFdbTableFullHighWatermark, svcPEDiscoveryPolicyTable=svcPEDiscoveryPolicyTable, tmnxEndPointTxActiveChanged=tmnxEndPointTxActiveChanged, iesIfVpnId=iesIfVpnId, SdpBindVcType=SdpBindVcType, svcDefMeshVcId=svcDefMeshVcId, svcIfDHCP6MsgStatEntry=svcIfDHCP6MsgStatEntry, custEgrSchedPlcyStatsFwdOct=custEgrSchedPlcyStatsFwdOct, StpExceptionCondition=StpExceptionCondition, tlsFdbSdpId=tlsFdbSdpId, tlsRdntGrpRowStatus=tlsRdntGrpRowStatus, svcDhcpLseStateOriginLeaseInfo=svcDhcpLseStateOriginLeaseInfo, svcEndPointIgnoreStandbySig=svcEndPointIgnoreStandbySig, svcPEDiscPolServerAddressType=svcPEDiscPolServerAddressType, tlsPipStpException=tlsPipStpException, tlsEgrMcGrpMacFilterId=tlsEgrMcGrpMacFilterId, custMultSvcSiteName=custMultSvcSiteName, tmnxNewCistRegionalRootBridge=tmnxNewCistRegionalRootBridge, tlsMFibStatsEntryType=tlsMFibStatsEntryType, svcTlsShcvSrcMac=svcTlsShcvSrcMac, svcDhcpLseStateDefaultRouter=svcDhcpLseStateDefaultRouter, LspIdList=LspIdList, svcTlsStpRootCost=svcTlsStpRootCost, svcDhcpManagedRoutePrefixLen=svcDhcpManagedRoutePrefixLen, tlsMFibStatsEntry=tlsMFibStatsEntry, svcTlsMacFlushOnFail=svcTlsMacFlushOnFail, tlsEgrMcGrpChainLimit=tlsEgrMcGrpChainLimit, svcDhcpLseStatePrimaryNbns=svcDhcpLseStatePrimaryNbns, svcDhcpLseStateInterDestId=svcDhcpLseStateInterDestId, svcTlsMacMoveRetryTimeout=svcTlsMacMoveRetryTimeout, StpPortRole=StpPortRole, custEgrQosPortIdSchedName=custEgrQosPortIdSchedName, svcTlsBackboneLDPMacFlush=svcTlsBackboneLDPMacFlush, svcEndPointTxActiveEncap=svcEndPointTxActiveEncap, svcTlsBackboneInfoEntry=svcTlsBackboneInfoEntry, svcPEDiscPolServerAddress=svcPEDiscPolServerAddress, TSapIngQueueId=TSapIngQueueId, custMssIngQosSchedInfoEntry=custMssIngQosSchedInfoEntry, custMultiSvcSiteIngSchedPlcyPortStatsTable=custMultiSvcSiteIngSchedPlcyPortStatsTable, svcLastMgmtChange=svcLastMgmtChange, tlsMstiEntry=tlsMstiEntry, tlsPipStpInTcnBpdus=tlsPipStpInTcnBpdus, tlsPipStpInBadBpdus=tlsPipStpInBadBpdus, custMultSvcSiteAssignment=custMultSvcSiteAssignment, tlsDhcpLseStateOldCiAddr=tlsDhcpLseStateOldCiAddr, svcWholesalerNumDynamicHosts=svcWholesalerNumDynamicHosts, tmnxTstpNotifyObjs=tmnxTstpNotifyObjs, tmnxVcpState=tmnxVcpState, svcTlsStpCistRegionalRootPort=svcTlsStpCistRegionalRootPort, tmnxSvcCompliances=tmnxSvcCompliances, tlsMstiMvplsMinVlanTag=tlsMstiMvplsMinVlanTag, svcEndPointTxActivePortId=svcEndPointTxActivePortId, svcPEDiscPolServerPort=svcPEDiscPolServerPort, iesIfName=iesIfName, custIngQosPortSchedFwdOctets=custIngQosPortSchedFwdOctets, svcDhcpLseStateAncpString=svcDhcpLseStateAncpString, svcBaseInfoEntry=svcBaseInfoEntry, protectedMacForNotify=protectedMacForNotify, svcDhcpLseStateSessionTimeout=svcDhcpLseStateSessionTimeout, iesIfType=iesIfType, tlsMstiRowStatus=tlsMstiRowStatus, custMultiSvcSiteEgrStatsTable=custMultiSvcSiteEgrStatsTable, custMultSvcSiteCurrentIngrSchedPlcy=custMultSvcSiteCurrentIngrSchedPlcy, custMssIngQosSRowStatus=custMssIngQosSRowStatus, custMultiSvcSiteEgrSchedPlcyStatsTable=custMultiSvcSiteEgrSchedPlcyStatsTable, svcRadiusPEDiscPolicy=svcRadiusPEDiscPolicy, svcTlsBgpADVsiRD=svcTlsBgpADVsiRD, tmnxSvcObjs=tmnxSvcObjs, custMssEgrQosSSummedCIR=custMssEgrQosSSummedCIR, ServType=ServType, ServObjDesc=ServObjDesc, custMultSvcSiteFrameBasedAccnt=custMultSvcSiteFrameBasedAccnt, tmnxOldSdpBindTlsStpPortState=tmnxOldSdpBindTlsStpPortState, svcTlsMfibTableFullAlarmCleared=svcTlsMfibTableFullAlarmCleared, custMultSvcSiteCreated=custMultSvcSiteCreated, svcTlsFdbNumDhcpEntries=svcTlsFdbNumDhcpEntries, tlsMFibGrpSrcStatsSrcAddr=tlsMFibGrpSrcStatsSrcAddr, svcEndPointMacPinning=svcEndPointMacPinning, svcTlsMrpAttrType=svcTlsMrpAttrType, tmnxSvcPEDiscPolServOperStatChg=tmnxSvcPEDiscPolServOperStatChg, TdmOptionsCasTrunkFraming=TdmOptionsCasTrunkFraming, tlsPipStpOutTcnBpdus=tlsPipStpOutTcnBpdus, tlsFdbVpnId=tlsFdbVpnId, custIngQosPortIdSchedStatsTable=custIngQosPortIdSchedStatsTable, tlsMFibInfoSrcAddr=tlsMFibInfoSrcAddr, svcCustId=svcCustId, custIngSchedPlcyStatsFwdOct=custIngSchedPlcyStatsFwdOct, svcIfDHCP6MsgStatTable=svcIfDHCP6MsgStatTable, svcTlsBgpADVsiExportPolicy4=svcTlsBgpADVsiExportPolicy4, tlsEgrMcGrpName=tlsEgrMcGrpName, svcEndPointDescription=svcEndPointDescription, svcTlsBgpADVsiImportPolicy3=svcTlsBgpADVsiImportPolicy3, tmnxSvcNotifyObsoletedGroup=tmnxSvcNotifyObsoletedGroup, tmnxFailureDescription=tmnxFailureDescription, tlsFdbCustId=tlsFdbCustId, iesIfCreated=iesIfCreated, svcTlsStpTimeSinceTopologyChange=svcTlsStpTimeSinceTopologyChange, svcEndPointRowStatus=svcEndPointRowStatus, svcDhcpLseStateShcvReplyTime=svcDhcpLseStateShcvReplyTime, macPinningMacAddress=macPinningMacAddress, tlsProtectedMacTable=tlsProtectedMacTable, svcIfDHCP6MsgStatsDropped=svcIfDHCP6MsgStatsDropped, svcEpipePbbLastChngd=svcEpipePbbLastChngd, tlsMFibLocale=tlsMFibLocale, tlsMFibInfoSvcId=tlsMFibInfoSvcId, TQosQueueAttribute=TQosQueueAttribute, svcDhcpLseStateShcvReplies=svcDhcpLseStateShcvReplies, staticHostDynamicMacConflict=staticHostDynamicMacConflict, DhcpLseStateInfoOrigin=DhcpLseStateInfoOrigin, svcDhcpLseStateRetailerSvcId=svcDhcpLseStateRetailerSvcId, svcEndPointMacLimitAlarmRaised=svcEndPointMacLimitAlarmRaised, iesIfLastStatusChange=iesIfLastStatusChange, tlsEgrMcGrpLastMgmtChange=tlsEgrMcGrpLastMgmtChange, svcEpipePbbSvcISID=svcEpipePbbSvcISID, tlsFdbMacAddr=tlsFdbMacAddr, custMssIngQosSSummedCIR=custMssIngQosSSummedCIR, custEgrSchedPlcyPortStatsPort=custEgrSchedPlcyPortStatsPort, tlsPipStpInMstBpdus=tlsPipStpInMstBpdus, iesIfOperStatus=iesIfOperStatus, svcEndPointMacLimitAlarmCleared=svcEndPointMacLimitAlarmCleared, tlsFdbPbbNumEpipes=tlsFdbPbbNumEpipes, custMultiServiceSiteEntry=custMultiServiceSiteEntry, tlsMstiMvplsRowStatus=tlsMstiMvplsRowStatus, svcEndPointRevertTimeCountDn=svcEndPointRevertTimeCountDn, tlsRdntGrpDescription=tlsRdntGrpDescription, svcDhcpLseStateSubProfString=svcDhcpLseStateSubProfString, svcRadiusUserName=svcRadiusUserName, svcDhcpLseStateShcvChecks=svcDhcpLseStateShcvChecks, svcDhcpLseStateOriginStrings=svcDhcpLseStateOriginStrings, tlsPipStpForwardTransitions=tlsPipStpForwardTransitions, svcDhcpLseStateSecondaryDns=svcDhcpLseStateSecondaryDns, custMultSvcSiteLastMgmtChange=custMultSvcSiteLastMgmtChange, tlsFdbPortId=tlsFdbPortId, svcDHCPLseStateRestoreProblem=svcDHCPLseStateRestoreProblem, tlsRdntGrpTable=tlsRdntGrpTable, svcDhcpLseStateSdpId=svcDhcpLseStateSdpId, tmnxSvcTlsV6v0Group=tmnxSvcTlsV6v0Group, svcDhcpLseStatePrimaryDnsType=svcDhcpLseStatePrimaryDnsType, custMultiSvcSiteIngSchedPlcyPortStatsEntry=custMultiSvcSiteIngSchedPlcyPortStatsEntry, svcTlsBgpADEntry=svcTlsBgpADEntry, IAIDType=IAIDType, custEgrQosPortSchedFwdPkts=custEgrQosPortSchedFwdPkts, svcTlsMrpAttrTblFullAlarmCleared=svcTlsMrpAttrTblFullAlarmCleared, custTraps=custTraps, svcDhcpLseStateDhcpServerAddr=svcDhcpLseStateDhcpServerAddr, svcPEDiscPolServerTable=svcPEDiscPolServerTable, tmnxSvcRoutedCOV5v0Group=tmnxSvcRoutedCOV5v0Group, tlsPipStpDesignatedPort=tlsPipStpDesignatedPort, tmnxSvcTlsEgrV6v0Group=tmnxSvcTlsEgrV6v0Group, svcPersistencyProblem=svcPersistencyProblem, svcEpipePbbBvplsDstMac=svcEpipePbbBvplsDstMac, tlsEgrMcGrpOperQinqFixedTagVal=tlsEgrMcGrpOperQinqFixedTagVal, svcDhcpLseStatePrimaryNbnsType=svcDhcpLseStatePrimaryNbnsType, tlsMFibInfoLocale=tlsMFibInfoLocale, svcTlsStpVcpOperProtocol=svcTlsStpVcpOperProtocol, custPhone=custPhone, tlsMFibEncapValue=tlsMFibEncapValue, tlsRdntGrpMemberRemoteNodeAddrTp=tlsRdntGrpMemberRemoteNodeAddrTp, svcTlsStpMaxAge=svcTlsStpMaxAge, svcTlsPriPortsCumulativeFactor=svcTlsPriPortsCumulativeFactor, custIngQosPortIdSchedName=custIngQosPortIdSchedName, svcEndPointTxActiveLastChange=svcEndPointTxActiveLastChange, svcTlsStpBridgeHelloTime=svcTlsStpBridgeHelloTime, tlsMstiManagedVlanListEntry=tlsMstiManagedVlanListEntry, svcDhcpManagedRouteTable=svcDhcpManagedRouteTable, svcTlsL2ptTermEnabled=svcTlsL2ptTermEnabled, svcDhcpLseStateBCastIpAddrType=svcDhcpLseStateBCastIpAddrType, tlsPipStpOperStatus=tlsPipStpOperStatus, tmnxSvcRdntV6v0Group=tmnxSvcRdntV6v0Group, tmnxSvcTlsFdbV6v0Group=tmnxSvcTlsFdbV6v0Group, custIngSchedPlcyPortStatsPort=custIngSchedPlcyPortStatsPort, custMultSvcSiteTodSuite=custMultSvcSiteTodSuite, custEgrQosPortIdSchedStatsTable=custEgrQosPortIdSchedStatsTable, svcVplsType=svcVplsType, svcTlsMfibTableFullAlarmRaised=svcTlsMfibTableFullAlarmRaised, svcRadiusUserNameType=svcRadiusUserNameType, custMssEgrQosSLastMgmtChange=custMssEgrQosSLastMgmtChange, custMssEgrQosSOverrideFlags=custMssEgrQosSOverrideFlags, tlsMFibGrpInetAddrType=tlsMFibGrpInetAddrType, tlsDhcpPacketProblem=tlsDhcpPacketProblem, svcTlsVpnId=svcTlsVpnId, svcApipeInterworking=svcApipeInterworking, tlsMstiRegionalRootPort=tlsMstiRegionalRootPort, tlsEgrMcGrpQinqFixedTagPosition=tlsEgrMcGrpQinqFixedTagPosition, svcDhcpProxyError=svcDhcpProxyError, svcDhcpLseStatePersistKey=svcDhcpLseStatePersistKey, custIngQosSchedName=custIngQosSchedName, tlsShgRestUnprotDstMac=tlsShgRestUnprotDstMac, tlsFdbInfoEntry=tlsFdbInfoEntry, svcPEDiscoveryPolicyTimeout=svcPEDiscoveryPolicyTimeout, tlsRdntGrpMemberRemoteNodeAddr=tlsRdntGrpMemberRemoteNodeAddr, tlsPipInfoTable=tlsPipInfoTable, svcTlsBackboneInfoTable=svcTlsBackboneInfoTable, tmnxSvcEndPointV6v0Group=tmnxSvcEndPointV6v0Group, tlsDhcpLseStatePopulateError=tlsDhcpLseStatePopulateError, svcTlsStpBridgeMaxAge=svcTlsStpBridgeMaxAge, svcEndPointMacLimit=svcEndPointMacLimit, svcLastStatusChange=svcLastStatusChange, tlsEgrMcGrpQinqEtherType=tlsEgrMcGrpQinqEtherType, svcPEDiscPolServerOperStatus=svcPEDiscPolServerOperStatus, iesIfFwdSubIf=iesIfFwdSubIf, svcNumSaps=svcNumSaps, svcDhcpLseStateOriginSubscrId=svcDhcpLseStateOriginSubscrId, tlsMFibInfoGrpAddr=tlsMFibInfoGrpAddr, tlsRdntGrpMemberPort=tlsRdntGrpMemberPort, macPinningPinnedRowDescr=macPinningPinnedRowDescr, tmnxSvcObjTodSuite=tmnxSvcObjTodSuite, custTrapsPrefix=custTrapsPrefix, svcDhcpLseStateBCastIpAddr=svcDhcpLseStateBCastIpAddr, svcTlsBgpADLastChanged=svcTlsBgpADLastChanged, svcCreated=svcCreated, tlsEgrMcGrpRowStatus=tlsEgrMcGrpRowStatus, svcEndPointSuppressStandbySig=svcEndPointSuppressStandbySig, tmnxApipeV3v0Group=tmnxApipeV3v0Group, tlsEgrMcGrpEncapType=tlsEgrMcGrpEncapType, tlsDhcpLseStateNewChAddr=tlsDhcpLseStateNewChAddr, tmnxCustomerBridgeId=tmnxCustomerBridgeId, svcTraps=svcTraps, tlsFdbVcId=tlsFdbVcId, topologyChangePipState=topologyChangePipState, svcTlsStpRegionName=svcTlsStpRegionName, svcWholesalerInfoTable=svcWholesalerInfoTable, tmnxTstpConformance=tmnxTstpConformance, svcDhcpLseStateSubscrIdent=svcDhcpLseStateSubscrIdent, MvplsPruneState=MvplsPruneState, tlsMFibInfoEncapValue=tlsMFibInfoEncapValue, tlsMstiManagedVlanListTable=tlsMstiManagedVlanListTable, tlsMFibStatsTable=tlsMFibStatsTable, svcTlsBgpADRowStatus=svcTlsBgpADRowStatus, tlsMFibInfoFwdOrBlk=tlsMFibInfoFwdOrBlk, tmnxSvcTlsMstiV6v0Group=tmnxSvcTlsMstiV6v0Group, svcEndPointTxActiveType=svcEndPointTxActiveType, tlsPipMstiPortState=tlsPipMstiPortState, custMultiSvcSiteEgrSchedPlcyPortStatsTable=custMultiSvcSiteEgrSchedPlcyPortStatsTable, tmnxSvcTlsBgpV6v0Group=tmnxSvcTlsBgpV6v0Group, tlsPipStpPortRole=tlsPipStpPortRole, tlsMFibInfoPortId=tlsMFibInfoPortId, svcIpRouting=svcIpRouting, tlsProtMacLastMgmtChange=tlsProtMacLastMgmtChange, tlsMFibInfoSdpId=tlsMFibInfoSdpId, custMssIngQosSCIR=custMssIngQosSCIR, tlsFdbProtected=tlsFdbProtected, tlsRdntGrpMemberRowStatus=tlsRdntGrpMemberRowStatus, tmnxServObjs=tmnxServObjs, tmnxSvcBsxV6v0Group=tmnxSvcBsxV6v0Group, custMultSvcSiteEgressSchedulerPolicy=custMultSvcSiteEgressSchedulerPolicy, svcBaseInfoTable=svcBaseInfoTable, tlsDhcpRestoreLseStatePortId=tlsDhcpRestoreLseStatePortId, iesIfShcvInterval=iesIfShcvInterval, tlsDhcpLseStateNewCiAddr=tlsDhcpLseStateNewCiAddr, tlsMFibVcId=tlsMFibVcId, tlsRdntGrpEntry=tlsRdntGrpEntry, svcDhcpLseStatePopulateError=svcDhcpLseStatePopulateError) mibBuilder.exportSymbols('ALCATEL-IND1-TIMETRA-SERV-MIB', svcTlsFdbNumStaticEntries=svcTlsFdbNumStaticEntries, tmnxOtherBridgeId=tmnxOtherBridgeId, MfibGrpSrcFwdOrBlk=MfibGrpSrcFwdOrBlk, custMultiSvcSiteEgrStatsEntry=custMultiSvcSiteEgrStatsEntry, svcDhcpLseStateSecondaryNbns=svcDhcpLseStateSecondaryNbns, tlsMFibStatsForwardedOctets=tlsMFibStatsForwardedOctets, svcTlsBgpADTableLastChanged=svcTlsBgpADTableLastChanged, svcEpipePbbTableLastChanged=svcEpipePbbTableLastChanged, tmnxSvcIesIfV6v0Group=tmnxSvcIesIfV6v0Group, custMultSvcSiteIntendedIngrSchedPlcy=custMultSvcSiteIntendedIngrSchedPlcy, tlsShgRestProtSrcMac=tlsShgRestProtSrcMac, svcEndPointForceSwitchOver=svcEndPointForceSwitchOver, tlsMFibInfoEntry=tlsMFibInfoEntry, svcTlsStpAdminStatus=svcTlsStpAdminStatus, ServObjLongDesc=ServObjLongDesc, svcEndPointTxActiveChangeCount=svcEndPointTxActiveChangeCount, svcTlsMcPathMgmtPlcyName=svcTlsMcPathMgmtPlcyName, tmnxSvcTlsPipV6v0Group=tmnxSvcTlsPipV6v0Group, svcEpipePbbRowStatus=svcEpipePbbRowStatus, svcStatusChanged=svcStatusChanged, svcTlsFdbTableSize=svcTlsFdbTableSize, tlsPipMstiTable=tlsPipMstiTable, custIngSchedPlcyPortStatsFwdOct=custIngSchedPlcyPortStatsFwdOct, svcDhcpLseStateServerLastRenew=svcDhcpLseStateServerLastRenew, svcTlsMacMoveMaxRate=svcTlsMacMoveMaxRate, svcTlsShcvInterval=svcTlsShcvInterval, tmnxPipStpExcepCondStateChng=tmnxPipStpExcepCondStateChng, tlsFdbNumIVplsMac=tlsFdbNumIVplsMac, svcEndPointRevertTime=svcEndPointRevertTime, tlsFdbLocale=tlsFdbLocale, svcTlsMrpAttrValue=svcTlsMrpAttrValue, svcTlsDiscardUnknownDest=svcTlsDiscardUnknownDest, svcDhcpPacketProblem=svcDhcpPacketProblem, custIngSchedPlcyStatsFwdPkt=custIngSchedPlcyStatsFwdPkt, custMultiServiceSiteTable=custMultiServiceSiteTable, svcTlsMfibTableSize=svcTlsMfibTableSize, svcDhcpLseStateOption82=svcDhcpLseStateOption82, svcTotalFdbMimDestIdxEntries=svcTotalFdbMimDestIdxEntries, tlsMFibGrpInetAddr=tlsMFibGrpInetAddr, svcDhcpLeaseStateModifyTable=svcDhcpLeaseStateModifyTable, macPinningViolatingRow=macPinningViolatingRow, custMssEgrQosSRowStatus=custMssEgrQosSRowStatus, svcEpipePbbTable=svcEpipePbbTable, iesGrpIfEntry=iesGrpIfEntry, tmnxCustCompliance=tmnxCustCompliance, svcIfDHCP6MsgStatsSent=svcIfDHCP6MsgStatsSent, iesGrpIfRedInterface=iesGrpIfRedInterface, SdpBindTlsBpduTranslation=SdpBindTlsBpduTranslation, tlsMstiRegionalRoot=tlsMstiRegionalRoot, svcDhcpLseStateDhcpClientAddrType=svcDhcpLseStateDhcpClientAddrType, svcVcSwitching=svcVcSwitching, svcTlsMacAgeing=svcTlsMacAgeing, svcTlsMrpAttrRegFailedReason=svcTlsMrpAttrRegFailedReason, svcTlsFdbNumOamEntries=svcTlsFdbNumOamEntries, svcDhcpLseStateDefaultRouterTp=svcDhcpLseStateDefaultRouterTp, iesIfIndex=iesIfIndex, tlsEgrMcGrpIpFilterId=tlsEgrMcGrpIpFilterId, custMultSvcSiteCurrentEgrSchedPlcy=custMultSvcSiteCurrentEgrSchedPlcy, svcVpnId=svcVpnId, svcDhcpLseStateModifySlaProfile=svcDhcpLseStateModifySlaProfile, svcTlsStpCistIntRootCost=svcTlsStpCistIntRootCost, svcTlsBackboneVplsSvcISID=svcTlsBackboneVplsSvcISID, timetraServicesMIBModule=timetraServicesMIBModule, svcTlsStpRegionRevision=svcTlsStpRegionRevision, svcTlsMrpAttrTblLowWatermark=svcTlsMrpAttrTblLowWatermark, tlsProtMacAddress=tlsProtMacAddress, svcTrapsPrefix=svcTrapsPrefix, tlsRdntGrpMemberEntry=tlsRdntGrpMemberEntry, tlsRdntGrpMemberIsSap=tlsRdntGrpMemberIsSap, tmnxSvcObjRowDescr=tmnxSvcObjRowDescr, svcTlsSecPortsCumulativeFactor=svcTlsSecPortsCumulativeFactor, custMultSvcSiteScope=custMultSvcSiteScope, tmnxSvcGroups=tmnxSvcGroups, tlsMFibSrcInetAddrType=tlsMFibSrcInetAddrType, svcTlsMrpAttributeCount=svcTlsMrpAttributeCount, svcTlsBackboneOperVplsSvcISID=svcTlsBackboneOperVplsSvcISID, TSapEgrQueueId=TSapEgrQueueId, tlsMFibStatsSrcInetAddrType=tlsMFibStatsSrcInetAddrType, svcTlsMacLearning=svcTlsMacLearning, svcDhcpLseStateCiAddrType=svcDhcpLseStateCiAddrType, tlsRdntGrpName=tlsRdntGrpName, tmnxSvcConformance=tmnxSvcConformance, tlsShgLastMgmtChange=tlsShgLastMgmtChange, custMssEgrQosSCIR=custMssEgrQosSCIR, svcTlsFdbNumLearnedEntries=svcTlsFdbNumLearnedEntries, svcWholesalerInfoEntry=svcWholesalerInfoEntry, svcTlsBgpADVsiImportPolicy5=svcTlsBgpADVsiImportPolicy5, svcDhcpLseStateCiAddr=svcDhcpLseStateCiAddr, svcTlsMrpAttrTblFullAlarmRaised=svcTlsMrpAttrTblFullAlarmRaised, custMssIngQosSOverrideFlags=custMssIngQosSOverrideFlags, svcIfDHCP6MsgStatsRcvd=svcIfDHCP6MsgStatsRcvd, svcDhcpLeaseStateEntry=svcDhcpLeaseStateEntry, tlsPipStpMvplsPruneState=tlsPipStpMvplsPruneState, iesIfLastMgmtChange=iesIfLastMgmtChange, svcTlsBgpADImportRteTarget=svcTlsBgpADImportRteTarget, svcDhcpManagedRouteEntry=svcDhcpManagedRouteEntry, CemSapReportAlarm=CemSapReportAlarm, svcTlsStpBridgeForwardDelay=svcTlsStpBridgeForwardDelay, tlsMFibGrpSrcStatsTable=tlsMFibGrpSrcStatsTable, custContact=custContact, tlsShgRowStatus=tlsShgRowStatus, CemSapEcid=CemSapEcid, svcAutoBind=svcAutoBind, tlsPipStpPortState=tlsPipStpPortState, svcTlsDHCPLseStatePopulateErr=svcTlsDHCPLseStatePopulateErr, MfibLocation=MfibLocation, iesIfDeleted=iesIfDeleted, tmnxSvc7750V6v0Compliance=tmnxSvc7750V6v0Compliance, tlsRdntGrpLastMgmtChange=tlsRdntGrpLastMgmtChange, tlsPipStpOutMstBpdus=tlsPipStpOutMstBpdus, tlsMFibStatsGrpMacAddr=tlsMFibStatsGrpMacAddr, iesIfShcvSource=iesIfShcvSource, tmnxSvcNotifyObjs=tmnxSvcNotifyObjs, tlsMFibSvcId=tlsMFibSvcId, MstiInstanceIdOrZero=MstiInstanceIdOrZero, tlsFdbEPMacOperSdpId=tlsFdbEPMacOperSdpId, svcApipeInfoTable=svcApipeInfoTable, tlsShgResidential=tlsShgResidential, iesIfFwdServId=iesIfFwdServId, svcEpipePbbEntry=svcEpipePbbEntry, svcTlsMfibTableFullLowWatermark=svcTlsMfibTableFullLowWatermark, custMultSvcSiteEgressAggRateLimit=custMultSvcSiteEgressAggRateLimit, iesIfCustId=iesIfCustId, svcDhcpLseStateModifySubProfile=svcDhcpLseStateModifySubProfile, svcDHCPMiscellaneousProblem=svcDHCPMiscellaneousProblem, tlsMFibInfoVcId=tlsMFibInfoVcId, tlsPipStpOutConfigBpdus=tlsPipStpOutConfigBpdus, custMultiSvcSiteIngStatsEntry=custMultiSvcSiteIngStatsEntry, svcDhcpLseStateChAddr=svcDhcpLseStateChAddr, svcDhcpLseStatePrimaryDns=svcDhcpLseStatePrimaryDns, svcTlsMrpAttrRegistrationFailed=svcTlsMrpAttrRegistrationFailed, tlsMFibGrpSrcStatsGrpAddr=tlsMFibGrpSrcStatsGrpAddr, svcTlsBgpADVsiImportPolicy4=svcTlsBgpADVsiImportPolicy4, svcTlsFdbRemoteAgeTime=svcTlsFdbRemoteAgeTime, svcTlsMrpAdminStatus=svcTlsMrpAdminStatus, custInfoEntry=custInfoEntry, custEgrQosSchedStatsForwardedOctets=custEgrQosSchedStatsForwardedOctets, svcPEDiscoveryPolicyInterval=svcPEDiscoveryPolicyInterval, tlsMFibPortId=tlsMFibPortId, iesIfLoopback=iesIfLoopback, svcEndPointName=svcEndPointName, svcDhcpCoAError=svcDhcpCoAError, svcDhcpLseStateNewChAddr=svcDhcpLseStateNewChAddr, tmnxCustomerRootBridgeId=tmnxCustomerRootBridgeId, svcDhcpRestoreLseStateCiAddr=svcDhcpRestoreLseStateCiAddr, tmnxSvcObjTodSuiteApplicFailed=tmnxSvcObjTodSuiteApplicFailed, svcDhcpLseStateNewCiAddr=svcDhcpLseStateNewCiAddr, hostConnectivityCiAddr=hostConnectivityCiAddr, SdpId=SdpId, svcDhcpLseStateLocale=svcDhcpLseStateLocale, tlsDHCPClientLease=tlsDHCPClientLease, tlsDhcpRestoreLseStateEncapVal=tlsDhcpRestoreLseStateEncapVal, tstpTraps=tstpTraps, svcTlsStpCistRemainingHopCount=svcTlsStpCistRemainingHopCount, tmnxCustV6v0Group=tmnxCustV6v0Group, svcDhcpLseStateCiAddrMaskLen=svcDhcpLseStateCiAddrMaskLen, svcTlsCustId=svcTlsCustId, svcTlsInfoEntry=svcTlsInfoEntry, tlsEgrMcGrpIpv6FilterId=tlsEgrMcGrpIpv6FilterId, custMultSvcSiteDeleted=custMultSvcSiteDeleted, svcDeleted=svcDeleted, tmnxCustConformance=tmnxCustConformance, PYSNMP_MODULE_ID=timetraServicesMIBModule, staticHostDynamicMacIpAddress=staticHostDynamicMacIpAddress, svcEndPointActiveHoldDelay=svcEndPointActiveHoldDelay, svcDhcpLseStateEvaluateState=svcDhcpLseStateEvaluateState, custEgrQosSchedName=custEgrQosSchedName, svcRowStatus=svcRowStatus, svcDhcpClientLease=svcDhcpClientLease, svcTlsMfibTableFullHighWatermark=svcTlsMfibTableFullHighWatermark, vcpActiveProtocolChange=vcpActiveProtocolChange, tlsPipInfoEntry=tlsPipInfoEntry, custMultSvcSiteRowStatus=custMultSvcSiteRowStatus, svcTlsStpBridgeAddress=svcTlsStpBridgeAddress, MstiInstanceId=MstiInstanceId, custRowStatus=custRowStatus, svcMtu=svcMtu, PWTemplateId=PWTemplateId, tlsFdbType=tlsFdbType, tlsShgRestProtSrcMacAction=tlsShgRestProtSrcMacAction, SdpBFHundredthsOfPercent=SdpBFHundredthsOfPercent, tlsShgInfoTable=tlsShgInfoTable, custMultSvcSiteDescription=custMultSvcSiteDescription, tlsShgCustId=tlsShgCustId, tlsMFibInfoTable=tlsMFibInfoTable, svcDhcpLseStateIAIDType=svcDhcpLseStateIAIDType, custLastMgmtChange=custLastMgmtChange, svcTlsStpForwardDelay=svcTlsStpForwardDelay, svcDhcpLseStateVcId=svcDhcpLseStateVcId, tmnxServConformance=tmnxServConformance, hostConnectivityCiAddrType=hostConnectivityCiAddrType, tlsPipStpInRstBpdus=tlsPipStpInRstBpdus, custInfoTable=custInfoTable, tlsMFibSdpId=tlsMFibSdpId, svcDhcpLeaseStateActionEntry=svcDhcpLeaseStateActionEntry, topologyChangeVcpState=topologyChangeVcpState, tlsMstiTable=tlsMstiTable, tlsPipStpPortNum=tlsPipStpPortNum, svcEndPointTxActiveUpTime=svcEndPointTxActiveUpTime, svcWholesalerNumStaticHosts=svcWholesalerNumStaticHosts, SdpTemplateId=SdpTemplateId, TVirtSchedAttribute=TVirtSchedAttribute, svcDhcpLseStateAppProfString=svcDhcpLseStateAppProfString, svcDhcpLseStateForceRenew=svcDhcpLseStateForceRenew, svcTlsBgpADExportRteTarget=svcTlsBgpADExportRteTarget, tlsPipMstiDesignatedBridge=tlsPipMstiDesignatedBridge, svcPEDiscoveryPolicyEntry=svcPEDiscoveryPolicyEntry, svcDhcpLseStateSecondaryDnsType=svcDhcpLseStateSecondaryDnsType, custNumEntries=custNumEntries, svcDhcpLseStateClientId=svcDhcpLseStateClientId, tlsMFibStatsForwardedPkts=tlsMFibStatsForwardedPkts, custMultSvcSiteIntendedEgrSchedPlcy=custMultSvcSiteIntendedEgrSchedPlcy, svcTlsFdbNumHostEntries=svcTlsFdbNumHostEntries, TlsLimitMacMoveLevel=TlsLimitMacMoveLevel, svcDhcpLseStateServerLeaseStart=svcDhcpLseStateServerLeaseStart, svcTlsBackboneVplsSvcId=svcTlsBackboneVplsSvcId, tlsDhcpRestoreLseStateSvcId=tlsDhcpRestoreLseStateSvcId, svcId=svcId, custMultiSvcSiteEgrSchedPlcyStatsEntry=custMultiSvcSiteEgrSchedPlcyStatsEntry, custIngQosPortSchedFwdPkts=custIngQosPortSchedFwdPkts, svcTlsStpHelloTime=svcTlsStpHelloTime, custIngQosAssignmentPortId=custIngQosAssignmentPortId, svcType=svcType, tlsDhcpRestoreLseStateProblem=tlsDhcpRestoreLseStateProblem, svcTlsStpVersion=svcTlsStpVersion, tlsMstiRemainingHopCount=tlsMstiRemainingHopCount, svcDhcpLseStateEncapValue=svcDhcpLseStateEncapValue, svcTlsStpTopologyChangeActive=svcTlsStpTopologyChangeActive, tlsDhcpLseStateOldChAddr=tlsDhcpLseStateOldChAddr, L2ptProtocols=L2ptProtocols, svcEndPointTable=svcEndPointTable, tlsDhcpRestoreLseStateCiAddr=tlsDhcpRestoreLseStateCiAddr, tmnxSvcDhcpV6v0Group=tmnxSvcDhcpV6v0Group, svcTlsBgpADVplsId=svcTlsBgpADVplsId, custMssIngQosSPIR=custMssIngQosSPIR, tmnxSvcTlsShgV6v0Group=tmnxSvcTlsShgV6v0Group, svcAdminStatus=svcAdminStatus, tmnxSvcTlsMFibV6v0Group=tmnxSvcTlsMFibV6v0Group, svcNumEntries=svcNumEntries, tmnxSvcObsoletedV6v0Group=tmnxSvcObsoletedV6v0Group, svcVRouterId=svcVRouterId, svcDhcpLseStateModInterDestId=svcDhcpLseStateModInterDestId, BridgeId=BridgeId, tmnxSvc7710V6v0Compliance=tmnxSvc7710V6v0Compliance, tmnxSvc7450V6v0Compliance=tmnxSvc7450V6v0Compliance, custEgrSchedPlcyPortStatsFwdPkt=custEgrSchedPlcyPortStatsFwdPkt, tlsPipStpInConfigBpdus=tlsPipStpInConfigBpdus, tlsEgrMcGrpDescription=tlsEgrMcGrpDescription, tlsProtMacRowStatus=tlsProtMacRowStatus, SdpBindBandwidth=SdpBindBandwidth, svcTlsMrpMaxAttributes=svcTlsMrpMaxAttributes, svcDescription=svcDescription, tmnxTstpCompliances=tmnxTstpCompliances, svcTlsBgpADVsiImportPolicy1=svcTlsBgpADVsiImportPolicy1) mibBuilder.exportSymbols('ALCATEL-IND1-TIMETRA-SERV-MIB', svcDhcpLeaseStateTable=svcDhcpLeaseStateTable, tlsRdntGrpMemberEncap=tlsRdntGrpMemberEncap, tlsMstiMvplsMaxVlanTag=tlsMstiMvplsMaxVlanTag, svcTlsBgpADVsiExportPolicy1=svcTlsBgpADVsiExportPolicy1, svcTlsStpVirtualRootBridgeStatus=svcTlsStpVirtualRootBridgeStatus, tlsMstiPriority=tlsMstiPriority, tlsMFibEntry=tlsMFibEntry, topologyChangePipMajorState=topologyChangePipMajorState, svcPEDiscoveryPolicyPassword=svcPEDiscoveryPolicyPassword, custMssEgrQosSName=custMssEgrQosSName, svcDhcpLseStateNextHopMacAddr=svcDhcpLseStateNextHopMacAddr, tlsMFibStatsGrpInetAddrType=tlsMFibStatsGrpInetAddrType, tlsShgInstanceId=tlsShgInstanceId, tlsFdbEndPointName=tlsFdbEndPointName, svcTlsBgpADTable=svcTlsBgpADTable, svcTlsInfoTable=svcTlsInfoTable, custCreated=custCreated, macPinningPinnedRow=macPinningPinnedRow, tmnxCustGroups=tmnxCustGroups, iesIfDescription=iesIfDescription, ConfigStatus=ConfigStatus, svcTlsFdbLocalAgeTime=svcTlsFdbLocalAgeTime, custMultSvcSiteIngressSchedulerPolicy=custMultSvcSiteIngressSchedulerPolicy, svcTlsStpBridgeInstanceId=svcTlsStpBridgeInstanceId, custMultiSvcSiteIngStatsTable=custMultiSvcSiteIngStatsTable, svcNumSdps=svcNumSdps, tlsFdbRowStatus=tlsFdbRowStatus, tlsFdbBackboneDstMac=tlsFdbBackboneDstMac, tlsPipMstiEntry=tlsPipMstiEntry, tmnxSvcV6v0Group=tmnxSvcV6v0Group, svcTlsStpOperStatus=svcTlsStpOperStatus, svcTlsFdbNumEntries=svcTlsFdbNumEntries, svcPEDiscPolServerEntry=svcPEDiscPolServerEntry, custMultiSvcSiteIngSchedPlcyStatsEntry=custMultiSvcSiteIngSchedPlcyStatsEntry, custEgrQosAssignmentPortId=custEgrQosAssignmentPortId, custMssIngQosSchedInfoTable=custMssIngQosSchedInfoTable, custEgrSchedPlcyPortStatsFwdOct=custEgrSchedPlcyPortStatsFwdOct, svcEndPointForceSwitchOverSdpId=svcEndPointForceSwitchOverSdpId, svcRadiusDiscovery=svcRadiusDiscovery, tlsMFibGrpSrcStatsForwardedPkts=tlsMFibGrpSrcStatsForwardedPkts, svcVllType=svcVllType, svcPEDiscPolServerRowStatus=svcPEDiscPolServerRowStatus, tlsFdbEncapValue=tlsFdbEncapValue, iesIfParentIf=iesIfParentIf, svcPEDiscPolServerIndex=svcPEDiscPolServerIndex, svcDhcpLseStateModifyAppProfile=svcDhcpLseStateModifyAppProfile, svcFdbMimDestTblFullAlrm=svcFdbMimDestTblFullAlrm, custIngQosSchedStatsForwardedOctets=custIngQosSchedStatsForwardedOctets, custEgrQosPortIdSchedStatsEntry=custEgrQosPortIdSchedStatsEntry, svcDhcpLseStateDhcpClientAddr=svcDhcpLseStateDhcpClientAddr, custId=custId, tlsEgressMulticastGroupEntry=tlsEgressMulticastGroupEntry, tlsShgCreationOrigin=tlsShgCreationOrigin, tlsRdntGrpMemberLastMgmtChange=tlsRdntGrpMemberLastMgmtChange, svcTlsFdbTableFullLowWatermark=svcTlsFdbTableFullLowWatermark, custMssEgrQosSchedInfoTable=custMssEgrQosSchedInfoTable, svcDhcpLeaseStateModifyEntry=svcDhcpLeaseStateModifyEntry, svcDhcpLseStateFramedIpNetMask=svcDhcpLseStateFramedIpNetMask, iesGrpIfOperUpWhileEmpty=iesGrpIfOperUpWhileEmpty, svcEndPointTxActiveSdpId=svcEndPointTxActiveSdpId, svcTlsBackboneOperSrcMac=svcTlsBackboneOperSrcMac, svcDhcpSubAuthError=svcDhcpSubAuthError, tmnxSvcPEV6v0Group=tmnxSvcPEV6v0Group, svcTlsStpHoldTime=svcTlsStpHoldTime, iesIfStatusChanged=iesIfStatusChanged, newRootBridge=newRootBridge, TStpPortState=TStpPortState, custMssIngQosSName=custMssIngQosSName, svcPEDiscPolServerSecret=svcPEDiscPolServerSecret, tlsMFibEntryType=tlsMFibEntryType, svcApipeInfoEntry=svcApipeInfoEntry, svcFdbMimDestTblFullAlrmCleared=svcFdbMimDestTblFullAlrmCleared, svcTlsBgpADVsiImportPolicy2=svcTlsBgpADVsiImportPolicy2, custMssEgrQosSPIR=custMssEgrQosSPIR, tmnxSvcEpipeV6v0Group=tmnxSvcEpipeV6v0Group, svcTlsPropagateMacFlush=svcTlsPropagateMacFlush, svcTlsMrpFailedRegisterCount=svcTlsMrpFailedRegisterCount, custEgrSchedPlcyStatsFwdPkt=custEgrSchedPlcyStatsFwdPkt, tlsMFibSrcInetAddr=tlsMFibSrcInetAddr, tlsShgName=tlsShgName, svcTlsBgpADVsiExportPolicy2=svcTlsBgpADVsiExportPolicy2, custMssEgrQosSchedInfoEntry=custMssEgrQosSchedInfoEntry, svcTlsFdbTableFullAlarmRaised=svcTlsFdbTableFullAlarmRaised, custDescription=custDescription, TdmOptionsSigPkts=TdmOptionsSigPkts, tmnxServNotifications=tmnxServNotifications, iesIfShcvAction=iesIfShcvAction, tlsEgressMulticastGroupTable=tlsEgressMulticastGroupTable, newRootVcpState=newRootVcpState, svcTlsDHCPLseStRestoreProblem=svcTlsDHCPLseStRestoreProblem, svcDhcpLseStateShcvOperState=svcDhcpLseStateShcvOperState, tlsPipMstiDesignatedPort=tlsPipMstiDesignatedPort, svcMstiInstanceId=svcMstiInstanceId, tmnxSvcTlsBackbone6v0Group=tmnxSvcTlsBackbone6v0Group, tlsFdbInfoTable=tlsFdbInfoTable, svcTlsStpTopologyChanges=svcTlsStpTopologyChanges, tlsEgrMcGrpAdminQinqFixedTagVal=tlsEgrMcGrpAdminQinqFixedTagVal, custEgrQosSchedStatsForwardedPackets=custEgrQosSchedStatsForwardedPackets, svcDhcpLseStateLeaseSplitActive=svcDhcpLseStateLeaseSplitActive, tlsMFibTable=tlsMFibTable, L2RouteOrigin=L2RouteOrigin, svcTlsStpRootPort=svcTlsStpRootPort, svcDhcpLseStateModifyAncpString=svcDhcpLseStateModifyAncpString, svcTlsBackboneSrcMac=svcTlsBackboneSrcMac, svcTlsFdbTableFullAlarmCleared=svcTlsFdbTableFullAlarmCleared, tmnxSvcNotifyV6v0Group=tmnxSvcNotifyV6v0Group, iesIfRowStatus=iesIfRowStatus, macPinningViolatingRowDescr=macPinningViolatingRowDescr, tlsMFibFwdOrBlk=tlsMFibFwdOrBlk, svcDhcpLseStateRetailerIf=svcDhcpLseStateRetailerIf, svcTlsShcvSrcIp=svcTlsShcvSrcIp, hostConnectivityChAddr=hostConnectivityChAddr, tlsMstiIntRootCost=tlsMstiIntRootCost, svcDhcpLseStatePortId=svcDhcpLseStatePortId, tlsPipStpDesignatedBridge=tlsPipStpDesignatedBridge, svcTlsMacMoveAdminStatus=svcTlsMacMoveAdminStatus, svcEpipePbbBvplsSvcId=svcEpipePbbBvplsSvcId, custDeleted=custDeleted, svcDhcpLseStateSecondaryNbnsType=svcDhcpLseStateSecondaryNbnsType, tlsFdbEPMacOperVcId=tlsFdbEPMacOperVcId, SvcISID=SvcISID, svcDhcpLseStateRemainLseTime=svcDhcpLseStateRemainLseTime, custMssIngQosSLastMgmtChange=custMssIngQosSLastMgmtChange, svcIfDHCP6MsgStatsLstClrd=svcIfDHCP6MsgStatsLstClrd, tlsMFibGrpSrcStatsEntry=tlsMFibGrpSrcStatsEntry, custNextFreeId=custNextFreeId, tlsPipStpOperProtocol=tlsPipStpOperProtocol, svcDhcpLseStateModifySubIndent=svcDhcpLseStateModifySubIndent, tmnxCustObjs=tmnxCustObjs, custIngQosPortIdSchedStatsEntry=custIngQosPortIdSchedStatsEntry, tlsMstiInstanceId=tlsMstiInstanceId, svcWholesalerID=svcWholesalerID, tlsMFibGrpMacAddr=tlsMFibGrpMacAddr, svcTlsStpBridgeMaxHops=svcTlsStpBridgeMaxHops, tlsMstiLastMgmtChange=tlsMstiLastMgmtChange, tlsMFibStatsGrpInetAddr=tlsMFibStatsGrpInetAddr, ServObjName=ServObjName, svcTlsMrpFloodTime=svcTlsMrpFloodTime, svcTlsStpHoldCount=svcTlsStpHoldCount, tlsShgDescription=tlsShgDescription, svcDhcpLseStateIAID=svcDhcpLseStateIAID, svcDhcpRestoreLseStateProblem=svcDhcpRestoreLseStateProblem, svcTlsMacPinningViolation=svcTlsMacPinningViolation, tmnxNewMstiRegionalRootBridge=tmnxNewMstiRegionalRootBridge, tmnxSvcObjRow=tmnxSvcObjRow, svcTlsBgpADVsiExportPolicy3=svcTlsBgpADVsiExportPolicy3, tmnxSvcIfDHCP6V6v0Group=tmnxSvcIfDHCP6V6v0Group, iesGrpIfTable=iesGrpIfTable, tlsProtectedMacEntry=tlsProtectedMacEntry, tmnxTstpGroups=tmnxTstpGroups, TlsLimitMacMove=TlsLimitMacMove, svcPEDiscoveryPolicyName=svcPEDiscoveryPolicyName, svcMgmtVpls=svcMgmtVpls, svcTlsBgpADVsiPrefix=svcTlsBgpADVsiPrefix, svcTlsShcvAction=svcTlsShcvAction, svcDhcpManagedRouteStatus=svcDhcpManagedRouteStatus, tlsFdbLastStateChange=tlsFdbLastStateChange, tlsMFibGrpSrcStatsForwardedOctets=tlsMFibGrpSrcStatsForwardedOctets, iesIfTable=iesIfTable, tlsPipMstiPortRole=tlsPipMstiPortRole, iesIfAdminStatus=iesIfAdminStatus, svcDhcpManagedRouteInetAddr=svcDhcpManagedRouteInetAddr, svcTlsBgpADVsiExportPolicy5=svcTlsBgpADVsiExportPolicy5, custIngSchedPlcyPortStatsFwdPkt=custIngSchedPlcyPortStatsFwdPkt, tlsEgrMcGrpDot1qEtherType=tlsEgrMcGrpDot1qEtherType, VpnId=VpnId, svcTlsMacRelearnOnly=svcTlsMacRelearnOnly, custEgrQosPortSchedFwdOctets=custEgrQosPortSchedFwdOctets, tlsMFibStatsSrcInetAddr=tlsMFibStatsSrcInetAddr, svcDhcpLseStateSlaProfString=svcDhcpLseStateSlaProfString, svcTlsBackboneVplsStp=svcTlsBackboneVplsStp, svcTlsMrpAttrTblHighWatermark=svcTlsMrpAttrTblHighWatermark, svcTlsStpDesignatedRoot=svcTlsStpDesignatedRoot, tlsShgInfoEntry=tlsShgInfoEntry, svcRadiusDiscoveryShutdown=svcRadiusDiscoveryShutdown, StpProtocol=StpProtocol, svcDhcpLseStateOldCiAddr=svcDhcpLseStateOldCiAddr, svcDhcpManagedRouteInetAddrType=svcDhcpManagedRouteInetAddrType, svcDhcpLseStateFramedIpNetMaskTp=svcDhcpLseStateFramedIpNetMaskTp, tmnxCustCompliances=tmnxCustCompliances, svcEndPointEntry=svcEndPointEntry, custMultiSvcSiteEgrSchedPlcyPortStatsEntry=custMultiSvcSiteEgrSchedPlcyPortStatsEntry, custIngQosSchedStatsForwardedPackets=custIngQosSchedStatsForwardedPackets, pipActiveProtocolChange=pipActiveProtocolChange, svcDhcpLseStateDhcpServerAddrType=svcDhcpLseStateDhcpServerAddrType, tlsPipStpOutRstBpdus=tlsPipStpOutRstBpdus, svcDhcpLseStateServerLeaseEnd=svcDhcpLseStateServerLeaseEnd, svcDhcpLeaseStateActionTable=svcDhcpLeaseStateActionTable, svcTlsBgpADAdminStatus=svcTlsBgpADAdminStatus, iesIfEntry=iesIfEntry, tmnxSvcNotifyObjsV6v0Group=tmnxSvcNotifyObjsV6v0Group, svcTlsStpCistRegionalRoot=svcTlsStpCistRegionalRoot, svcTlsStpPrimaryBridge=svcTlsStpPrimaryBridge, tstpTrapsPrefix=tstpTrapsPrefix, svcPEDiscoveryPolicyRowStatus=svcPEDiscoveryPolicyRowStatus, svcDhcpLseStateOldChAddr=svcDhcpLseStateOldChAddr, custMultiSvcSiteIngSchedPlcyStatsTable=custMultiSvcSiteIngSchedPlcyStatsTable, svcTlsStpPriority=svcTlsStpPriority, svcOperStatus=svcOperStatus)
spacy_model_names = { "en": "en_core_web_md", "fr": "fr_core_news_md", "es": "es_core_news_md" } # 17 for English. # 15 for French: replace "INTJ" (7 entries) or "SYM" with "X" (1296 entries). # 16 for Spanish: Change "X" (1 entry) to "INTJ" (27 entries) spacy_pos_dict = { "en": ['ADJ', 'ADP', 'ADV', 'AUX', 'CCONJ', 'DET', 'INTJ', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'SYM', 'VERB', 'X'], "fr": ['ADJ', 'ADP', 'ADV', 'AUX', 'CCONJ', 'DET', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'VERB', 'X', ''], "es": ['ADJ', 'ADP', 'ADV', 'AUX', 'CONJ', 'DET', 'INTJ', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'SYM', 'VERB'] } gensim_fasttext_models = { "en": "../data/embeddings/fasttext/cc.en.300.bin", "fr": "../data/embeddings/fasttext/cc.fr.300.bin", "es": "../data/embeddings/fasttext/cc.es.300.bin" }
spacy_model_names = {'en': 'en_core_web_md', 'fr': 'fr_core_news_md', 'es': 'es_core_news_md'} spacy_pos_dict = {'en': ['ADJ', 'ADP', 'ADV', 'AUX', 'CCONJ', 'DET', 'INTJ', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'SYM', 'VERB', 'X'], 'fr': ['ADJ', 'ADP', 'ADV', 'AUX', 'CCONJ', 'DET', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'VERB', 'X', ''], 'es': ['ADJ', 'ADP', 'ADV', 'AUX', 'CONJ', 'DET', 'INTJ', 'NOUN', 'NUM', 'PART', 'PRON', 'PROPN', 'PUNCT', 'SCONJ', 'SYM', 'VERB']} gensim_fasttext_models = {'en': '../data/embeddings/fasttext/cc.en.300.bin', 'fr': '../data/embeddings/fasttext/cc.fr.300.bin', 'es': '../data/embeddings/fasttext/cc.es.300.bin'}
def reverse(value): if not isinstance(value, str): return None result = '' for i in reversed(range(len(value))): result += value[i] return result
def reverse(value): if not isinstance(value, str): return None result = '' for i in reversed(range(len(value))): result += value[i] return result
# ADDITION (plus signal) print (5 + 5) # SUBTRACTION (minus signal) print (85 - 72) # MULTIPLICATION (times signal) print (8 * 7) # DIVISION (split signal) print (56 / 12) print(5 / 2) # Quotient, number of times a division is completed fully print(5 // 2) # Always return an integer number # REMAINDER print(6 % 2) # Return the rest of division # POTENTIATION print(4 ** 4)
print(5 + 5) print(85 - 72) print(8 * 7) print(56 / 12) print(5 / 2) print(5 // 2) print(6 % 2) print(4 ** 4)
fileObj = open("words.txt") array = [] for word in fileObj: array.append(word.rstrip()) fileObj.close() final = "var words = [" for element in array: final += "\"" + element + "\"," final = final[:-1] final += "]" fileOut = open("output.js", "w") fileOut.write(final) fileOut.close()
file_obj = open('words.txt') array = [] for word in fileObj: array.append(word.rstrip()) fileObj.close() final = 'var words = [' for element in array: final += '"' + element + '",' final = final[:-1] final += ']' file_out = open('output.js', 'w') fileOut.write(final) fileOut.close()
IMPALA_RESERVED_WORDS = ( "abs", "acos", "add", "aggregate", "all", "allocate", "alter", "analytic", "and", "anti", "any", "api_version", "are", "array", "array_agg", "array_max_cardinality", "as", "asc", "asensitive", "asin", "asymmetric", "at", "atan", "atomic", "authorization", "avg", "avro", "backup", "begin", "begin_frame", "begin_partition", "between", "bigint", "binary", "blob", "block_size", "boolean", "both", "break", "browse", "bulk", "by", "cache", "cached", "call", "called", "cardinality", "cascade", "cascaded", "case", "cast", "ceil", "ceiling", "change", "char", "char_length", "character", "character_length", "check", "checkpoint", "class", "classifier", "clob", "close", "close_fn", "clustered", "coalesce", "collate", "collect", "column", "columns", "comment", "commit", "compression", "compute", "condition", "conf", "connect", "constraint", "contains", "continue", "convert", "copy", "corr", "corresponding", "cos", "cosh", "count", "covar_pop", "covar_samp", "create", "cross", "cube", "cume_dist", "current", "current_catalog", "current_date", "current_default_transform_group", "current_path", "current_role", "current_row", "current_schema", "current_time", "current_timestamp", "current_transform_group_for_type", "current_user", "cursor", "cycle", "data", "database", "databases", "date", "datetime", "day", "dayofweek", "dbcc", "deallocate", "dec", "decfloat", "decimal", "declare", "default", "define", "delete", "delimited", "dense_rank", "deny", "deref", "desc", "describe", "deterministic", "disconnect", "disk", "distinct", "distributed", "div", "double", "drop", "dump", "dynamic", "each", "element", "else", "empty", "encoding", "end", "end", "end_frame", "end_partition", "equals", "errlvl", "escape", "escaped", "every", "except", "exchange", "exec", "execute", "exists", "exit", "exp", "explain", "extended", "external", "extract", "false", "fetch", "fields", "file", "filefactor", "fileformat", "files", "filter", "finalize_fn", "first", "first_value", "float", "floor", "following", "for", "foreign", "format", "formatted", "frame_row", "free", "freetext", "from", "full", "function", "functions", "fusion", "get", "global", "goto", "grant", "group", "grouping", "groups", "hash", "having", "hold", "holdlock", "hour", "identity", "if", "ignore", "ilike", "import", "in", "incremental", "index", "indicator", "init_fn", "initial", "inner", "inout", "inpath", "insensitive", "insert", "int", "integer", "intermediate", "intersect", "intersection", "interval", "into", "invalidate", "iregexp", "is", "join", "json_array", "json_arrayagg", "json_exists", "json_object", "json_objectagg", "json_query", "json_table", "json_table_primitive", "json_value", "key", "kill", "kudu", "lag", "language", "large", "last", "last_value", "lateral", "lead", "leading", "left", "less", "like", "like_regex", "limit", "lineno", "lines", "listagg", "ln", "load", "local", "localtime", "localtimestamp", "location", "log", "log10", "lower", "macro", "map", "match", "match_number", "match_recognize", "matches", "max", "member", "merge", "merge_fn", "metadata", "method", "min", "minute", "mod", "modifies", "module", "month", "more", "multiset", "national", "natural", "nchar", "nclob", "new", "no", "nocheck", "nonclustered", "none", "normalize", "not", "nth_value", "ntile", "null", "nullif", "nulls", "numeric", "occurrences_regex", "octet_length", "of", "off", "offset", "offsets", "old", "omit", "on", "one", "only", "open", "option", "or", "order", "out", "outer", "over", "overlaps", "overlay", "overwrite", "parameter", "parquet", "parquetfile", "partialscan", "partition", "partitioned", "partitions", "pattern", "per", "percent", "percent_rank", "percentile_cont", "percentile_disc", "period", "pivot", "plan", "portion", "position", "position_regex", "power", "precedes", "preceding", "precision", "prepare", "prepare_fn", "preserve", "primary", "print", "proc", "procedure", "produced", "ptf", "public", "purge", "raiseerror", "range", "rank", "rcfile", "read", "reads", "readtext", "real", "reconfigure", "recover", "recursive", "reduce", "ref", "references", "referencing", "refresh", "regexp", "regr_avgx", "regr_avgy", "regr_count", "regr_intercept", "regr_r2", "regr_slope", "regr_sxx", "regr_sxy", "regr_syy", "release", "rename", "repeatable", "replace", "replication", "restore", "restrict", "result", "return", "returns", "revert", "revoke", "right", "rlike", "role", "roles", "rollback", "rollup", "row", "row_number", "rowcount", "rows", "rule", "running", "save", "savepoint", "schema", "schemas", "scope", "scroll", "search", "second", "securityaudit", "seek", "select", "semi", "sensitive", "sequencefile", "serdeproperties", "serialize_fn", "session_user", "set", "setuser", "show", "shutdown", "similar", "sin", "sinh", "skip", "smallint", "some", "sort", "specific", "specifictype", "sql", "sqlexception", "sqlstate", "sqlwarning", "sqrt", "start", "static", "statistics", "stats", "stddev_pop", "stddev_samp", "stored", "straight_join", "string", "struct", "submultiset", "subset", "substring", "substring_regex", "succeeds", "sum", "symbol", "symmetric", "system", "system_time", "system_user", "table", "tables", "tablesample", "tan", "tanh", "tblproperties", "terminated", "textfile", "textsize", "then", "time", "timestamp", "timezone_hour", "timezone_minute", "tinyint", "to", "top", "trailing", "tran", "transform", "translate", "translate_regex", "translation", "treat", "trigger", "trim", "trim_array", "true", "truncate", "try_convert", "uescape", "unbounded", "uncached", "union", "unique", "uniquejoin", "unknown", "unnest", "unpivot", "update", "update_fn", "updatetext", "upper", "upsert", "use", "user", "using", "utc_tmestamp", "value", "value_of", "values", "var_pop", "var_samp", "varbinary", "varchar", "varying", "versioning", "view", "views", "waitfor", "when", "whenever", "where", "while", "width_bucket", "window", "with", "within", "without", "writetext", "year", )
impala_reserved_words = ('abs', 'acos', 'add', 'aggregate', 'all', 'allocate', 'alter', 'analytic', 'and', 'anti', 'any', 'api_version', 'are', 'array', 'array_agg', 'array_max_cardinality', 'as', 'asc', 'asensitive', 'asin', 'asymmetric', 'at', 'atan', 'atomic', 'authorization', 'avg', 'avro', 'backup', 'begin', 'begin_frame', 'begin_partition', 'between', 'bigint', 'binary', 'blob', 'block_size', 'boolean', 'both', 'break', 'browse', 'bulk', 'by', 'cache', 'cached', 'call', 'called', 'cardinality', 'cascade', 'cascaded', 'case', 'cast', 'ceil', 'ceiling', 'change', 'char', 'char_length', 'character', 'character_length', 'check', 'checkpoint', 'class', 'classifier', 'clob', 'close', 'close_fn', 'clustered', 'coalesce', 'collate', 'collect', 'column', 'columns', 'comment', 'commit', 'compression', 'compute', 'condition', 'conf', 'connect', 'constraint', 'contains', 'continue', 'convert', 'copy', 'corr', 'corresponding', 'cos', 'cosh', 'count', 'covar_pop', 'covar_samp', 'create', 'cross', 'cube', 'cume_dist', 'current', 'current_catalog', 'current_date', 'current_default_transform_group', 'current_path', 'current_role', 'current_row', 'current_schema', 'current_time', 'current_timestamp', 'current_transform_group_for_type', 'current_user', 'cursor', 'cycle', 'data', 'database', 'databases', 'date', 'datetime', 'day', 'dayofweek', 'dbcc', 'deallocate', 'dec', 'decfloat', 'decimal', 'declare', 'default', 'define', 'delete', 'delimited', 'dense_rank', 'deny', 'deref', 'desc', 'describe', 'deterministic', 'disconnect', 'disk', 'distinct', 'distributed', 'div', 'double', 'drop', 'dump', 'dynamic', 'each', 'element', 'else', 'empty', 'encoding', 'end', 'end', 'end_frame', 'end_partition', 'equals', 'errlvl', 'escape', 'escaped', 'every', 'except', 'exchange', 'exec', 'execute', 'exists', 'exit', 'exp', 'explain', 'extended', 'external', 'extract', 'false', 'fetch', 'fields', 'file', 'filefactor', 'fileformat', 'files', 'filter', 'finalize_fn', 'first', 'first_value', 'float', 'floor', 'following', 'for', 'foreign', 'format', 'formatted', 'frame_row', 'free', 'freetext', 'from', 'full', 'function', 'functions', 'fusion', 'get', 'global', 'goto', 'grant', 'group', 'grouping', 'groups', 'hash', 'having', 'hold', 'holdlock', 'hour', 'identity', 'if', 'ignore', 'ilike', 'import', 'in', 'incremental', 'index', 'indicator', 'init_fn', 'initial', 'inner', 'inout', 'inpath', 'insensitive', 'insert', 'int', 'integer', 'intermediate', 'intersect', 'intersection', 'interval', 'into', 'invalidate', 'iregexp', 'is', 'join', 'json_array', 'json_arrayagg', 'json_exists', 'json_object', 'json_objectagg', 'json_query', 'json_table', 'json_table_primitive', 'json_value', 'key', 'kill', 'kudu', 'lag', 'language', 'large', 'last', 'last_value', 'lateral', 'lead', 'leading', 'left', 'less', 'like', 'like_regex', 'limit', 'lineno', 'lines', 'listagg', 'ln', 'load', 'local', 'localtime', 'localtimestamp', 'location', 'log', 'log10', 'lower', 'macro', 'map', 'match', 'match_number', 'match_recognize', 'matches', 'max', 'member', 'merge', 'merge_fn', 'metadata', 'method', 'min', 'minute', 'mod', 'modifies', 'module', 'month', 'more', 'multiset', 'national', 'natural', 'nchar', 'nclob', 'new', 'no', 'nocheck', 'nonclustered', 'none', 'normalize', 'not', 'nth_value', 'ntile', 'null', 'nullif', 'nulls', 'numeric', 'occurrences_regex', 'octet_length', 'of', 'off', 'offset', 'offsets', 'old', 'omit', 'on', 'one', 'only', 'open', 'option', 'or', 'order', 'out', 'outer', 'over', 'overlaps', 'overlay', 'overwrite', 'parameter', 'parquet', 'parquetfile', 'partialscan', 'partition', 'partitioned', 'partitions', 'pattern', 'per', 'percent', 'percent_rank', 'percentile_cont', 'percentile_disc', 'period', 'pivot', 'plan', 'portion', 'position', 'position_regex', 'power', 'precedes', 'preceding', 'precision', 'prepare', 'prepare_fn', 'preserve', 'primary', 'print', 'proc', 'procedure', 'produced', 'ptf', 'public', 'purge', 'raiseerror', 'range', 'rank', 'rcfile', 'read', 'reads', 'readtext', 'real', 'reconfigure', 'recover', 'recursive', 'reduce', 'ref', 'references', 'referencing', 'refresh', 'regexp', 'regr_avgx', 'regr_avgy', 'regr_count', 'regr_intercept', 'regr_r2', 'regr_slope', 'regr_sxx', 'regr_sxy', 'regr_syy', 'release', 'rename', 'repeatable', 'replace', 'replication', 'restore', 'restrict', 'result', 'return', 'returns', 'revert', 'revoke', 'right', 'rlike', 'role', 'roles', 'rollback', 'rollup', 'row', 'row_number', 'rowcount', 'rows', 'rule', 'running', 'save', 'savepoint', 'schema', 'schemas', 'scope', 'scroll', 'search', 'second', 'securityaudit', 'seek', 'select', 'semi', 'sensitive', 'sequencefile', 'serdeproperties', 'serialize_fn', 'session_user', 'set', 'setuser', 'show', 'shutdown', 'similar', 'sin', 'sinh', 'skip', 'smallint', 'some', 'sort', 'specific', 'specifictype', 'sql', 'sqlexception', 'sqlstate', 'sqlwarning', 'sqrt', 'start', 'static', 'statistics', 'stats', 'stddev_pop', 'stddev_samp', 'stored', 'straight_join', 'string', 'struct', 'submultiset', 'subset', 'substring', 'substring_regex', 'succeeds', 'sum', 'symbol', 'symmetric', 'system', 'system_time', 'system_user', 'table', 'tables', 'tablesample', 'tan', 'tanh', 'tblproperties', 'terminated', 'textfile', 'textsize', 'then', 'time', 'timestamp', 'timezone_hour', 'timezone_minute', 'tinyint', 'to', 'top', 'trailing', 'tran', 'transform', 'translate', 'translate_regex', 'translation', 'treat', 'trigger', 'trim', 'trim_array', 'true', 'truncate', 'try_convert', 'uescape', 'unbounded', 'uncached', 'union', 'unique', 'uniquejoin', 'unknown', 'unnest', 'unpivot', 'update', 'update_fn', 'updatetext', 'upper', 'upsert', 'use', 'user', 'using', 'utc_tmestamp', 'value', 'value_of', 'values', 'var_pop', 'var_samp', 'varbinary', 'varchar', 'varying', 'versioning', 'view', 'views', 'waitfor', 'when', 'whenever', 'where', 'while', 'width_bucket', 'window', 'with', 'within', 'without', 'writetext', 'year')
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") load("@rules_foreign_cc//foreign_cc:repositories.bzl", "rules_foreign_cc_dependencies") def deps(repo_mapping = {}): rules_foreign_cc_dependencies() maybe( http_archive, name = "openssl", build_file = "@com_github_3rdparty_bazel_rules_openssl//:BUILD.openssl.bazel", sha256 = "892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5", strip_prefix = "openssl-1.1.1k", urls = [ "https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1k.tar.gz", "https://www.openssl.org/source/openssl-1.1.1k.tar.gz", "https://github.com/openssl/openssl/archive/OpenSSL_1_1_1k.tar.gz", ], repo_mapping = repo_mapping, ) maybe( http_archive, name = "nasm", build_file = "@com_github_3rdparty_bazel_rules_openssl//:BUILD.nasm.bazel", sha256 = "f5c93c146f52b4f1664fa3ce6579f961a910e869ab0dae431bd871bdd2584ef2", strip_prefix = "nasm-2.15.05", urls = [ "https://mirror.bazel.build/www.nasm.us/pub/nasm/releasebuilds/2.15.05/win64/nasm-2.15.05-win64.zip", "https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/win64/nasm-2.15.05-win64.zip", ], repo_mapping = repo_mapping, ) maybe( http_archive, name = "perl", build_file = "@com_github_3rdparty_bazel_rules_openssl//:BUILD.perl.bazel", sha256 = "aeb973da474f14210d3e1a1f942dcf779e2ae7e71e4c535e6c53ebabe632cc98", urls = [ "https://mirror.bazel.build/strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip", "https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip", ], repo_mapping = repo_mapping, )
load('@bazel_tools//tools/build_defs/repo:http.bzl', 'http_archive') load('@bazel_tools//tools/build_defs/repo:utils.bzl', 'maybe') load('@rules_foreign_cc//foreign_cc:repositories.bzl', 'rules_foreign_cc_dependencies') def deps(repo_mapping={}): rules_foreign_cc_dependencies() maybe(http_archive, name='openssl', build_file='@com_github_3rdparty_bazel_rules_openssl//:BUILD.openssl.bazel', sha256='892a0875b9872acd04a9fde79b1f943075d5ea162415de3047c327df33fbaee5', strip_prefix='openssl-1.1.1k', urls=['https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1k.tar.gz', 'https://www.openssl.org/source/openssl-1.1.1k.tar.gz', 'https://github.com/openssl/openssl/archive/OpenSSL_1_1_1k.tar.gz'], repo_mapping=repo_mapping) maybe(http_archive, name='nasm', build_file='@com_github_3rdparty_bazel_rules_openssl//:BUILD.nasm.bazel', sha256='f5c93c146f52b4f1664fa3ce6579f961a910e869ab0dae431bd871bdd2584ef2', strip_prefix='nasm-2.15.05', urls=['https://mirror.bazel.build/www.nasm.us/pub/nasm/releasebuilds/2.15.05/win64/nasm-2.15.05-win64.zip', 'https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/win64/nasm-2.15.05-win64.zip'], repo_mapping=repo_mapping) maybe(http_archive, name='perl', build_file='@com_github_3rdparty_bazel_rules_openssl//:BUILD.perl.bazel', sha256='aeb973da474f14210d3e1a1f942dcf779e2ae7e71e4c535e6c53ebabe632cc98', urls=['https://mirror.bazel.build/strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip', 'https://strawberryperl.com/download/5.32.1.1/strawberry-perl-5.32.1.1-64bit.zip'], repo_mapping=repo_mapping)
jInicial = 7 iInicial = 1 for i in range (1, 10, +2): iDaConta = i - iInicial j = iDaConta + jInicial print("I={} J={}".format(i, j)) print("I={} J={}".format(i, j-1)) print("I={} J={}".format(i, j-2))
j_inicial = 7 i_inicial = 1 for i in range(1, 10, +2): i_da_conta = i - iInicial j = iDaConta + jInicial print('I={} J={}'.format(i, j)) print('I={} J={}'.format(i, j - 1)) print('I={} J={}'.format(i, j - 2))
# Definition for a binary tree node. # class TreeNode: # def __init__(self, val=0, left=None, right=None): # self.val = val # self.left = left # self.right = right class Solution: def isBalanced(self, root: Optional[TreeNode]) -> bool: def height(nd): if not nd: return 0 hl = height(nd.left) hr = height(nd.right) dh = abs(hl-hr) if hl < 0 or hr < 0 or dh > 1: return -1 return max(hl,hr)+1 ht = height(root) return ht > -1
class Solution: def is_balanced(self, root: Optional[TreeNode]) -> bool: def height(nd): if not nd: return 0 hl = height(nd.left) hr = height(nd.right) dh = abs(hl - hr) if hl < 0 or hr < 0 or dh > 1: return -1 return max(hl, hr) + 1 ht = height(root) return ht > -1
# Runs to perform control = True saltproc = True linear_generation = False cycle_time_decay = True linear_isotope = False # Basic model using ln(1 / (1 - X)) WIP efficiency_based = False saltproc_efficiency_based = False # Separate core piping is WIP separate_core_piping = False # Options plotting = True overlap = 0.5 width = 3 path_to_dump_files = 'ss-comparison' base_material_path = './ss-data-test/ss-fuel_' template_path = './templates' template_name = 'saltproc.msbr.serpent' number_serp_steps = 3 start_time = 3000 end_time = 6000 SP_step_size = 3 SP_start = 0 SP_end = 6000 LGA_step_size = 3 linear_SP_count = 2 important_isotopes = {'xenon': 'Xe135', 'iodine': 'I135', 'samarium': 'Sm149'} list_inventory = [ 'Xe-135', 'U-235', 'U-233', 'Th-232', 'I-135', 'Kr-83', 'Sm-149', 'Xe-134'] element_flow_list = [ 'krypton', 'xenon', 'selenium', 'niobium', 'molybdenum', 'technetium', 'ruthenium', 'rhodium', 'palladium', 'silver', 'antimony', 'tellurium', 'cadmium', 'indium', 'tin', 'bromine', 'iodine', 'protactinium', 'yttrium', 'lanthanum', 'cerium', 'praseodymium', 'neodymium', 'promethium', 'samarium', 'gadolinium', 'europium', 'rubidium', 'strontium', 'cesium', 'barium'] associated_symbol_list = [ 'Kr', 'Xe', 'Se', 'Nb', 'Mo', 'Tc', 'Ru', 'Rh', 'Pd', 'Ag', 'Sb', 'Te', 'Cd', 'In', 'Sn', 'Br', 'I', 'Pa', 'Y', 'La', 'Ce', 'Pr', 'Nd', 'Pm', 'Sm', 'Gd', 'Eu', 'Rb', 'Sr', 'Cs', 'Ba'] associated_atomic_list = [ ' 36', ' 54', ' 34', ' 41', ' 42', ' 43', ' 44', ' 45', ' 46', ' 47', ' 51', ' 52', ' 48', ' 49', ' 50', ' 35', ' 53', ' 91', ' 39', ' 57', ' 58', ' 59', ' 60', ' 61', ' 62', ' 64', ' 63', ' 37', ' 38', ' 55', ' 56'] total_view_list = list_inventory + element_flow_list
control = True saltproc = True linear_generation = False cycle_time_decay = True linear_isotope = False efficiency_based = False saltproc_efficiency_based = False separate_core_piping = False plotting = True overlap = 0.5 width = 3 path_to_dump_files = 'ss-comparison' base_material_path = './ss-data-test/ss-fuel_' template_path = './templates' template_name = 'saltproc.msbr.serpent' number_serp_steps = 3 start_time = 3000 end_time = 6000 sp_step_size = 3 sp_start = 0 sp_end = 6000 lga_step_size = 3 linear_sp_count = 2 important_isotopes = {'xenon': 'Xe135', 'iodine': 'I135', 'samarium': 'Sm149'} list_inventory = ['Xe-135', 'U-235', 'U-233', 'Th-232', 'I-135', 'Kr-83', 'Sm-149', 'Xe-134'] element_flow_list = ['krypton', 'xenon', 'selenium', 'niobium', 'molybdenum', 'technetium', 'ruthenium', 'rhodium', 'palladium', 'silver', 'antimony', 'tellurium', 'cadmium', 'indium', 'tin', 'bromine', 'iodine', 'protactinium', 'yttrium', 'lanthanum', 'cerium', 'praseodymium', 'neodymium', 'promethium', 'samarium', 'gadolinium', 'europium', 'rubidium', 'strontium', 'cesium', 'barium'] associated_symbol_list = ['Kr', 'Xe', 'Se', 'Nb', 'Mo', 'Tc', 'Ru', 'Rh', 'Pd', 'Ag', 'Sb', 'Te', 'Cd', 'In', 'Sn', 'Br', 'I', 'Pa', 'Y', 'La', 'Ce', 'Pr', 'Nd', 'Pm', 'Sm', 'Gd', 'Eu', 'Rb', 'Sr', 'Cs', 'Ba'] associated_atomic_list = [' 36', ' 54', ' 34', ' 41', ' 42', ' 43', ' 44', ' 45', ' 46', ' 47', ' 51', ' 52', ' 48', ' 49', ' 50', ' 35', ' 53', ' 91', ' 39', ' 57', ' 58', ' 59', ' 60', ' 61', ' 62', ' 64', ' 63', ' 37', ' 38', ' 55', ' 56'] total_view_list = list_inventory + element_flow_list
def normalize_start_end(x, inds=20): mi = x[:inds, :].mean(axis=0) ma = x[-inds:, :].mean(axis=0) return (x - mi) / (ma - mi) def normalize_end_start(x, inds=20): ma = x[:inds, :].mean(axis=0) mi = x[-inds:, :].mean(axis=0) return (x - mi) / (ma - mi)
def normalize_start_end(x, inds=20): mi = x[:inds, :].mean(axis=0) ma = x[-inds:, :].mean(axis=0) return (x - mi) / (ma - mi) def normalize_end_start(x, inds=20): ma = x[:inds, :].mean(axis=0) mi = x[-inds:, :].mean(axis=0) return (x - mi) / (ma - mi)
class SetUnionRank: def __init__(self, arr): self.parents = arr self.ranks = [0] * self.size @property def size(self): return len(self.parents) def find(self, i): while i != self.parents[i - 1]: i = self.parents[i - 1] return i def union(self, i, j): i_id = self.find(i) j_id = self.find(j) if i_id == j_id: return if self.ranks[i_id - 1] > self.ranks[j_id - 1]: self.parents[j_id - 1] = i_id else: self.parents[i_id - 1] = j_id if self.ranks[i_id - 1] == self.ranks[j_id - 1]: self.ranks[j_id - 1] += 1 class SetUnionRankPathCompression: def __init__(self, arr): self.parents = arr self.ranks = [0] * self.size @property def size(self): return len(self.parents) def find(self, i): if i != self.parents[i - 1]: self.parents[i - 1] = self.find(self.parents[i - 1]) return self.parents[i - 1] def union(self, i, j): i_id = self.find(i) j_id = self.find(j) if i_id == j_id: return if self.ranks[i_id - 1] > self.ranks[j_id - 1]: self.parents[j_id - 1] = i_id else: self.parents[i_id - 1] = j_id if self.ranks[i_id - 1] == self.ranks[j_id - 1]: self.ranks[j_id - 1] += 1
class Setunionrank: def __init__(self, arr): self.parents = arr self.ranks = [0] * self.size @property def size(self): return len(self.parents) def find(self, i): while i != self.parents[i - 1]: i = self.parents[i - 1] return i def union(self, i, j): i_id = self.find(i) j_id = self.find(j) if i_id == j_id: return if self.ranks[i_id - 1] > self.ranks[j_id - 1]: self.parents[j_id - 1] = i_id else: self.parents[i_id - 1] = j_id if self.ranks[i_id - 1] == self.ranks[j_id - 1]: self.ranks[j_id - 1] += 1 class Setunionrankpathcompression: def __init__(self, arr): self.parents = arr self.ranks = [0] * self.size @property def size(self): return len(self.parents) def find(self, i): if i != self.parents[i - 1]: self.parents[i - 1] = self.find(self.parents[i - 1]) return self.parents[i - 1] def union(self, i, j): i_id = self.find(i) j_id = self.find(j) if i_id == j_id: return if self.ranks[i_id - 1] > self.ranks[j_id - 1]: self.parents[j_id - 1] = i_id else: self.parents[i_id - 1] = j_id if self.ranks[i_id - 1] == self.ranks[j_id - 1]: self.ranks[j_id - 1] += 1
# run with python 3 def binary_representation(number): if number > 1: binary_representation(number//2) print(number%2, end="") binary_representation(4) print() binary_representation(7) print()
def binary_representation(number): if number > 1: binary_representation(number // 2) print(number % 2, end='') binary_representation(4) print() binary_representation(7) print()
# Copyright 2020 IBM Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. class ServiceTypes: Agriculture = "agriculture" Clock = "clock" Cluster = "cluster" Czml = "czml" Data = "data" Groundstation = "groundstation" Iot = "iot" Orbits = "orbits" RL = "rl" RL_Training = "rl_training" Logging = "logging" Config = "config" Template = "template"
class Servicetypes: agriculture = 'agriculture' clock = 'clock' cluster = 'cluster' czml = 'czml' data = 'data' groundstation = 'groundstation' iot = 'iot' orbits = 'orbits' rl = 'rl' rl__training = 'rl_training' logging = 'logging' config = 'config' template = 'template'
d = {} n = int(input()) cnt = 0 while True: cnt +=1 N = "%04d" % n middle = int(N[1:3]) square = middle * middle n = square try: d[square] +=1 except: d[square] = 1 else: break print(cnt)
d = {} n = int(input()) cnt = 0 while True: cnt += 1 n = '%04d' % n middle = int(N[1:3]) square = middle * middle n = square try: d[square] += 1 except: d[square] = 1 else: break print(cnt)
''' Microsoft has come to hire interns from your college. N students got shortlisted out of which few were males and a few females. All the students have been assigned talent levels. Smaller the talent level, lesser is your chance to be selected. Microsoft wants to create the result list where it wants the candidates sorted according to their talent levels, but there is a catch. This time Microsoft wants to hire female candidates first and then male candidates. the task is to create a list where first all female candidates are sorted in a descending order and then male candidates are sorted in a descending order. Input Format The first line contains an integer N denoting the number of students. Next, N lines contain two space-separated integers, ai and bi. The first integer, ai will be either 1(for a male candidate) or 0(for female candidate). The second integer, bi will be the candidate's talent level. Output Format Output space-separated integers, which first contains the talent levels of all female candidates sorted in descending order and then the talent levels of male candidates in descending order. SAMPLE INPUT 5 0 3 1 6 0 2 0 7 1 15 SAMPLE OUTPUT 7 3 2 15 6 ''' n=int(input()) l=[[y for y in input().split()] for i in range(n)] girl=[] boy=[] for i in range(n): if (int(l[i][0]) != 0): boy.append(int(l[i][1])) else: girl.append(int(l[i][1])) girl.sort(reverse=True) boy.sort(reverse=True) result=[] result.extend(girl) result.extend(boy) print(' '.join(str(i) for i in result))
""" Microsoft has come to hire interns from your college. N students got shortlisted out of which few were males and a few females. All the students have been assigned talent levels. Smaller the talent level, lesser is your chance to be selected. Microsoft wants to create the result list where it wants the candidates sorted according to their talent levels, but there is a catch. This time Microsoft wants to hire female candidates first and then male candidates. the task is to create a list where first all female candidates are sorted in a descending order and then male candidates are sorted in a descending order. Input Format The first line contains an integer N denoting the number of students. Next, N lines contain two space-separated integers, ai and bi. The first integer, ai will be either 1(for a male candidate) or 0(for female candidate). The second integer, bi will be the candidate's talent level. Output Format Output space-separated integers, which first contains the talent levels of all female candidates sorted in descending order and then the talent levels of male candidates in descending order. SAMPLE INPUT 5 0 3 1 6 0 2 0 7 1 15 SAMPLE OUTPUT 7 3 2 15 6 """ n = int(input()) l = [[y for y in input().split()] for i in range(n)] girl = [] boy = [] for i in range(n): if int(l[i][0]) != 0: boy.append(int(l[i][1])) else: girl.append(int(l[i][1])) girl.sort(reverse=True) boy.sort(reverse=True) result = [] result.extend(girl) result.extend(boy) print(' '.join((str(i) for i in result)))
# Find the last element of a list. # a = [1, 4, 6, 2, 0, -3] # print(a[-1]) # Find the second to last element of a list. # a = [1, 4, 6, 2, 0, -3] # print(a[-2]) # Find all elements from the third to last element of a list to the last one. # a = [1, 4, 6, 2, 0, -3] # print(a[-3:]) # Find the k'th element of a list # k = 5 # a = [1, 4, 6, 2, 0, -3] # print(a[k - 1]) # Find the number of elements of a list. # a = [8, 1, 3, -3, 20, -36, 0] # print(len(a)) # Reverse a list. # a = [8, 1, 3, -3, 20, -36, 0] # print(a[::-1]) # Find out whether a list is a palindrome. # a = [9, 8, 6, 8, 9] # print(a == a[::-1]) # Flatten a nested list structure. # list1 = [[1, 2, 3], [[0,-3], 5, 6], [7], [8, 9]] # def flatten(lst): # result = [] # for l in lst: # if(type(l) == list): # result.extend(flatten(l)) # else: # result.append(l) # return result # print(flatten(list1)) # Eliminate !CONSECUTIVE! duplicates from the list. # t = [1, 1, 2, 3, 3, -2, 1, 1, 1, 1, 2, 5, 6, 7, 8, -2] # # def conDedup(lst): # result = [] # sample = lst[0] # for i in lst: # if(i != sample): # result.append(i) # sample = i # return result # print(conDedup(t)) # Duplicate the elements of a list. # t = [1, 2, 3, -2, 22, 51, 6, 87, 8, -2] # a = [] # for i in t: # a.extend([i,i]) # print(a) # Insert an element at a given position into a list. # # pos = 3 # el = 8 # l1 = [1, 2, 3, -2, 22, 51] # # def ins_in_pos(list, el, pos): # result = list[:(pos - 1)] # result.append(el) # result.extend(list[pos - 1:]) # print(result) # # ins_in_pos(l1, el, pos) # Create a list containing all integers within a given range. # start = 5 # end = 32 # print(list(range(start, end))) # --------------------------------------------------------------- # filter the list of inventors for those who lived during 1500's inventors = [ {'first': 'Albert', 'last': 'Einstein', 'year': 1879, 'passed': 1955}, {'first': 'Isaac', 'last': 'Newton', 'year': 1643, 'passed': 1727}, {'first': 'Galileo', 'last': 'Galilei', 'year': 1564, 'passed': 1642}, {'first': 'Marie', 'last': 'Curie', 'year': 1867, 'passed': 1934}, {'first': 'Johannes', 'last': 'Kepler', 'year': 1571, 'passed': 1630}, {'first': 'Nicolaus', 'last': 'Copernicus', 'year': 1473, 'passed': 1543}, ]; boulevards = ["Boulevard de l'Amiral-Bruix", "Boulevard Strasbourg", "Boulevard des Capucines", "Boulevard la Chapelle", "Boulevard de Clichy", "Boulevard de lital", "Boulevard des Italiens", "Boulevard la Madeleine", "Boulevard de Magenta", "Boulevard Rochechouart", "Boulevard Sbastopol", "Boulevard la Zone"] guitarists = ['Jason, Becker', 'Marty, Friedman', 'Paul, Gilbert', 'Chick, Corea', 'Aldi, Meola', 'John, McLauglin', 'Chris, Impelliterri', 'Yngwie, Malmsteen', 'Randy, Rhoads', 'David, Micic', 'Paul, Wardingham'] guitars = ['Ibanez', 'Fender', 'Suhr', 'Mayones', 'Suhr', 'Rickenbecker', 'Caparison', 'Laguna', 'Fender', 'Suhr', 'Ibanez']; comments = [ {'text': 'Love this!', 'id': 523423}, {'text': 'Super good', 'id': 823423}, {'text': 'You are the best', 'id': 2039842}, {'text': 'Nice Nice Nice!', 'id': 542328} ]; people = [ {'name': 'Wes', 'year': 1988}, {'name': 'Kait', 'year': 1986}, {'name': 'Irv', 'year': 1970}, {'name': 'Lux', 'year': 2015} ]; # def func(item): # if(item['year'] >= 1500 and item['year'] <= 1600): # return True # result = filter(func, inventors) # print(list(result)) # Get an array of inventors first and last names # def func(item): # return item['first'] + ' ' + item['last'] # result = map(func, inventors) # print(list(result)) # Sort the inventors by birthdate oldest to youngest # def byAge(inventor): # return inventor['year'] # sorted1 = sorted(inventors, key=byAge) # print(sorted1) # How many years did all the inventors live? # from functools import reduce # def func(tmp, cur): # return tmp + (cur['passed'] - cur['year']) # totalYears = reduce(func, inventors, 0) # print(totalYears) # Sort the inventors by years lived # def byAge(a): # return a['passed'] - a['year'] # oldest = sorted(inventors, key=byAge) # print(oldest) # from a list of boulevards select those that contain 'de' anywhere in the name # variant 1 # def func(a): # return 'de' in a # de = filter(func, boulevards) # print(list(de)) # variant 2 - using lambda function # de = filter(lambda x: 'de' in x, boulevards) # print(list(de)) # variant 3 - using list comprehension # de = [k for k in boulevards if 'de' in k] # print(list(de)) # sort guitarists alphabetically by last name - NOT SOLVED!!!!!!!!!!!!!!!!!!!!! # def byLastName(): # sorted1 = sorted(guitarists, key=byLastName) # sum up the instances of each guitar model # from functools import reduce # def func(tmp, cur): # if(not cur in tmp.keys()): # tmp[cur] = 0 # tmp[cur] += 1 # return tmp # result = reduce(func, guitars, {}) # print(result) # s at least one person 19? # import datetime # now = datetime.datetime.now() # isAdult = any(now.year - x['year'] >= 19 for x in people) # print(isAdult); # is everyone 19? # import datetime # now = datetime.datetime.now() # allAdults = all(now.year - x['year'] >= 19 for x in people) # print(allAdults) # find the comment with the id 823423 # comment = filter(lambda comment: comment['id'] == 823423, comments) # print(list(comment)) # find the comment with the id 823423 and delete it # comments = [c for c in comments if c['id'] != 823423] # print(comments)
inventors = [{'first': 'Albert', 'last': 'Einstein', 'year': 1879, 'passed': 1955}, {'first': 'Isaac', 'last': 'Newton', 'year': 1643, 'passed': 1727}, {'first': 'Galileo', 'last': 'Galilei', 'year': 1564, 'passed': 1642}, {'first': 'Marie', 'last': 'Curie', 'year': 1867, 'passed': 1934}, {'first': 'Johannes', 'last': 'Kepler', 'year': 1571, 'passed': 1630}, {'first': 'Nicolaus', 'last': 'Copernicus', 'year': 1473, 'passed': 1543}] boulevards = ["Boulevard de l'Amiral-Bruix", 'Boulevard Strasbourg', 'Boulevard des Capucines', 'Boulevard la Chapelle', 'Boulevard de Clichy', 'Boulevard de lital', 'Boulevard des Italiens', 'Boulevard la Madeleine', 'Boulevard de Magenta', 'Boulevard Rochechouart', 'Boulevard Sbastopol', 'Boulevard la Zone'] guitarists = ['Jason, Becker', 'Marty, Friedman', 'Paul, Gilbert', 'Chick, Corea', 'Aldi, Meola', 'John, McLauglin', 'Chris, Impelliterri', 'Yngwie, Malmsteen', 'Randy, Rhoads', 'David, Micic', 'Paul, Wardingham'] guitars = ['Ibanez', 'Fender', 'Suhr', 'Mayones', 'Suhr', 'Rickenbecker', 'Caparison', 'Laguna', 'Fender', 'Suhr', 'Ibanez'] comments = [{'text': 'Love this!', 'id': 523423}, {'text': 'Super good', 'id': 823423}, {'text': 'You are the best', 'id': 2039842}, {'text': 'Nice Nice Nice!', 'id': 542328}] people = [{'name': 'Wes', 'year': 1988}, {'name': 'Kait', 'year': 1986}, {'name': 'Irv', 'year': 1970}, {'name': 'Lux', 'year': 2015}]
class Solution: def findMaxConsecutiveOnes(self, nums: List[int]) -> int: res=0 left=0 right = 0 while right<len(nums): if nums[right]==1: res=max(res,right-left+1) else: left=right+1 right+=1 return res
class Solution: def find_max_consecutive_ones(self, nums: List[int]) -> int: res = 0 left = 0 right = 0 while right < len(nums): if nums[right] == 1: res = max(res, right - left + 1) else: left = right + 1 right += 1 return res
# -*- coding: utf-8 -*- ################################################################################ # Object Returned from vision ################################################################################ class RecognizedObject: def __init__(self, category=None, position=None, color=None): self.category = category self.position = position self.color = color def __str__(self): pattern = "RecognizedObject('{}', '{}', '{}')" return pattern.format(self.category, self.position, self.color) def __repr__(self): return self.__str__() def to_predicateStr(self): return f'{self.position}({self.category},{self.color})'
class Recognizedobject: def __init__(self, category=None, position=None, color=None): self.category = category self.position = position self.color = color def __str__(self): pattern = "RecognizedObject('{}', '{}', '{}')" return pattern.format(self.category, self.position, self.color) def __repr__(self): return self.__str__() def to_predicate_str(self): return f'{self.position}({self.category},{self.color})'
class OSSecurityGroupsV2(object): def on_get(self, req, resp, tenant_id, instance_id=None): resp.body = { 'security_groups': [{ 'description': 'default', 'id': 1, 'name': 'default', 'rules': {}, 'tenant_id': tenant_id, }]}
class Ossecuritygroupsv2(object): def on_get(self, req, resp, tenant_id, instance_id=None): resp.body = {'security_groups': [{'description': 'default', 'id': 1, 'name': 'default', 'rules': {}, 'tenant_id': tenant_id}]}
#! /usr/bin/env python # coding: utf-8 __author__ = 'ZhouHeng' class IPManager(object): def __init__(self): self.ip_1a = 256 self.ip_2a = self.ip_1a * self.ip_1a self.ip_3a = self.ip_1a * self.ip_2a self.ip_4a = self.ip_1a * self.ip_3a def ip_value_str(self, ip_str=None, ip_value=None): if ip_str is not None: ip_s = ip_str.split(".") ip = int(ip_s[0]) * self.ip_3a + int(ip_s[1]) * self.ip_2a + int(ip_s[2]) * self.ip_1a + int(ip_s[3]) return ip if ip_value is not None: ip_1 = ip_value / self.ip_3a ip_value = ip_value % self.ip_3a ip_2 = ip_value / self.ip_2a ip_value = ip_value % self.ip_2a ip_3 = ip_value / self.ip_1a ip_4 = ip_value % self.ip_1a ip_str = "%s.%s.%s.%s" % (ip_1, ip_2, ip_3, ip_4) return ip_str
__author__ = 'ZhouHeng' class Ipmanager(object): def __init__(self): self.ip_1a = 256 self.ip_2a = self.ip_1a * self.ip_1a self.ip_3a = self.ip_1a * self.ip_2a self.ip_4a = self.ip_1a * self.ip_3a def ip_value_str(self, ip_str=None, ip_value=None): if ip_str is not None: ip_s = ip_str.split('.') ip = int(ip_s[0]) * self.ip_3a + int(ip_s[1]) * self.ip_2a + int(ip_s[2]) * self.ip_1a + int(ip_s[3]) return ip if ip_value is not None: ip_1 = ip_value / self.ip_3a ip_value = ip_value % self.ip_3a ip_2 = ip_value / self.ip_2a ip_value = ip_value % self.ip_2a ip_3 = ip_value / self.ip_1a ip_4 = ip_value % self.ip_1a ip_str = '%s.%s.%s.%s' % (ip_1, ip_2, ip_3, ip_4) return ip_str
#string s = "I am a string." print(type(s)) #returns str #Boolean ...these are specifically true or false. NO possibility you would have the wrong precision. yes = True #Boolean True, "True" is a protected term in python print(type(yes)) #boolean no = False print(type(no)) #List -- ordered and changeable alpha_list = ["a", "b", "c"] #list intialization print(type(alpha_list)) #will say tuple print(type(alpha_list[0])) #will say string...I originally missed a parenthesis here and it messed up my whole code! alpha_list.append("d") #will add "d" to the end of the list print(alpha_list) #Tuple -- ordered and unchangeable alpha_tuple = ("a", "b", "c") #tuple intialization print(type(alpha_tuple)) #will say tuple try: alpha_tuple[2] = "d" except TypeError: print("We can't add elements to tuple!") print(alpha_tuple)
s = 'I am a string.' print(type(s)) yes = True print(type(yes)) no = False print(type(no)) alpha_list = ['a', 'b', 'c'] print(type(alpha_list)) print(type(alpha_list[0])) alpha_list.append('d') print(alpha_list) alpha_tuple = ('a', 'b', 'c') print(type(alpha_tuple)) try: alpha_tuple[2] = 'd' except TypeError: print("We can't add elements to tuple!") print(alpha_tuple)