content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
def x(city, name):
city = open(city,'r').read()
city = city.replace('\n', ';')
city = city.split(';')
success = []
for i in city:
if i:
success.append(i.lstrip().rstrip())
success = {k: v for k, v in zip(success[::2], success[1::2])}
file = open('{0}.txt'.format(name), 'w')
print(success,file=file)
file.close()
res = open('{0}.txt'.format(name), 'r')
finish = res.read()
res.close()
return print(finish)
one = input('Data')
two = input('name city')
x(one, two)
|
def x(city, name):
city = open(city, 'r').read()
city = city.replace('\n', ';')
city = city.split(';')
success = []
for i in city:
if i:
success.append(i.lstrip().rstrip())
success = {k: v for (k, v) in zip(success[::2], success[1::2])}
file = open('{0}.txt'.format(name), 'w')
print(success, file=file)
file.close()
res = open('{0}.txt'.format(name), 'r')
finish = res.read()
res.close()
return print(finish)
one = input('Data')
two = input('name city')
x(one, two)
|
users = [
{"first_name": "Helen", "age": 39},
{"first_name": "anni", "age": 9},
{"first_name": "Buck", "age": 10},
]
def get_user_name(users):
"""Get name of the user in lower case"""
return users["first_name"].lower()
def get_sorted_dictionary(users):
"""Sort the nested dictionary"""
if not isinstance(users, dict):
raise ValueError("Not a correct dictionary")
if not len(users):
raise ValueError("Empty dictionary")
users_by_name = sorted(users, key=get_user_name)
print(users_by_name)
|
users = [{'first_name': 'Helen', 'age': 39}, {'first_name': 'anni', 'age': 9}, {'first_name': 'Buck', 'age': 10}]
def get_user_name(users):
"""Get name of the user in lower case"""
return users['first_name'].lower()
def get_sorted_dictionary(users):
"""Sort the nested dictionary"""
if not isinstance(users, dict):
raise value_error('Not a correct dictionary')
if not len(users):
raise value_error('Empty dictionary')
users_by_name = sorted(users, key=get_user_name)
print(users_by_name)
|
'''Libraries used by the main program
All the libraries that will be used by the
main program will be placed here.
Contains Library with functions to create latex report.
'''
|
"""Libraries used by the main program
All the libraries that will be used by the
main program will be placed here.
Contains Library with functions to create latex report.
"""
|
"""
Author: Ao Wang
Date: 08/27/19
Description: Brute force decryption of the Simplified Columnar Cipher w/o asking the key
"""
LETTERS_AND_SPACE = "abcdefghijklmnopqrstuvwxyz" + ' \t\n'
# The function returns a list of words from two word text files
def loadDictionary():
with open("words.txt", "r") as f1:
file1 = f1.read().split("\n")
with open("morewords.txt", "r") as f2:
file2 = f2.read().split("\n")
# second text file was all uppercase, so needed to become lowercase
for i in range(len(file2)):
file2[i] = file2[i].lower()
# extend the second file by adding the first
file2.extend(file1)
return file2
ENGLISH_WORDS = loadDictionary()
# The function removes non characters in the LETTERS_AND_SPACE variable
def removeNonLetters(msg):
lettersOnly = []
for symbol in msg:
if symbol in LETTERS_AND_SPACE:
lettersOnly.append(symbol)
return "".join(lettersOnly)
# The function returns the percentage of words in the dictionary
def getEnglishCount(msg):
msg = msg.lower()
msg = removeNonLetters(msg)
possibleWords = msg.split()
if possibleWords == []:
return 0
matches = 0
for word in possibleWords:
if word in ENGLISH_WORDS:
matches += 1
return 100 * float(matches)/len(possibleWords)
# The function hacks the Columnar Transposition Cipher and prints out the key, decrypted message, and percentage
# of the words in the dictionary
def hackTransposition(msg):
print("Hacking...")
percentages = {}
# try keys from 1 to the length of the message
for key in range(1, len(msg)):
decryptedText = decrypt(msg, key)
# if the percentage of words in the word dictionary is above 80%, then add the keys and percentages
# into the dictionary
threshold = 80
if getEnglishCount(decryptedText) > threshold:
percentages[key] = getEnglishCount(decryptedText)
key_break = findMaxInd(percentages)
if key_break == -1:
print("Failed to hack cipher :(")
else:
print("Cipher hacked! :)")
print()
print("The key is: " + str(key_break))
print("Decrypted text: " + decrypt(msg, key_break) + "\n")
print("Percentage of words in dictionary: " + str(percentages[key_break]))
# The function finds the highest percentage of words in the dictionary and returns the key
def findMaxInd(keys):
maximum = -1
max_key = -1
for key in keys:
if keys[key] > maximum:
maximum = keys[key]
max_key = key
return max_key
def main():
with open("msg.txt", "r") as file:
myMessage = file.read()
hackTransposition(myMessage)
if __name__ == "__main__":
main()
|
"""
Author: Ao Wang
Date: 08/27/19
Description: Brute force decryption of the Simplified Columnar Cipher w/o asking the key
"""
letters_and_space = 'abcdefghijklmnopqrstuvwxyz' + ' \t\n'
def load_dictionary():
with open('words.txt', 'r') as f1:
file1 = f1.read().split('\n')
with open('morewords.txt', 'r') as f2:
file2 = f2.read().split('\n')
for i in range(len(file2)):
file2[i] = file2[i].lower()
file2.extend(file1)
return file2
english_words = load_dictionary()
def remove_non_letters(msg):
letters_only = []
for symbol in msg:
if symbol in LETTERS_AND_SPACE:
lettersOnly.append(symbol)
return ''.join(lettersOnly)
def get_english_count(msg):
msg = msg.lower()
msg = remove_non_letters(msg)
possible_words = msg.split()
if possibleWords == []:
return 0
matches = 0
for word in possibleWords:
if word in ENGLISH_WORDS:
matches += 1
return 100 * float(matches) / len(possibleWords)
def hack_transposition(msg):
print('Hacking...')
percentages = {}
for key in range(1, len(msg)):
decrypted_text = decrypt(msg, key)
threshold = 80
if get_english_count(decryptedText) > threshold:
percentages[key] = get_english_count(decryptedText)
key_break = find_max_ind(percentages)
if key_break == -1:
print('Failed to hack cipher :(')
else:
print('Cipher hacked! :)')
print()
print('The key is: ' + str(key_break))
print('Decrypted text: ' + decrypt(msg, key_break) + '\n')
print('Percentage of words in dictionary: ' + str(percentages[key_break]))
def find_max_ind(keys):
maximum = -1
max_key = -1
for key in keys:
if keys[key] > maximum:
maximum = keys[key]
max_key = key
return max_key
def main():
with open('msg.txt', 'r') as file:
my_message = file.read()
hack_transposition(myMessage)
if __name__ == '__main__':
main()
|
_base_ = [
'../_base_/models/retinanet_r50_fpn.py',
'../_base_/datasets/coco_detection.py', '../_base_/default_runtime.py'
]
cudnn_benchmark = True
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(
pretrained='torchvision://resnet50',
backbone=dict(
type='ResNet',
depth=50,
num_stages=4,
out_indices=(0, 1, 2, 3),
with_cp=True,
frozen_stages=1,
norm_cfg=norm_cfg,
norm_eval=False,
style='pytorch'),
neck=dict(
relu_before_extra_convs=True,
no_norm_on_lateral=True,
norm_cfg=norm_cfg),
bbox_head=dict(type='RetinaSepBNHead', num_ins=5, norm_cfg=norm_cfg))
# training and testing settings
train_cfg = dict(assigner=dict(neg_iou_thr=0.5))
# dataset settings
img_norm_cfg = dict(
mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [
dict(
type='Mosaic',
sub_pipeline=[
dict(type='LoadImageFromFile', to_float32=True),
dict(type='LoadAnnotations', with_bbox=True),
dict(
type='PhotoMetricDistortion',
brightness_delta=32,
contrast_range=(0.5, 1.5),
saturation_range=(0.5, 1.5),
hue_delta=18),
dict(type='RandomFlip', flip_ratio=0.5),
dict(
type='Expand',
mean=img_norm_cfg['mean'],
to_rgb=img_norm_cfg['to_rgb'],
ratio_range=(1.4, 1.4),
prob=1.0),
dict(
type='RandomCrop',
crop_size=None,
min_crop_size=0.4286, # 0.6 / 1.4
allow_negative_crop=True),
dict(type='Resize', img_scale=(640, 640), keep_ratio=False)
],
size=(640, 640),
min_offset=0.2),
dict(type='Normalize', **img_norm_cfg),
dict(type='DefaultFormatBundle'),
dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels']),
]
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipAug',
img_scale=(640, 640),
flip=False,
transforms=[
dict(type='Resize', keep_ratio=True),
dict(type='RandomFlip'),
dict(type='Normalize', **img_norm_cfg),
dict(type='Pad', size_divisor=64),
dict(type='ImageToTensor', keys=['img']),
dict(type='Collect', keys=['img']),
])
]
data = dict(
samples_per_gpu=8,
workers_per_gpu=4,
train=dict(pipeline=train_pipeline, num_samples_per_iter=4),
val=dict(pipeline=test_pipeline),
test=dict(pipeline=test_pipeline))
# optimizer
optimizer = dict(
type='SGD',
lr=0.08,
momentum=0.9,
weight_decay=0.0001,
paramwise_cfg=dict(norm_decay_mult=0, bypass_duplicate=True))
optimizer_config = dict(grad_clip=None)
# learning policy
lr_config = dict(
policy='step',
warmup='linear',
warmup_iters=1000,
warmup_ratio=0.1,
step=[30, 40])
# runtime settings
total_epochs = 50
|
_base_ = ['../_base_/models/retinanet_r50_fpn.py', '../_base_/datasets/coco_detection.py', '../_base_/default_runtime.py']
cudnn_benchmark = True
norm_cfg = dict(type='BN', requires_grad=True)
model = dict(pretrained='torchvision://resnet50', backbone=dict(type='ResNet', depth=50, num_stages=4, out_indices=(0, 1, 2, 3), with_cp=True, frozen_stages=1, norm_cfg=norm_cfg, norm_eval=False, style='pytorch'), neck=dict(relu_before_extra_convs=True, no_norm_on_lateral=True, norm_cfg=norm_cfg), bbox_head=dict(type='RetinaSepBNHead', num_ins=5, norm_cfg=norm_cfg))
train_cfg = dict(assigner=dict(neg_iou_thr=0.5))
img_norm_cfg = dict(mean=[123.675, 116.28, 103.53], std=[58.395, 57.12, 57.375], to_rgb=True)
train_pipeline = [dict(type='Mosaic', sub_pipeline=[dict(type='LoadImageFromFile', to_float32=True), dict(type='LoadAnnotations', with_bbox=True), dict(type='PhotoMetricDistortion', brightness_delta=32, contrast_range=(0.5, 1.5), saturation_range=(0.5, 1.5), hue_delta=18), dict(type='RandomFlip', flip_ratio=0.5), dict(type='Expand', mean=img_norm_cfg['mean'], to_rgb=img_norm_cfg['to_rgb'], ratio_range=(1.4, 1.4), prob=1.0), dict(type='RandomCrop', crop_size=None, min_crop_size=0.4286, allow_negative_crop=True), dict(type='Resize', img_scale=(640, 640), keep_ratio=False)], size=(640, 640), min_offset=0.2), dict(type='Normalize', **img_norm_cfg), dict(type='DefaultFormatBundle'), dict(type='Collect', keys=['img', 'gt_bboxes', 'gt_labels'])]
test_pipeline = [dict(type='LoadImageFromFile'), dict(type='MultiScaleFlipAug', img_scale=(640, 640), flip=False, transforms=[dict(type='Resize', keep_ratio=True), dict(type='RandomFlip'), dict(type='Normalize', **img_norm_cfg), dict(type='Pad', size_divisor=64), dict(type='ImageToTensor', keys=['img']), dict(type='Collect', keys=['img'])])]
data = dict(samples_per_gpu=8, workers_per_gpu=4, train=dict(pipeline=train_pipeline, num_samples_per_iter=4), val=dict(pipeline=test_pipeline), test=dict(pipeline=test_pipeline))
optimizer = dict(type='SGD', lr=0.08, momentum=0.9, weight_decay=0.0001, paramwise_cfg=dict(norm_decay_mult=0, bypass_duplicate=True))
optimizer_config = dict(grad_clip=None)
lr_config = dict(policy='step', warmup='linear', warmup_iters=1000, warmup_ratio=0.1, step=[30, 40])
total_epochs = 50
|
"""
# Sample code to perform I/O:
name = input() # Reading input from STDIN
print('Hi, %s.' % name) # Writing output to STDOUT
# Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail
"""
# Write your code here
n = int(input())
s = input().strip()
ans = max(s)
idx = s.index(ans)
for i in range(ord(ans) - 1, ord('a') - 1, -1):
try:
idx = s.index(chr(i), idx + 1)
ans += chr(i)
except ValueError:
pass
print(ans)
|
"""
# Sample code to perform I/O:
name = input() # Reading input from STDIN
print('Hi, %s.' % name) # Writing output to STDOUT
# Warning: Printing unwanted or ill-formatted data to output will cause the test cases to fail
"""
n = int(input())
s = input().strip()
ans = max(s)
idx = s.index(ans)
for i in range(ord(ans) - 1, ord('a') - 1, -1):
try:
idx = s.index(chr(i), idx + 1)
ans += chr(i)
except ValueError:
pass
print(ans)
|
"""
Name : Breaking the records
Category : Implementation
Difficulty : Easy
Language : Python3
Question Link : https://www.hackerrank.com/challenges/breaking-best-and-worst-records/problem
"""
n = int(input())
score = list(map(int, input().split()))
a = b = score[0]
r1 = r2 = 0
for i in score[1:]:
if i > a:
a = i
r1 += 1
if i < b:
b = i
r2 += 1
print(r1,r2)
|
"""
Name : Breaking the records
Category : Implementation
Difficulty : Easy
Language : Python3
Question Link : https://www.hackerrank.com/challenges/breaking-best-and-worst-records/problem
"""
n = int(input())
score = list(map(int, input().split()))
a = b = score[0]
r1 = r2 = 0
for i in score[1:]:
if i > a:
a = i
r1 += 1
if i < b:
b = i
r2 += 1
print(r1, r2)
|
#
# PySNMP MIB module HH3C-SESSION-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HH3C-SESSION-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:16:47 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")
ConstraintsUnion, ConstraintsIntersection, SingleValueConstraint, ValueRangeConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueRangeConstraint", "ValueSizeConstraint")
hh3cCommon, = mibBuilder.importSymbols("HH3C-OID-MIB", "hh3cCommon")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Unsigned32, ModuleIdentity, MibIdentifier, NotificationType, Integer32, IpAddress, TimeTicks, Counter64, Gauge32, iso, Bits, Counter32, ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn = mibBuilder.importSymbols("SNMPv2-SMI", "Unsigned32", "ModuleIdentity", "MibIdentifier", "NotificationType", "Integer32", "IpAddress", "TimeTicks", "Counter64", "Gauge32", "iso", "Bits", "Counter32", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
hh3cSession = ModuleIdentity((1, 3, 6, 1, 4, 1, 25506, 2, 149))
hh3cSession.setRevisions(('2013-12-20 00:00',))
if mibBuilder.loadTexts: hh3cSession.setLastUpdated('201312200000Z')
if mibBuilder.loadTexts: hh3cSession.setOrganization('Hangzhou H3C Technologies Co., Ltd.')
hh3cSessionTables = MibIdentifier((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1))
hh3cSessionStatTable = MibTable((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1), )
if mibBuilder.loadTexts: hh3cSessionStatTable.setStatus('current')
hh3cSessionStatEntry = MibTableRow((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1), ).setIndexNames((0, "HH3C-SESSION-MIB", "hh3cSessionStatChassis"), (0, "HH3C-SESSION-MIB", "hh3cSessionStatSlot"), (0, "HH3C-SESSION-MIB", "hh3cSessionStatCPUID"))
if mibBuilder.loadTexts: hh3cSessionStatEntry.setStatus('current')
hh3cSessionStatChassis = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 1), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534)))
if mibBuilder.loadTexts: hh3cSessionStatChassis.setStatus('current')
hh3cSessionStatSlot = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65534)))
if mibBuilder.loadTexts: hh3cSessionStatSlot.setStatus('current')
hh3cSessionStatCPUID = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 7)))
if mibBuilder.loadTexts: hh3cSessionStatCPUID.setStatus('current')
hh3cSessionStatCount = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 4), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cSessionStatCount.setStatus('current')
hh3cSessionStatCreateRate = MibTableColumn((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 5), Unsigned32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hh3cSessionStatCreateRate.setStatus('current')
mibBuilder.exportSymbols("HH3C-SESSION-MIB", hh3cSessionStatEntry=hh3cSessionStatEntry, hh3cSessionTables=hh3cSessionTables, hh3cSessionStatCount=hh3cSessionStatCount, hh3cSessionStatSlot=hh3cSessionStatSlot, hh3cSessionStatCreateRate=hh3cSessionStatCreateRate, hh3cSession=hh3cSession, hh3cSessionStatTable=hh3cSessionStatTable, PYSNMP_MODULE_ID=hh3cSession, hh3cSessionStatChassis=hh3cSessionStatChassis, hh3cSessionStatCPUID=hh3cSessionStatCPUID)
|
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, single_value_constraint, value_range_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueRangeConstraint', 'ValueSizeConstraint')
(hh3c_common,) = mibBuilder.importSymbols('HH3C-OID-MIB', 'hh3cCommon')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(unsigned32, module_identity, mib_identifier, notification_type, integer32, ip_address, time_ticks, counter64, gauge32, iso, bits, counter32, object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column) = mibBuilder.importSymbols('SNMPv2-SMI', 'Unsigned32', 'ModuleIdentity', 'MibIdentifier', 'NotificationType', 'Integer32', 'IpAddress', 'TimeTicks', 'Counter64', 'Gauge32', 'iso', 'Bits', 'Counter32', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
hh3c_session = module_identity((1, 3, 6, 1, 4, 1, 25506, 2, 149))
hh3cSession.setRevisions(('2013-12-20 00:00',))
if mibBuilder.loadTexts:
hh3cSession.setLastUpdated('201312200000Z')
if mibBuilder.loadTexts:
hh3cSession.setOrganization('Hangzhou H3C Technologies Co., Ltd.')
hh3c_session_tables = mib_identifier((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1))
hh3c_session_stat_table = mib_table((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1))
if mibBuilder.loadTexts:
hh3cSessionStatTable.setStatus('current')
hh3c_session_stat_entry = mib_table_row((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1)).setIndexNames((0, 'HH3C-SESSION-MIB', 'hh3cSessionStatChassis'), (0, 'HH3C-SESSION-MIB', 'hh3cSessionStatSlot'), (0, 'HH3C-SESSION-MIB', 'hh3cSessionStatCPUID'))
if mibBuilder.loadTexts:
hh3cSessionStatEntry.setStatus('current')
hh3c_session_stat_chassis = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 1), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65534)))
if mibBuilder.loadTexts:
hh3cSessionStatChassis.setStatus('current')
hh3c_session_stat_slot = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65534)))
if mibBuilder.loadTexts:
hh3cSessionStatSlot.setStatus('current')
hh3c_session_stat_cpuid = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 7)))
if mibBuilder.loadTexts:
hh3cSessionStatCPUID.setStatus('current')
hh3c_session_stat_count = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 4), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cSessionStatCount.setStatus('current')
hh3c_session_stat_create_rate = mib_table_column((1, 3, 6, 1, 4, 1, 25506, 2, 149, 1, 1, 1, 5), unsigned32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hh3cSessionStatCreateRate.setStatus('current')
mibBuilder.exportSymbols('HH3C-SESSION-MIB', hh3cSessionStatEntry=hh3cSessionStatEntry, hh3cSessionTables=hh3cSessionTables, hh3cSessionStatCount=hh3cSessionStatCount, hh3cSessionStatSlot=hh3cSessionStatSlot, hh3cSessionStatCreateRate=hh3cSessionStatCreateRate, hh3cSession=hh3cSession, hh3cSessionStatTable=hh3cSessionStatTable, PYSNMP_MODULE_ID=hh3cSession, hh3cSessionStatChassis=hh3cSessionStatChassis, hh3cSessionStatCPUID=hh3cSessionStatCPUID)
|
def getYears():
"""Return a list of years for which data is available."""
years = [1900, 1901, 1902, 1903, 1905, 1905, 1906, 1907, 1908, 1909, 1910]
return years
def getSentencesForYear(year):
"""Return list of sentences in given year.
Each sentence is a list of words.
Each word is a string.
Returns a list of lists of strings."""
sentence1 = ['this', 'is', 'one', 'sentence']
sentence2 = ['this', 'is', 'another', 'sentence']
sentence3 = ['and', 'yet', 'another', 'one']
sentences = [sentence1, sentence2, sentence3]
return sentences
|
def get_years():
"""Return a list of years for which data is available."""
years = [1900, 1901, 1902, 1903, 1905, 1905, 1906, 1907, 1908, 1909, 1910]
return years
def get_sentences_for_year(year):
"""Return list of sentences in given year.
Each sentence is a list of words.
Each word is a string.
Returns a list of lists of strings."""
sentence1 = ['this', 'is', 'one', 'sentence']
sentence2 = ['this', 'is', 'another', 'sentence']
sentence3 = ['and', 'yet', 'another', 'one']
sentences = [sentence1, sentence2, sentence3]
return sentences
|
# class object to store neural signal data
class NeuralBit:
def __init__(self, value):
self.value = value
def bit(self):
return self.value
class NeuralWave:
def __init__(self, path, label, output_matrix_size):
""" Specify the path to the data set, upload the data points"""
self.label = label
self.raw_data = []
self.sampled_data = []
self.output_matrix = []
self.initial_mse = None
self.optimized_mse = None
file = open(path, "r")
for val in file.read().split(','):
self.raw_data.append(int(val))
file.close()
# configure the DNN output matrix of the neural wave
for i in range(output_matrix_size):
if i == label:
self.output_matrix.append(1.00)
else:
self.output_matrix.append(0.00)
def data_label(self):
return self.label
def raw(self):
return self.raw_data
def raw_bit(self, index):
if (index < 0) | (index >= len(self.raw_data)):
return -1
else:
return self.raw_data[index]
def sampled(self):
return self.sampled_data
def sampled_bit(self, index):
if (index < 0) | (index >= len(self.sampled_data)):
return -1
else:
return self.sampled_data[index]
def clear_sampled_matrix(self):
del self.sampled_data[:]
def dnn_matrix(self):
return self.output_matrix
def replace_raw_bit(self, index, value):
if (index < 0) | (index >= len(self.raw_data)):
pass
else:
self.raw_data[index] = value
def push_sampled_bit(self, val):
self.sampled_data.append(val)
def raw_data_length(self):
return len(self.raw_data)
def sampled_data_length(self):
return len(self.sampled_data)
|
class Neuralbit:
def __init__(self, value):
self.value = value
def bit(self):
return self.value
class Neuralwave:
def __init__(self, path, label, output_matrix_size):
""" Specify the path to the data set, upload the data points"""
self.label = label
self.raw_data = []
self.sampled_data = []
self.output_matrix = []
self.initial_mse = None
self.optimized_mse = None
file = open(path, 'r')
for val in file.read().split(','):
self.raw_data.append(int(val))
file.close()
for i in range(output_matrix_size):
if i == label:
self.output_matrix.append(1.0)
else:
self.output_matrix.append(0.0)
def data_label(self):
return self.label
def raw(self):
return self.raw_data
def raw_bit(self, index):
if (index < 0) | (index >= len(self.raw_data)):
return -1
else:
return self.raw_data[index]
def sampled(self):
return self.sampled_data
def sampled_bit(self, index):
if (index < 0) | (index >= len(self.sampled_data)):
return -1
else:
return self.sampled_data[index]
def clear_sampled_matrix(self):
del self.sampled_data[:]
def dnn_matrix(self):
return self.output_matrix
def replace_raw_bit(self, index, value):
if (index < 0) | (index >= len(self.raw_data)):
pass
else:
self.raw_data[index] = value
def push_sampled_bit(self, val):
self.sampled_data.append(val)
def raw_data_length(self):
return len(self.raw_data)
def sampled_data_length(self):
return len(self.sampled_data)
|
file_path = 'D12/input.txt'
#file_path = 'D12/test.txt'
#file_path = 'D12/test2.txt'
with open(file_path) as f:
text = f.read().split('\n')
def reset(text):
data = []
for i in text:
data.append(i.split('-'))
distinctNodes = []
for i in data:
if i[0] not in distinctNodes:
distinctNodes.append(i[0])
if i[1] not in distinctNodes:
distinctNodes.append(i[1])
nodeDictionary = {}
for i in distinctNodes:
nodeDictionary[i] = []
for pair in range(0,len(data)):
nodeDictionary[data[pair][0]].append(data[pair][1])
nodeDictionary[data[pair][1]].append(data[pair][0])
visitedList = [[]]
return nodeDictionary, data, visitedList, distinctNodes
def Pt1ElectricBungalung(nodeDictionary, currentVertex, visited, visitedlc):
visited.append(currentVertex)
if currentVertex.upper() != currentVertex:
visitedlc.append(currentVertex)
for vertex in nodeDictionary[currentVertex]:
if vertex not in visitedlc:
Pt1ElectricBungalung(nodeDictionary, vertex, visited.copy(), visitedlc.copy())
visitedList.append(visited)
def Pt2ElectricBoogaloo(nodeDictionary,positionArray,trialNode):
if positionArray[-1]=="end":
pt2ReturnArray.add(tuple(positionArray))
return pt2ReturnArray
for dictItem in nodeDictionary[positionArray[-1]]:
if dictItem.upper()!=dictItem:
if trialNode== "" and dictItem!= "start":
Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],dictItem)
if not dictItem in positionArray:
Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],"")
elif trialNode==dictItem:
if positionArray.count(dictItem)==1:
Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],dictItem)
else:
if dictItem not in positionArray:
Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],trialNode)
else:
Pt2ElectricBoogaloo(nodeDictionary,positionArray+[dictItem],trialNode)
return pt2ReturnArray
###################################
# Part 1
###################################
nodeDictionary,data,visitedList,distinctNodes = reset(text)
Pt1ElectricBungalung(nodeDictionary, 'start', [], [])
visitedList.remove([])
solutionList = []
for i in range(0,len(visitedList)):
if visitedList[i][-1] == 'end':
solutionList.append(visitedList[i])
print('Part 1: ', len(solutionList))
###################################
# Part 2
###################################
nodeDictionary,data,visitedList,distinctNodes = reset(text)
pt2ReturnArray = set()
resultArray = Pt2ElectricBoogaloo(nodeDictionary,["start"],"")
print('Part 2: ', len(resultArray))
|
file_path = 'D12/input.txt'
with open(file_path) as f:
text = f.read().split('\n')
def reset(text):
data = []
for i in text:
data.append(i.split('-'))
distinct_nodes = []
for i in data:
if i[0] not in distinctNodes:
distinctNodes.append(i[0])
if i[1] not in distinctNodes:
distinctNodes.append(i[1])
node_dictionary = {}
for i in distinctNodes:
nodeDictionary[i] = []
for pair in range(0, len(data)):
nodeDictionary[data[pair][0]].append(data[pair][1])
nodeDictionary[data[pair][1]].append(data[pair][0])
visited_list = [[]]
return (nodeDictionary, data, visitedList, distinctNodes)
def pt1_electric_bungalung(nodeDictionary, currentVertex, visited, visitedlc):
visited.append(currentVertex)
if currentVertex.upper() != currentVertex:
visitedlc.append(currentVertex)
for vertex in nodeDictionary[currentVertex]:
if vertex not in visitedlc:
pt1_electric_bungalung(nodeDictionary, vertex, visited.copy(), visitedlc.copy())
visitedList.append(visited)
def pt2_electric_boogaloo(nodeDictionary, positionArray, trialNode):
if positionArray[-1] == 'end':
pt2ReturnArray.add(tuple(positionArray))
return pt2ReturnArray
for dict_item in nodeDictionary[positionArray[-1]]:
if dictItem.upper() != dictItem:
if trialNode == '' and dictItem != 'start':
pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], dictItem)
if not dictItem in positionArray:
pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], '')
elif trialNode == dictItem:
if positionArray.count(dictItem) == 1:
pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], dictItem)
elif dictItem not in positionArray:
pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], trialNode)
else:
pt2_electric_boogaloo(nodeDictionary, positionArray + [dictItem], trialNode)
return pt2ReturnArray
(node_dictionary, data, visited_list, distinct_nodes) = reset(text)
pt1_electric_bungalung(nodeDictionary, 'start', [], [])
visitedList.remove([])
solution_list = []
for i in range(0, len(visitedList)):
if visitedList[i][-1] == 'end':
solutionList.append(visitedList[i])
print('Part 1: ', len(solutionList))
(node_dictionary, data, visited_list, distinct_nodes) = reset(text)
pt2_return_array = set()
result_array = pt2_electric_boogaloo(nodeDictionary, ['start'], '')
print('Part 2: ', len(resultArray))
|
def generate_permutations(perm, n):
if len(perm) == n:
print(perm)
return
for k in range(n):
if k not in perm:
perm.append(k)
generate_permutations(perm, n)
perm.pop()
generate_permutations(perm=[], n=4)
|
def generate_permutations(perm, n):
if len(perm) == n:
print(perm)
return
for k in range(n):
if k not in perm:
perm.append(k)
generate_permutations(perm, n)
perm.pop()
generate_permutations(perm=[], n=4)
|
hip = 'hip'
thorax = 'thorax'
r_hip = 'r_hip'
r_knee = 'r_knee'
r_ankle = 'r_ankle'
r_ball = 'r_ball'
r_toes = 'r_toes'
l_hip = 'l_hip'
l_knee = 'l_knee'
l_ankle = 'l_ankle'
l_ball = 'l_ball'
l_toes = 'l_toes'
neck_base = 'neck'
head_center = 'head-center'
head_back = 'head-back'
l_uknown = 'l_uknown'
l_shoulder = 'l_shoulder'
l_elbow = 'l_elbow'
l_wrist = 'l_wrist'
l_wrist_2 = 'l_wrist_2'
l_thumb = 'l_thumb'
l_little = 'l_little'
l_little_2 = 'l_little_2'
r_uknown = 'r_uknown'
r_shoulder = 'r_shoulder'
r_elbow = 'r_elbow'
r_wrist = 'r_wrist'
r_wrist_2 = 'r_wrist_2'
r_thumb = 'r_thumb'
r_little = 'r_little'
r_little_2 = 'r_little_2'
pelvis = 'pelvis'
links = (
(r_hip, thorax),
# (r_hip, pelvis),
(r_knee, r_hip),
(r_ankle, r_knee),
(r_ball, r_ankle),
(r_toes, r_ball),
(l_hip, thorax),
# (l_hip, pelvis),
(l_knee, l_hip),
(l_ankle, l_knee),
(l_ball, l_ankle),
(l_toes, l_ball),
(neck_base, thorax),
# (head_center, head_back),
# (head_back, neck_base),
# (head_back, head_center),
# (head_center, neck_base),
(head_back, neck_base),
(head_center, head_back),
(l_shoulder, neck_base),
(l_elbow, l_shoulder),
(l_wrist, l_elbow),
(l_thumb, l_wrist),
(l_little, l_wrist),
(r_shoulder, neck_base),
(r_elbow, r_shoulder),
(r_wrist, r_elbow),
(r_thumb, r_wrist),
(r_little, r_wrist),
# (pelvis, thorax),
)
links_simple = (
(r_hip, thorax),
# (r_hip, pelvis),
(r_knee, r_hip),
(r_ankle, r_knee),
(r_ball, r_ankle),
(r_toes, r_ball),
(l_hip, thorax),
# (l_hip, pelvis),
(l_knee, l_hip),
(l_ankle, l_knee),
(l_ball, l_ankle),
(l_toes, l_ball),
(neck_base, thorax),
# (head_center, head_back),
# (head_back, neck_base),
# (head_back, head_center),
# (head_center, neck_base),
(head_back, neck_base),
(head_center, head_back),
(l_shoulder, neck_base),
(l_elbow, l_shoulder),
(l_wrist, l_elbow),
(r_shoulder, neck_base),
(r_elbow, r_shoulder),
(r_wrist, r_elbow),
# (pelvis, thorax),
)
links_simple2 = (
(r_hip, pelvis),
(r_knee, r_hip),
(r_ankle, r_knee),
(r_toes, r_ankle),
(l_hip, pelvis),
(l_knee, l_hip),
(l_ankle, l_knee),
(l_toes, l_ankle),
(neck_base, pelvis),
(head_back, neck_base),
(l_shoulder, neck_base),
(l_elbow, l_shoulder),
(l_wrist, l_elbow),
(r_shoulder, neck_base),
(r_elbow, r_shoulder),
(r_wrist, r_elbow),
)
joint_indices = {
hip: 0,
thorax: 12,
r_hip: 1,
r_knee: 2,
r_ankle: 3,
r_ball: 4,
r_toes: 5,
l_hip: 6,
l_knee: 7,
l_ankle: 8,
l_ball: 9,
l_toes: 10,
neck_base: 13,
head_center: 14,
head_back: 15,
l_uknown: 16,
l_shoulder: 17,
l_elbow: 18,
l_wrist: 19,
l_wrist_2: 20,
l_thumb: 21,
l_little: 22,
l_little_2: 23,
r_uknown: 24,
r_shoulder: 25,
r_elbow: 26,
r_wrist: 27,
r_wrist_2: 28,
r_thumb: 29,
r_little: 30,
r_little_2: 31,
pelvis: 11
}
joints_eval_martinez = {
'Hip': 0,
'RHip': 1,
'RKnee': 2,
'RFoot': 3,
'LHip': 6,
'LKnee': 7,
'LFoot': 8,
'Spine': 12,
'Thorax': 13,
'Neck/Nose': 14,
'Head': 15,
'LShoulder': 17,
'LElbow': 18,
'LWrist': 19,
'RShoulder': 25,
'RElbow': 26,
'RWrist': 27
}
official_eval = {
'Pelvis': (pelvis),
'RHip': (r_hip),
'RKnee': (r_knee),
'RAnkle': (r_ankle),
'LHip': (l_hip),
'LKnee': (l_knee),
'LAnkle': (l_ankle),
'Spine1': (thorax),
'Neck': (head_center),
'Head': (head_back),
'Site': (neck_base),
'LShoulder': (l_shoulder),
'LElbow': (l_elbow),
'LWrist': (l_wrist),
'RShoulder': (r_shoulder),
'RElbow': (r_elbow),
'RWrist': (r_wrist)}
official_eval_indices = {k: joint_indices[v] for k, v in official_eval.items()}
def get_link_indices(links):
return [(joint_indices[x], joint_indices[y]) for x, y in links]
simple_link_indices = get_link_indices(links_simple)
simple2_link_indices = get_link_indices(links_simple2)
link_indices = get_link_indices(links)
def get_lr_correspondences():
paired = []
for limb in joint_indices.keys():
if limb[:2] == 'l_':
paired.append(limb[2:])
correspond = []
for limb in paired:
correspond.append((joint_indices['l_' + limb], joint_indices['r_' + limb]))
return correspond
|
hip = 'hip'
thorax = 'thorax'
r_hip = 'r_hip'
r_knee = 'r_knee'
r_ankle = 'r_ankle'
r_ball = 'r_ball'
r_toes = 'r_toes'
l_hip = 'l_hip'
l_knee = 'l_knee'
l_ankle = 'l_ankle'
l_ball = 'l_ball'
l_toes = 'l_toes'
neck_base = 'neck'
head_center = 'head-center'
head_back = 'head-back'
l_uknown = 'l_uknown'
l_shoulder = 'l_shoulder'
l_elbow = 'l_elbow'
l_wrist = 'l_wrist'
l_wrist_2 = 'l_wrist_2'
l_thumb = 'l_thumb'
l_little = 'l_little'
l_little_2 = 'l_little_2'
r_uknown = 'r_uknown'
r_shoulder = 'r_shoulder'
r_elbow = 'r_elbow'
r_wrist = 'r_wrist'
r_wrist_2 = 'r_wrist_2'
r_thumb = 'r_thumb'
r_little = 'r_little'
r_little_2 = 'r_little_2'
pelvis = 'pelvis'
links = ((r_hip, thorax), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (l_thumb, l_wrist), (l_little, l_wrist), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow), (r_thumb, r_wrist), (r_little, r_wrist))
links_simple = ((r_hip, thorax), (r_knee, r_hip), (r_ankle, r_knee), (r_ball, r_ankle), (r_toes, r_ball), (l_hip, thorax), (l_knee, l_hip), (l_ankle, l_knee), (l_ball, l_ankle), (l_toes, l_ball), (neck_base, thorax), (head_back, neck_base), (head_center, head_back), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow))
links_simple2 = ((r_hip, pelvis), (r_knee, r_hip), (r_ankle, r_knee), (r_toes, r_ankle), (l_hip, pelvis), (l_knee, l_hip), (l_ankle, l_knee), (l_toes, l_ankle), (neck_base, pelvis), (head_back, neck_base), (l_shoulder, neck_base), (l_elbow, l_shoulder), (l_wrist, l_elbow), (r_shoulder, neck_base), (r_elbow, r_shoulder), (r_wrist, r_elbow))
joint_indices = {hip: 0, thorax: 12, r_hip: 1, r_knee: 2, r_ankle: 3, r_ball: 4, r_toes: 5, l_hip: 6, l_knee: 7, l_ankle: 8, l_ball: 9, l_toes: 10, neck_base: 13, head_center: 14, head_back: 15, l_uknown: 16, l_shoulder: 17, l_elbow: 18, l_wrist: 19, l_wrist_2: 20, l_thumb: 21, l_little: 22, l_little_2: 23, r_uknown: 24, r_shoulder: 25, r_elbow: 26, r_wrist: 27, r_wrist_2: 28, r_thumb: 29, r_little: 30, r_little_2: 31, pelvis: 11}
joints_eval_martinez = {'Hip': 0, 'RHip': 1, 'RKnee': 2, 'RFoot': 3, 'LHip': 6, 'LKnee': 7, 'LFoot': 8, 'Spine': 12, 'Thorax': 13, 'Neck/Nose': 14, 'Head': 15, 'LShoulder': 17, 'LElbow': 18, 'LWrist': 19, 'RShoulder': 25, 'RElbow': 26, 'RWrist': 27}
official_eval = {'Pelvis': pelvis, 'RHip': r_hip, 'RKnee': r_knee, 'RAnkle': r_ankle, 'LHip': l_hip, 'LKnee': l_knee, 'LAnkle': l_ankle, 'Spine1': thorax, 'Neck': head_center, 'Head': head_back, 'Site': neck_base, 'LShoulder': l_shoulder, 'LElbow': l_elbow, 'LWrist': l_wrist, 'RShoulder': r_shoulder, 'RElbow': r_elbow, 'RWrist': r_wrist}
official_eval_indices = {k: joint_indices[v] for (k, v) in official_eval.items()}
def get_link_indices(links):
return [(joint_indices[x], joint_indices[y]) for (x, y) in links]
simple_link_indices = get_link_indices(links_simple)
simple2_link_indices = get_link_indices(links_simple2)
link_indices = get_link_indices(links)
def get_lr_correspondences():
paired = []
for limb in joint_indices.keys():
if limb[:2] == 'l_':
paired.append(limb[2:])
correspond = []
for limb in paired:
correspond.append((joint_indices['l_' + limb], joint_indices['r_' + limb]))
return correspond
|
# Time complexity is O(n)
def leaders_to_right(iterable):
"""
Leaders-to-right in the iterable is defined as if an element in the iterable
is greater than all other elements to it's right side
:param iterable: It should be of either list or tuple types containing numbers
:return: list of tuples containing leader element and its index
Eg: leaders_to_right({5, 6, 7, 3, 6]) gives [(7, 2) (6, 4)]
Here the elements at the indexes 2, 4 are greater than all the elements to its right
"""
# To check whether the given iterable is list or tuple
if type(iterable) == list or type(iterable) == tuple:
pass
else:
raise TypeError("Iterable should be of either list or tuple")
# To check whether all the given items in the iterable are numbers only
for item in iterable:
if not isinstance(item, int):
raise ValueError("Only numbers are accepted in the iterable")
# List to store the right leaders
leaders_list = []
if len(iterable) > 0:
leaders_list.append((iterable[-1], len(iterable) - 1))
for i in range(len(iterable) - 2, -1, -1):
if iterable[i] >= leaders_list[-1][0]:
leaders_list.append((iterable[i], i))
return list(reversed(leaders_list))
|
def leaders_to_right(iterable):
"""
Leaders-to-right in the iterable is defined as if an element in the iterable
is greater than all other elements to it's right side
:param iterable: It should be of either list or tuple types containing numbers
:return: list of tuples containing leader element and its index
Eg: leaders_to_right({5, 6, 7, 3, 6]) gives [(7, 2) (6, 4)]
Here the elements at the indexes 2, 4 are greater than all the elements to its right
"""
if type(iterable) == list or type(iterable) == tuple:
pass
else:
raise type_error('Iterable should be of either list or tuple')
for item in iterable:
if not isinstance(item, int):
raise value_error('Only numbers are accepted in the iterable')
leaders_list = []
if len(iterable) > 0:
leaders_list.append((iterable[-1], len(iterable) - 1))
for i in range(len(iterable) - 2, -1, -1):
if iterable[i] >= leaders_list[-1][0]:
leaders_list.append((iterable[i], i))
return list(reversed(leaders_list))
|
a=0
b=1
while a<10:
print(a)
a,b=b,a+b
|
a = 0
b = 1
while a < 10:
print(a)
(a, b) = (b, a + b)
|
class Distances(object):
"""description of class"""
def __init__(self, root):
self.root = root
self.cells = {}
"""Root cell is distance 0"""
self.cells[root] = 0
def GetCellDistance(self, cell):
"""Gets the cell distance from the root cell"""
dist = self.cells.get(cell)
return dist
def SetCellDistance(self, cell, distance):
"""Sets the cell distance from the root cell"""
self.cells[cell] = distance
def GetCellsPresent(self):
"""Returns a list of the cells present"""
return self.cells.keys
def PathTo(self, goal):
"""Figures out the path to goal from the original starting cell"""
current = goal
breadcrumbs = Distances(self.root)
breadcrumbs.cells[current] = self.cells[current]
while current != self.root:
for neighbour in current.links:
if self.cells[neighbour] < self.cells[current]:
breadcrumbs.cells[neighbour] = self.cells[neighbour]
current = neighbour
break
return breadcrumbs
def Max(self):
"""Get the furthest cell and its distance from the root cell"""
maxDistance = 0
maxCell = self.root
for cell, distance in self.cells.items():
if distance > maxDistance:
maxCell = cell
maxDistance = distance
return maxCell, maxDistance
|
class Distances(object):
"""description of class"""
def __init__(self, root):
self.root = root
self.cells = {}
'Root cell is distance 0'
self.cells[root] = 0
def get_cell_distance(self, cell):
"""Gets the cell distance from the root cell"""
dist = self.cells.get(cell)
return dist
def set_cell_distance(self, cell, distance):
"""Sets the cell distance from the root cell"""
self.cells[cell] = distance
def get_cells_present(self):
"""Returns a list of the cells present"""
return self.cells.keys
def path_to(self, goal):
"""Figures out the path to goal from the original starting cell"""
current = goal
breadcrumbs = distances(self.root)
breadcrumbs.cells[current] = self.cells[current]
while current != self.root:
for neighbour in current.links:
if self.cells[neighbour] < self.cells[current]:
breadcrumbs.cells[neighbour] = self.cells[neighbour]
current = neighbour
break
return breadcrumbs
def max(self):
"""Get the furthest cell and its distance from the root cell"""
max_distance = 0
max_cell = self.root
for (cell, distance) in self.cells.items():
if distance > maxDistance:
max_cell = cell
max_distance = distance
return (maxCell, maxDistance)
|
#program to read the mass data and find the number of islands.
c=0
def f(x,y,z):
if 0<=y<10 and 0<=z<10 and x[z][y]=='1':
x[z][y]='0'
for dy,dz in [[-1,0],[1,0],[0,-1],[0,1]]:f(x,y+dy,z+dz)
print("Input 10 rows of 10 numbers representing green squares (island) as 1 and blue squares (sea) as zeros")
while 1:
try:
if c:input()
except:break
x = [list(input()) for _ in [0]*10]
c=1;b=0
for i in range(10):
for j in range(10):
if x[j][i]=='1':
b+=1;f(x,i,j)
print("Number of islands:")
print(b)
|
c = 0
def f(x, y, z):
if 0 <= y < 10 and 0 <= z < 10 and (x[z][y] == '1'):
x[z][y] = '0'
for (dy, dz) in [[-1, 0], [1, 0], [0, -1], [0, 1]]:
f(x, y + dy, z + dz)
print('Input 10 rows of 10 numbers representing green squares (island) as 1 and blue squares (sea) as zeros')
while 1:
try:
if c:
input()
except:
break
x = [list(input()) for _ in [0] * 10]
c = 1
b = 0
for i in range(10):
for j in range(10):
if x[j][i] == '1':
b += 1
f(x, i, j)
print('Number of islands:')
print(b)
|
def seq(a, d, n):
res = str(a)
for i in range(n-1):
a += d
a %= 10
res += str(a)
return res[::-1]
l = input()
r = input()
limits = set()
for a in range(10):
for d in range(10):
limits.add(int(seq(a, d, len(l))))
limits.add(int(seq(a, d, len(r))))
res = max(99*(len(r) - len(l) - 1), 0)
for limit in limits:
if int(l) <= limit and limit <= int(r):
res += 1
print(res)
|
def seq(a, d, n):
res = str(a)
for i in range(n - 1):
a += d
a %= 10
res += str(a)
return res[::-1]
l = input()
r = input()
limits = set()
for a in range(10):
for d in range(10):
limits.add(int(seq(a, d, len(l))))
limits.add(int(seq(a, d, len(r))))
res = max(99 * (len(r) - len(l) - 1), 0)
for limit in limits:
if int(l) <= limit and limit <= int(r):
res += 1
print(res)
|
"""This is my module.
Pretty pointless tbh, has only one function, welcome()
Don't judge me this was a primer on using help()"""
def welcome(person='Person'):
"""The welcome() function
Takes an argument person, or defaults person to "Person", prints __name__
and welcomes the person.
Now scram."""
print(f'In {__name__}')
print(f'Welcome, {person}')
if __name__ == '__main__':
welcome()
|
"""This is my module.
Pretty pointless tbh, has only one function, welcome()
Don't judge me this was a primer on using help()"""
def welcome(person='Person'):
"""The welcome() function
Takes an argument person, or defaults person to "Person", prints __name__
and welcomes the person.
Now scram."""
print(f'In {__name__}')
print(f'Welcome, {person}')
if __name__ == '__main__':
welcome()
|
def part1():
data = []
with open("C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt") as f:
data = [int(x) for x in f.readlines()]
data.append(0)
data.append(max(data) + 3)
data.sort()
diffs = [0] * 4
for i in range(1, len(data)):
d = data[i] - data[i-1]
diffs[d] += 1
ans = diffs[1] * diffs[3]
print(str(ans))
def part2():
with open("C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt") as f:
data = [int(x) for x in f.readlines()]
data.append(0)
data.append(max(data) + 3)
data.sort()
paths = [0] * (max(data) + 1)
paths[0] = 1
for i in range(1, max(data) + 1):
for x in range(1, 4):
if (i - x) in data:
paths[i] += paths[i - x]
print(str(paths[-1]))
part1()
part2()
|
def part1():
data = []
with open('C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt') as f:
data = [int(x) for x in f.readlines()]
data.append(0)
data.append(max(data) + 3)
data.sort()
diffs = [0] * 4
for i in range(1, len(data)):
d = data[i] - data[i - 1]
diffs[d] += 1
ans = diffs[1] * diffs[3]
print(str(ans))
def part2():
with open('C:\\Dev\\projects\\advent-of-code\\python\\day10\\input.txt') as f:
data = [int(x) for x in f.readlines()]
data.append(0)
data.append(max(data) + 3)
data.sort()
paths = [0] * (max(data) + 1)
paths[0] = 1
for i in range(1, max(data) + 1):
for x in range(1, 4):
if i - x in data:
paths[i] += paths[i - x]
print(str(paths[-1]))
part1()
part2()
|
class Facility:
id = 0
operator = None
name = None
bcghg_id = None
type = None
naics = None
description = None
swrs_facility_id = None
production_calculation_explanation = None
production_additional_info = None
production_public_info = None
ciip_db_id = None
def __init__(self, operator):
self.operator = operator
return
|
class Facility:
id = 0
operator = None
name = None
bcghg_id = None
type = None
naics = None
description = None
swrs_facility_id = None
production_calculation_explanation = None
production_additional_info = None
production_public_info = None
ciip_db_id = None
def __init__(self, operator):
self.operator = operator
return
|
numero1=int(input("Digite Numero Uno: "))
numero2=int(input("Digite Numero Dos: "))
operador=input(" * / + - %: ")
if(operador=="+"):
funcion=lambda a,b: a+b
elif(operador=="-"):
funcion=lambda a,b: a-b
elif(operador=="/"):
funcion=lambda a,b:a/b
elif(operador=="*"):
funcion=lambda a,b:a*b
elif(operador=="/"):
funcion=lambda a,b:a/b
print("el resultado es: "+str(funcion(numero1,numero2)))
|
numero1 = int(input('Digite Numero Uno: '))
numero2 = int(input('Digite Numero Dos: '))
operador = input(' * / + - %: ')
if operador == '+':
funcion = lambda a, b: a + b
elif operador == '-':
funcion = lambda a, b: a - b
elif operador == '/':
funcion = lambda a, b: a / b
elif operador == '*':
funcion = lambda a, b: a * b
elif operador == '/':
funcion = lambda a, b: a / b
print('el resultado es: ' + str(funcion(numero1, numero2)))
|
a = 1
b = a+10
print(b)
|
a = 1
b = a + 10
print(b)
|
n=99999
t=n
while(t//10!=0):
x=t
sum=0
while(x!=0):
sum += x%10
x=x//10
t=sum
print(sum)
|
n = 99999
t = n
while t // 10 != 0:
x = t
sum = 0
while x != 0:
sum += x % 10
x = x // 10
t = sum
print(sum)
|
"""
persistor base class
"""
class PersistorBase():
def __init__(self):
pass
def write(self, feature, dumps, **kwargs):
raise NotImplementedError("Persistor write method implementation error!")
def read(self, uid, **kwargs):
raise NotImplementedError("Persistor read method implementation error!")
def delete(self, uid, **kwargs):
raise NotImplementedError("Persistor delete method implementation error!")
|
"""
persistor base class
"""
class Persistorbase:
def __init__(self):
pass
def write(self, feature, dumps, **kwargs):
raise not_implemented_error('Persistor write method implementation error!')
def read(self, uid, **kwargs):
raise not_implemented_error('Persistor read method implementation error!')
def delete(self, uid, **kwargs):
raise not_implemented_error('Persistor delete method implementation error!')
|
def sum_odd_numbers(numbers):
total = 0
odd_numbers = [num for num in numbers if num % 2 == 0]
for num in odd_numbers:
total += num
return total
sum_odd_numbers([1, 2, 3, 4, 5, 6, 7, 8, 9])
|
def sum_odd_numbers(numbers):
total = 0
odd_numbers = [num for num in numbers if num % 2 == 0]
for num in odd_numbers:
total += num
return total
sum_odd_numbers([1, 2, 3, 4, 5, 6, 7, 8, 9])
|
# 247. Strobogrammatic Number II
# [email protected]
# A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).
# Find all strobogrammatic numbers that are of length = n.
# For example,
# Given n = 2, return ["11","69","88","96"].
class Solution(object):
# sol 1
# runtime: 345ms
def __init__(self):
self.maps = {'0':'0', '1':'1', '6':'9', '8':'8', '9':'6'}
def findStrobogrammatic(self, n):
"""
:type n: int
:rtype: List[str]
"""
res = []
c = ["#"]*n
self.dfs(c, 0, n-1, res)
return res
def dfs(self, c, left, right, res):
if left > right:
s = ''.join(c)
res.append(s)
return
for p in self.maps.iteritems():
if left == right and p[0] in ('6', '9'):
continue
if left != right and left == 0 and p[0] == '0':
continue
c[left], c[right] = p[0], p[1]
self.dfs(c, left + 1, right - 1, res)
# sol 2:
# runtime: 265ms
def findStrobogrammatic(self, n):
oddNum = ['0', '1', '8']
evenNum = ['11', '88', '69', '96', '00']
if n == 1:
return oddNum
if n == 2:
return evenNum[:-1]
if n % 2:
pre, mid = self.findStrobogrammatic(n-1), oddNum
else:
pre, mid = self.findStrobogrammatic(n-2), evenNum
premid = (n-1)/2
return [p[:premid] + c + p[premid:] for c in mid for p in pre]
|
class Solution(object):
def __init__(self):
self.maps = {'0': '0', '1': '1', '6': '9', '8': '8', '9': '6'}
def find_strobogrammatic(self, n):
"""
:type n: int
:rtype: List[str]
"""
res = []
c = ['#'] * n
self.dfs(c, 0, n - 1, res)
return res
def dfs(self, c, left, right, res):
if left > right:
s = ''.join(c)
res.append(s)
return
for p in self.maps.iteritems():
if left == right and p[0] in ('6', '9'):
continue
if left != right and left == 0 and (p[0] == '0'):
continue
(c[left], c[right]) = (p[0], p[1])
self.dfs(c, left + 1, right - 1, res)
def find_strobogrammatic(self, n):
odd_num = ['0', '1', '8']
even_num = ['11', '88', '69', '96', '00']
if n == 1:
return oddNum
if n == 2:
return evenNum[:-1]
if n % 2:
(pre, mid) = (self.findStrobogrammatic(n - 1), oddNum)
else:
(pre, mid) = (self.findStrobogrammatic(n - 2), evenNum)
premid = (n - 1) / 2
return [p[:premid] + c + p[premid:] for c in mid for p in pre]
|
# Copyright 2000-2002 by Andrew Dalke.
# Revisions copyright 2007-2010 by Peter Cock.
# All rights reserved.
#
# This file is part of the Biopython distribution and governed by your
# choice of the "Biopython License Agreement" or the "BSD 3-Clause License".
# Please see the LICENSE file that should have been included as part of this
# package.
"""Alphabets were previously used to declare sequence type and letters (OBSOLETE).
The design of Bio.Aphabet included a number of historic design choices
which, with the benefit of hindsight, were regretable. Bio.Alphabet was
therefore removed from Biopython in release 1.78. Instead, the molecule type is
included as an annotation on SeqRecords where appropriate.
Please see https://biopython.org/wiki/Alphabet for examples showing how to
transition from Bio.Alphabet to molecule type annotations.
"""
raise ImportError(
"Bio.Alphabet has been removed from Biopython. In many cases, the alphabet can simply be ignored and removed from scripts. In a few cases, you may need to specify the ``molecule_type`` as an annotation on a SeqRecord for your script to work correctly. Please see https://biopython.org/wiki/Alphabet for more information."
)
|
"""Alphabets were previously used to declare sequence type and letters (OBSOLETE).
The design of Bio.Aphabet included a number of historic design choices
which, with the benefit of hindsight, were regretable. Bio.Alphabet was
therefore removed from Biopython in release 1.78. Instead, the molecule type is
included as an annotation on SeqRecords where appropriate.
Please see https://biopython.org/wiki/Alphabet for examples showing how to
transition from Bio.Alphabet to molecule type annotations.
"""
raise import_error('Bio.Alphabet has been removed from Biopython. In many cases, the alphabet can simply be ignored and removed from scripts. In a few cases, you may need to specify the ``molecule_type`` as an annotation on a SeqRecord for your script to work correctly. Please see https://biopython.org/wiki/Alphabet for more information.')
|
# Tot's reward lv 20
sm.completeQuest(5519)
# Lv. 20 Equipment box
sm.giveItem(2431876, 1)
sm.dispose()
|
sm.completeQuest(5519)
sm.giveItem(2431876, 1)
sm.dispose()
|
class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
l = -1
r = len(arr)
while l < r - 1:
m = (l + r) >> 1
if arr[m - 1] < arr[m] and arr[m] > arr[m + 1]:
return m
elif arr[m - 1] < arr[m]:
l = m
else:
r = m
class Solution:
def nextGreatestLetter(self, letters: List[str], target: str) -> str:
l = 0
r = len(letters) - 1
while l <= r:
m = l + (r - l) // 2
if letters[m] > target:
r = m - 1
else:
l = m + 1
return letters[l % len(letters)]
class Solution(object):
def peakIndexInMountainArray(self, A):
"""
:type A: List[int]
:rtype: int
"""
low = 0
high = len(A) - 1
while low <= high:
mid = low + (high - low)//2
if A[mid - 1] < A[mid] > A[mid + 1]:
return mid
elif A[mid - 1] < A[mid] < A[mid + 1]:
low = mid + 1
else:
high = mid - 1
class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
l = 0
r = len(arr) - 1
while True:
mid = (l + r) // 2
if arr[mid]>arr[mid+1] and arr[mid]>arr[mid-1]:
return mid
elif arr[mid]>arr[mid+1]:
r = mid + 1
else:
l = mid
class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
for i in range(1, len(arr)):
if arr[i - 1] < arr[i] and arr[i] > arr[i + 1]:
return i
class Solution:
def peakIndexInMountainArray(self, arr: List[int]) -> int:
l = -1
r = len(arr)
while l < r - 1:
mid = (l + r) >> 1
if arr[mid]>arr[mid+1] and arr[mid]>arr[mid-1]:
return mid
elif arr[mid]>arr[mid+1]:
r = mid
else:
l = mid
|
class Solution:
def peak_index_in_mountain_array(self, arr: List[int]) -> int:
l = -1
r = len(arr)
while l < r - 1:
m = l + r >> 1
if arr[m - 1] < arr[m] and arr[m] > arr[m + 1]:
return m
elif arr[m - 1] < arr[m]:
l = m
else:
r = m
class Solution:
def next_greatest_letter(self, letters: List[str], target: str) -> str:
l = 0
r = len(letters) - 1
while l <= r:
m = l + (r - l) // 2
if letters[m] > target:
r = m - 1
else:
l = m + 1
return letters[l % len(letters)]
class Solution(object):
def peak_index_in_mountain_array(self, A):
"""
:type A: List[int]
:rtype: int
"""
low = 0
high = len(A) - 1
while low <= high:
mid = low + (high - low) // 2
if A[mid - 1] < A[mid] > A[mid + 1]:
return mid
elif A[mid - 1] < A[mid] < A[mid + 1]:
low = mid + 1
else:
high = mid - 1
class Solution:
def peak_index_in_mountain_array(self, arr: List[int]) -> int:
l = 0
r = len(arr) - 1
while True:
mid = (l + r) // 2
if arr[mid] > arr[mid + 1] and arr[mid] > arr[mid - 1]:
return mid
elif arr[mid] > arr[mid + 1]:
r = mid + 1
else:
l = mid
class Solution:
def peak_index_in_mountain_array(self, arr: List[int]) -> int:
for i in range(1, len(arr)):
if arr[i - 1] < arr[i] and arr[i] > arr[i + 1]:
return i
class Solution:
def peak_index_in_mountain_array(self, arr: List[int]) -> int:
l = -1
r = len(arr)
while l < r - 1:
mid = l + r >> 1
if arr[mid] > arr[mid + 1] and arr[mid] > arr[mid - 1]:
return mid
elif arr[mid] > arr[mid + 1]:
r = mid
else:
l = mid
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
IGNORED_FILE_PREFIXES = ["."]
IGNORED_FILE_SUFFIXES = ["~", ".swp"]
IGNORED_DIRS = [".git", ".svn", ".hg"]
def filter_filenames(filenames, ignored_files=[".hgignore"]):
for filename in filenames:
if filename in ignored_files:
continue
if any([filename.startswith(suffix)
for suffix in IGNORED_FILE_PREFIXES]):
continue
if any([filename.endswith(suffix)
for suffix in IGNORED_FILE_SUFFIXES]):
continue
yield filename
def filter_dirnames(dirnames):
return [dirname for dirname in dirnames if dirname not in IGNORED_DIRS]
|
ignored_file_prefixes = ['.']
ignored_file_suffixes = ['~', '.swp']
ignored_dirs = ['.git', '.svn', '.hg']
def filter_filenames(filenames, ignored_files=['.hgignore']):
for filename in filenames:
if filename in ignored_files:
continue
if any([filename.startswith(suffix) for suffix in IGNORED_FILE_PREFIXES]):
continue
if any([filename.endswith(suffix) for suffix in IGNORED_FILE_SUFFIXES]):
continue
yield filename
def filter_dirnames(dirnames):
return [dirname for dirname in dirnames if dirname not in IGNORED_DIRS]
|
# CHANGEME
w = str(input("Pattern: "))
S = str(input("Search string (s): "))
B = {}
or_mask = [0]*len(w)
or_mask[len(w)-1] = 1
D = [0]*len(w)
done = []
for i in list(set(w)):
tmp = [0]*len(w)
for pos in [pos for pos, char in enumerate(w) if char == i]:
tmp[len(w)-pos-1] = 1
B[i] = tmp
for c in w:
if c not in done:
print(f"B[{c}]: {''.join([str(i) for i in B.get(c)])}")
done.append(c)
print(f"D={D}")
print(f"D <-- ((D << 1) OR 1) AND B[S[i]]")
for i, c in enumerate(S):
print(f"S[{i+1}]={c}")
if B.get(c):
b = B.get(c)
else:
b = [0]*len(w)
str_current_b = "".join([str(x) for x in b])
str_d = "".join([str(x) for x in D])
print(f"B[S[{i+1}]]=B[{c}]={str_current_b}")
D.pop(0)
D.append(0)
D = [a or b for a, b in zip(D, or_mask)]
print(
f"D = (({str_d} << 1) OR {''.join([str(x) for x in or_mask])}) = {''.join([str(x) for x in D])}", end="")
D = [a and b for a, b in zip(D, b)]
print(f" AND {str_current_b} = {''.join([str(x) for x in D])}")
if D[0] == 1:
print(f"Ocurrence found at pos {i+1} in S - {c}")
print("- "*10)
|
w = str(input('Pattern: '))
s = str(input('Search string (s): '))
b = {}
or_mask = [0] * len(w)
or_mask[len(w) - 1] = 1
d = [0] * len(w)
done = []
for i in list(set(w)):
tmp = [0] * len(w)
for pos in [pos for (pos, char) in enumerate(w) if char == i]:
tmp[len(w) - pos - 1] = 1
B[i] = tmp
for c in w:
if c not in done:
print(f"B[{c}]: {''.join([str(i) for i in B.get(c)])}")
done.append(c)
print(f'D={D}')
print(f'D <-- ((D << 1) OR 1) AND B[S[i]]')
for (i, c) in enumerate(S):
print(f'S[{i + 1}]={c}')
if B.get(c):
b = B.get(c)
else:
b = [0] * len(w)
str_current_b = ''.join([str(x) for x in b])
str_d = ''.join([str(x) for x in D])
print(f'B[S[{i + 1}]]=B[{c}]={str_current_b}')
D.pop(0)
D.append(0)
d = [a or b for (a, b) in zip(D, or_mask)]
print(f"D = (({str_d} << 1) OR {''.join([str(x) for x in or_mask])}) = {''.join([str(x) for x in D])}", end='')
d = [a and b for (a, b) in zip(D, b)]
print(f" AND {str_current_b} = {''.join([str(x) for x in D])}")
if D[0] == 1:
print(f'Ocurrence found at pos {i + 1} in S - {c}')
print('- ' * 10)
|
"""
A set of common vocabularies used in MIDAS queries.
"""
UK_COUNTIES = """ABERDEENSHIRE,ALDERNEY,ANGUS,ANTRIM,ARGYLL (IN HIGHLAND REGION),
ARGYLL (IN STRATHCLYDE REGION),ARGYLLSHIRE,ARMAGH,ASCENSION IS,
AUSTRALIA (ADDITIONAL ISLANDS),AVON,AYRSHIRE,BANFFSHIRE,BEDFORDSHIRE,
BERKSHIRE,BERWICKSHIRE,BORDERS,BOUVET ISLAND,BRECKNOCKSHIRE,BRITISH VIRGIN ISLANDS,
BUCKINGHAMSHIRE,BUTESHIRE,CAERNARFONSHIRE,CAITHNESS,CAMBRIDGESHIRE,CARDIGANSHIRE,
CARLOW,CARMARTHENSHIRE,CAVAN,CAYMAN ISLANDS,CENTRAL,CHANNEL ISLANDS,CHESHIRE,
CHRISTMAS ISLAND,CLACKMANNANSHIRE,CLARE,CLEVELAND,CLWYD,COCOS ISLAND,COOK ISLANDS,
CORK,CORNWALL,CUMBERLAND,CUMBRIA,CYPRUS,DENBIGHSHIRE,DERBYSHIRE,DETACHED ISLANDS,
DEVON,DONEGAL,DORSET,DOWN,DUBLIN,DUMFRIES & GALLOWAY,DUMFRIESSHIRE,DUNBARTONSHIRE,
DURHAM,DYFED,EAST LOTHIAN,EAST SUSSEX,ESSEX,FALKLAND IS,FERMANAGH,FIFE,FLINTSHIRE,
FORFARSHIRE,GALWAY,GLAMORGANSHIRE,GLOUCESTERSHIRE,GRAMPIAN,GREATER LONDON,
GREATER MANCHESTER,GUADALOUPE,GUERNSEY,GWENT,GWYNEDD,HAMPSHIRE,HAWAII,HEREFORD,
HEREFORD & WORCESTER,HERTFORDSHIRE,HIGHLAND,HUMBERSIDE,HUNTINGDONSHIRE,INVERNESS-SHIRE,
ISLE OF ANGLESEY,ISLE OF MAN,ISLE OF WIGHT,ISLES OF SCILLY,JERSEY,KENT,KERRY,KILDARE,
KILKENNY,KINCARDINESHIRE,KINROSS-SHIRE,KIRKCUDBRIGHTSHIRE,LANARKSHIRE,LANARKSHIRE,
LANCASHIRE,LAOIS,LEICESTERSHIRE,LEITRIM,LIMERICK,LINCOLNSHIRE,LONDONDERRY,LONGFORD,
LOTHIAN,LOUTH,MALDIVES,MALTA,MAYO,MEATH,MEDITERRANEAN ISLANDS,MERIONETHSHIRE,
MERSEYSIDE,MIDDLESEX,MID GLAMORGAN,MIDLOTHIAN,MIDLOTHIAN (IN BORDERS REGION),
MIDLOTHIAN (IN LOTHIAN REGION),MONAGHAN,MONMOUTHSHIRE,MONTGOMERYSHIRE,MORAY,
MORAY (IN GRAMPIAN REGION),MORAY (IN HIGHLAND REGION),NAIRNSHIRE,NORFOLK,
NORTHAMPTONSHIRE,NORTHUMBERLAND,NORTH YORKSHIRE,NOTTINGHAMSHIRE,OCEAN ISLANDS,
OFFALY,ORKNEY,OXFORDSHIRE,PACIFIC ISLANDS NORTH OF EQUATOR,PEEBLESHIRE,PEMBROKESHIRE,
PERTHSHIRE,PERTHSHIRE (IN CENTRAL REGION),PERTHSHIRE (IN TAYSIDE REGION),
PHOENIX ISLANDS,POWYS,POWYS (NORTH),POWYS (SOUTH),RADNORSHIRE,RENFREWSHIRE,ROSCOMMON,
ROSS & CROMARTY,ROXBURGHSHIRE,RUTLAND,SANTA CRUZ ISLANDS,SARK,SELKIRKSHIRE,SEYCHELLES,
SHETLAND,SHROPSHIRE,SINGAPORE,SLIGO,SOLOMON ISLANDS,SOMERSET,SOUTHERN LINE ISLANDS,
SOUTH GEORGIA,SOUTH GLAMORGAN,SOUTH ORKNEYS,SOUTH SHETLAND,SOUTH YORKSHIRE,
SPAIN (CANARY ISLANDS),STAFFORDSHIRE,ST HELENA,STIRLING,STIRLING (IN CENTRAL REGION),
STIRLING (IN STRATHCLYDE REGION),STRATHCLYDE,SUFFOLK,SURREY,SUSSEX,SUTHERLAND,TAYSIDE,
TIPPERARY,TURKS & CAICOS ISLANDS,TYNE & WEAR,TYRONE,WARWICKSHIRE,WATERFORD,WESTERN ISLES,
WEST GLAMORGAN,WEST LOTHIAN,WEST LOTHIAN (IN CENTRAL REGION),
WEST LOTHIAN (IN LOTHIAN REGION),WESTMEATH,WEST MIDLANDS,WESTMORLAND,WEST SUFFOLK,
WEST SUSSEX,WEST YORKSHIRE,WEXFORD,WICKLOW,WIGTOWNSHIRE,WILTSHIRE,WORCESTERSHIRE,
YORKSHIRE""".replace('\n', '').split(',')
DATA_TYPES = ['CLBD', 'CLBN', 'CLBR', 'CLBW', 'DCNN', 'FIXD', 'ICAO', 'LPMS', 'RAIN',
'SHIP', 'WIND', 'WMO']
TABLE_NAMES = ['TD', 'WD', 'RD', 'RH', 'RS', 'ST', 'WH', 'WM', 'RO']
MIDAS_CATALOGUE_DICT = {
"WM": "http://catalogue.ceda.ac.uk/uuid/a1f65a362c26c9fa667d98c431a1ad38",
"RH": "http://catalogue.ceda.ac.uk/uuid/bbd6916225e7475514e17fdbf11141c1",
"CURS": "http://catalogue.ceda.ac.uk/uuid/7f76ab4a47ee107778e0a7e8a701ee77",
"ST": "http://catalogue.ceda.ac.uk/uuid/8dc05f6ecc6065a5d10fc7b8829589ec",
"GL": "http://catalogue.ceda.ac.uk/uuid/0ec59f09b3158829a059fe70b17de951",
"CUNS": "http://catalogue.ceda.ac.uk/uuid/bef3d059255a0feaa14eb78c77d7bc48",
"TMSL": "http://catalogue.ceda.ac.uk/uuid/33ca1887e5f116057340e404b2c752f2",
"RO": "http://catalogue.ceda.ac.uk/uuid/b4c028814a666a651f52f2b37a97c7c7",
"MO": "http://catalogue.ceda.ac.uk/uuid/77910bcec71c820d4c92f40d3ed3f249",
"RS": "http://catalogue.ceda.ac.uk/uuid/455f0dd48613dada7bfb0ccfcb7a7d41",
"RD": "http://catalogue.ceda.ac.uk/uuid/c732716511d3442f05cdeccbe99b8f90",
"CUNL": "http://catalogue.ceda.ac.uk/uuid/ec1d8e1e511838b9303921986a0137de",
"TD": "http://catalogue.ceda.ac.uk/uuid/1bb479d3b1e38c339adb9c82c15579d8",
"SCLE": "http://catalogue.ceda.ac.uk/uuid/1d9aa0abc4e93fca1f91c8a187d46567",
"WD": "http://catalogue.ceda.ac.uk/uuid/954d743d1c07d1dd034c131935db54e0",
"WH": "http://catalogue.ceda.ac.uk/uuid/916ac4bbc46f7685ae9a5e10451bae7c",
"CURL": "http://catalogue.ceda.ac.uk/uuid/fe9a02b85b50d3ee1d0b7366355bb9d8"
}
|
"""
A set of common vocabularies used in MIDAS queries.
"""
uk_counties = 'ABERDEENSHIRE,ALDERNEY,ANGUS,ANTRIM,ARGYLL (IN HIGHLAND REGION),\nARGYLL (IN STRATHCLYDE REGION),ARGYLLSHIRE,ARMAGH,ASCENSION IS,\nAUSTRALIA (ADDITIONAL ISLANDS),AVON,AYRSHIRE,BANFFSHIRE,BEDFORDSHIRE,\nBERKSHIRE,BERWICKSHIRE,BORDERS,BOUVET ISLAND,BRECKNOCKSHIRE,BRITISH VIRGIN ISLANDS,\nBUCKINGHAMSHIRE,BUTESHIRE,CAERNARFONSHIRE,CAITHNESS,CAMBRIDGESHIRE,CARDIGANSHIRE,\nCARLOW,CARMARTHENSHIRE,CAVAN,CAYMAN ISLANDS,CENTRAL,CHANNEL ISLANDS,CHESHIRE,\nCHRISTMAS ISLAND,CLACKMANNANSHIRE,CLARE,CLEVELAND,CLWYD,COCOS ISLAND,COOK ISLANDS,\nCORK,CORNWALL,CUMBERLAND,CUMBRIA,CYPRUS,DENBIGHSHIRE,DERBYSHIRE,DETACHED ISLANDS,\nDEVON,DONEGAL,DORSET,DOWN,DUBLIN,DUMFRIES & GALLOWAY,DUMFRIESSHIRE,DUNBARTONSHIRE,\nDURHAM,DYFED,EAST LOTHIAN,EAST SUSSEX,ESSEX,FALKLAND IS,FERMANAGH,FIFE,FLINTSHIRE,\nFORFARSHIRE,GALWAY,GLAMORGANSHIRE,GLOUCESTERSHIRE,GRAMPIAN,GREATER LONDON,\nGREATER MANCHESTER,GUADALOUPE,GUERNSEY,GWENT,GWYNEDD,HAMPSHIRE,HAWAII,HEREFORD,\nHEREFORD & WORCESTER,HERTFORDSHIRE,HIGHLAND,HUMBERSIDE,HUNTINGDONSHIRE,INVERNESS-SHIRE,\nISLE OF ANGLESEY,ISLE OF MAN,ISLE OF WIGHT,ISLES OF SCILLY,JERSEY,KENT,KERRY,KILDARE,\nKILKENNY,KINCARDINESHIRE,KINROSS-SHIRE,KIRKCUDBRIGHTSHIRE,LANARKSHIRE,LANARKSHIRE,\nLANCASHIRE,LAOIS,LEICESTERSHIRE,LEITRIM,LIMERICK,LINCOLNSHIRE,LONDONDERRY,LONGFORD,\nLOTHIAN,LOUTH,MALDIVES,MALTA,MAYO,MEATH,MEDITERRANEAN ISLANDS,MERIONETHSHIRE,\nMERSEYSIDE,MIDDLESEX,MID GLAMORGAN,MIDLOTHIAN,MIDLOTHIAN (IN BORDERS REGION),\nMIDLOTHIAN (IN LOTHIAN REGION),MONAGHAN,MONMOUTHSHIRE,MONTGOMERYSHIRE,MORAY,\nMORAY (IN GRAMPIAN REGION),MORAY (IN HIGHLAND REGION),NAIRNSHIRE,NORFOLK,\nNORTHAMPTONSHIRE,NORTHUMBERLAND,NORTH YORKSHIRE,NOTTINGHAMSHIRE,OCEAN ISLANDS,\nOFFALY,ORKNEY,OXFORDSHIRE,PACIFIC ISLANDS NORTH OF EQUATOR,PEEBLESHIRE,PEMBROKESHIRE,\nPERTHSHIRE,PERTHSHIRE (IN CENTRAL REGION),PERTHSHIRE (IN TAYSIDE REGION),\nPHOENIX ISLANDS,POWYS,POWYS (NORTH),POWYS (SOUTH),RADNORSHIRE,RENFREWSHIRE,ROSCOMMON,\nROSS & CROMARTY,ROXBURGHSHIRE,RUTLAND,SANTA CRUZ ISLANDS,SARK,SELKIRKSHIRE,SEYCHELLES,\nSHETLAND,SHROPSHIRE,SINGAPORE,SLIGO,SOLOMON ISLANDS,SOMERSET,SOUTHERN LINE ISLANDS,\nSOUTH GEORGIA,SOUTH GLAMORGAN,SOUTH ORKNEYS,SOUTH SHETLAND,SOUTH YORKSHIRE,\nSPAIN (CANARY ISLANDS),STAFFORDSHIRE,ST HELENA,STIRLING,STIRLING (IN CENTRAL REGION),\nSTIRLING (IN STRATHCLYDE REGION),STRATHCLYDE,SUFFOLK,SURREY,SUSSEX,SUTHERLAND,TAYSIDE,\nTIPPERARY,TURKS & CAICOS ISLANDS,TYNE & WEAR,TYRONE,WARWICKSHIRE,WATERFORD,WESTERN ISLES,\nWEST GLAMORGAN,WEST LOTHIAN,WEST LOTHIAN (IN CENTRAL REGION),\nWEST LOTHIAN (IN LOTHIAN REGION),WESTMEATH,WEST MIDLANDS,WESTMORLAND,WEST SUFFOLK,\nWEST SUSSEX,WEST YORKSHIRE,WEXFORD,WICKLOW,WIGTOWNSHIRE,WILTSHIRE,WORCESTERSHIRE,\nYORKSHIRE'.replace('\n', '').split(',')
data_types = ['CLBD', 'CLBN', 'CLBR', 'CLBW', 'DCNN', 'FIXD', 'ICAO', 'LPMS', 'RAIN', 'SHIP', 'WIND', 'WMO']
table_names = ['TD', 'WD', 'RD', 'RH', 'RS', 'ST', 'WH', 'WM', 'RO']
midas_catalogue_dict = {'WM': 'http://catalogue.ceda.ac.uk/uuid/a1f65a362c26c9fa667d98c431a1ad38', 'RH': 'http://catalogue.ceda.ac.uk/uuid/bbd6916225e7475514e17fdbf11141c1', 'CURS': 'http://catalogue.ceda.ac.uk/uuid/7f76ab4a47ee107778e0a7e8a701ee77', 'ST': 'http://catalogue.ceda.ac.uk/uuid/8dc05f6ecc6065a5d10fc7b8829589ec', 'GL': 'http://catalogue.ceda.ac.uk/uuid/0ec59f09b3158829a059fe70b17de951', 'CUNS': 'http://catalogue.ceda.ac.uk/uuid/bef3d059255a0feaa14eb78c77d7bc48', 'TMSL': 'http://catalogue.ceda.ac.uk/uuid/33ca1887e5f116057340e404b2c752f2', 'RO': 'http://catalogue.ceda.ac.uk/uuid/b4c028814a666a651f52f2b37a97c7c7', 'MO': 'http://catalogue.ceda.ac.uk/uuid/77910bcec71c820d4c92f40d3ed3f249', 'RS': 'http://catalogue.ceda.ac.uk/uuid/455f0dd48613dada7bfb0ccfcb7a7d41', 'RD': 'http://catalogue.ceda.ac.uk/uuid/c732716511d3442f05cdeccbe99b8f90', 'CUNL': 'http://catalogue.ceda.ac.uk/uuid/ec1d8e1e511838b9303921986a0137de', 'TD': 'http://catalogue.ceda.ac.uk/uuid/1bb479d3b1e38c339adb9c82c15579d8', 'SCLE': 'http://catalogue.ceda.ac.uk/uuid/1d9aa0abc4e93fca1f91c8a187d46567', 'WD': 'http://catalogue.ceda.ac.uk/uuid/954d743d1c07d1dd034c131935db54e0', 'WH': 'http://catalogue.ceda.ac.uk/uuid/916ac4bbc46f7685ae9a5e10451bae7c', 'CURL': 'http://catalogue.ceda.ac.uk/uuid/fe9a02b85b50d3ee1d0b7366355bb9d8'}
|
# -*- coding: utf-8 -*-
"""
smash.models.encryption_model_response
This file was automatically generated for SMASH by SMASH v2.0 ( https://smashlabs.io )
"""
class EncryptionModelResponse(object):
"""Implementation of the 'Encryption Model Response' model.
TODO: type model description here.
Attributes:
data (string): TODO: type description here.
file (string): TODO: type description here.
success (string): TODO: type description here.
public (string): TODO: type description here.
private (string): TODO: type description here.
"""
# Create a mapping from Model property names to API property names
_names = {
"data" : "data",
"file" : "file",
"success" : "success",
"public" : "public",
"private" : "private"
}
def __init__(self,
data=None,
file=None,
success=None,
public=None,
private=None,
additional_properties = {}):
"""Constructor for the EncryptionModelResponse class"""
# Initialize members of the class
self.data = data
self.file = file
self.success = success
self.public = public
self.private = private
# Add additional model properties to the instance
self.additional_properties = additional_properties
@classmethod
def from_dictionary(cls,
dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
# Extract variables from the dictionary
data = dictionary.get("data")
file = dictionary.get("file")
success = dictionary.get("success")
public = dictionary.get("public")
private = dictionary.get("private")
# Clean out expected properties from dictionary
for key in cls._names.values():
if key in dictionary:
del dictionary[key]
# Return an object of this model
return cls(data,
file,
success,
public,
private,
dictionary)
|
"""
smash.models.encryption_model_response
This file was automatically generated for SMASH by SMASH v2.0 ( https://smashlabs.io )
"""
class Encryptionmodelresponse(object):
"""Implementation of the 'Encryption Model Response' model.
TODO: type model description here.
Attributes:
data (string): TODO: type description here.
file (string): TODO: type description here.
success (string): TODO: type description here.
public (string): TODO: type description here.
private (string): TODO: type description here.
"""
_names = {'data': 'data', 'file': 'file', 'success': 'success', 'public': 'public', 'private': 'private'}
def __init__(self, data=None, file=None, success=None, public=None, private=None, additional_properties={}):
"""Constructor for the EncryptionModelResponse class"""
self.data = data
self.file = file
self.success = success
self.public = public
self.private = private
self.additional_properties = additional_properties
@classmethod
def from_dictionary(cls, dictionary):
"""Creates an instance of this model from a dictionary
Args:
dictionary (dictionary): A dictionary representation of the object as
obtained from the deserialization of the server's response. The keys
MUST match property names in the API description.
Returns:
object: An instance of this structure class.
"""
if dictionary is None:
return None
data = dictionary.get('data')
file = dictionary.get('file')
success = dictionary.get('success')
public = dictionary.get('public')
private = dictionary.get('private')
for key in cls._names.values():
if key in dictionary:
del dictionary[key]
return cls(data, file, success, public, private, dictionary)
|
N, M = list(map(int, input().split()))
grid = [['@' for x in range(M)] for y in range(N)]
for i in range(N):
line = input()
for j in range(M):
grid[i][j] = line[j]
alreadySeen = False
jr = jc = -1
for i in range(N):
if alreadySeen:
break
for j in range(M):
if (alreadySeen):
break
ch = grid[i][j]
if ch == 'N':
for k in range(i-1, -1, -1):
if grid[k][j] == '.':
grid[k][j] = '*'
elif grid[k][j] == 'J':
alreadySeen = True
break
elif grid[k][j] == 'M':
alreadySeen = True
break
elif grid[k][j] == '#':
break
elif (ch == 'S'):
for k in range(i+1, N):
if grid[k][j] == '.':
grid[k][j] = '*'
elif (grid[k][j] == 'J'):
alreadySeen = True
break;
elif grid[k][j] == 'M':
alreadySeen = True
break
elif grid[k][j] == '#':
break
elif (ch == 'W'):
for k in range(j-1, -1, -1):
if grid[i][k] == '.':
grid[i][k] = '*'
elif grid[i][k] == 'J':
alreadySeen = True
break;
elif grid[i][k] == 'M':
alreadySeen = True
break
elif grid[i][k] == '#':
break;
elif (ch == 'E'):
for k in range(j+1, M):
if grid[i][k] == '.':
grid[i][k] = '*'
elif grid[i][k] == 'J':
alreadySeen = True
break;
elif grid[i][k] == 'M':
alreadySeen = True
break
elif grid[i][k] == '#':
break;
elif (ch == 'J'):
jr = i
jc = j
possible = False
if not alreadySeen:
stack = []
grid[jr][jc] = '+'
if grid[jr][jc+1] == '.':
stack.append((jr, jc+1))
elif grid[jr][jc+1] == 'M':
possible = True
if grid[jr][jc-1] == '.':
stack.append((jr, jc-1))
elif grid[jr][jc-1] == 'M':
possible = True
if grid[jr-1][jc] == '.':
stack.append((jr-1, jc))
elif grid[jr-1][jc] == 'M':
possible = True
if grid[jr+1][jc] == '.':
stack.append((jr+1, jc))
elif grid[jr+1][jc] == 'M':
possible = True
while not possible and stack:
r, c = stack.pop()
grid[r][c] = '+'
if grid[r][c+1] == '.':
stack.append((r, c+1))
elif grid[r][c+1] == 'M':
possible = True
if grid[r][c-1] == '.':
stack.append((r, c-1))
elif grid[r][c-1] == 'M':
possible = True
if grid[r-1][c] == '.':
stack.append((r-1, c))
elif grid[r-1][c] == 'M':
possible = True
if grid[r+1][c] == '.':
stack.append((r+1, c))
elif grid[r+1][c] == 'M':
possible = True
if possible:
print("YES")
else:
print("NO")
|
(n, m) = list(map(int, input().split()))
grid = [['@' for x in range(M)] for y in range(N)]
for i in range(N):
line = input()
for j in range(M):
grid[i][j] = line[j]
already_seen = False
jr = jc = -1
for i in range(N):
if alreadySeen:
break
for j in range(M):
if alreadySeen:
break
ch = grid[i][j]
if ch == 'N':
for k in range(i - 1, -1, -1):
if grid[k][j] == '.':
grid[k][j] = '*'
elif grid[k][j] == 'J':
already_seen = True
break
elif grid[k][j] == 'M':
already_seen = True
break
elif grid[k][j] == '#':
break
elif ch == 'S':
for k in range(i + 1, N):
if grid[k][j] == '.':
grid[k][j] = '*'
elif grid[k][j] == 'J':
already_seen = True
break
elif grid[k][j] == 'M':
already_seen = True
break
elif grid[k][j] == '#':
break
elif ch == 'W':
for k in range(j - 1, -1, -1):
if grid[i][k] == '.':
grid[i][k] = '*'
elif grid[i][k] == 'J':
already_seen = True
break
elif grid[i][k] == 'M':
already_seen = True
break
elif grid[i][k] == '#':
break
elif ch == 'E':
for k in range(j + 1, M):
if grid[i][k] == '.':
grid[i][k] = '*'
elif grid[i][k] == 'J':
already_seen = True
break
elif grid[i][k] == 'M':
already_seen = True
break
elif grid[i][k] == '#':
break
elif ch == 'J':
jr = i
jc = j
possible = False
if not alreadySeen:
stack = []
grid[jr][jc] = '+'
if grid[jr][jc + 1] == '.':
stack.append((jr, jc + 1))
elif grid[jr][jc + 1] == 'M':
possible = True
if grid[jr][jc - 1] == '.':
stack.append((jr, jc - 1))
elif grid[jr][jc - 1] == 'M':
possible = True
if grid[jr - 1][jc] == '.':
stack.append((jr - 1, jc))
elif grid[jr - 1][jc] == 'M':
possible = True
if grid[jr + 1][jc] == '.':
stack.append((jr + 1, jc))
elif grid[jr + 1][jc] == 'M':
possible = True
while not possible and stack:
(r, c) = stack.pop()
grid[r][c] = '+'
if grid[r][c + 1] == '.':
stack.append((r, c + 1))
elif grid[r][c + 1] == 'M':
possible = True
if grid[r][c - 1] == '.':
stack.append((r, c - 1))
elif grid[r][c - 1] == 'M':
possible = True
if grid[r - 1][c] == '.':
stack.append((r - 1, c))
elif grid[r - 1][c] == 'M':
possible = True
if grid[r + 1][c] == '.':
stack.append((r + 1, c))
elif grid[r + 1][c] == 'M':
possible = True
if possible:
print('YES')
else:
print('NO')
|
'''
Author : MiKueen
Level : Hard
Problem Statement : Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively.
Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
You may assume nums1 and nums2 cannot be both empty.
Example 1:
nums1 = [1, 3]
nums2 = [2]
The median is 2.0
Example 2:
nums1 = [1, 2]
nums2 = [3, 4]
The median is (2 + 3)/2 = 2.5
'''
class Solution:
def findMedianSortedArrays(self, nums1: List[int], nums2: List[int]) -> float:
# Binary Search Solution
if len(nums1) > len(nums2):
nums1, nums2 = nums2, nums1
x = len(nums1)
y = len(nums2)
low = 0
high = x
while low <= high:
leftArr = (low + high)//2
rightArr = (x + y + 1)//2 - leftArr
maxLeftX = float("-inf") if leftArr == 0 else nums1[leftArr - 1]
minRightX = float("inf") if leftArr == x else nums1[leftArr]
maxLeftY = float("-inf") if rightArr == 0 else nums2[rightArr - 1]
minRightY = float("inf") if rightArr == y else nums2[rightArr]
if (maxLeftX <= minRightY) and (maxLeftY <= minRightX):
if ((x + y) % 2 != 0):
return max(maxLeftX, maxLeftY)
else:
return (max(maxLeftX, maxLeftY) + min(minRightX, minRightY))/2
elif maxLeftX > minRightY:
high = leftArr - 1
elif maxLeftY > minRightX:
low = leftArr + 1
|
"""
Author : MiKueen
Level : Hard
Problem Statement : Median of Two Sorted Arrays
There are two sorted arrays nums1 and nums2 of size m and n respectively.
Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).
You may assume nums1 and nums2 cannot be both empty.
Example 1:
nums1 = [1, 3]
nums2 = [2]
The median is 2.0
Example 2:
nums1 = [1, 2]
nums2 = [3, 4]
The median is (2 + 3)/2 = 2.5
"""
class Solution:
def find_median_sorted_arrays(self, nums1: List[int], nums2: List[int]) -> float:
if len(nums1) > len(nums2):
(nums1, nums2) = (nums2, nums1)
x = len(nums1)
y = len(nums2)
low = 0
high = x
while low <= high:
left_arr = (low + high) // 2
right_arr = (x + y + 1) // 2 - leftArr
max_left_x = float('-inf') if leftArr == 0 else nums1[leftArr - 1]
min_right_x = float('inf') if leftArr == x else nums1[leftArr]
max_left_y = float('-inf') if rightArr == 0 else nums2[rightArr - 1]
min_right_y = float('inf') if rightArr == y else nums2[rightArr]
if maxLeftX <= minRightY and maxLeftY <= minRightX:
if (x + y) % 2 != 0:
return max(maxLeftX, maxLeftY)
else:
return (max(maxLeftX, maxLeftY) + min(minRightX, minRightY)) / 2
elif maxLeftX > minRightY:
high = leftArr - 1
elif maxLeftY > minRightX:
low = leftArr + 1
|
# -*- coding: utf-8 -*-
class JoinMixin(object):
"""Provide join related functionality to statement classes.
Note:
This class is not to be instantiated directly.
"""
def __init__(self, **kwargs):
"""Constructor
Keyword Arguments:
**kwargs: Base class arguments.
"""
super(JoinMixin, self).__init__(**kwargs)
self._join_refs = []
def join(self, dict_or_table_factor, join_cond=None, join_type='INNER'):
"""Join a table with a JOIN condition.
Arguments:
dict_or_table_factor (string or dict): Name of table to join or :py:class:`dict` mapping
table names and conditions to join.
join_cond (mixed, optional): A string, tuple or list of conditions:
* string (not dot-prefixed):
``join(table, 'Field1')`` becomes
``JOIN table USING (Field1)``
* dot-prefixed string:
``join(table, '.Field1')`` becomes
``JOIN table ON (root_table_alias.Field1 = table.Field1)``
* dot-dot-prefixed string:
``join(table, '..Field1')`` becomes
``JOIN table ON (previous_join_table.Field1 = table.Field1)``
* tuple with two dot-prefixed items:
``join(table, ('.Field1', '.Field2'))`` becomes
``JOIN table ON (root_table_alias.Field1 = table.Field2)``
* tuple with two or more items:
``join(table, ('Field1', 'Field2', ...))`` becomes
``JOIN table USING (Field1, Field2, ...)``
* list of conditions:
``join(table, [condition,...])`` becomes
``JOIN table ON (condition [AND condition [AND ...]])``
join_type (string, optional): The type of join, such as ``INNER``, ``LEFT``,
``CROSS``, ``STRAIGHT_JOIN``, ``LEFT OUTER``, etc. The default is ``INNER``.
Examples: ::
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').join('t2', 't1c1', 'STRAIGHT_JOIN').sql()
('SELECT `t1c1`, `t2c1` FROM t1 STRAIGHT_JOIN t2 USING (`t1c1`)', None)
"""
# Turn 'INNER' into 'INNER JOIN' but ignore 'STRAIGHT_JOIN'
if 'JOIN' not in join_type:
join_type += ' JOIN'
if not isinstance(dict_or_table_factor, basestring):
for table_factor, cond in dict_or_table_factor.iteritems():
self.join(table_factor, cond, join_type)
else:
self._join_refs.append((join_type, dict_or_table_factor, join_cond))
return self
def left_join(self, table_or_dict, join_cond=None):
"""Convenience function to create a LEFT JOIN. See :py:meth:`join` for details.
Examples: ::
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', 't1c1').sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 USING (`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', '.t1c1').sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ('t1c1','t2c1')).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 USING (`t1c1`, `t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ('.t1c1','.t2c1')).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ['t1c1 = t2c1']).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1c1 = t2c1)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ['t1c1 = t2c1']).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1c1 = t2c1)', None)
>>> q = Select()
>>> q.columns(['t1.t1c1', 't2.t2c1']).from_table('t1').left_join('t2', ('.t1c1','.t2c1')).sql()
('SELECT t1.`t1c1`, t2.`t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1a.c1', 't2a.c1']).from_table('t1 AS t1a').left_join('t2 AS t2a', ('.t1c1','.t2c1')).sql()
('SELECT t1a.`c1`, t2a.`c1` FROM t1 AS t1a LEFT JOIN t2 AS t2a ON (t1a.`t1c1` = t2a.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1a.c1', 't2a.c1']).from_table('t1 AS t1a').left_join('t2 AS t2a', '.t1c1').sql()
('SELECT t1a.`c1`, t2a.`c1` FROM t1 AS t1a LEFT JOIN t2 AS t2a ON (t1a.`t1c1` = t2a.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join('t2', '.t1c1').left_join('t3', '.t1c1').sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t1.`t1c1` = t3.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join(OrderedDict([('t2', '.t1c1'),('t3','.t1c1')])).sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t1.`t1c1` = t3.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join('t2', '..t1c1').left_join('t3', '..t2c1').sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t2.`t2c1` = t3.`t2c1`)', None)
"""
return self.join(table_or_dict, join_cond, 'LEFT')
def _append_join_table_refs(self, root_table_factor, table_refs):
"""
:param root_table_factor:
:param table_refs:
"""
root_table_alias = self.table_alias(root_table_factor)
prev_join_table = root_table_alias
for join_type, join_table_factor, join_cond in self._join_refs:
join_table = self.table_alias(join_table_factor)
format_args = {
'join_table': join_table,
'join_table_factor': join_table_factor, # join_table [AS alias]
'join_type': join_type,
'root_table_alias': root_table_alias,
'prev_join_table': prev_join_table,
}
if isinstance(join_cond, tuple) and join_cond[0].startswith('.'):
# tuple ('.Field1', '.Field2')
# JOIN table ON (root_table_alias.Field1 = table.Field2)
assert len(join_cond) == 2
field1, field2 = join_cond
join_clause = '{join_type} {join_table_factor} ON ({root_table_alias}.{field1} = {join_table}.{field2})'.format(
field1=self.quote_col_ref(field1[1:]), field2=self.quote_col_ref(field2[1:]), **format_args)
elif isinstance(join_cond, tuple):
# tuple ('Field1', 'Field2', ...)
# JOIN table USING (Field1, Field2, ...)
join_clause = '{join_type} {join_table_factor} USING ({column_list})'.format(
column_list=', '.join([self.quote_col_ref(col) for col in join_cond]), **format_args)
elif not isinstance(join_cond, basestring):
# list [condition,...]
# JOIN table ON (condition [AND condition [AND ...]])
join_clause = u'{join_type} {join_table_factor} ON ({conditions})'.format(
conditions=' AND '.join(join_cond), **format_args)
elif join_cond.startswith('..'):
# '..Field1'
# JOIN table ON (prev_join_table.Field1 = table.Field1)
join_clause = '{join_type} {join_table_factor} ON ({prev_join_table}.{field} = {join_table}.{field})'.format(
field=self.quote_col_ref(join_cond[2:]), **format_args)
elif join_cond.startswith('.'):
# '.Field1'
# JOIN table ON (root_table_alias.Field1 = table.Field1)
join_clause = '{join_type} {join_table_factor} ON ({root_table_alias}.{field} = {join_table}.{field})'.format(
field=self.quote_col_ref(join_cond[1:]), **format_args)
else:
# 'Field1'
# JOIN table USING (Field1)
join_clause = '{join_type} {join_table_factor} USING ({field})'.format(
field=self.quote_col_ref(join_cond), **format_args)
table_refs.append(join_clause)
prev_join_table = join_table
|
class Joinmixin(object):
"""Provide join related functionality to statement classes.
Note:
This class is not to be instantiated directly.
"""
def __init__(self, **kwargs):
"""Constructor
Keyword Arguments:
**kwargs: Base class arguments.
"""
super(JoinMixin, self).__init__(**kwargs)
self._join_refs = []
def join(self, dict_or_table_factor, join_cond=None, join_type='INNER'):
"""Join a table with a JOIN condition.
Arguments:
dict_or_table_factor (string or dict): Name of table to join or :py:class:`dict` mapping
table names and conditions to join.
join_cond (mixed, optional): A string, tuple or list of conditions:
* string (not dot-prefixed):
``join(table, 'Field1')`` becomes
``JOIN table USING (Field1)``
* dot-prefixed string:
``join(table, '.Field1')`` becomes
``JOIN table ON (root_table_alias.Field1 = table.Field1)``
* dot-dot-prefixed string:
``join(table, '..Field1')`` becomes
``JOIN table ON (previous_join_table.Field1 = table.Field1)``
* tuple with two dot-prefixed items:
``join(table, ('.Field1', '.Field2'))`` becomes
``JOIN table ON (root_table_alias.Field1 = table.Field2)``
* tuple with two or more items:
``join(table, ('Field1', 'Field2', ...))`` becomes
``JOIN table USING (Field1, Field2, ...)``
* list of conditions:
``join(table, [condition,...])`` becomes
``JOIN table ON (condition [AND condition [AND ...]])``
join_type (string, optional): The type of join, such as ``INNER``, ``LEFT``,
``CROSS``, ``STRAIGHT_JOIN``, ``LEFT OUTER``, etc. The default is ``INNER``.
Examples: ::
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').join('t2', 't1c1', 'STRAIGHT_JOIN').sql()
('SELECT `t1c1`, `t2c1` FROM t1 STRAIGHT_JOIN t2 USING (`t1c1`)', None)
"""
if 'JOIN' not in join_type:
join_type += ' JOIN'
if not isinstance(dict_or_table_factor, basestring):
for (table_factor, cond) in dict_or_table_factor.iteritems():
self.join(table_factor, cond, join_type)
else:
self._join_refs.append((join_type, dict_or_table_factor, join_cond))
return self
def left_join(self, table_or_dict, join_cond=None):
"""Convenience function to create a LEFT JOIN. See :py:meth:`join` for details.
Examples: ::
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', 't1c1').sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 USING (`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', '.t1c1').sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ('t1c1','t2c1')).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 USING (`t1c1`, `t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ('.t1c1','.t2c1')).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ['t1c1 = t2c1']).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1c1 = t2c1)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1']).from_table('t1').left_join('t2', ['t1c1 = t2c1']).sql()
('SELECT `t1c1`, `t2c1` FROM t1 LEFT JOIN t2 ON (t1c1 = t2c1)', None)
>>> q = Select()
>>> q.columns(['t1.t1c1', 't2.t2c1']).from_table('t1').left_join('t2', ('.t1c1','.t2c1')).sql()
('SELECT t1.`t1c1`, t2.`t2c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1a.c1', 't2a.c1']).from_table('t1 AS t1a').left_join('t2 AS t2a', ('.t1c1','.t2c1')).sql()
('SELECT t1a.`c1`, t2a.`c1` FROM t1 AS t1a LEFT JOIN t2 AS t2a ON (t1a.`t1c1` = t2a.`t2c1`)', None)
>>> q = Select()
>>> q.columns(['t1a.c1', 't2a.c1']).from_table('t1 AS t1a').left_join('t2 AS t2a', '.t1c1').sql()
('SELECT t1a.`c1`, t2a.`c1` FROM t1 AS t1a LEFT JOIN t2 AS t2a ON (t1a.`t1c1` = t2a.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join('t2', '.t1c1').left_join('t3', '.t1c1').sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t1.`t1c1` = t3.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join(OrderedDict([('t2', '.t1c1'),('t3','.t1c1')])).sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t1.`t1c1` = t3.`t1c1`)', None)
>>> q = Select()
>>> q.columns(['t1c1', 't2c1', 't3c1']).from_table('t1').left_join('t2', '..t1c1').left_join('t3', '..t2c1').sql()
('SELECT `t1c1`, `t2c1`, `t3c1` FROM t1 LEFT JOIN t2 ON (t1.`t1c1` = t2.`t1c1`) LEFT JOIN t3 ON (t2.`t2c1` = t3.`t2c1`)', None)
"""
return self.join(table_or_dict, join_cond, 'LEFT')
def _append_join_table_refs(self, root_table_factor, table_refs):
"""
:param root_table_factor:
:param table_refs:
"""
root_table_alias = self.table_alias(root_table_factor)
prev_join_table = root_table_alias
for (join_type, join_table_factor, join_cond) in self._join_refs:
join_table = self.table_alias(join_table_factor)
format_args = {'join_table': join_table, 'join_table_factor': join_table_factor, 'join_type': join_type, 'root_table_alias': root_table_alias, 'prev_join_table': prev_join_table}
if isinstance(join_cond, tuple) and join_cond[0].startswith('.'):
assert len(join_cond) == 2
(field1, field2) = join_cond
join_clause = '{join_type} {join_table_factor} ON ({root_table_alias}.{field1} = {join_table}.{field2})'.format(field1=self.quote_col_ref(field1[1:]), field2=self.quote_col_ref(field2[1:]), **format_args)
elif isinstance(join_cond, tuple):
join_clause = '{join_type} {join_table_factor} USING ({column_list})'.format(column_list=', '.join([self.quote_col_ref(col) for col in join_cond]), **format_args)
elif not isinstance(join_cond, basestring):
join_clause = u'{join_type} {join_table_factor} ON ({conditions})'.format(conditions=' AND '.join(join_cond), **format_args)
elif join_cond.startswith('..'):
join_clause = '{join_type} {join_table_factor} ON ({prev_join_table}.{field} = {join_table}.{field})'.format(field=self.quote_col_ref(join_cond[2:]), **format_args)
elif join_cond.startswith('.'):
join_clause = '{join_type} {join_table_factor} ON ({root_table_alias}.{field} = {join_table}.{field})'.format(field=self.quote_col_ref(join_cond[1:]), **format_args)
else:
join_clause = '{join_type} {join_table_factor} USING ({field})'.format(field=self.quote_col_ref(join_cond), **format_args)
table_refs.append(join_clause)
prev_join_table = join_table
|
def main():
# Ask for the user's weight in pounds.
weight = int(input('Please enter your weight in pounds: '))
# Ask for the user's height in inches.
height = int(input('Please enter your height in inches: '))
# Calculate the BMI (BMI = weight*703/height^2)
BMI = (weight * 703.0) / (height*height)
print ('Your BMI is %.1f'%BMI)
# Determine whether the user is underweight, overweight, or optimal
if BMI < 18.5:
print('You are underweight.')
elif BMI > 25:
print('It would appear that you are overweight.')
else:
print('You are at an optimal weight.')
# Call the main function.
main()
|
def main():
weight = int(input('Please enter your weight in pounds: '))
height = int(input('Please enter your height in inches: '))
bmi = weight * 703.0 / (height * height)
print('Your BMI is %.1f' % BMI)
if BMI < 18.5:
print('You are underweight.')
elif BMI > 25:
print('It would appear that you are overweight.')
else:
print('You are at an optimal weight.')
main()
|
class Employee:
def __init__(self, name, ID, department, job_title):
self.__name = name
self.__id = ID
self.__department = department
self.__job_title = job_title
def set_name(self, name):
self.__name = name
def set_id(self, ID):
self.__id = ID
def set_department(self, department):
self.__department = department
def set_job_title(self, job_title):
self.__job_title = job_title
def get_name(self):
return self.__name
def get_id(self):
return self.__id
def get_department(self):
return self.__department
def get_job_title(self):
return self.__job_title
def __str__(self):
#return f"Name: {self.__name}\nID: {self.__id}\nDepartment: {self.__department}\n" +\
# f"Job Title: {self.__job_title}"
return (
"""
Name: %s
ID: %s
Department: %s
Job Title: %s
"""%(
self.__name, self.__id,
self.__department,
self.__job_title
)
)
|
class Employee:
def __init__(self, name, ID, department, job_title):
self.__name = name
self.__id = ID
self.__department = department
self.__job_title = job_title
def set_name(self, name):
self.__name = name
def set_id(self, ID):
self.__id = ID
def set_department(self, department):
self.__department = department
def set_job_title(self, job_title):
self.__job_title = job_title
def get_name(self):
return self.__name
def get_id(self):
return self.__id
def get_department(self):
return self.__department
def get_job_title(self):
return self.__job_title
def __str__(self):
return '\n Name: %s\n ID: %s\n Department: %s\n Job Title: %s\n ' % (self.__name, self.__id, self.__department, self.__job_title)
|
def selecao_em_vetor():
vetor = list()
for i in range(100):
vetor.append(float(input()))
for j in range(100):
if vetor[j] <= 10.0:
print(f'A[{j}] = {vetor[j]:.1f}')
selecao_em_vetor()
|
def selecao_em_vetor():
vetor = list()
for i in range(100):
vetor.append(float(input()))
for j in range(100):
if vetor[j] <= 10.0:
print(f'A[{j}] = {vetor[j]:.1f}')
selecao_em_vetor()
|
def pythoagorialTripletSum(sum1):
if sum == 0:
return 0
for i in range(1, int(sum1/3)+1):
for j in range(i +1, int(sum1/2) + 1):
k = sum1 - i - j
if (i * i + j *j == k * k):
print(i, j, k, end = " ")
return
print("No Triplets")
return 0
if __name__ == "__main__":
sum1 = int(input())
print(pythoagorialTripletSum(sum1))
|
def pythoagorial_triplet_sum(sum1):
if sum == 0:
return 0
for i in range(1, int(sum1 / 3) + 1):
for j in range(i + 1, int(sum1 / 2) + 1):
k = sum1 - i - j
if i * i + j * j == k * k:
print(i, j, k, end=' ')
return
print('No Triplets')
return 0
if __name__ == '__main__':
sum1 = int(input())
print(pythoagorial_triplet_sum(sum1))
|
class Scene:
def __init__(self, name = ""):
#print("new Scene Object created")
self.srcs = [] #all sources with visible state of this scene, including srcs from nested scenes
self.scenes = [] #list of all nested scenes
self.name = name
|
class Scene:
def __init__(self, name=''):
self.srcs = []
self.scenes = []
self.name = name
|
with open("dane/liczby.txt") as f:
lines = [l.strip() for l in f.readlines()]
wynik42 = open("wynik42.txt", "w")
div_2 = 0
div_8 = 0
for line in lines:
if line[-1] == "0":
div_2 += 1
if line[-1] == "0" and line[-2] == "0" and line[-3] == "0":
div_8 += 1
wynik42.write(f"zadanie 4.2: {div_2} liczb podzielnych przez 2, {div_8} liczb podzielnych przez 8")
wynik42.close()
|
with open('dane/liczby.txt') as f:
lines = [l.strip() for l in f.readlines()]
wynik42 = open('wynik42.txt', 'w')
div_2 = 0
div_8 = 0
for line in lines:
if line[-1] == '0':
div_2 += 1
if line[-1] == '0' and line[-2] == '0' and (line[-3] == '0'):
div_8 += 1
wynik42.write(f'zadanie 4.2: {div_2} liczb podzielnych przez 2, {div_8} liczb podzielnych przez 8')
wynik42.close()
|
st = ['id', 'pwd', 'name', 'age']
data = ['id01', 'pwd01', 'james', 30]
cust = zip(st,data)
print(cust)
for s,d in cust:
print('%s : %s' % (s,d))
dic_cust = dict(zip(st,data))
print(dic_cust)
|
st = ['id', 'pwd', 'name', 'age']
data = ['id01', 'pwd01', 'james', 30]
cust = zip(st, data)
print(cust)
for (s, d) in cust:
print('%s : %s' % (s, d))
dic_cust = dict(zip(st, data))
print(dic_cust)
|
### Quicksort 1 - Partition - Solution
def quickSort(arr):
pivotNum = arr[0]
for i in range(1, len(arr)):
if pivotNum > arr[i]:
for j in range(i, 0, -1):
temp = arr[j]
arr[j] = arr[j-1]
arr[j-1] = temp
print(*arr)
n = int(input())
arr = list(map(int, input().split()[:n]))
quickSort(arr)
|
def quick_sort(arr):
pivot_num = arr[0]
for i in range(1, len(arr)):
if pivotNum > arr[i]:
for j in range(i, 0, -1):
temp = arr[j]
arr[j] = arr[j - 1]
arr[j - 1] = temp
print(*arr)
n = int(input())
arr = list(map(int, input().split()[:n]))
quick_sort(arr)
|
atuple = 'dev', "tst", '''acc''', """prd """
print(atuple,type(atuple),id(atuple), len(atuple))
|
atuple = ('dev', 'tst', 'acc', 'prd ')
print(atuple, type(atuple), id(atuple), len(atuple))
|
# 2021-01-30
# Emma Benjaminson
# Quick Sort Implementation
# Source: https://www.educative.io/edpresso/how-to-implement-quicksort-in-python
def QuickSort(arr):
elements = len(arr)
# base case
if elements < 2:
return arr
current_position = 0 # position of the partitioning element
# partitioning loop
for i in range(1, elements):
# if the i-th element is smaller than the partitioning element
# then we swap that element with its neighbor and move the
# partition frontier over?
if arr[i] <= arr[0]:
# current_position only increments if we found an element
# that needs to move to the other side of the partition
current_position += 1
# save the value of the i-th element in temp
temp = arr[i]
# swap the current position element into the i-th element
arr[i] = arr[current_position]
# assign the i-th element (that is smaller than partition)
# to the current position value in the array
arr[current_position] = temp
# these steps move the partition element to its correct location
# in the array
temp = arr[0]
arr[0] = arr[current_position]
arr[current_position] = temp
# now sort elements to the left and right of the partition
left = QuickSort(arr[0:current_position])
right = QuickSort(arr[current_position+1:elements])
# merge everything together
arr = left + [arr[current_position]] + right
return arr
array_to_sort = [4, 2, 7, 3, 1, 6]
print("original array: ", array_to_sort)
print("sorted array: ",QuickSort(array_to_sort))
|
def quick_sort(arr):
elements = len(arr)
if elements < 2:
return arr
current_position = 0
for i in range(1, elements):
if arr[i] <= arr[0]:
current_position += 1
temp = arr[i]
arr[i] = arr[current_position]
arr[current_position] = temp
temp = arr[0]
arr[0] = arr[current_position]
arr[current_position] = temp
left = quick_sort(arr[0:current_position])
right = quick_sort(arr[current_position + 1:elements])
arr = left + [arr[current_position]] + right
return arr
array_to_sort = [4, 2, 7, 3, 1, 6]
print('original array: ', array_to_sort)
print('sorted array: ', quick_sort(array_to_sort))
|
#
# PySNMP MIB module HPR-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/HPR-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 19:30:23 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)
#
SnaControlPointName, = mibBuilder.importSymbols("APPN-MIB", "SnaControlPointName")
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint, SingleValueConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint", "SingleValueConstraint", "ValueRangeConstraint")
snanauMIB, = mibBuilder.importSymbols("SNA-NAU-MIB", "snanauMIB")
NotificationGroup, ModuleCompliance, ObjectGroup = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance", "ObjectGroup")
ModuleIdentity, Counter64, IpAddress, Gauge32, TimeTicks, iso, Bits, Integer32, NotificationType, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, MibIdentifier, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "ModuleIdentity", "Counter64", "IpAddress", "Gauge32", "TimeTicks", "iso", "Bits", "Integer32", "NotificationType", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "MibIdentifier", "Counter32", "Unsigned32")
TextualConvention, DisplayString, DateAndTime, TimeStamp = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString", "DateAndTime", "TimeStamp")
hprMIB = ModuleIdentity((1, 3, 6, 1, 2, 1, 34, 6))
if mibBuilder.loadTexts: hprMIB.setLastUpdated('970514000000Z')
if mibBuilder.loadTexts: hprMIB.setOrganization('AIW APPN / HPR MIB SIG')
class HprNceTypes(TextualConvention, Bits):
status = 'current'
namedValues = NamedValues(("controlPoint", 0), ("logicalUnit", 1), ("boundaryFunction", 2), ("routeSetup", 3))
class HprRtpCounter(TextualConvention, Counter32):
status = 'current'
hprObjects = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1))
hprGlobal = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 1))
hprNodeCpName = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 1), SnaControlPointName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprNodeCpName.setStatus('current')
hprOperatorPathSwitchSupport = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSupported", 1), ("switchTriggerSupported", 2), ("switchToPathSupported", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprOperatorPathSwitchSupport.setStatus('current')
hprAnrRouting = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 2))
hprAnrsAssigned = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 1), Counter32()).setUnits('ANR labels').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrsAssigned.setStatus('current')
hprAnrCounterState = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notActive", 1), ("active", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hprAnrCounterState.setStatus('current')
hprAnrCounterStateTime = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 3), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrCounterStateTime.setStatus('current')
hprAnrRoutingTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4), )
if mibBuilder.loadTexts: hprAnrRoutingTable.setStatus('current')
hprAnrRoutingEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1), ).setIndexNames((0, "HPR-MIB", "hprAnrLabel"))
if mibBuilder.loadTexts: hprAnrRoutingEntry.setStatus('current')
hprAnrLabel = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8)))
if mibBuilder.loadTexts: hprAnrLabel.setStatus('current')
hprAnrType = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("nce", 1), ("tg", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrType.setStatus('current')
hprAnrOutTgDest = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 3), DisplayString().subtype(subtypeSpec=ConstraintsUnion(ValueSizeConstraint(0, 0), ValueSizeConstraint(3, 17), ))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrOutTgDest.setStatus('current')
hprAnrOutTgNum = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrOutTgNum.setStatus('current')
hprAnrPacketsReceived = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 5), Counter32()).setUnits('ANR packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrPacketsReceived.setStatus('current')
hprAnrCounterDisconTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 6), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprAnrCounterDisconTime.setStatus('current')
hprTransportUser = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 3))
hprNceTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1), )
if mibBuilder.loadTexts: hprNceTable.setStatus('current')
hprNceEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1), ).setIndexNames((0, "HPR-MIB", "hprNceId"))
if mibBuilder.loadTexts: hprNceEntry.setStatus('current')
hprNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8)))
if mibBuilder.loadTexts: hprNceId.setStatus('current')
hprNceType = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 2), HprNceTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprNceType.setStatus('current')
hprNceDefault = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 3), HprNceTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprNceDefault.setStatus('current')
hprNceInstanceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(4, 4)).setFixedLength(4)).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprNceInstanceId.setStatus('current')
hprRtp = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4))
hprRtpGlobe = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1))
hprRtpGlobeConnSetups = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 1), Counter32()).setUnits('RTP connection setups').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpGlobeConnSetups.setStatus('current')
hprRtpGlobeCtrState = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("notActive", 1), ("active", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hprRtpGlobeCtrState.setStatus('current')
hprRtpGlobeCtrStateTime = MibScalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 3), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpGlobeCtrStateTime.setStatus('current')
hprRtpTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2), )
if mibBuilder.loadTexts: hprRtpTable.setStatus('current')
hprRtpEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1), ).setIndexNames((0, "HPR-MIB", "hprRtpLocNceId"), (0, "HPR-MIB", "hprRtpLocTcid"))
if mibBuilder.loadTexts: hprRtpEntry.setStatus('current')
hprRtpLocNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8)))
if mibBuilder.loadTexts: hprRtpLocNceId.setStatus('current')
hprRtpLocTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8))
if mibBuilder.loadTexts: hprRtpLocTcid.setStatus('current')
hprRtpRemCpName = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 3), SnaControlPointName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRemCpName.setStatus('current')
hprRtpRemNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 4), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRemNceId.setStatus('current')
hprRtpRemTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRemTcid.setStatus('current')
hprRtpPathSwitchTrigger = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ready", 1), ("switchPathNow", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: hprRtpPathSwitchTrigger.setStatus('current')
hprRtpRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRscv.setStatus('current')
hprRtpTopic = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpTopic.setStatus('current')
hprRtpState = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 99))).clone(namedValues=NamedValues(("rtpListening", 1), ("rtpCalling", 2), ("rtpConnected", 3), ("rtpPathSwitching", 4), ("rtpDisconnecting", 5), ("other", 99)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpState.setStatus('current')
hprRtpUpTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 10), TimeTicks()).setUnits('1/100ths of a second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpUpTime.setStatus('current')
hprRtpLivenessTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 11), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpLivenessTimer.setStatus('current')
hprRtpShortReqTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 12), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpShortReqTimer.setStatus('current')
hprRtpPathSwTimer = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 13), Unsigned32()).setUnits('1/100ths of a second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpPathSwTimer.setStatus('current')
hprRtpLivenessTimeouts = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 14), HprRtpCounter()).setUnits('liveness timeouts').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpLivenessTimeouts.setStatus('current')
hprRtpShortReqTimeouts = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 15), HprRtpCounter()).setUnits('short request timeouts').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpShortReqTimeouts.setStatus('current')
hprRtpMaxSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 16), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpMaxSendRate.setStatus('current')
hprRtpMinSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 17), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpMinSendRate.setStatus('current')
hprRtpCurSendRate = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 18), Gauge32()).setUnits('bytes per second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpCurSendRate.setStatus('current')
hprRtpSmRdTripDelay = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 19), Gauge32()).setUnits('1/1000ths of a second').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpSmRdTripDelay.setStatus('current')
hprRtpSendPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 20), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpSendPackets.setStatus('current')
hprRtpRecvPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 21), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRecvPackets.setStatus('current')
hprRtpSendBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 22), HprRtpCounter()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpSendBytes.setStatus('current')
hprRtpRecvBytes = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 23), HprRtpCounter()).setUnits('bytes').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRecvBytes.setStatus('current')
hprRtpRetrPackets = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 24), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRetrPackets.setStatus('current')
hprRtpPacketsDiscarded = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 25), HprRtpCounter()).setUnits('RTP packets').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpPacketsDiscarded.setStatus('current')
hprRtpDetectGaps = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 26), HprRtpCounter()).setUnits('gaps').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpDetectGaps.setStatus('current')
hprRtpRateReqSends = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 27), HprRtpCounter()).setUnits('rate requests').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpRateReqSends.setStatus('current')
hprRtpOkErrPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 28), HprRtpCounter()).setUnits('path switch attempts').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpOkErrPathSws.setStatus('current')
hprRtpBadErrPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 29), HprRtpCounter()).setUnits('path switch attempts').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpBadErrPathSws.setStatus('current')
hprRtpOkOpPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 30), HprRtpCounter()).setUnits('path switches').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpOkOpPathSws.setStatus('current')
hprRtpBadOpPathSws = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 31), HprRtpCounter()).setUnits('path switches').setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpBadOpPathSws.setStatus('current')
hprRtpCounterDisconTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 32), TimeStamp()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpCounterDisconTime.setStatus('current')
hprRtpStatusTable = MibTable((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3), )
if mibBuilder.loadTexts: hprRtpStatusTable.setStatus('current')
hprRtpStatusEntry = MibTableRow((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1), ).setIndexNames((0, "HPR-MIB", "hprRtpStatusLocNceId"), (0, "HPR-MIB", "hprRtpStatusLocTcid"), (0, "HPR-MIB", "hprRtpStatusIndex"))
if mibBuilder.loadTexts: hprRtpStatusEntry.setStatus('current')
hprRtpStatusLocNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 1), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8)))
if mibBuilder.loadTexts: hprRtpStatusLocNceId.setStatus('current')
hprRtpStatusLocTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 2), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8))
if mibBuilder.loadTexts: hprRtpStatusLocTcid.setStatus('current')
hprRtpStatusIndex = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 4294967295)))
if mibBuilder.loadTexts: hprRtpStatusIndex.setStatus('current')
hprRtpStatusStartTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 4), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusStartTime.setStatus('current')
hprRtpStatusEndTime = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 5), DateAndTime()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusEndTime.setStatus('current')
hprRtpStatusRemCpName = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 6), SnaControlPointName()).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusRemCpName.setStatus('current')
hprRtpStatusRemNceId = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 7), OctetString().subtype(subtypeSpec=ValueSizeConstraint(1, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusRemNceId.setStatus('current')
hprRtpStatusRemTcid = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 8), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8)).setFixedLength(8)).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusRemTcid.setStatus('current')
hprRtpStatusNewRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 9), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusNewRscv.setStatus('current')
hprRtpStatusOldRscv = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 10), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusOldRscv.setStatus('current')
hprRtpStatusCause = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("other", 1), ("rtpConnFail", 2), ("locLinkFail", 3), ("remLinkFail", 4), ("operRequest", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusCause.setStatus('current')
hprRtpStatusLastAttemptResult = MibTableColumn((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("successful", 1), ("initiatorMoving", 2), ("directorySearchFailed", 3), ("rscvCalculationFailed", 4), ("negativeRouteSetupReply", 5), ("backoutRouteSetupReply", 6), ("timeoutDuringFirstAttempt", 7), ("otherUnsuccessful", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: hprRtpStatusLastAttemptResult.setStatus('current')
hprConformance = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2))
hprCompliances = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 1))
hprGroups = MibIdentifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 2))
hprCompliance = ModuleCompliance((1, 3, 6, 1, 2, 1, 34, 6, 2, 1, 1)).setObjects(("HPR-MIB", "hprGlobalConfGroup"), ("HPR-MIB", "hprAnrRoutingConfGroup"), ("HPR-MIB", "hprTransportUserConfGroup"), ("HPR-MIB", "hprRtpConfGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hprCompliance = hprCompliance.setStatus('current')
hprGlobalConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 1)).setObjects(("HPR-MIB", "hprNodeCpName"), ("HPR-MIB", "hprOperatorPathSwitchSupport"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hprGlobalConfGroup = hprGlobalConfGroup.setStatus('current')
hprAnrRoutingConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 2)).setObjects(("HPR-MIB", "hprAnrsAssigned"), ("HPR-MIB", "hprAnrCounterState"), ("HPR-MIB", "hprAnrCounterStateTime"), ("HPR-MIB", "hprAnrType"), ("HPR-MIB", "hprAnrOutTgDest"), ("HPR-MIB", "hprAnrOutTgNum"), ("HPR-MIB", "hprAnrPacketsReceived"), ("HPR-MIB", "hprAnrCounterDisconTime"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hprAnrRoutingConfGroup = hprAnrRoutingConfGroup.setStatus('current')
hprTransportUserConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 3)).setObjects(("HPR-MIB", "hprNceType"), ("HPR-MIB", "hprNceDefault"), ("HPR-MIB", "hprNceInstanceId"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hprTransportUserConfGroup = hprTransportUserConfGroup.setStatus('current')
hprRtpConfGroup = ObjectGroup((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 4)).setObjects(("HPR-MIB", "hprRtpGlobeConnSetups"), ("HPR-MIB", "hprRtpGlobeCtrState"), ("HPR-MIB", "hprRtpGlobeCtrStateTime"), ("HPR-MIB", "hprRtpRemCpName"), ("HPR-MIB", "hprRtpRemNceId"), ("HPR-MIB", "hprRtpRemTcid"), ("HPR-MIB", "hprRtpPathSwitchTrigger"), ("HPR-MIB", "hprRtpRscv"), ("HPR-MIB", "hprRtpTopic"), ("HPR-MIB", "hprRtpState"), ("HPR-MIB", "hprRtpUpTime"), ("HPR-MIB", "hprRtpLivenessTimer"), ("HPR-MIB", "hprRtpShortReqTimer"), ("HPR-MIB", "hprRtpPathSwTimer"), ("HPR-MIB", "hprRtpLivenessTimeouts"), ("HPR-MIB", "hprRtpShortReqTimeouts"), ("HPR-MIB", "hprRtpMaxSendRate"), ("HPR-MIB", "hprRtpMinSendRate"), ("HPR-MIB", "hprRtpCurSendRate"), ("HPR-MIB", "hprRtpSmRdTripDelay"), ("HPR-MIB", "hprRtpSendPackets"), ("HPR-MIB", "hprRtpRecvPackets"), ("HPR-MIB", "hprRtpSendBytes"), ("HPR-MIB", "hprRtpRecvBytes"), ("HPR-MIB", "hprRtpRetrPackets"), ("HPR-MIB", "hprRtpPacketsDiscarded"), ("HPR-MIB", "hprRtpDetectGaps"), ("HPR-MIB", "hprRtpRateReqSends"), ("HPR-MIB", "hprRtpOkErrPathSws"), ("HPR-MIB", "hprRtpBadErrPathSws"), ("HPR-MIB", "hprRtpOkOpPathSws"), ("HPR-MIB", "hprRtpBadOpPathSws"), ("HPR-MIB", "hprRtpCounterDisconTime"), ("HPR-MIB", "hprRtpStatusStartTime"), ("HPR-MIB", "hprRtpStatusEndTime"), ("HPR-MIB", "hprRtpStatusRemNceId"), ("HPR-MIB", "hprRtpStatusRemTcid"), ("HPR-MIB", "hprRtpStatusRemCpName"), ("HPR-MIB", "hprRtpStatusNewRscv"), ("HPR-MIB", "hprRtpStatusOldRscv"), ("HPR-MIB", "hprRtpStatusCause"), ("HPR-MIB", "hprRtpStatusLastAttemptResult"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hprRtpConfGroup = hprRtpConfGroup.setStatus('current')
mibBuilder.exportSymbols("HPR-MIB", hprRtpTopic=hprRtpTopic, HprRtpCounter=HprRtpCounter, hprAnrOutTgNum=hprAnrOutTgNum, hprRtpMinSendRate=hprRtpMinSendRate, hprRtpRecvPackets=hprRtpRecvPackets, hprRtpConfGroup=hprRtpConfGroup, hprRtpState=hprRtpState, hprRtpGlobeCtrState=hprRtpGlobeCtrState, hprNceId=hprNceId, hprRtpStatusTable=hprRtpStatusTable, hprRtpOkOpPathSws=hprRtpOkOpPathSws, hprRtpGlobeConnSetups=hprRtpGlobeConnSetups, hprRtpLivenessTimer=hprRtpLivenessTimer, hprRtpShortReqTimeouts=hprRtpShortReqTimeouts, hprRtpStatusRemNceId=hprRtpStatusRemNceId, hprAnrRoutingTable=hprAnrRoutingTable, hprRtpRetrPackets=hprRtpRetrPackets, hprNceEntry=hprNceEntry, hprRtpSendBytes=hprRtpSendBytes, hprRtpSendPackets=hprRtpSendPackets, hprAnrType=hprAnrType, hprAnrRouting=hprAnrRouting, hprRtpBadErrPathSws=hprRtpBadErrPathSws, hprOperatorPathSwitchSupport=hprOperatorPathSwitchSupport, hprObjects=hprObjects, hprRtpGlobe=hprRtpGlobe, hprGlobalConfGroup=hprGlobalConfGroup, hprRtpLocNceId=hprRtpLocNceId, hprRtpLocTcid=hprRtpLocTcid, hprRtpDetectGaps=hprRtpDetectGaps, hprNceDefault=hprNceDefault, hprRtpStatusEntry=hprRtpStatusEntry, hprAnrLabel=hprAnrLabel, hprCompliance=hprCompliance, hprRtp=hprRtp, hprRtpPathSwTimer=hprRtpPathSwTimer, hprRtpRscv=hprRtpRscv, hprRtpOkErrPathSws=hprRtpOkErrPathSws, hprAnrCounterStateTime=hprAnrCounterStateTime, hprAnrPacketsReceived=hprAnrPacketsReceived, hprTransportUser=hprTransportUser, hprAnrOutTgDest=hprAnrOutTgDest, hprAnrRoutingEntry=hprAnrRoutingEntry, hprRtpStatusIndex=hprRtpStatusIndex, hprRtpStatusEndTime=hprRtpStatusEndTime, hprRtpStatusCause=hprRtpStatusCause, hprNceInstanceId=hprNceInstanceId, hprRtpRateReqSends=hprRtpRateReqSends, hprAnrCounterState=hprAnrCounterState, hprRtpEntry=hprRtpEntry, hprRtpStatusRemCpName=hprRtpStatusRemCpName, hprRtpStatusRemTcid=hprRtpStatusRemTcid, hprRtpCounterDisconTime=hprRtpCounterDisconTime, hprRtpCurSendRate=hprRtpCurSendRate, hprGroups=hprGroups, hprRtpSmRdTripDelay=hprRtpSmRdTripDelay, hprRtpStatusNewRscv=hprRtpStatusNewRscv, hprRtpStatusStartTime=hprRtpStatusStartTime, hprNceType=hprNceType, hprConformance=hprConformance, hprRtpStatusLocNceId=hprRtpStatusLocNceId, hprRtpGlobeCtrStateTime=hprRtpGlobeCtrStateTime, hprNodeCpName=hprNodeCpName, hprRtpUpTime=hprRtpUpTime, PYSNMP_MODULE_ID=hprMIB, hprGlobal=hprGlobal, HprNceTypes=HprNceTypes, hprRtpLivenessTimeouts=hprRtpLivenessTimeouts, hprRtpTable=hprRtpTable, hprAnrCounterDisconTime=hprAnrCounterDisconTime, hprRtpStatusLastAttemptResult=hprRtpStatusLastAttemptResult, hprRtpBadOpPathSws=hprRtpBadOpPathSws, hprRtpStatusLocTcid=hprRtpStatusLocTcid, hprRtpMaxSendRate=hprRtpMaxSendRate, hprRtpPacketsDiscarded=hprRtpPacketsDiscarded, hprRtpRemNceId=hprRtpRemNceId, hprRtpStatusOldRscv=hprRtpStatusOldRscv, hprAnrRoutingConfGroup=hprAnrRoutingConfGroup, hprRtpRemTcid=hprRtpRemTcid, hprMIB=hprMIB, hprCompliances=hprCompliances, hprAnrsAssigned=hprAnrsAssigned, hprNceTable=hprNceTable, hprRtpRecvBytes=hprRtpRecvBytes, hprRtpRemCpName=hprRtpRemCpName, hprRtpShortReqTimer=hprRtpShortReqTimer, hprTransportUserConfGroup=hprTransportUserConfGroup, hprRtpPathSwitchTrigger=hprRtpPathSwitchTrigger)
|
(sna_control_point_name,) = mibBuilder.importSymbols('APPN-MIB', 'SnaControlPointName')
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_size_constraint, single_value_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint', 'SingleValueConstraint', 'ValueRangeConstraint')
(snanau_mib,) = mibBuilder.importSymbols('SNA-NAU-MIB', 'snanauMIB')
(notification_group, module_compliance, object_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance', 'ObjectGroup')
(module_identity, counter64, ip_address, gauge32, time_ticks, iso, bits, integer32, notification_type, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, mib_identifier, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'ModuleIdentity', 'Counter64', 'IpAddress', 'Gauge32', 'TimeTicks', 'iso', 'Bits', 'Integer32', 'NotificationType', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'MibIdentifier', 'Counter32', 'Unsigned32')
(textual_convention, display_string, date_and_time, time_stamp) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString', 'DateAndTime', 'TimeStamp')
hpr_mib = module_identity((1, 3, 6, 1, 2, 1, 34, 6))
if mibBuilder.loadTexts:
hprMIB.setLastUpdated('970514000000Z')
if mibBuilder.loadTexts:
hprMIB.setOrganization('AIW APPN / HPR MIB SIG')
class Hprncetypes(TextualConvention, Bits):
status = 'current'
named_values = named_values(('controlPoint', 0), ('logicalUnit', 1), ('boundaryFunction', 2), ('routeSetup', 3))
class Hprrtpcounter(TextualConvention, Counter32):
status = 'current'
hpr_objects = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1))
hpr_global = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 1))
hpr_node_cp_name = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 1), sna_control_point_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprNodeCpName.setStatus('current')
hpr_operator_path_switch_support = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSupported', 1), ('switchTriggerSupported', 2), ('switchToPathSupported', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprOperatorPathSwitchSupport.setStatus('current')
hpr_anr_routing = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 2))
hpr_anrs_assigned = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 1), counter32()).setUnits('ANR labels').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrsAssigned.setStatus('current')
hpr_anr_counter_state = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notActive', 1), ('active', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hprAnrCounterState.setStatus('current')
hpr_anr_counter_state_time = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 3), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrCounterStateTime.setStatus('current')
hpr_anr_routing_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4))
if mibBuilder.loadTexts:
hprAnrRoutingTable.setStatus('current')
hpr_anr_routing_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1)).setIndexNames((0, 'HPR-MIB', 'hprAnrLabel'))
if mibBuilder.loadTexts:
hprAnrRoutingEntry.setStatus('current')
hpr_anr_label = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8)))
if mibBuilder.loadTexts:
hprAnrLabel.setStatus('current')
hpr_anr_type = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('nce', 1), ('tg', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrType.setStatus('current')
hpr_anr_out_tg_dest = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 3), display_string().subtype(subtypeSpec=constraints_union(value_size_constraint(0, 0), value_size_constraint(3, 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrOutTgDest.setStatus('current')
hpr_anr_out_tg_num = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrOutTgNum.setStatus('current')
hpr_anr_packets_received = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 5), counter32()).setUnits('ANR packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrPacketsReceived.setStatus('current')
hpr_anr_counter_discon_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 2, 4, 1, 6), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprAnrCounterDisconTime.setStatus('current')
hpr_transport_user = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 3))
hpr_nce_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1))
if mibBuilder.loadTexts:
hprNceTable.setStatus('current')
hpr_nce_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1)).setIndexNames((0, 'HPR-MIB', 'hprNceId'))
if mibBuilder.loadTexts:
hprNceEntry.setStatus('current')
hpr_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8)))
if mibBuilder.loadTexts:
hprNceId.setStatus('current')
hpr_nce_type = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 2), hpr_nce_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprNceType.setStatus('current')
hpr_nce_default = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 3), hpr_nce_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprNceDefault.setStatus('current')
hpr_nce_instance_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 3, 1, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(4, 4)).setFixedLength(4)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprNceInstanceId.setStatus('current')
hpr_rtp = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4))
hpr_rtp_globe = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1))
hpr_rtp_globe_conn_setups = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 1), counter32()).setUnits('RTP connection setups').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpGlobeConnSetups.setStatus('current')
hpr_rtp_globe_ctr_state = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('notActive', 1), ('active', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hprRtpGlobeCtrState.setStatus('current')
hpr_rtp_globe_ctr_state_time = mib_scalar((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 1, 3), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpGlobeCtrStateTime.setStatus('current')
hpr_rtp_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2))
if mibBuilder.loadTexts:
hprRtpTable.setStatus('current')
hpr_rtp_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1)).setIndexNames((0, 'HPR-MIB', 'hprRtpLocNceId'), (0, 'HPR-MIB', 'hprRtpLocTcid'))
if mibBuilder.loadTexts:
hprRtpEntry.setStatus('current')
hpr_rtp_loc_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8)))
if mibBuilder.loadTexts:
hprRtpLocNceId.setStatus('current')
hpr_rtp_loc_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8))
if mibBuilder.loadTexts:
hprRtpLocTcid.setStatus('current')
hpr_rtp_rem_cp_name = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 3), sna_control_point_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRemCpName.setStatus('current')
hpr_rtp_rem_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 4), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRemNceId.setStatus('current')
hpr_rtp_rem_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRemTcid.setStatus('current')
hpr_rtp_path_switch_trigger = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ready', 1), ('switchPathNow', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
hprRtpPathSwitchTrigger.setStatus('current')
hpr_rtp_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRscv.setStatus('current')
hpr_rtp_topic = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 8), display_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpTopic.setStatus('current')
hpr_rtp_state = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 99))).clone(namedValues=named_values(('rtpListening', 1), ('rtpCalling', 2), ('rtpConnected', 3), ('rtpPathSwitching', 4), ('rtpDisconnecting', 5), ('other', 99)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpState.setStatus('current')
hpr_rtp_up_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 10), time_ticks()).setUnits('1/100ths of a second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpUpTime.setStatus('current')
hpr_rtp_liveness_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 11), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpLivenessTimer.setStatus('current')
hpr_rtp_short_req_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 12), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpShortReqTimer.setStatus('current')
hpr_rtp_path_sw_timer = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 13), unsigned32()).setUnits('1/100ths of a second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpPathSwTimer.setStatus('current')
hpr_rtp_liveness_timeouts = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 14), hpr_rtp_counter()).setUnits('liveness timeouts').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpLivenessTimeouts.setStatus('current')
hpr_rtp_short_req_timeouts = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 15), hpr_rtp_counter()).setUnits('short request timeouts').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpShortReqTimeouts.setStatus('current')
hpr_rtp_max_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 16), gauge32()).setUnits('bytes per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpMaxSendRate.setStatus('current')
hpr_rtp_min_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 17), gauge32()).setUnits('bytes per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpMinSendRate.setStatus('current')
hpr_rtp_cur_send_rate = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 18), gauge32()).setUnits('bytes per second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpCurSendRate.setStatus('current')
hpr_rtp_sm_rd_trip_delay = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 19), gauge32()).setUnits('1/1000ths of a second').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpSmRdTripDelay.setStatus('current')
hpr_rtp_send_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 20), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpSendPackets.setStatus('current')
hpr_rtp_recv_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 21), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRecvPackets.setStatus('current')
hpr_rtp_send_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 22), hpr_rtp_counter()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpSendBytes.setStatus('current')
hpr_rtp_recv_bytes = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 23), hpr_rtp_counter()).setUnits('bytes').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRecvBytes.setStatus('current')
hpr_rtp_retr_packets = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 24), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRetrPackets.setStatus('current')
hpr_rtp_packets_discarded = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 25), hpr_rtp_counter()).setUnits('RTP packets').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpPacketsDiscarded.setStatus('current')
hpr_rtp_detect_gaps = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 26), hpr_rtp_counter()).setUnits('gaps').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpDetectGaps.setStatus('current')
hpr_rtp_rate_req_sends = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 27), hpr_rtp_counter()).setUnits('rate requests').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpRateReqSends.setStatus('current')
hpr_rtp_ok_err_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 28), hpr_rtp_counter()).setUnits('path switch attempts').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpOkErrPathSws.setStatus('current')
hpr_rtp_bad_err_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 29), hpr_rtp_counter()).setUnits('path switch attempts').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpBadErrPathSws.setStatus('current')
hpr_rtp_ok_op_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 30), hpr_rtp_counter()).setUnits('path switches').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpOkOpPathSws.setStatus('current')
hpr_rtp_bad_op_path_sws = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 31), hpr_rtp_counter()).setUnits('path switches').setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpBadOpPathSws.setStatus('current')
hpr_rtp_counter_discon_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 2, 1, 32), time_stamp()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpCounterDisconTime.setStatus('current')
hpr_rtp_status_table = mib_table((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3))
if mibBuilder.loadTexts:
hprRtpStatusTable.setStatus('current')
hpr_rtp_status_entry = mib_table_row((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1)).setIndexNames((0, 'HPR-MIB', 'hprRtpStatusLocNceId'), (0, 'HPR-MIB', 'hprRtpStatusLocTcid'), (0, 'HPR-MIB', 'hprRtpStatusIndex'))
if mibBuilder.loadTexts:
hprRtpStatusEntry.setStatus('current')
hpr_rtp_status_loc_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 1), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8)))
if mibBuilder.loadTexts:
hprRtpStatusLocNceId.setStatus('current')
hpr_rtp_status_loc_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 2), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8))
if mibBuilder.loadTexts:
hprRtpStatusLocTcid.setStatus('current')
hpr_rtp_status_index = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 4294967295)))
if mibBuilder.loadTexts:
hprRtpStatusIndex.setStatus('current')
hpr_rtp_status_start_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 4), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusStartTime.setStatus('current')
hpr_rtp_status_end_time = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 5), date_and_time()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusEndTime.setStatus('current')
hpr_rtp_status_rem_cp_name = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 6), sna_control_point_name()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusRemCpName.setStatus('current')
hpr_rtp_status_rem_nce_id = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 7), octet_string().subtype(subtypeSpec=value_size_constraint(1, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusRemNceId.setStatus('current')
hpr_rtp_status_rem_tcid = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 8), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8)).setFixedLength(8)).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusRemTcid.setStatus('current')
hpr_rtp_status_new_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 9), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusNewRscv.setStatus('current')
hpr_rtp_status_old_rscv = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 10), octet_string().subtype(subtypeSpec=value_size_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusOldRscv.setStatus('current')
hpr_rtp_status_cause = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('other', 1), ('rtpConnFail', 2), ('locLinkFail', 3), ('remLinkFail', 4), ('operRequest', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusCause.setStatus('current')
hpr_rtp_status_last_attempt_result = mib_table_column((1, 3, 6, 1, 2, 1, 34, 6, 1, 4, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('successful', 1), ('initiatorMoving', 2), ('directorySearchFailed', 3), ('rscvCalculationFailed', 4), ('negativeRouteSetupReply', 5), ('backoutRouteSetupReply', 6), ('timeoutDuringFirstAttempt', 7), ('otherUnsuccessful', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
hprRtpStatusLastAttemptResult.setStatus('current')
hpr_conformance = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2))
hpr_compliances = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 1))
hpr_groups = mib_identifier((1, 3, 6, 1, 2, 1, 34, 6, 2, 2))
hpr_compliance = module_compliance((1, 3, 6, 1, 2, 1, 34, 6, 2, 1, 1)).setObjects(('HPR-MIB', 'hprGlobalConfGroup'), ('HPR-MIB', 'hprAnrRoutingConfGroup'), ('HPR-MIB', 'hprTransportUserConfGroup'), ('HPR-MIB', 'hprRtpConfGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpr_compliance = hprCompliance.setStatus('current')
hpr_global_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 1)).setObjects(('HPR-MIB', 'hprNodeCpName'), ('HPR-MIB', 'hprOperatorPathSwitchSupport'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpr_global_conf_group = hprGlobalConfGroup.setStatus('current')
hpr_anr_routing_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 2)).setObjects(('HPR-MIB', 'hprAnrsAssigned'), ('HPR-MIB', 'hprAnrCounterState'), ('HPR-MIB', 'hprAnrCounterStateTime'), ('HPR-MIB', 'hprAnrType'), ('HPR-MIB', 'hprAnrOutTgDest'), ('HPR-MIB', 'hprAnrOutTgNum'), ('HPR-MIB', 'hprAnrPacketsReceived'), ('HPR-MIB', 'hprAnrCounterDisconTime'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpr_anr_routing_conf_group = hprAnrRoutingConfGroup.setStatus('current')
hpr_transport_user_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 3)).setObjects(('HPR-MIB', 'hprNceType'), ('HPR-MIB', 'hprNceDefault'), ('HPR-MIB', 'hprNceInstanceId'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpr_transport_user_conf_group = hprTransportUserConfGroup.setStatus('current')
hpr_rtp_conf_group = object_group((1, 3, 6, 1, 2, 1, 34, 6, 2, 2, 4)).setObjects(('HPR-MIB', 'hprRtpGlobeConnSetups'), ('HPR-MIB', 'hprRtpGlobeCtrState'), ('HPR-MIB', 'hprRtpGlobeCtrStateTime'), ('HPR-MIB', 'hprRtpRemCpName'), ('HPR-MIB', 'hprRtpRemNceId'), ('HPR-MIB', 'hprRtpRemTcid'), ('HPR-MIB', 'hprRtpPathSwitchTrigger'), ('HPR-MIB', 'hprRtpRscv'), ('HPR-MIB', 'hprRtpTopic'), ('HPR-MIB', 'hprRtpState'), ('HPR-MIB', 'hprRtpUpTime'), ('HPR-MIB', 'hprRtpLivenessTimer'), ('HPR-MIB', 'hprRtpShortReqTimer'), ('HPR-MIB', 'hprRtpPathSwTimer'), ('HPR-MIB', 'hprRtpLivenessTimeouts'), ('HPR-MIB', 'hprRtpShortReqTimeouts'), ('HPR-MIB', 'hprRtpMaxSendRate'), ('HPR-MIB', 'hprRtpMinSendRate'), ('HPR-MIB', 'hprRtpCurSendRate'), ('HPR-MIB', 'hprRtpSmRdTripDelay'), ('HPR-MIB', 'hprRtpSendPackets'), ('HPR-MIB', 'hprRtpRecvPackets'), ('HPR-MIB', 'hprRtpSendBytes'), ('HPR-MIB', 'hprRtpRecvBytes'), ('HPR-MIB', 'hprRtpRetrPackets'), ('HPR-MIB', 'hprRtpPacketsDiscarded'), ('HPR-MIB', 'hprRtpDetectGaps'), ('HPR-MIB', 'hprRtpRateReqSends'), ('HPR-MIB', 'hprRtpOkErrPathSws'), ('HPR-MIB', 'hprRtpBadErrPathSws'), ('HPR-MIB', 'hprRtpOkOpPathSws'), ('HPR-MIB', 'hprRtpBadOpPathSws'), ('HPR-MIB', 'hprRtpCounterDisconTime'), ('HPR-MIB', 'hprRtpStatusStartTime'), ('HPR-MIB', 'hprRtpStatusEndTime'), ('HPR-MIB', 'hprRtpStatusRemNceId'), ('HPR-MIB', 'hprRtpStatusRemTcid'), ('HPR-MIB', 'hprRtpStatusRemCpName'), ('HPR-MIB', 'hprRtpStatusNewRscv'), ('HPR-MIB', 'hprRtpStatusOldRscv'), ('HPR-MIB', 'hprRtpStatusCause'), ('HPR-MIB', 'hprRtpStatusLastAttemptResult'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
hpr_rtp_conf_group = hprRtpConfGroup.setStatus('current')
mibBuilder.exportSymbols('HPR-MIB', hprRtpTopic=hprRtpTopic, HprRtpCounter=HprRtpCounter, hprAnrOutTgNum=hprAnrOutTgNum, hprRtpMinSendRate=hprRtpMinSendRate, hprRtpRecvPackets=hprRtpRecvPackets, hprRtpConfGroup=hprRtpConfGroup, hprRtpState=hprRtpState, hprRtpGlobeCtrState=hprRtpGlobeCtrState, hprNceId=hprNceId, hprRtpStatusTable=hprRtpStatusTable, hprRtpOkOpPathSws=hprRtpOkOpPathSws, hprRtpGlobeConnSetups=hprRtpGlobeConnSetups, hprRtpLivenessTimer=hprRtpLivenessTimer, hprRtpShortReqTimeouts=hprRtpShortReqTimeouts, hprRtpStatusRemNceId=hprRtpStatusRemNceId, hprAnrRoutingTable=hprAnrRoutingTable, hprRtpRetrPackets=hprRtpRetrPackets, hprNceEntry=hprNceEntry, hprRtpSendBytes=hprRtpSendBytes, hprRtpSendPackets=hprRtpSendPackets, hprAnrType=hprAnrType, hprAnrRouting=hprAnrRouting, hprRtpBadErrPathSws=hprRtpBadErrPathSws, hprOperatorPathSwitchSupport=hprOperatorPathSwitchSupport, hprObjects=hprObjects, hprRtpGlobe=hprRtpGlobe, hprGlobalConfGroup=hprGlobalConfGroup, hprRtpLocNceId=hprRtpLocNceId, hprRtpLocTcid=hprRtpLocTcid, hprRtpDetectGaps=hprRtpDetectGaps, hprNceDefault=hprNceDefault, hprRtpStatusEntry=hprRtpStatusEntry, hprAnrLabel=hprAnrLabel, hprCompliance=hprCompliance, hprRtp=hprRtp, hprRtpPathSwTimer=hprRtpPathSwTimer, hprRtpRscv=hprRtpRscv, hprRtpOkErrPathSws=hprRtpOkErrPathSws, hprAnrCounterStateTime=hprAnrCounterStateTime, hprAnrPacketsReceived=hprAnrPacketsReceived, hprTransportUser=hprTransportUser, hprAnrOutTgDest=hprAnrOutTgDest, hprAnrRoutingEntry=hprAnrRoutingEntry, hprRtpStatusIndex=hprRtpStatusIndex, hprRtpStatusEndTime=hprRtpStatusEndTime, hprRtpStatusCause=hprRtpStatusCause, hprNceInstanceId=hprNceInstanceId, hprRtpRateReqSends=hprRtpRateReqSends, hprAnrCounterState=hprAnrCounterState, hprRtpEntry=hprRtpEntry, hprRtpStatusRemCpName=hprRtpStatusRemCpName, hprRtpStatusRemTcid=hprRtpStatusRemTcid, hprRtpCounterDisconTime=hprRtpCounterDisconTime, hprRtpCurSendRate=hprRtpCurSendRate, hprGroups=hprGroups, hprRtpSmRdTripDelay=hprRtpSmRdTripDelay, hprRtpStatusNewRscv=hprRtpStatusNewRscv, hprRtpStatusStartTime=hprRtpStatusStartTime, hprNceType=hprNceType, hprConformance=hprConformance, hprRtpStatusLocNceId=hprRtpStatusLocNceId, hprRtpGlobeCtrStateTime=hprRtpGlobeCtrStateTime, hprNodeCpName=hprNodeCpName, hprRtpUpTime=hprRtpUpTime, PYSNMP_MODULE_ID=hprMIB, hprGlobal=hprGlobal, HprNceTypes=HprNceTypes, hprRtpLivenessTimeouts=hprRtpLivenessTimeouts, hprRtpTable=hprRtpTable, hprAnrCounterDisconTime=hprAnrCounterDisconTime, hprRtpStatusLastAttemptResult=hprRtpStatusLastAttemptResult, hprRtpBadOpPathSws=hprRtpBadOpPathSws, hprRtpStatusLocTcid=hprRtpStatusLocTcid, hprRtpMaxSendRate=hprRtpMaxSendRate, hprRtpPacketsDiscarded=hprRtpPacketsDiscarded, hprRtpRemNceId=hprRtpRemNceId, hprRtpStatusOldRscv=hprRtpStatusOldRscv, hprAnrRoutingConfGroup=hprAnrRoutingConfGroup, hprRtpRemTcid=hprRtpRemTcid, hprMIB=hprMIB, hprCompliances=hprCompliances, hprAnrsAssigned=hprAnrsAssigned, hprNceTable=hprNceTable, hprRtpRecvBytes=hprRtpRecvBytes, hprRtpRemCpName=hprRtpRemCpName, hprRtpShortReqTimer=hprRtpShortReqTimer, hprTransportUserConfGroup=hprTransportUserConfGroup, hprRtpPathSwitchTrigger=hprRtpPathSwitchTrigger)
|
def get_binary_rep(data, spacing=0, separator=" "):
format(i,'b').zfill(8)
def bin_rep_string_arr(data):
map()
return []
def bin_rep_int_arr(data):
return []
def bin_rep_unicode_arr(data):
return []
def bin_rep_bytes_arr(data):
return []
def hex_rep_string_arr(data):
return []
def hex_rep_int_arr(data):
return []
def hex_rep_unicode_arr(data):
return []
def hex_rep_bytes_arr(data):
return []
|
def get_binary_rep(data, spacing=0, separator=' '):
format(i, 'b').zfill(8)
def bin_rep_string_arr(data):
map()
return []
def bin_rep_int_arr(data):
return []
def bin_rep_unicode_arr(data):
return []
def bin_rep_bytes_arr(data):
return []
def hex_rep_string_arr(data):
return []
def hex_rep_int_arr(data):
return []
def hex_rep_unicode_arr(data):
return []
def hex_rep_bytes_arr(data):
return []
|
# Accessing tuple elements using slicing
my_tuple = ('p','r','o','g','r','a','m','i','n','g')
# elements 2nd to 4th
print(my_tuple[1:4])
# elements beginning to 4nd
print(my_tuple[:-7])
# elements 8th to end
print(my_tuple[7:])
# elements beginning to end
print(my_tuple[:])
|
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'n', 'g')
print(my_tuple[1:4])
print(my_tuple[:-7])
print(my_tuple[7:])
print(my_tuple[:])
|
image_width = 400
image_height = 400
prediction_size = 8
batch_size = 10
noise_ratio = 0.1
|
image_width = 400
image_height = 400
prediction_size = 8
batch_size = 10
noise_ratio = 0.1
|
#
# PySNMP MIB module ALTEON-CHEETAH-NETWORK-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/ALTEON-CHEETAH-NETWORK-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 17:05:12 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
aws_switch, = mibBuilder.importSymbols("ALTEON-ROOT-MIB", "aws-switch")
ObjectIdentifier, OctetString, Integer = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "OctetString", "Integer")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueRangeConstraint, ValueSizeConstraint, SingleValueConstraint, ConstraintsUnion, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueRangeConstraint", "ValueSizeConstraint", "SingleValueConstraint", "ConstraintsUnion", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
NotificationType, Counter32, IpAddress, ObjectIdentity, Integer32, Gauge32, Bits, ModuleIdentity, Counter64, Unsigned32, TimeTicks, iso, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier = mibBuilder.importSymbols("SNMPv2-SMI", "NotificationType", "Counter32", "IpAddress", "ObjectIdentity", "Integer32", "Gauge32", "Bits", "ModuleIdentity", "Counter64", "Unsigned32", "TimeTicks", "iso", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier")
DisplayString, TextualConvention, PhysAddress = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention", "PhysAddress")
layer3 = ModuleIdentity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3))
layer3.setRevisions(('2009-08-05 00:00',))
if mibBuilder.loadTexts: layer3.setLastUpdated('200908050000Z')
if mibBuilder.loadTexts: layer3.setOrganization('Radware Ltd.')
layer3Configs = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1))
layer3Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2))
layer3Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3))
layer3Oper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4))
ipInterfaceCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1))
ipGatewayCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2))
ipStaticRouteCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3))
ipForwardCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4))
vrrpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6))
arpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7))
ipBootpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8))
dnsCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9))
ipNwfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10))
ipRmapCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11))
bgpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12))
ospfCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13))
ipGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14))
ipStaticArpCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15))
rip2Cfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18))
arpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2))
routeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3))
dnsStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4))
vrrpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5))
ospfStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6))
clearStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7))
ip6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10))
icmp6Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11))
ip6gwStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12))
rip2Stats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13))
tcpStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14))
ipRoutingInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1))
arpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2))
vrrpInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3))
ospfinfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4))
gatewayInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5))
nbrcacheInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7))
ipRoute6Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8))
ipIntfInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9))
rip2Info = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10))
rip2RoutesInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11))
allowedNwInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12))
vrrpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1))
ipOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2))
ipInterfaceTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipInterfaceTableMax.setStatus('current')
ipCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2), )
if mibBuilder.loadTexts: ipCurCfgIntfTable.setStatus('current')
ipCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgIntfIndex"))
if mibBuilder.loadTexts: ipCurCfgIntfEntry.setStatus('current')
ipCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIndex.setStatus('current')
ipCurCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfAddr.setStatus('current')
ipCurCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfMask.setStatus('current')
ipCurCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfBroadcast.setStatus('obsolete')
ipCurCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfVlan.setStatus('current')
ipCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfState.setStatus('current')
ipCurCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfBootpRelay.setStatus('current')
ipCurCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIpVer.setStatus('current')
ipCurCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfIpv6Addr.setStatus('current')
ipCurCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfPrefixLen.setStatus('current')
ipCurCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgIntfRouteAdv.setStatus('current')
ipNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3), )
if mibBuilder.loadTexts: ipNewCfgIntfTable.setStatus('current')
ipNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgIntfIndex"))
if mibBuilder.loadTexts: ipNewCfgIntfEntry.setStatus('current')
ipNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgIntfIndex.setStatus('current')
ipNewCfgIntfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfAddr.setStatus('current')
ipNewCfgIntfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfMask.setStatus('current')
ipNewCfgIntfBroadcast = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfBroadcast.setStatus('obsolete')
ipNewCfgIntfVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfVlan.setStatus('current')
ipNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfState.setStatus('current')
ipNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfDelete.setStatus('current')
ipNewCfgIntfBootpRelay = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfBootpRelay.setStatus('current')
ipNewCfgIntfIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfIpVer.setStatus('current')
ipNewCfgIntfIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfIpv6Addr.setStatus('current')
ipNewCfgIntfPrefixLen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfPrefixLen.setStatus('current')
ipNewCfgIntfRouteAdv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgIntfRouteAdv.setStatus('current')
ipCurCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwMetric.setStatus('current')
ipNewCfgGwMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("strict", 1), ("roundrobin", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgGwMetric.setStatus('current')
ipGatewayTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipGatewayTableMax.setStatus('current')
ipCurCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4), )
if mibBuilder.loadTexts: ipCurCfgGwTable.setStatus('current')
ipCurCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgGwIndex"))
if mibBuilder.loadTexts: ipCurCfgGwEntry.setStatus('current')
ipCurCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIndex.setStatus('current')
ipCurCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwAddr.setStatus('current')
ipCurCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwInterval.setStatus('current')
ipCurCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwRetry.setStatus('current')
ipCurCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwState.setStatus('current')
ipCurCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwArp.setStatus('current')
ipCurCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwVlan.setStatus('current')
ipCurCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwPriority.setStatus('current')
ipCurCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIpVer.setStatus('current')
ipCurCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgGwIpv6Addr.setStatus('current')
ipNewCfgGwTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5), )
if mibBuilder.loadTexts: ipNewCfgGwTable.setStatus('current')
ipNewCfgGwEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgGwIndex"))
if mibBuilder.loadTexts: ipNewCfgGwEntry.setStatus('current')
ipNewCfgGwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgGwIndex.setStatus('current')
ipNewCfgGwAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwAddr.setStatus('current')
ipNewCfgGwInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 60))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwInterval.setStatus('current')
ipNewCfgGwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwRetry.setStatus('current')
ipNewCfgGwState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwState.setStatus('current')
ipNewCfgGwDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwDelete.setStatus('current')
ipNewCfgGwArp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwArp.setStatus('current')
ipNewCfgGwVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwVlan.setStatus('current')
ipNewCfgGwPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("low", 1), ("high", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwPriority.setStatus('current')
ipNewCfgGwIpVer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwIpVer.setStatus('current')
ipNewCfgGwIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgGwIpv6Addr.setStatus('current')
ipStaticRouteTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticRouteTableMaxSize.setStatus('current')
ipCurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2), )
if mibBuilder.loadTexts: ipCurCfgStaticRouteTable.setStatus('current')
ipCurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipCurCfgStaticRouteEntry.setStatus('current')
ipCurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteIndx.setStatus('current')
ipCurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteDestIp.setStatus('current')
ipCurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteMask.setStatus('current')
ipCurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteGateway.setStatus('current')
ipCurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticRouteInterface.setStatus('current')
ipNewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3), )
if mibBuilder.loadTexts: ipNewCfgStaticRouteTable.setStatus('current')
ipNewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipNewCfgStaticRouteEntry.setStatus('current')
ipNewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgStaticRouteIndx.setStatus('current')
ipNewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteDestIp.setStatus('current')
ipNewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteMask.setStatus('current')
ipNewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteGateway.setStatus('current')
ipNewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteAction.setStatus('current')
ipNewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticRouteInterface.setStatus('current')
ipv6CurCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4), )
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteTable.setStatus('current')
ipv6CurCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6CurCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteEntry.setStatus('current')
ipv6CurCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteIndx.setStatus('current')
ipv6CurCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteDestIp.setStatus('current')
ipv6CurCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteMask.setStatus('current')
ipv6CurCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteGateway.setStatus('current')
ipv6CurCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipv6CurCfgStaticRouteInterface.setStatus('current')
ipv6NewCfgStaticRouteTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5), )
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteTable.setStatus('current')
ipv6NewCfgStaticRouteEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipv6NewCfgStaticRouteIndx"))
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteEntry.setStatus('current')
ipv6NewCfgStaticRouteIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteIndx.setStatus('current')
ipv6NewCfgStaticRouteDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteDestIp.setStatus('current')
ipv6NewCfgStaticRouteMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteMask.setStatus('current')
ipv6NewCfgStaticRouteGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteGateway.setStatus('current')
ipv6NewCfgStaticRouteAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteAction.setStatus('current')
ipv6NewCfgStaticRouteInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipv6NewCfgStaticRouteInterface.setStatus('current')
ripCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1), )
if mibBuilder.loadTexts: ripCurCfgIntfTable.setStatus('current')
ripCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripCurCfgIntfIndex"))
if mibBuilder.loadTexts: ripCurCfgIntfEntry.setStatus('current')
ripCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfIndex.setStatus('current')
ripCurCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfVersion.setStatus('current')
ripCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfState.setStatus('current')
ripCurCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfListen.setStatus('current')
ripCurCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfDefListen.setStatus('obsolete')
ripCurCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfTrigUpdate.setStatus('current')
ripCurCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfMcastUpdate.setStatus('current')
ripCurCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfPoisonReverse.setStatus('current')
ripCurCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfSupply.setStatus('current')
ripCurCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfMetric.setStatus('current')
ripCurCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfAuth.setStatus('current')
ripCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfKey.setStatus('current')
ripCurCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripCurCfgIntfDefault.setStatus('current')
ripNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2), )
if mibBuilder.loadTexts: ripNewCfgIntfTable.setStatus('current')
ripNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripNewCfgIntfIndex"))
if mibBuilder.loadTexts: ripNewCfgIntfEntry.setStatus('current')
ripNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripNewCfgIntfIndex.setStatus('current')
ripNewCfgIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2), ("both", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfVersion.setStatus('current')
ripNewCfgIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfSupply.setStatus('current')
ripNewCfgIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfListen.setStatus('current')
ripNewCfgIntfDefListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfDefListen.setStatus('obsolete')
ripNewCfgIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfTrigUpdate.setStatus('current')
ripNewCfgIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfMcastUpdate.setStatus('current')
ripNewCfgIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfPoisonReverse.setStatus('current')
ripNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfState.setStatus('current')
ripNewCfgIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ripNewCfgIntfMetric.setStatus('current')
ripNewCfgIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ripNewCfgIntfAuth.setStatus('current')
ripNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfKey.setStatus('current')
ripNewCfgIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ripNewCfgIntfDefault.setStatus('current')
ripGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3))
rip2CurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgState.setStatus('current')
rip2NewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgState.setStatus('current')
rip2CurCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgUpdatePeriod.setStatus('current')
rip2NewCfgUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgUpdatePeriod.setStatus('current')
rip2CurCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgVip.setStatus('current')
rip2NewCfgVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgVip.setStatus('current')
rip2CurCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2CurCfgStaticSupply.setStatus('current')
rip2NewCfgStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rip2NewCfgStaticSupply.setStatus('current')
ipFwdGeneralCfg = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1))
ipFwdCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgState.setStatus('current')
ipFwdNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("on", 2), ("off", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgState.setStatus('current')
ipFwdCurCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgDirectedBcast.setStatus('current')
ipFwdNewCfgDirectedBcast = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgDirectedBcast.setStatus('current')
ipFwdCurCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgNoICMPRedirect.setStatus('current')
ipFwdNewCfgNoICMPRedirect = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgNoICMPRedirect.setStatus('current')
ipFwdCurCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgRtCache.setStatus('current')
ipFwdNewCfgRtCache = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgRtCache.setStatus('current')
ipFwdPortTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdPortTableMaxSize.setStatus('current')
ipFwdCurCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3), )
if mibBuilder.loadTexts: ipFwdCurCfgPortTable.setStatus('current')
ipFwdCurCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgPortIndex"))
if mibBuilder.loadTexts: ipFwdCurCfgPortEntry.setStatus('current')
ipFwdCurCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgPortIndex.setStatus('current')
ipFwdCurCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgPortState.setStatus('current')
ipFwdNewCfgPortTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4), )
if mibBuilder.loadTexts: ipFwdNewCfgPortTable.setStatus('current')
ipFwdNewCfgPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgPortIndex"))
if mibBuilder.loadTexts: ipFwdNewCfgPortEntry.setStatus('current')
ipFwdNewCfgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdNewCfgPortIndex.setStatus('current')
ipFwdNewCfgPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipFwdNewCfgPortState.setStatus('current')
ipFwdLocalTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdLocalTableMaxSize.setStatus('current')
ipFwdCurCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6), )
if mibBuilder.loadTexts: ipFwdCurCfgLocalTable.setStatus('current')
ipFwdCurCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdCurCfgLocalIndex"))
if mibBuilder.loadTexts: ipFwdCurCfgLocalEntry.setStatus('current')
ipFwdCurCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalIndex.setStatus('current')
ipFwdCurCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalSubnet.setStatus('current')
ipFwdCurCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdCurCfgLocalMask.setStatus('current')
ipFwdNewCfgLocalTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7), )
if mibBuilder.loadTexts: ipFwdNewCfgLocalTable.setStatus('current')
ipFwdNewCfgLocalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipFwdNewCfgLocalIndex"))
if mibBuilder.loadTexts: ipFwdNewCfgLocalEntry.setStatus('current')
ipFwdNewCfgLocalIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipFwdNewCfgLocalIndex.setStatus('current')
ipFwdNewCfgLocalSubnet = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalSubnet.setStatus('current')
ipFwdNewCfgLocalMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalMask.setStatus('current')
ipFwdNewCfgLocalDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipFwdNewCfgLocalDelete.setStatus('current')
arpCurCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpCurCfgReARPPeriod.setStatus('current')
arpNewCfgReARPPeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2, 120))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: arpNewCfgReARPPeriod.setStatus('current')
ipCurCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpAddr.setStatus('current')
ipNewCfgBootpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpAddr.setStatus('current')
ipCurCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpAddr2.setStatus('current')
ipNewCfgBootpAddr2 = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpAddr2.setStatus('current')
ipCurCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgBootpState.setStatus('current')
ipNewCfgBootpState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgBootpState.setStatus('current')
vrrpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1))
vrrpCurCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenState.setStatus('current')
vrrpNewCfgGenState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenState.setStatus('current')
vrrpCurCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckVirtRtrInc.setStatus('current')
vrrpNewCfgGenTckVirtRtrInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckVirtRtrInc.setStatus('current')
vrrpCurCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckIpIntfInc.setStatus('current')
vrrpNewCfgGenTckIpIntfInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckIpIntfInc.setStatus('current')
vrrpCurCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckVlanPortInc.setStatus('current')
vrrpNewCfgGenTckVlanPortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckVlanPortInc.setStatus('current')
vrrpCurCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckL4PortInc.setStatus('current')
vrrpNewCfgGenTckL4PortInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckL4PortInc.setStatus('current')
vrrpCurCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckRServerInc.setStatus('current')
vrrpNewCfgGenTckRServerInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckRServerInc.setStatus('current')
vrrpCurCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrpInc.setStatus('current')
vrrpNewCfgGenTckHsrpInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrpInc.setStatus('current')
vrrpCurCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenHotstandby.setStatus('current')
vrrpNewCfgGenHotstandby = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenHotstandby.setStatus('current')
vrrpCurCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenTckHsrvInc.setStatus('current')
vrrpNewCfgGenTckHsrvInc = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 254))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenTckHsrvInc.setStatus('current')
vrrpCurCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgGenHoldoff.setStatus('current')
vrrpNewCfgGenHoldoff = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpNewCfgGenHoldoff.setStatus('current')
vrrpVirtRtrTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrTableMaxSize.setStatus('current')
vrrpCurCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTable.setStatus('current')
vrrpCurCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTableEntry.setStatus('current')
vrrpCurCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIndx.setStatus('current')
vrrpCurCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrID.setStatus('current')
vrrpCurCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrAddr.setStatus('current')
vrrpCurCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIfIndex.setStatus('current')
vrrpCurCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrInterval.setStatus('current')
vrrpCurCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPriority.setStatus('current')
vrrpCurCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrPreempt.setStatus('current')
vrrpCurCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrState.setStatus('current')
vrrpCurCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrSharing.setStatus('current')
vrrpCurCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current')
vrrpCurCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckIpIntf.setStatus('current')
vrrpCurCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckVlanPort.setStatus('current')
vrrpCurCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckL4Port.setStatus('current')
vrrpCurCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckRServer.setStatus('current')
vrrpCurCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrp.setStatus('current')
vrrpCurCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrTckHsrv.setStatus('current')
vrrpCurCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVersion.setStatus('current')
vrrpCurCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Addr.setStatus('current')
vrrpCurCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1045))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrIpv6Interval.setStatus('current')
vrrpNewCfgVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTable.setStatus('current')
vrrpNewCfgVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTableEntry.setStatus('current')
vrrpNewCfgVirtRtrIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIndx.setStatus('current')
vrrpNewCfgVirtRtrID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrID.setStatus('current')
vrrpNewCfgVirtRtrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrAddr.setStatus('current')
vrrpNewCfgVirtRtrIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIfIndex.setStatus('current')
vrrpNewCfgVirtRtrInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrInterval.setStatus('current')
vrrpNewCfgVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPriority.setStatus('current')
vrrpNewCfgVirtRtrPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrPreempt.setStatus('current')
vrrpNewCfgVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrState.setStatus('current')
vrrpNewCfgVirtRtrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrDelete.setStatus('current')
vrrpNewCfgVirtRtrSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrSharing.setStatus('current')
vrrpNewCfgVirtRtrTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current')
vrrpNewCfgVirtRtrTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckIpIntf.setStatus('current')
vrrpNewCfgVirtRtrTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckVlanPort.setStatus('current')
vrrpNewCfgVirtRtrTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckL4Port.setStatus('current')
vrrpNewCfgVirtRtrTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckRServer.setStatus('current')
vrrpNewCfgVirtRtrTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrp.setStatus('current')
vrrpNewCfgVirtRtrTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrTckHsrv.setStatus('current')
vrrpNewCfgVirtRtrVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVersion.setStatus('current')
vrrpNewCfgVirtRtrIpv6Addr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Addr.setStatus('current')
vrrpNewCfgVirtRtrIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrIpv6Interval.setStatus('current')
vrrpIfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpIfTableMaxSize.setStatus('current')
vrrpCurCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6), )
if mibBuilder.loadTexts: vrrpCurCfgIfTable.setStatus('current')
vrrpCurCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgIfIndx"))
if mibBuilder.loadTexts: vrrpCurCfgIfTableEntry.setStatus('current')
vrrpCurCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfIndx.setStatus('current')
vrrpCurCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfAuthType.setStatus('current')
vrrpCurCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfPasswd.setStatus('current')
vrrpCurCfgIfIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgIfIpAddr.setStatus('current')
vrrpNewCfgIfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7), )
if mibBuilder.loadTexts: vrrpNewCfgIfTable.setStatus('current')
vrrpNewCfgIfTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgIfIndx"))
if mibBuilder.loadTexts: vrrpNewCfgIfTableEntry.setStatus('current')
vrrpNewCfgIfIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgIfIndx.setStatus('current')
vrrpNewCfgIfAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("simple-text-password", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfAuthType.setStatus('current')
vrrpNewCfgIfPasswd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 7))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfPasswd.setStatus('current')
vrrpNewCfgIfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgIfDelete.setStatus('current')
vrrpVirtRtrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrGrpTableMaxSize.setStatus('current')
vrrpCurCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTable.setStatus('current')
vrrpCurCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrGrpIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current')
vrrpCurCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIndx.setStatus('current')
vrrpCurCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpID.setStatus('current')
vrrpCurCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current')
vrrpCurCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpInterval.setStatus('current')
vrrpCurCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPriority.setStatus('current')
vrrpCurCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpPreempt.setStatus('current')
vrrpCurCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpState.setStatus('current')
vrrpCurCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpSharing.setStatus('current')
vrrpCurCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current')
vrrpCurCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current')
vrrpCurCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current')
vrrpCurCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current')
vrrpCurCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current')
vrrpCurCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current')
vrrpCurCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current')
vrrpCurCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpVersion.setStatus('current')
vrrpCurCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current')
vrrpNewCfgVirtRtrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTable.setStatus('current')
vrrpNewCfgVirtRtrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrGrpIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current')
vrrpNewCfgVirtRtrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIndx.setStatus('current')
vrrpNewCfgVirtRtrGrpID = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpID.setStatus('current')
vrrpNewCfgVirtRtrGrpIfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current')
vrrpNewCfgVirtRtrGrpInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpInterval.setStatus('current')
vrrpNewCfgVirtRtrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPriority.setStatus('current')
vrrpNewCfgVirtRtrGrpPreempt = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpPreempt.setStatus('current')
vrrpNewCfgVirtRtrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpState.setStatus('current')
vrrpNewCfgVirtRtrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpDelete.setStatus('current')
vrrpNewCfgVirtRtrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpSharing.setStatus('current')
vrrpNewCfgVirtRtrGrpTckVirtRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current')
vrrpNewCfgVirtRtrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current')
vrrpNewCfgVirtRtrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current')
vrrpNewCfgVirtRtrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current')
vrrpNewCfgVirtRtrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current')
vrrpNewCfgVirtRtrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current')
vrrpNewCfgVirtRtrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current')
vrrpNewCfgVirtRtrGrpVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("v4", 1), ("v6", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpVersion.setStatus('current')
vrrpNewCfgVirtRtrGrpIpv6Interval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current')
vrrpVirtRtrVrGrpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpVirtRtrVrGrpTableMaxSize.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12), )
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTable.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpCurCfgVirtRtrVrGrpIndx"))
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current')
vrrpCurCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current')
vrrpCurCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpName.setStatus('current')
vrrpCurCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpState.setStatus('current')
vrrpCurCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current')
vrrpCurCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current')
vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
vrrpCurCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current')
vrrpCurCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current')
vrrpCurCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current')
vrrpCurCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13), )
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTable.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpNewCfgVirtRtrVrGrpIndx"))
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current')
vrrpNewCfgVirtRtrVrGrpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current')
vrrpNewCfgVirtRtrVrGrpName = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpName.setStatus('current')
vrrpNewCfgVirtRtrVrGrpAdd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current')
vrrpNewCfgVirtRtrVrGrpRem = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpRem.setStatus('current')
vrrpNewCfgVirtRtrVrGrpState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpState.setStatus('current')
vrrpNewCfgVirtRtrVrGrpDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current')
vrrpNewCfgVirtRtrVrGrpBmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current')
vrrpNewCfgVirtRtrVrGrpPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 254))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckIpIntf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckVlanPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckL4Port = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckRServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckHsrp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckHsrv = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current')
vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1024))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
vrrpNewCfgVirtRtrVrGrpAdverInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current')
vrrpNewCfgVirtRtrVrGrpPreemption = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current')
vrrpNewCfgVirtRtrVrGrpSharing = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current')
dnsCurCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpAddr.setStatus('current')
dnsNewCfgPrimaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpAddr.setStatus('current')
dnsCurCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpAddr.setStatus('current')
dnsNewCfgSecondaryIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpAddr.setStatus('current')
dnsCurCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgDomainName.setStatus('current')
dnsNewCfgDomainName = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 191))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgDomainName.setStatus('current')
dnsCurCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgPrimaryIpv6Addr.setStatus('current')
dnsNewCfgPrimaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgPrimaryIpv6Addr.setStatus('current')
dnsCurCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsCurCfgSecondaryIpv6Addr.setStatus('current')
dnsNewCfgSecondaryIpv6Addr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: dnsNewCfgSecondaryIpv6Addr.setStatus('current')
ipNwfTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNwfTableMax.setStatus('current')
ipCurCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2), )
if mibBuilder.loadTexts: ipCurCfgNwfTable.setStatus('current')
ipCurCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgNwfIndex"))
if mibBuilder.loadTexts: ipCurCfgNwfEntry.setStatus('current')
ipCurCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfIndex.setStatus('current')
ipCurCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfAddr.setStatus('current')
ipCurCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfMask.setStatus('current')
ipCurCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgNwfState.setStatus('current')
ipNewCfgNwfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3), )
if mibBuilder.loadTexts: ipNewCfgNwfTable.setStatus('current')
ipNewCfgNwfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgNwfIndex"))
if mibBuilder.loadTexts: ipNewCfgNwfEntry.setStatus('current')
ipNewCfgNwfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgNwfIndex.setStatus('current')
ipNewCfgNwfAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfAddr.setStatus('current')
ipNewCfgNwfMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfMask.setStatus('current')
ipNewCfgNwfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfState.setStatus('current')
ipNewCfgNwfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgNwfDelete.setStatus('current')
ipRmapTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRmapTableMax.setStatus('current')
ipCurCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2), )
if mibBuilder.loadTexts: ipCurCfgRmapTable.setStatus('current')
ipCurCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgRmapIndex"))
if mibBuilder.loadTexts: ipCurCfgRmapEntry.setStatus('current')
ipCurCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapIndex.setStatus('current')
ipCurCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapLp.setStatus('current')
ipCurCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapMetric.setStatus('current')
ipCurCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapPrec.setStatus('current')
ipCurCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapWeight.setStatus('current')
ipCurCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapState.setStatus('current')
ipCurCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapAp.setStatus('current')
ipCurCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRmapMetricType.setStatus('current')
ipNewCfgRmapTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3), )
if mibBuilder.loadTexts: ipNewCfgRmapTable.setStatus('current')
ipNewCfgRmapEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgRmapIndex"))
if mibBuilder.loadTexts: ipNewCfgRmapEntry.setStatus('current')
ipNewCfgRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgRmapIndex.setStatus('current')
ipNewCfgRmapLp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapLp.setStatus('current')
ipNewCfgRmapMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapMetric.setStatus('current')
ipNewCfgRmapPrec = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapPrec.setStatus('current')
ipNewCfgRmapWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapWeight.setStatus('current')
ipNewCfgRmapState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapState.setStatus('current')
ipNewCfgRmapAp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 18))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapAp.setStatus('current')
ipNewCfgRmapMetricType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapMetricType.setStatus('current')
ipNewCfgRmapDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgRmapDelete.setStatus('current')
ipAlistTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipAlistTableMax.setStatus('current')
ipCurCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5), )
if mibBuilder.loadTexts: ipCurCfgAlistTable.setStatus('current')
ipCurCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex"))
if mibBuilder.loadTexts: ipCurCfgAlistEntry.setStatus('current')
ipCurCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistRmapIndex.setStatus('current')
ipCurCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistIndex.setStatus('current')
ipCurCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistNwf.setStatus('current')
ipCurCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistMetric.setStatus('current')
ipCurCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistAction.setStatus('current')
ipCurCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAlistState.setStatus('current')
ipNewCfgAlistTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6), )
if mibBuilder.loadTexts: ipNewCfgAlistTable.setStatus('current')
ipNewCfgAlistEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAlistIndex"))
if mibBuilder.loadTexts: ipNewCfgAlistEntry.setStatus('current')
ipNewCfgAlistRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAlistRmapIndex.setStatus('current')
ipNewCfgAlistIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAlistIndex.setStatus('current')
ipNewCfgAlistNwf = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 256))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistNwf.setStatus('current')
ipNewCfgAlistMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967295))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistMetric.setStatus('current')
ipNewCfgAlistAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistAction.setStatus('current')
ipNewCfgAlistState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistState.setStatus('current')
ipNewCfgAlistDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAlistDelete.setStatus('current')
ipAspathTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipAspathTableMax.setStatus('current')
ipCurCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8), )
if mibBuilder.loadTexts: ipCurCfgAspathTable.setStatus('current')
ipCurCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgAlistIndex"))
if mibBuilder.loadTexts: ipCurCfgAspathEntry.setStatus('current')
ipCurCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathRmapIndex.setStatus('current')
ipCurCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathIndex.setStatus('current')
ipCurCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathAS.setStatus('current')
ipCurCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathAction.setStatus('current')
ipCurCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgAspathState.setStatus('current')
ipNewCfgAspathTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9), )
if mibBuilder.loadTexts: ipNewCfgAspathTable.setStatus('current')
ipNewCfgAspathEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathRmapIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgAspathIndex"))
if mibBuilder.loadTexts: ipNewCfgAspathEntry.setStatus('current')
ipNewCfgAspathRmapIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAspathRmapIndex.setStatus('current')
ipNewCfgAspathIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgAspathIndex.setStatus('current')
ipNewCfgAspathAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathAS.setStatus('current')
ipNewCfgAspathAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("permit", 1), ("deny", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathAction.setStatus('current')
ipNewCfgAspathState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathState.setStatus('current')
ipNewCfgAspathDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgAspathDelete.setStatus('current')
bgpGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1))
bgpCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgState.setStatus('current')
bgpNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgState.setStatus('current')
bgpCurCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgLocalPref.setStatus('current')
bgpNewCfgLocalPref = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgLocalPref.setStatus('current')
bgpCurCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgMaxASPath.setStatus('current')
bgpNewCfgMaxASPath = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(1, 127))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgMaxASPath.setStatus('current')
bgpCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgASNumber.setStatus('current')
bgpNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpNewCfgASNumber.setStatus('current')
bgpPeerTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpPeerTableMax.setStatus('current')
bgpCurCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3), )
if mibBuilder.loadTexts: bgpCurCfgPeerTable.setStatus('current')
bgpCurCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgPeerIndex"))
if mibBuilder.loadTexts: bgpCurCfgPeerEntry.setStatus('current')
bgpCurCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerIndex.setStatus('current')
bgpCurCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAddr.setStatus('current')
bgpCurCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRemoteAs.setStatus('current')
bgpCurCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerTtl.setStatus('current')
bgpCurCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerState.setStatus('current')
bgpCurCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMetric.setStatus('current')
bgpCurCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerDefaultAction.setStatus('current')
bgpCurCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerOspfState.setStatus('current')
bgpCurCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerFixedState.setStatus('current')
bgpCurCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerStaticState.setStatus('current')
bgpCurCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerVipState.setStatus('current')
bgpCurCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerInRmapList.setStatus('current')
bgpCurCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerOutRmapList.setStatus('current')
bgpCurCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerHoldTime.setStatus('current')
bgpCurCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerKeepAlive.setStatus('current')
bgpCurCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMinTime.setStatus('current')
bgpCurCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerConRetry.setStatus('current')
bgpCurCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerMinAS.setStatus('current')
bgpCurCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgPeerRipState.setStatus('current')
bgpNewCfgPeerTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4), )
if mibBuilder.loadTexts: bgpNewCfgPeerTable.setStatus('current')
bgpNewCfgPeerEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgPeerIndex"))
if mibBuilder.loadTexts: bgpNewCfgPeerEntry.setStatus('current')
bgpNewCfgPeerIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerIndex.setStatus('current')
bgpNewCfgPeerRemoteAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAddr.setStatus('current')
bgpNewCfgPeerRemoteAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoteAs.setStatus('current')
bgpNewCfgPeerTtl = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerTtl.setStatus('current')
bgpNewCfgPeerState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerState.setStatus('current')
bgpNewCfgPeerDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerDelete.setStatus('current')
bgpNewCfgPeerMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), Unsigned32().subtype(subtypeSpec=ValueRangeConstraint(0, 4294967294))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMetric.setStatus('current')
bgpNewCfgPeerDefaultAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("none", 1), ("import", 2), ("originate", 3), ("redistribute", 4)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerDefaultAction.setStatus('current')
bgpNewCfgPeerOspfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerOspfState.setStatus('current')
bgpNewCfgPeerFixedState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerFixedState.setStatus('current')
bgpNewCfgPeerStaticState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerStaticState.setStatus('current')
bgpNewCfgPeerVipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerVipState.setStatus('current')
bgpNewCfgPeerInRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerInRmapList.setStatus('current')
bgpNewCfgPeerOutRmapList = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgPeerOutRmapList.setStatus('current')
bgpNewCfgPeerAddInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerAddInRmap.setStatus('current')
bgpNewCfgPeerAddOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerAddOutRmap.setStatus('current')
bgpNewCfgPeerRemoveInRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveInRmap.setStatus('current')
bgpNewCfgPeerRemoveOutRmap = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRemoveOutRmap.setStatus('current')
bgpNewCfgPeerHoldTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerHoldTime.setStatus('current')
bgpNewCfgPeerKeepAlive = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 21845))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerKeepAlive.setStatus('current')
bgpNewCfgPeerMinTime = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMinTime.setStatus('current')
bgpNewCfgPeerConRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerConRetry.setStatus('current')
bgpNewCfgPeerMinAS = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(30, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerMinAS.setStatus('current')
bgpNewCfgPeerRipState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgPeerRipState.setStatus('current')
bgpAggrTableMax = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpAggrTableMax.setStatus('current')
bgpCurCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6), )
if mibBuilder.loadTexts: bgpCurCfgAggrTable.setStatus('current')
bgpCurCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpCurCfgAggrIndex"))
if mibBuilder.loadTexts: bgpCurCfgAggrEntry.setStatus('current')
bgpCurCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrIndex.setStatus('current')
bgpCurCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrAddr.setStatus('current')
bgpCurCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrMask.setStatus('current')
bgpCurCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpCurCfgAggrState.setStatus('current')
bgpNewCfgAggrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7), )
if mibBuilder.loadTexts: bgpNewCfgAggrTable.setStatus('current')
bgpNewCfgAggrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "bgpNewCfgAggrIndex"))
if mibBuilder.loadTexts: bgpNewCfgAggrEntry.setStatus('current')
bgpNewCfgAggrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: bgpNewCfgAggrIndex.setStatus('current')
bgpNewCfgAggrAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrAddr.setStatus('current')
bgpNewCfgAggrMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrMask.setStatus('current')
bgpNewCfgAggrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrState.setStatus('current')
bgpNewCfgAggrDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: bgpNewCfgAggrDelete.setStatus('current')
ospfGeneral = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1))
ospfCurCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetric.setStatus('current')
ospfNewCfgDefaultRouteMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetric.setStatus('current')
ospfCurCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgDefaultRouteMetricType.setStatus('current')
ospfNewCfgDefaultRouteMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgDefaultRouteMetricType.setStatus('current')
ospfIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTableMaxSize.setStatus('current')
ospfAreaTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTableMaxSize.setStatus('current')
ospfRangeTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfRangeTableMaxSize.setStatus('current')
ospfVirtIntfTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVirtIntfTableMaxSize.setStatus('current')
ospfHostTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfHostTableMaxSize.setStatus('current')
ospfCurCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgState.setStatus('current')
ospfNewCfgState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgState.setStatus('current')
ospfCurCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgLsdb.setStatus('current')
ospfNewCfgLsdb = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgLsdb.setStatus('current')
ospfCurCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2), )
if mibBuilder.loadTexts: ospfCurCfgAreaTable.setStatus('current')
ospfCurCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgAreaId"))
if mibBuilder.loadTexts: ospfCurCfgAreaEntry.setStatus('current')
ospfCurCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaIndex.setStatus('current')
ospfCurCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaId.setStatus('current')
ospfCurCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaSpfInterval.setStatus('current')
ospfCurCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaAuthType.setStatus('current')
ospfCurCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaType.setStatus('current')
ospfCurCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaMetric.setStatus('current')
ospfCurCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgAreaState.setStatus('current')
ospfNewCfgAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3), )
if mibBuilder.loadTexts: ospfNewCfgAreaTable.setStatus('current')
ospfNewCfgAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgAreaId"))
if mibBuilder.loadTexts: ospfNewCfgAreaEntry.setStatus('current')
ospfNewCfgAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgAreaIndex.setStatus('current')
ospfNewCfgAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgAreaId.setStatus('current')
ospfNewCfgAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaSpfInterval.setStatus('current')
ospfNewCfgAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaAuthType.setStatus('current')
ospfNewCfgAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaType.setStatus('current')
ospfNewCfgAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaMetric.setStatus('current')
ospfNewCfgAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaState.setStatus('current')
ospfNewCfgAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgAreaDelete.setStatus('current')
ospfNewCfgVisionAreaTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16), )
if mibBuilder.loadTexts: ospfNewCfgVisionAreaTable.setStatus('current')
ospfNewCfgVisionAreaEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVisionAreaIndex"))
if mibBuilder.loadTexts: ospfNewCfgVisionAreaEntry.setStatus('current')
ospfNewCfgVisionAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaIndex.setStatus('current')
ospfNewCfgVisionAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaId.setStatus('current')
ospfNewCfgVisionAreaSpfInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaSpfInterval.setStatus('current')
ospfNewCfgVisionAreaAuthType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("password", 2), ("md5", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaAuthType.setStatus('current')
ospfNewCfgVisionAreaType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("transit", 1), ("stub", 2), ("nssa", 3)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaType.setStatus('current')
ospfNewCfgVisionAreaMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaMetric.setStatus('current')
ospfNewCfgVisionAreaState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaState.setStatus('current')
ospfNewCfgVisionAreaDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVisionAreaDelete.setStatus('current')
ospfCurCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12), )
if mibBuilder.loadTexts: ospfCurCfgHostTable.setStatus('current')
ospfCurCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgHostIndex"))
if mibBuilder.loadTexts: ospfCurCfgHostEntry.setStatus('current')
ospfCurCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostIndex.setStatus('current')
ospfCurCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostIpAddr.setStatus('current')
ospfCurCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostAreaIndex.setStatus('current')
ospfCurCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostCost.setStatus('current')
ospfCurCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgHostState.setStatus('current')
ospfNewCfgHostTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13), )
if mibBuilder.loadTexts: ospfNewCfgHostTable.setStatus('current')
ospfNewCfgHostEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgHostIndex"))
if mibBuilder.loadTexts: ospfNewCfgHostEntry.setStatus('current')
ospfNewCfgHostIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgHostIndex.setStatus('current')
ospfNewCfgHostIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostIpAddr.setStatus('current')
ospfNewCfgHostAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostAreaIndex.setStatus('current')
ospfNewCfgHostCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostCost.setStatus('current')
ospfNewCfgHostState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostState.setStatus('current')
ospfNewCfgHostDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgHostDelete.setStatus('current')
ospfMdkeyTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfMdkeyTableMaxSize.setStatus('current')
ospfCurCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5), )
if mibBuilder.loadTexts: ospfCurCfgMdkeyTable.setStatus('current')
ospfCurCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgMdkeyIndex"))
if mibBuilder.loadTexts: ospfCurCfgMdkeyEntry.setStatus('current')
ospfCurCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgMdkeyIndex.setStatus('current')
ospfCurCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgMdkeyKey.setStatus('current')
ospfNewCfgMdkeyTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6), )
if mibBuilder.loadTexts: ospfNewCfgMdkeyTable.setStatus('current')
ospfNewCfgMdkeyEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgMdkeyIndex"))
if mibBuilder.loadTexts: ospfNewCfgMdkeyEntry.setStatus('current')
ospfNewCfgMdkeyIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgMdkeyIndex.setStatus('current')
ospfNewCfgMdkeyKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgMdkeyKey.setStatus('current')
ospfNewCfgMdkeyDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgMdkeyDelete.setStatus('current')
ospfCurCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7), )
if mibBuilder.loadTexts: ospfCurCfgIntfTable.setStatus('current')
ospfCurCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgIntfIndex"))
if mibBuilder.loadTexts: ospfCurCfgIntfEntry.setStatus('current')
ospfCurCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfIndex.setStatus('current')
ospfCurCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfId.setStatus('current')
ospfCurCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfMdkey.setStatus('current')
ospfCurCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfAreaId.setStatus('current')
ospfCurCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfPriority.setStatus('current')
ospfCurCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfCost.setStatus('current')
ospfCurCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfHello.setStatus('current')
ospfCurCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfDead.setStatus('current')
ospfCurCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfTransit.setStatus('current')
ospfCurCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfRetrans.setStatus('current')
ospfCurCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfKey.setStatus('current')
ospfCurCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIntfState.setStatus('current')
ospfNewCfgIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8), )
if mibBuilder.loadTexts: ospfNewCfgIntfTable.setStatus('current')
ospfNewCfgIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgIntfIndex"))
if mibBuilder.loadTexts: ospfNewCfgIntfEntry.setStatus('current')
ospfNewCfgIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIntfIndex.setStatus('current')
ospfNewCfgIntfId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIntfId.setStatus('current')
ospfNewCfgIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfMdkey.setStatus('current')
ospfNewCfgIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfAreaId.setStatus('current')
ospfNewCfgIntfPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfPriority.setStatus('current')
ospfNewCfgIntfCost = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfCost.setStatus('current')
ospfNewCfgIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfHello.setStatus('current')
ospfNewCfgIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfDead.setStatus('current')
ospfNewCfgIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfTransit.setStatus('current')
ospfNewCfgIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfRetrans.setStatus('current')
ospfNewCfgIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfKey.setStatus('current')
ospfNewCfgIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfState.setStatus('current')
ospfNewCfgIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgIntfDelete.setStatus('current')
ospfCurCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9), )
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTable.setStatus('current')
ospfCurCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgVirtIntfIndex"))
if mibBuilder.loadTexts: ospfCurCfgVirtIntfEntry.setStatus('current')
ospfCurCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfIndex.setStatus('current')
ospfCurCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfAreaId.setStatus('current')
ospfCurCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfNbr.setStatus('current')
ospfCurCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfMdkey.setStatus('current')
ospfCurCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfHello.setStatus('current')
ospfCurCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfDead.setStatus('current')
ospfCurCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfTransit.setStatus('current')
ospfCurCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfRetrans.setStatus('current')
ospfCurCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfKey.setStatus('current')
ospfCurCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgVirtIntfState.setStatus('current')
ospfNewCfgVirtIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10), )
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTable.setStatus('current')
ospfNewCfgVirtIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgVirtIntfIndex"))
if mibBuilder.loadTexts: ospfNewCfgVirtIntfEntry.setStatus('current')
ospfNewCfgVirtIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfIndex.setStatus('current')
ospfNewCfgVirtIntfAreaId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfAreaId.setStatus('current')
ospfNewCfgVirtIntfNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfNbr.setStatus('current')
ospfNewCfgVirtIntfMdkey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfMdkey.setStatus('current')
ospfNewCfgVirtIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfHello.setStatus('current')
ospfNewCfgVirtIntfDead = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDead.setStatus('current')
ospfNewCfgVirtIntfTransit = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfTransit.setStatus('current')
ospfNewCfgVirtIntfRetrans = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 3600))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfRetrans.setStatus('current')
ospfNewCfgVirtIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 8))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfKey.setStatus('current')
ospfNewCfgVirtIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfState.setStatus('current')
ospfNewCfgVirtIntfDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgVirtIntfDelete.setStatus('current')
ospfCurCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14), )
if mibBuilder.loadTexts: ospfCurCfgRangeTable.setStatus('current')
ospfCurCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfCurCfgRangeIndex"))
if mibBuilder.loadTexts: ospfCurCfgRangeEntry.setStatus('current')
ospfCurCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeIndex.setStatus('current')
ospfCurCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeAddr.setStatus('current')
ospfCurCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeMask.setStatus('current')
ospfCurCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeAreaIndex.setStatus('current')
ospfCurCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeHideState.setStatus('current')
ospfCurCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRangeState.setStatus('current')
ospfNewCfgRangeTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15), )
if mibBuilder.loadTexts: ospfNewCfgRangeTable.setStatus('current')
ospfNewCfgRangeEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfNewCfgRangeIndex"))
if mibBuilder.loadTexts: ospfNewCfgRangeEntry.setStatus('current')
ospfNewCfgRangeIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgRangeIndex.setStatus('current')
ospfNewCfgRangeAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeAddr.setStatus('current')
ospfNewCfgRangeMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeMask.setStatus('current')
ospfNewCfgRangeAreaIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeAreaIndex.setStatus('current')
ospfNewCfgRangeHideState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeHideState.setStatus('current')
ospfNewCfgRangeState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeState.setStatus('current')
ospfNewCfgRangeDelete = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ospfNewCfgRangeDelete.setStatus('current')
ospfRouteRedistribution = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4))
ospfRedistributeStatic = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1))
ospfCurCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticMetric.setStatus('current')
ospfNewCfgStaticMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticMetric.setStatus('current')
ospfCurCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticMetricType.setStatus('current')
ospfNewCfgStaticMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticMetricType.setStatus('current')
ospfCurCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgStaticOutRmapList.setStatus('current')
ospfNewCfgStaticOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgStaticOutRmapList.setStatus('current')
ospfNewCfgStaticAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticAddOutRmap.setStatus('current')
ospfNewCfgStaticRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgStaticRemoveOutRmap.setStatus('current')
ospfRedistributeEbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2))
ospfCurCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpMetric.setStatus('current')
ospfNewCfgEbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpMetric.setStatus('current')
ospfCurCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpMetricType.setStatus('current')
ospfNewCfgEbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpMetricType.setStatus('current')
ospfCurCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgEbgpOutRmapList.setStatus('current')
ospfNewCfgEbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgEbgpOutRmapList.setStatus('current')
ospfNewCfgEbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpAddOutRmap.setStatus('current')
ospfNewCfgEbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgEbgpRemoveOutRmap.setStatus('current')
ospfRedistributeIbgp = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3))
ospfCurCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpMetric.setStatus('current')
ospfNewCfgIbgpMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpMetric.setStatus('current')
ospfCurCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpMetricType.setStatus('current')
ospfNewCfgIbgpMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpMetricType.setStatus('current')
ospfCurCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgIbgpOutRmapList.setStatus('current')
ospfNewCfgIbgpOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgIbgpOutRmapList.setStatus('current')
ospfNewCfgIbgpAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpAddOutRmap.setStatus('current')
ospfNewCfgIbgpRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgIbgpRemoveOutRmap.setStatus('current')
ospfRedistributeFixed = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4))
ospfCurCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedMetric.setStatus('current')
ospfNewCfgFixedMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedMetric.setStatus('current')
ospfCurCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedMetricType.setStatus('current')
ospfNewCfgFixedMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedMetricType.setStatus('current')
ospfCurCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgFixedOutRmapList.setStatus('current')
ospfNewCfgFixedOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgFixedOutRmapList.setStatus('current')
ospfNewCfgFixedAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedAddOutRmap.setStatus('current')
ospfNewCfgFixedRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgFixedRemoveOutRmap.setStatus('current')
ospfRedistributeRip = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5))
ospfCurCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipMetric.setStatus('current')
ospfNewCfgRipMetric = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16777215))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipMetric.setStatus('current')
ospfCurCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipMetricType.setStatus('current')
ospfNewCfgRipMetricType = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("none", 1), ("type1", 2), ("type2", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipMetricType.setStatus('current')
ospfCurCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCurCfgRipOutRmapList.setStatus('current')
ospfNewCfgRipOutRmapList = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNewCfgRipOutRmapList.setStatus('current')
ospfNewCfgRipAddOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipAddOutRmap.setStatus('current')
ospfNewCfgRipRemoveOutRmap = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ospfNewCfgRipRemoveOutRmap.setStatus('current')
ipCurCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgRouterID.setStatus('current')
ipNewCfgRouterID = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgRouterID.setStatus('current')
ipCurCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgASNumber.setStatus('current')
ipNewCfgASNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipNewCfgASNumber.setStatus('current')
ipStaticArpTableMaxSize = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticArpTableMaxSize.setStatus('current')
ipCurCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2), )
if mibBuilder.loadTexts: ipCurCfgStaticArpTable.setStatus('current')
ipCurCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipCurCfgStaticArpIndx"))
if mibBuilder.loadTexts: ipCurCfgStaticArpEntry.setStatus('current')
ipCurCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpIndx.setStatus('current')
ipCurCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpIp.setStatus('current')
ipCurCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpMAC.setStatus('current')
ipCurCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpVlan.setStatus('current')
ipCurCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipCurCfgStaticArpPort.setStatus('current')
ipNewCfgStaticArpTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3), )
if mibBuilder.loadTexts: ipNewCfgStaticArpTable.setStatus('current')
ipNewCfgStaticArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipNewCfgStaticArpIndx"))
if mibBuilder.loadTexts: ipNewCfgStaticArpEntry.setStatus('current')
ipNewCfgStaticArpIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipNewCfgStaticArpIndx.setStatus('current')
ipNewCfgStaticArpIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), IpAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpIp.setStatus('current')
ipNewCfgStaticArpMAC = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), PhysAddress()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpMAC.setStatus('current')
ipNewCfgStaticArpVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpVlan.setStatus('current')
ipNewCfgStaticArpPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), Integer32()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpPort.setStatus('current')
ipNewCfgStaticArpAction = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("other", 1), ("delete", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: ipNewCfgStaticArpAction.setStatus('current')
ipStaticArpTableNextAvailableIndex = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipStaticArpTableNextAvailableIndex.setStatus('current')
ripStatInPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInPackets.setStatus('current')
ripStatOutPackets = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutPackets.setStatus('current')
ripStatInRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInRequestPkts.setStatus('current')
ripStatInResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInResponsePkts.setStatus('current')
ripStatOutRequestPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutRequestPkts.setStatus('current')
ripStatOutResponsePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatOutResponsePkts.setStatus('current')
ripStatRouteTimeout = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatRouteTimeout.setStatus('current')
ripStatInBadSizePkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSizePkts.setStatus('current')
ripStatInBadVersion = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadVersion.setStatus('current')
ripStatInBadZeros = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadZeros.setStatus('current')
ripStatInBadSourcePort = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSourcePort.setStatus('current')
ripStatInBadSourceIP = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInBadSourceIP.setStatus('current')
ripStatInSelfRcvPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripStatInSelfRcvPkts.setStatus('current')
tcpStatCurConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurConn.setStatus('current')
tcpStatCurInConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurInConn.setStatus('current')
tcpStatCurOutConn = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: tcpStatCurOutConn.setStatus('current')
arpStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatEntries.setStatus('current')
arpStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatHighWater.setStatus('current')
arpStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpStatMaxEntries.setStatus('current')
routeStatEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatEntries.setStatus('current')
routeStatHighWater = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatHighWater.setStatus('current')
routeStatMaxEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: routeStatMaxEntries.setStatus('current')
dnsStatInGoodDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatInGoodDnsRequests.setStatus('current')
dnsStatInBadDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatInBadDnsRequests.setStatus('current')
dnsStatOutDnsRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: dnsStatOutDnsRequests.setStatus('current')
vrrpStatInAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatInAdvers.setStatus('current')
vrrpStatOutAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatOutAdvers.setStatus('current')
vrrpStatOutBadAdvers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpStatOutBadAdvers.setStatus('current')
ipClearStats = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ipClearStats.setStatus('current')
ifStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2), )
if mibBuilder.loadTexts: ifStatsTable.setStatus('current')
ifStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ifStatsIndex"))
if mibBuilder.loadTexts: ifStatsEntry.setStatus('current')
ifStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ifStatsIndex.setStatus('current')
ifClearStats = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ifClearStats.setStatus('current')
ospfGeneralStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1))
ospfCumRxTxStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1))
ospfCumNbrChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2))
ospfCumIntfChangeStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3))
ospfTimersKickOffStats = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4))
ospfArea = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2))
ospfAreaRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1), )
if mibBuilder.loadTexts: ospfAreaRxTxStats.setStatus('current')
ospfAreaRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaRxTxIndex"))
if mibBuilder.loadTexts: ospfAreaRxTxStatsEntry.setStatus('current')
ospfAreaRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxTxIndex.setStatus('current')
ospfAreaRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxPkts.setStatus('current')
ospfAreaTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxPkts.setStatus('current')
ospfAreaRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxHello.setStatus('current')
ospfAreaTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxHello.setStatus('current')
ospfAreaRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxDatabase.setStatus('current')
ospfAreaTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxDatabase.setStatus('current')
ospfAreaRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsReqs.setStatus('current')
ospfAreaTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsReqs.setStatus('current')
ospfAreaRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsAcks.setStatus('current')
ospfAreaTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsAcks.setStatus('current')
ospfAreaRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaRxlsUpdates.setStatus('current')
ospfAreaTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaTxlsUpdates.setStatus('current')
ospfAreaNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2), )
if mibBuilder.loadTexts: ospfAreaNbrChangeStats.setStatus('current')
ospfAreaNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaNbrIndex"))
if mibBuilder.loadTexts: ospfAreaNbrChangeStatsEntry.setStatus('current')
ospfAreaNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrIndex.setStatus('current')
ospfAreaNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrhello.setStatus('current')
ospfAreaNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrStart.setStatus('current')
ospfAreaNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrAdjointOk.setStatus('current')
ospfAreaNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrNegotiationDone.setStatus('current')
ospfAreaNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrExchangeDone.setStatus('current')
ospfAreaNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrBadRequests.setStatus('current')
ospfAreaNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrBadSequence.setStatus('current')
ospfAreaNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrLoadingDone.setStatus('current')
ospfAreaNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrN1way.setStatus('current')
ospfAreaNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrRstAd.setStatus('current')
ospfAreaNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrDown.setStatus('current')
ospfAreaNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaNbrN2way.setStatus('current')
ospfAreaChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3), )
if mibBuilder.loadTexts: ospfAreaChangeStats.setStatus('current')
ospfAreaChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaIntfIndex"))
if mibBuilder.loadTexts: ospfAreaChangeStatsEntry.setStatus('current')
ospfAreaIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfIndex.setStatus('current')
ospfAreaIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfHello.setStatus('current')
ospfAreaIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfDown.setStatus('current')
ospfAreaIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfLoop.setStatus('current')
ospfAreaIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfUnloop.setStatus('current')
ospfAreaIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfWaitTimer.setStatus('current')
ospfAreaIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfBackup.setStatus('current')
ospfAreaIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaIntfNbrChange.setStatus('current')
ospfAreaErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4), )
if mibBuilder.loadTexts: ospfAreaErrorStats.setStatus('current')
ospfAreaErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaErrIndex"))
if mibBuilder.loadTexts: ospfAreaErrorStatsEntry.setStatus('current')
ospfAreaErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrIndex.setStatus('current')
ospfAreaErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrAuthFailure.setStatus('current')
ospfAreaErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrNetmaskMismatch.setStatus('current')
ospfAreaErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrHelloMismatch.setStatus('current')
ospfAreaErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrDeadMismatch.setStatus('current')
ospfAreaErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrOptionsMismatch.setStatus('current')
ospfAreaErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaErrUnknownNbr.setStatus('current')
ospfInterface = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3))
ospfIntfRxTxStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1), )
if mibBuilder.loadTexts: ospfIntfRxTxStats.setStatus('current')
ospfIntfRxTxStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfRxTxIndex"))
if mibBuilder.loadTexts: ospfIntfRxTxStatsEntry.setStatus('current')
ospfIntfRxTxIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxTxIndex.setStatus('current')
ospfIntfRxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxPkts.setStatus('current')
ospfIntfTxPkts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxPkts.setStatus('current')
ospfIntfRxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxHello.setStatus('current')
ospfIntfTxHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxHello.setStatus('current')
ospfIntfRxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxDatabase.setStatus('current')
ospfIntfTxDatabase = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxDatabase.setStatus('current')
ospfIntfRxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsReqs.setStatus('current')
ospfIntfTxlsReqs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsReqs.setStatus('current')
ospfIntfRxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsAcks.setStatus('current')
ospfIntfTxlsAcks = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsAcks.setStatus('current')
ospfIntfRxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfRxlsUpdates.setStatus('current')
ospfIntfTxlsUpdates = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfTxlsUpdates.setStatus('current')
ospfIntfNbrChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2), )
if mibBuilder.loadTexts: ospfIntfNbrChangeStats.setStatus('current')
ospfIntfNbrChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfNbrIndex"))
if mibBuilder.loadTexts: ospfIntfNbrChangeStatsEntry.setStatus('current')
ospfIntfNbrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrIndex.setStatus('current')
ospfIntfNbrhello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrhello.setStatus('current')
ospfIntfNbrStart = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrStart.setStatus('current')
ospfIntfNbrAdjointOk = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrAdjointOk.setStatus('current')
ospfIntfNbrNegotiationDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrNegotiationDone.setStatus('current')
ospfIntfNbrExchangeDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrExchangeDone.setStatus('current')
ospfIntfNbrBadRequests = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrBadRequests.setStatus('current')
ospfIntfNbrBadSequence = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrBadSequence.setStatus('current')
ospfIntfNbrLoadingDone = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrLoadingDone.setStatus('current')
ospfIntfNbrN1way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrN1way.setStatus('current')
ospfIntfNbrRstAd = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrRstAd.setStatus('current')
ospfIntfNbrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrDown.setStatus('current')
ospfIntfNbrN2way = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrN2way.setStatus('current')
ospfIntfChangeStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3), )
if mibBuilder.loadTexts: ospfIntfChangeStats.setStatus('current')
ospfIntfChangeStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfIndex"))
if mibBuilder.loadTexts: ospfIntfChangeStatsEntry.setStatus('current')
ospfIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfIndex.setStatus('current')
ospfIntfHello = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfHello.setStatus('current')
ospfIntfDown = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfDown.setStatus('current')
ospfIntfLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfLoop.setStatus('current')
ospfIntfUnloop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfUnloop.setStatus('current')
ospfIntfWaitTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfWaitTimer.setStatus('current')
ospfIntfBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfBackup.setStatus('current')
ospfIntfNbrChange = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfNbrChange.setStatus('current')
ospfIntfErrorStats = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4), )
if mibBuilder.loadTexts: ospfIntfErrorStats.setStatus('current')
ospfIntfErrorStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIntfErrIndex"))
if mibBuilder.loadTexts: ospfIntfErrorStatsEntry.setStatus('current')
ospfIntfErrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrIndex.setStatus('current')
ospfIntfErrAuthFailure = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrAuthFailure.setStatus('current')
ospfIntfErrNetmaskMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrNetmaskMismatch.setStatus('current')
ospfIntfErrHelloMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrHelloMismatch.setStatus('current')
ospfIntfErrDeadMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrDeadMismatch.setStatus('current')
ospfIntfErrOptionsMismatch = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrOptionsMismatch.setStatus('current')
ospfIntfErrUnknownNbr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfErrUnknownNbr.setStatus('current')
ospfCumRxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxPkts.setStatus('current')
ospfCumTxPkts = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxPkts.setStatus('current')
ospfCumRxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxHello.setStatus('current')
ospfCumTxHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxHello.setStatus('current')
ospfCumRxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxDatabase.setStatus('current')
ospfCumTxDatabase = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxDatabase.setStatus('current')
ospfCumRxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsReqs.setStatus('current')
ospfCumTxlsReqs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsReqs.setStatus('current')
ospfCumRxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsAcks.setStatus('current')
ospfCumTxlsAcks = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsAcks.setStatus('current')
ospfCumRxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumRxlsUpdates.setStatus('current')
ospfCumTxlsUpdates = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumTxlsUpdates.setStatus('current')
ospfCumNbrhello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrhello.setStatus('current')
ospfCumNbrStart = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrStart.setStatus('current')
ospfCumNbrAdjointOk = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrAdjointOk.setStatus('current')
ospfCumNbrNegotiationDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrNegotiationDone.setStatus('current')
ospfCumNbrExchangeDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrExchangeDone.setStatus('current')
ospfCumNbrBadRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrBadRequests.setStatus('current')
ospfCumNbrBadSequence = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrBadSequence.setStatus('current')
ospfCumNbrLoadingDone = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrLoadingDone.setStatus('current')
ospfCumNbrN1way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrN1way.setStatus('current')
ospfCumNbrRstAd = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrRstAd.setStatus('current')
ospfCumNbrDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrDown.setStatus('current')
ospfCumNbrN2way = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumNbrN2way.setStatus('current')
ospfCumIntfHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfHello.setStatus('current')
ospfCumIntfDown = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfDown.setStatus('current')
ospfCumIntfLoop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfLoop.setStatus('current')
ospfCumIntfUnloop = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfUnloop.setStatus('current')
ospfCumIntfWaitTimer = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfWaitTimer.setStatus('current')
ospfCumIntfBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfBackup.setStatus('current')
ospfCumIntfNbrChange = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfCumIntfNbrChange.setStatus('current')
ospfTmrsKckOffHello = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffHello.setStatus('current')
ospfTmrsKckOffRetransmit = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffRetransmit.setStatus('current')
ospfTmrsKckOffLsaLock = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffLsaLock.setStatus('current')
ospfTmrsKckOffLsaAck = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffLsaAck.setStatus('current')
ospfTmrsKckOffDbage = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffDbage.setStatus('current')
ospfTmrsKckOffSummary = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffSummary.setStatus('current')
ospfTmrsKckOffAseExport = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTmrsKckOffAseExport.setStatus('current')
ip6InReceives = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InReceives.setStatus('current')
ip6ForwDatagrams = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ForwDatagrams.setStatus('current')
ip6InDelivers = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InDelivers.setStatus('current')
ip6InDiscards = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InDiscards.setStatus('current')
ip6InUnknownProtos = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InUnknownProtos.setStatus('current')
ip6InAddrErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6InAddrErrors.setStatus('current')
ip6OutRequests = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6OutRequests.setStatus('current')
ip6OutNoRoutes = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6OutNoRoutes.setStatus('current')
ip6ReasmOKs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ReasmOKs.setStatus('current')
ip6ReasmFails = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6ReasmFails.setStatus('current')
ip6icmpInMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpInMsgs.setStatus('current')
ip6icmpOutMsgs = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpOutMsgs.setStatus('current')
ip6icmpInErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpInErrors.setStatus('current')
ip6icmpOutErrors = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6icmpOutErrors.setStatus('current')
icmp6StatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1), )
if mibBuilder.loadTexts: icmp6StatsTable.setStatus('current')
icmp6StatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "icmp6StatsIndx"))
if mibBuilder.loadTexts: icmp6StatsEntry.setStatus('current')
icmp6StatsIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6StatsIndx.setStatus('current')
icmp6IntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6IntfIndex.setStatus('current')
icmp6InMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InMsgs.setStatus('current')
icmp6InErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InErrors.setStatus('current')
icmp6InEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InEchos.setStatus('current')
icmp6InEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InEchoReps.setStatus('current')
icmp6InNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InNSs.setStatus('current')
icmp6InNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InNAs.setStatus('current')
icmp6InRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRSs.setStatus('current')
icmp6InRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRAs.setStatus('current')
icmp6InDestUnreachs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InDestUnreachs.setStatus('current')
icmp6InTimeExcds = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InTimeExcds.setStatus('current')
icmp6InTooBigs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InTooBigs.setStatus('current')
icmp6InParmProbs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InParmProbs.setStatus('current')
icmp6InRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6InRedirects.setStatus('current')
icmp6OutMsgs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutMsgs.setStatus('current')
icmp6OutErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutErrors.setStatus('current')
icmp6OutEchos = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutEchos.setStatus('current')
icmp6OutEchoReps = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutEchoReps.setStatus('current')
icmp6OutNSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutNSs.setStatus('current')
icmp6OutNAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutNAs.setStatus('current')
icmp6OutRSs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRSs.setStatus('current')
icmp6OutRAs = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRAs.setStatus('current')
icmp6OutRedirects = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: icmp6OutRedirects.setStatus('current')
ip6GwStatsTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1), )
if mibBuilder.loadTexts: ip6GwStatsTable.setStatus('current')
ip6GwStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ip6GwStatsIndex"))
if mibBuilder.loadTexts: ip6GwStatsEntry.setStatus('current')
ip6GwStatsIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwStatsIndex.setStatus('current')
ip6GwIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwIndex.setStatus('current')
ip6GwEchoreq = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwEchoreq.setStatus('current')
ip6GwEchoresp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwEchoresp.setStatus('current')
ip6GwFails = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwFails.setStatus('current')
ip6GwMaster = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwMaster.setStatus('current')
ip6IfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6IfIndex.setStatus('current')
ip6GwRetry = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ip6GwRetry.setStatus('current')
ipIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1), )
if mibBuilder.loadTexts: ipIntfInfoTable.setStatus('current')
intfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "intfInfoIndex"))
if mibBuilder.loadTexts: intfInfoEntry.setStatus('current')
intfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoIndex.setStatus('current')
intfInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoIpver.setStatus('current')
intfInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoAddr.setStatus('current')
intfInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoNetMask.setStatus('current')
intfInfoBcastAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoBcastAddr.setStatus('current')
intfInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoVlan.setStatus('current')
intfInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoStatus.setStatus('current')
intfInfoLinkLocalAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: intfInfoLinkLocalAddr.setStatus('current')
ipRouteInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1), )
if mibBuilder.loadTexts: ipRouteInfoTable.setStatus('current')
ipRouteInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRouteInfoIndx"))
if mibBuilder.loadTexts: ipRouteInfoEntry.setStatus('current')
ipRouteInfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoIndx.setStatus('current')
ipRouteInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoDestIp.setStatus('current')
ipRouteInfoMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoMask.setStatus('current')
ipRouteInfoGateway = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway.setStatus('current')
ipRouteInfoTag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("fixed", 1), ("static", 2), ("addr", 3), ("rip", 4), ("broadcast", 5), ("martian", 6), ("multicast", 7), ("vip", 8), ("bgp", 9), ("ospf", 10), ("none", 11)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoTag.setStatus('current')
ipRouteInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("indirect", 1), ("direct", 2), ("local", 3), ("broadcast", 4), ("martian", 5), ("multicast", 6), ("other", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoType.setStatus('current')
ipRouteInfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoInterface.setStatus('current')
ipRouteInfoGateway1 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway1.setStatus('current')
ipRouteInfoGateway2 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoGateway2.setStatus('current')
ipRouteInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRouteInfoMetric.setStatus('current')
routeTableClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: routeTableClear.setStatus('current')
arpInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1), )
if mibBuilder.loadTexts: arpInfoTable.setStatus('current')
arpInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "arpInfoDestIp"))
if mibBuilder.loadTexts: arpInfoEntry.setStatus('current')
arpInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoDestIp.setStatus('current')
arpInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoMacAddr.setStatus('current')
arpInfoVLAN = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoVLAN.setStatus('current')
arpInfoSrcPort = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoSrcPort.setStatus('current')
arpInfoRefPorts = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoRefPorts.setStatus('current')
arpInfoFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("clear", 1), ("unresolved", 2), ("permanent", 3), ("indirect", 4), ("layer4", 5)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: arpInfoFlag.setStatus('current')
arpCacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: arpCacheClear.setStatus('current')
vrrpInfoVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1), )
if mibBuilder.loadTexts: vrrpInfoVirtRtrTable.setStatus('current')
vrrpInfoVirtRtrTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpInfoVirtRtrIndex"))
if mibBuilder.loadTexts: vrrpInfoVirtRtrTableEntry.setStatus('current')
vrrpInfoVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrIndex.setStatus('current')
vrrpInfoVirtRtrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("init", 1), ("master", 2), ("backup", 3), ("holdoff", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrState.setStatus('current')
vrrpInfoVirtRtrOwnership = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("owner", 1), ("renter", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrOwnership.setStatus('current')
vrrpInfoVirtRtrServer = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrServer.setStatus('current')
vrrpInfoVirtRtrProxy = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("yes", 1), ("no", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrProxy.setStatus('current')
vrrpInfoVirtRtrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpInfoVirtRtrPriority.setStatus('current')
ospfGeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1))
ospfStartTime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfStartTime.setStatus('current')
ospfProcessUptime = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfProcessUptime.setStatus('current')
ospfLsTypesSupported = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfLsTypesSupported.setStatus('current')
ospfIntfCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIntfCountForRouter.setStatus('current')
ospfVlinkCountForRouter = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfVlinkCountForRouter.setStatus('current')
ospfTotalNeighbours = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNeighbours.setStatus('current')
ospfNbrInInitState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInInitState.setStatus('current')
ospfNbrInExchState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInExchState.setStatus('current')
ospfNbrInFullState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNbrInFullState.setStatus('current')
ospfTotalAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalAreas.setStatus('current')
ospfTotalTransitAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalTransitAreas.setStatus('current')
ospfTotalNssaAreas = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNssaAreas.setStatus('current')
ospfAreaInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2), )
if mibBuilder.loadTexts: ospfAreaInfoTable.setStatus('current')
ospfAreaInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfAreaInfoIndex"))
if mibBuilder.loadTexts: ospfAreaInfoEntry.setStatus('current')
ospfAreaInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaInfoIndex.setStatus('current')
ospfTotalNumberOfInterfaces = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfTotalNumberOfInterfaces.setStatus('current')
ospfNumberOfInterfacesUp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNumberOfInterfacesUp.setStatus('current')
ospfNumberOfLsdbEntries = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfNumberOfLsdbEntries.setStatus('current')
ospfAreaInfoId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfAreaInfoId.setStatus('current')
ospfIntfInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3), )
if mibBuilder.loadTexts: ospfIntfInfoTable.setStatus('current')
ospfIntfInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfInfoIndex"))
if mibBuilder.loadTexts: ospfIntfInfoEntry.setStatus('current')
ospfIfInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfInfoIndex.setStatus('current')
ospfIfDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfDesignatedRouterIP.setStatus('current')
ospfIfBackupDesignatedRouterIP = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfBackupDesignatedRouterIP.setStatus('current')
ospfIfWaitInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfWaitInterval.setStatus('current')
ospfIfTotalNeighbours = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfTotalNeighbours.setStatus('current')
ospfIfInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfInfoIpAddress.setStatus('current')
ospfIfNbrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5), )
if mibBuilder.loadTexts: ospfIfNbrTable.setStatus('current')
ospfIfNbrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIntfIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "ospfIfNbrIpAddr"))
if mibBuilder.loadTexts: ospfIfNbrEntry.setStatus('current')
ospfIfNbrIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIntfIndex.setStatus('current')
ospfIfNbrIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIpAddr.setStatus('current')
ospfIfNbrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrPriority.setStatus('current')
ospfIfNbrState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("down", 1), ("attempt", 2), ("init", 3), ("twoway", 4), ("exStart", 5), ("exchange", 6), ("loading", 7), ("full", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrState.setStatus('current')
ospfIfNbrDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrDesignatedRtr.setStatus('current')
ospfIfNbrBackupDesignatedRtr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrBackupDesignatedRtr.setStatus('current')
ospfIfNbrIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ospfIfNbrIpAddress.setStatus('current')
gatewayInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1), )
if mibBuilder.loadTexts: gatewayInfoTable.setStatus('current')
gatewayInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "gatewayInfoIndex"))
if mibBuilder.loadTexts: gatewayInfoEntry.setStatus('current')
gatewayInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoIndex.setStatus('current')
gatewayInfoAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoAddr.setStatus('current')
gatewayInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoVlan.setStatus('current')
gatewayInfoStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("failed", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoStatus.setStatus('current')
gatewayInfoAddr6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gatewayInfoAddr6.setStatus('current')
nbrcacheInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1), )
if mibBuilder.loadTexts: nbrcacheInfoTable.setStatus('current')
nbrcacheInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "nbrcacheInfoIndex"))
if mibBuilder.loadTexts: nbrcacheInfoEntry.setStatus('current')
nbrcacheInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoIndex.setStatus('current')
nbrcacheInfoDestIp = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoDestIp.setStatus('current')
nbrcacheInfoState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=NamedValues(("undef", 1), ("reach", 2), ("stale", 3), ("delay", 4), ("probe", 5), ("inval", 6), ("unknown", 7), ("incmp", 8)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoState.setStatus('current')
nbrcacheInfoType = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))).clone(namedValues=NamedValues(("undef", 1), ("other", 2), ("invalid", 3), ("dynamic", 4), ("static", 5), ("local", 6)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoType.setStatus('current')
nbrcacheInfoMacAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), PhysAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoMacAddr.setStatus('current')
nbrcacheInfoVlanId = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoVlanId.setStatus('current')
nbrcacheInfoPortNum = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoPortNum.setStatus('current')
nbrcacheClear = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("clear", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: nbrcacheClear.setStatus('current')
nbrcacheInfoTotDynamicEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotDynamicEntries.setStatus('current')
nbrcacheInfoTotLocalEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotLocalEntries.setStatus('current')
nbrcacheInfoTotOtherEntries = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: nbrcacheInfoTotOtherEntries.setStatus('current')
ipRoute6InfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1), )
if mibBuilder.loadTexts: ipRoute6InfoTable.setStatus('current')
ipRoute6InfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ipRoute6InfoIndx"))
if mibBuilder.loadTexts: ipRoute6InfoEntry.setStatus('current')
ipRoute6InfoIndx = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoIndx.setStatus('current')
ipRoute6InfoDestIp6 = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoDestIp6.setStatus('current')
ipRoute6InfoInterface = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoInterface.setStatus('current')
ipRoute6InfoNextHop = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoNextHop.setStatus('current')
ipRoute6InfoProto = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("isis", 1), ("rip", 2), ("ospf", 3), ("static", 4), ("local", 5), ("bgp", 6), ("stlow", 7), ("ospfi", 8), ("ospfe", 9), ("ospfe2", 10), ("ospfa", 11), ("ripa", 12), ("bgpa", 13), ("igmp", 14), ("unknown", 15), ("natpt", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipRoute6InfoProto.setStatus('current')
rip2GeneralInfo = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1))
ripInfoState = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("on", 1), ("off", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoState.setStatus('current')
ripInfoUpdatePeriod = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoUpdatePeriod.setStatus('current')
ripInfoVip = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoVip.setStatus('current')
ripInfoStaticSupply = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3))).clone(namedValues=NamedValues(("enabled", 2), ("disabled", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoStaticSupply.setStatus('current')
rip2InfoIntfTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2), )
if mibBuilder.loadTexts: rip2InfoIntfTable.setStatus('current')
ripInfoIntfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "ripInfoIntfIndex"))
if mibBuilder.loadTexts: ripInfoIntfEntry.setStatus('current')
ripInfoIntfIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfIndex.setStatus('current')
ripInfoIntfVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ripVersion1", 1), ("ripVersion2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfVersion.setStatus('current')
ripInfoIntfAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfAddress.setStatus('current')
ripInfoIntfState = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfState.setStatus('current')
ripInfoIntfListen = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfListen.setStatus('current')
ripInfoIntfTrigUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfTrigUpdate.setStatus('current')
ripInfoIntfMcastUpdate = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfMcastUpdate.setStatus('current')
ripInfoIntfPoisonReverse = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfPoisonReverse.setStatus('current')
ripInfoIntfSupply = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfSupply.setStatus('current')
ripInfoIntfMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfMetric.setStatus('current')
ripInfoIntfAuth = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("none", 1), ("password", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfAuth.setStatus('current')
ripInfoIntfKey = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfKey.setStatus('current')
ripInfoIntfDefault = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("both", 1), ("listen", 2), ("supply", 3), ("none", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ripInfoIntfDefault.setStatus('current')
rip2RoutesInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1), )
if mibBuilder.loadTexts: rip2RoutesInfoTable.setStatus('current')
rip2RoutesInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoDestIndex"), (0, "ALTEON-CHEETAH-NETWORK-MIB", "rip2RoutesInfoNxtHopIndex"))
if mibBuilder.loadTexts: rip2RoutesInfoEntry.setStatus('current')
rip2RoutesInfoDestIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoDestIndex.setStatus('current')
rip2RoutesInfoNxtHopIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoNxtHopIndex.setStatus('current')
rip2RoutesInfoDestination = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoDestination.setStatus('current')
rip2RoutesInfoIpAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoIpAddress.setStatus('current')
rip2RoutesInfoMetric = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rip2RoutesInfoMetric.setStatus('current')
allowedNwInfoTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1), )
if mibBuilder.loadTexts: allowedNwInfoTable.setStatus('current')
allowedNwInfoEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "allowedNwInfoIndex"))
if mibBuilder.loadTexts: allowedNwInfoEntry.setStatus('current')
allowedNwInfoIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIndex.setStatus('current')
allowedNwInfoIpver = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ipv4", 1), ("ipv6", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIpver.setStatus('current')
allowedNwInfoVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoVlan.setStatus('current')
allowedNwInfoBeginIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoBeginIpAddr.setStatus('current')
allowedNwInfoEndIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoEndIpAddr.setStatus('current')
allowedNwInfoNetMask = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoNetMask.setStatus('current')
allowedNwInfoIp6Prefix = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: allowedNwInfoIp6Prefix.setStatus('current')
vrrpOperVirtRtrTable = MibTable((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1), )
if mibBuilder.loadTexts: vrrpOperVirtRtrTable.setStatus('current')
vrrpOperVirtRtrEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1), ).setIndexNames((0, "ALTEON-CHEETAH-NETWORK-MIB", "vrrpOperVirtRtrIndex"))
if mibBuilder.loadTexts: vrrpOperVirtRtrEntry.setStatus('current')
vrrpOperVirtRtrIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: vrrpOperVirtRtrIndex.setStatus('current')
vrrpOperVirtRtrBackup = MibTableColumn((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpOperVirtRtrBackup.setStatus('current')
vrrpOperVirtRtrGroupBackup = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("backup", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: vrrpOperVirtRtrGroupBackup.setStatus('current')
bgpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1))
garpOper = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2))
bgpOperStart = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1))
bgpOperStop = MibIdentifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2))
bgpOperStartPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStartPeerNum.setStatus('current')
bgpOperStartSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("start", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStartSess.setStatus('current')
bgpOperStopPeerNum = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStopPeerNum.setStatus('current')
bgpOperStopSess = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ok", 1), ("stop", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: bgpOperStopSess.setStatus('current')
garpOperIpAddr = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperIpAddr.setStatus('current')
garpOperVlanNumber = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4090))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperVlanNumber.setStatus('current')
garpOperSend = MibScalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("ok", 1), ("send", 2), ("error", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: garpOperSend.setStatus('current')
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ipCurCfgIntfAddr=ipCurCfgIntfAddr, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, ipNewCfgBootpAddr=ipNewCfgBootpAddr, arpStatMaxEntries=arpStatMaxEntries, ip6InUnknownProtos=ip6InUnknownProtos, icmp6InRSs=icmp6InRSs, bgpNewCfgAggrState=bgpNewCfgAggrState, ospfCurCfgAreaId=ospfCurCfgAreaId, gatewayInfoIndex=gatewayInfoIndex, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, gatewayInfoEntry=gatewayInfoEntry, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, ospfIntfNbrRstAd=ospfIntfNbrRstAd, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ipNewCfgIntfMask=ipNewCfgIntfMask, ipGeneralCfg=ipGeneralCfg, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, icmp6OutRSs=icmp6OutRSs, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, rip2Info=rip2Info, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ripCurCfgIntfAuth=ripCurCfgIntfAuth, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgGwInterval=ipNewCfgGwInterval, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ip6IfIndex=ip6IfIndex, ospfTotalNssaAreas=ospfTotalNssaAreas, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ospfNewCfgIntfId=ospfNewCfgIntfId, routeStatHighWater=routeStatHighWater, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfCumRxlsReqs=ospfCumRxlsReqs, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ripCurCfgIntfIndex=ripCurCfgIntfIndex, rip2Stats=rip2Stats, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, ospfCumTxPkts=ospfCumTxPkts, ripStatInPackets=ripStatInPackets, ospfAreaErrIndex=ospfAreaErrIndex, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6StatsEntry=icmp6StatsEntry, tcpStats=tcpStats, ipForwardCfg=ipForwardCfg, vrrpStats=vrrpStats, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ripCurCfgIntfListen=ripCurCfgIntfListen, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ripInfoState=ripInfoState, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ripInfoIntfVersion=ripInfoIntfVersion, ospfCumIntfUnloop=ospfCumIntfUnloop, ifStatsIndex=ifStatsIndex, ospfProcessUptime=ospfProcessUptime, bgpOperStopSess=bgpOperStopSess, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, nbrcacheInfoIndex=nbrcacheInfoIndex, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ipNewCfgAspathAction=ipNewCfgAspathAction, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, dnsStats=dnsStats, rip2CurCfgState=rip2CurCfgState, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpOper=vrrpOper, ipNewCfgRmapLp=ipNewCfgRmapLp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, icmp6InRAs=icmp6InRAs, ipNewCfgGwRetry=ipNewCfgGwRetry, ipCurCfgGwPriority=ipCurCfgGwPriority, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfIntfRxPkts=ospfIntfRxPkts, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ripNewCfgIntfMetric=ripNewCfgIntfMetric, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, ospfCumRxlsAcks=ospfCumRxlsAcks, ospfAreaTxHello=ospfAreaTxHello, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipNewCfgIntfState=ipNewCfgIntfState, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ip6GwStatsEntry=ip6GwStatsEntry, ipStaticRouteCfg=ipStaticRouteCfg, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, bgpGeneral=bgpGeneral, ospfAreaIntfIndex=ospfAreaIntfIndex, arpInfoDestIp=arpInfoDestIp, ripStatOutRequestPkts=ripStatOutRequestPkts, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ospfTotalNeighbours=ospfTotalNeighbours, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, ripInfoIntfMetric=ripInfoIntfMetric, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ospfIfNbrState=ospfIfNbrState, gatewayInfoTable=gatewayInfoTable, ospfNewCfgHostIndex=ospfNewCfgHostIndex, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfIntfTxHello=ospfIntfTxHello, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, ipCurCfgAlistEntry=ipCurCfgAlistEntry, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTableMaxSize=ospfIntfTableMaxSize, ipAspathTableMax=ipAspathTableMax, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, ipCurCfgNwfIndex=ipCurCfgNwfIndex, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfIntfRxDatabase=ospfIntfRxDatabase, icmp6InDestUnreachs=icmp6InDestUnreachs, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, vrrpStatOutAdvers=vrrpStatOutAdvers, icmp6OutMsgs=icmp6OutMsgs, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfCurCfgIntfCost=ospfCurCfgIntfCost, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfIntfTxlsReqs=ospfIntfTxlsReqs, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, vrrpNewCfgIfTable=vrrpNewCfgIfTable, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, nbrcacheInfoType=nbrcacheInfoType, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, ipNwfCfg=ipNwfCfg, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ipNewCfgNwfState=ipNewCfgNwfState, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ripInfoIntfSupply=ripInfoIntfSupply, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipNewCfgASNumber=ipNewCfgASNumber, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, ospfCurCfgHostTable=ospfCurCfgHostTable, ospfCumIntfChangeStats=ospfCumIntfChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, ospfIntfBackup=ospfIntfBackup, ipRouteInfoIndx=ipRouteInfoIndx, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, dnsStatOutDnsRequests=dnsStatOutDnsRequests, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, bgpOper=bgpOper, ospfAreaInfoTable=ospfAreaInfoTable, ospfCumNbrBadSequence=ospfCumNbrBadSequence, ipNwfTableMax=ipNwfTableMax, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, ip6OutRequests=ip6OutRequests, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ipNewCfgGwArp=ipNewCfgGwArp, ospfCurCfgHostState=ospfCurCfgHostState, icmp6OutRAs=icmp6OutRAs, allowedNwInfo=allowedNwInfo, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, icmp6InTimeExcds=icmp6InTimeExcds, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfNewCfgLsdb=ospfNewCfgLsdb, allowedNwInfoNetMask=allowedNwInfoNetMask, ip6InAddrErrors=ip6InAddrErrors, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCumTxHello=ospfCumTxHello, ipRouteInfoMetric=ipRouteInfoMetric, ip6InReceives=ip6InReceives, ospfCumIntfHello=ospfCumIntfHello, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ospfCumIntfBackup=ospfCumIntfBackup, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, nbrcacheClear=nbrcacheClear, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ripGeneral=ripGeneral, layer3Configs=layer3Configs, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ipRoute6InfoIndx=ipRoute6InfoIndx, ipCurCfgAspathAS=ipCurCfgAspathAS, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, icmp6InRedirects=icmp6InRedirects, gatewayInfoAddr6=gatewayInfoAddr6, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgGwIpVer=ipCurCfgGwIpVer, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ip6ReasmFails=ip6ReasmFails, ipIntfInfoTable=ipIntfInfoTable, ipRouteInfoEntry=ipRouteInfoEntry, ipCurCfgGwTable=ipCurCfgGwTable, ipRouteInfoType=ipRouteInfoType, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfCumTxlsReqs=ospfCumTxlsReqs, intfInfoBcastAddr=intfInfoBcastAddr, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, rip2RoutesInfo=rip2RoutesInfo, ospfCumRxDatabase=ospfCumRxDatabase, ipNewCfgGwPriority=ipNewCfgGwPriority, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, bgpCurCfgPeerState=bgpCurCfgPeerState, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, ospfGeneralStats=ospfGeneralStats, ip6GwEchoresp=ip6GwEchoresp, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipCurCfgAlistIndex=ipCurCfgAlistIndex, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, icmp6InMsgs=icmp6InMsgs, bgpOperStart=bgpOperStart, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ip6icmpOutErrors=ip6icmpOutErrors, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ip6GwRetry=ip6GwRetry, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, ipStaticArpCfg=ipStaticArpCfg, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ipNewCfgRmapState=ipNewCfgRmapState, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ospfRouteRedistribution=ospfRouteRedistribution, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, arpInfoMacAddr=arpInfoMacAddr, ripNewCfgIntfSupply=ripNewCfgIntfSupply, ripCurCfgIntfState=ripCurCfgIntfState, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, icmp6IntfIndex=icmp6IntfIndex, dnsCfg=dnsCfg, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ipCurCfgGwInterval=ipCurCfgGwInterval, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfIfTotalNeighbours=ospfIfTotalNeighbours, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ospfCurCfgIntfId=ospfCurCfgIntfId, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfAreaNbrRstAd=ospfAreaNbrRstAd, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ipNewCfgAlistTable=ipNewCfgAlistTable, gatewayInfoStatus=gatewayInfoStatus, ipNewCfgRmapDelete=ipNewCfgRmapDelete, ipNewCfgGwMetric=ipNewCfgGwMetric, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, ipCurCfgNwfEntry=ipCurCfgNwfEntry, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfIntfNbrN2way=ospfIntfNbrN2way, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ospfAreaErrorStats=ospfAreaErrorStats, ospfCumNbrhello=ospfCumNbrhello, ipAlistTableMax=ipAlistTableMax, ospfCumIntfDown=ospfCumIntfDown, ipRmapTableMax=ipRmapTableMax, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ripInfoIntfKey=ripInfoIntfKey, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfAreaIntfLoop=ospfAreaIntfLoop, ospfRedistributeIbgp=ospfRedistributeIbgp, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ripStatInBadVersion=ripStatInBadVersion, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ospfCumIntfLoop=ospfCumIntfLoop, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgGwState=ipCurCfgGwState, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ipCurCfgRmapPrec=ipCurCfgRmapPrec, ipNewCfgRmapWeight=ipNewCfgRmapWeight, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, arpInfoRefPorts=arpInfoRefPorts, ospfIntfDown=ospfIntfDown, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoTable=ipRoute6InfoTable, ospfIntfLoop=ospfIntfLoop, ifStatsTable=ifStatsTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipBootpCfg=ipBootpCfg, nbrcacheInfo=nbrcacheInfo, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfAreaInfoEntry=ospfAreaInfoEntry, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ospfAreaIntfDown=ospfAreaIntfDown, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, vrrpStatInAdvers=vrrpStatInAdvers, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, allowedNwInfoIpver=allowedNwInfoIpver, ipNewCfgAspathTable=ipNewCfgAspathTable, ospfGeneralInfo=ospfGeneralInfo, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ripCurCfgIntfSupply=ripCurCfgIntfSupply, icmp6OutErrors=icmp6OutErrors, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, ipNewCfgNwfAddr=ipNewCfgNwfAddr, arpInfoEntry=arpInfoEntry, ipCurCfgIntfState=ipCurCfgIntfState, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr, arpStats=arpStats, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ipNewCfgAlistNwf=ipNewCfgAlistNwf, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ipInterfaceTableMax=ipInterfaceTableMax, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ospfIntfRxHello=ospfIntfRxHello, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, icmp6StatsIndx=icmp6StatsIndx, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfAreaTxlsReqs=ospfAreaTxlsReqs, garpOper=garpOper, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfStats=ospfStats, ip6ForwDatagrams=ip6ForwDatagrams, ospfIfInfoIndex=ospfIfInfoIndex, rip2NewCfgVip=rip2NewCfgVip, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, ipNewCfgBootpState=ipNewCfgBootpState, ospfInterface=ospfInterface, bgpOperStop=bgpOperStop, garpOperVlanNumber=garpOperVlanNumber, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, ospfCumRxHello=ospfCumRxHello, vrrpNewCfgGenState=vrrpNewCfgGenState, PYSNMP_MODULE_ID=layer3, rip2Cfg=rip2Cfg, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, ipNewCfgIntfIndex=ipNewCfgIntfIndex, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, ipClearStats=ipClearStats, gatewayInfo=gatewayInfo, ospfAreaRxTxStats=ospfAreaRxTxStats, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfCumTxlsUpdates=ospfCumTxlsUpdates, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ipRoute6InfoEntry=ipRoute6InfoEntry, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ipCurCfgGwMetric=ipCurCfgGwMetric, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCumIntfNbrChange=ospfCumIntfNbrChange, ospfNewCfgHostDelete=ospfNewCfgHostDelete, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, intfInfoEntry=intfInfoEntry, bgpNewCfgState=bgpNewCfgState, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ipCurCfgRouterID=ipCurCfgRouterID, icmp6InNSs=icmp6InNSs, icmp6InParmProbs=icmp6InParmProbs, ipCurCfgNwfState=ipCurCfgNwfState, ipNewCfgAlistEntry=ipNewCfgAlistEntry, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfInfoTable=ospfIntfInfoTable, ospfGeneral=ospfGeneral, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdNewCfgState=ipFwdNewCfgState, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfIfInfoIpAddress=ospfIfInfoIpAddress, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ipCurCfgAlistAction=ipCurCfgAlistAction, ripStatInBadSourcePort=ripStatInBadSourcePort, ipCurCfgAlistState=ipCurCfgAlistState, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, nbrcacheInfoState=nbrcacheInfoState, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfAreaTxPkts=ospfAreaTxPkts, routeStatMaxEntries=routeStatMaxEntries, ipNewCfgNwfEntry=ipNewCfgNwfEntry, ipRouteInfoMask=ipRouteInfoMask, dnsNewCfgDomainName=dnsNewCfgDomainName, ospfNbrInFullState=ospfNbrInFullState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipCurCfgRmapIndex=ipCurCfgRmapIndex, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ripStatInRequestPkts=ripStatInRequestPkts, arpInfoSrcPort=arpInfoSrcPort, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, bgpPeerTableMax=bgpPeerTableMax, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipCurCfgBootpAddr=ipCurCfgBootpAddr, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfAreaRxlsAcks=ospfAreaRxlsAcks, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ospfCurCfgRipMetric=ospfCurCfgRipMetric, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, ipCurCfgGwVlan=ipCurCfgGwVlan, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfNewCfgRangeState=ospfNewCfgRangeState, ospfTotalAreas=ospfTotalAreas, ipCurCfgNwfAddr=ipCurCfgNwfAddr, ipCurCfgAspathState=ipCurCfgAspathState, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, rip2NewCfgState=rip2NewCfgState, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, ip6ReasmOKs=ip6ReasmOKs, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ospfIntfHello=ospfIntfHello, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, icmp6InErrors=icmp6InErrors, nbrcacheInfoTable=nbrcacheInfoTable, ip6icmpInMsgs=ip6icmpInMsgs, ipNewCfgRmapTable=ipNewCfgRmapTable, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgAlistTable=ipCurCfgAlistTable, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, ripNewCfgIntfDefault=ripNewCfgIntfDefault, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ipRouteInfoTag=ipRouteInfoTag, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipRouteInfoGateway1=ipRouteInfoGateway1, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, ipFwdGeneralCfg=ipFwdGeneralCfg, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ospfIntfTxPkts=ospfIntfTxPkts, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ospfRedistributeStatic=ospfRedistributeStatic, ospfCumNbrStart=ospfCumNbrStart, ospfCumRxTxStats=ospfCumRxTxStats, garpOperSend=garpOperSend, ipNewCfgGwIndex=ipNewCfgGwIndex, ospfIntfErrIndex=ospfIntfErrIndex, icmp6Stats=icmp6Stats, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ripStatInBadZeros=ripStatInBadZeros, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ospfAreaChangeStats=ospfAreaChangeStats, ospfHostTableMaxSize=ospfHostTableMaxSize, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6GwStatsTable=ip6GwStatsTable, ospfCumNbrN2way=ospfCumNbrN2way, ospfNewCfgHostCost=ospfNewCfgHostCost, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, ipOper=ipOper, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ripStatInBadSizePkts=ripStatInBadSizePkts, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpOperStartSess=bgpOperStartSess, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, ipRouteInfoInterface=ipRouteInfoInterface, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, icmp6InEchos=icmp6InEchos, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, arpCacheClear=arpCacheClear, nbrcacheInfoEntry=nbrcacheInfoEntry, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, tcpStatCurInConn=tcpStatCurInConn, ripNewCfgIntfVersion=ripNewCfgIntfVersion, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, arpInfoVLAN=arpInfoVLAN, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfTotalTransitAreas=ospfTotalTransitAreas, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6GwIndex=ip6GwIndex, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, ospfIntfNbrDown=ospfIntfNbrDown, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfNewCfgIntfState=ospfNewCfgIntfState, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, bgpCurCfgASNumber=bgpCurCfgASNumber, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, ospfIntfRxTxIndex=ospfIntfRxTxIndex, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ospfCurCfgAreaTable=ospfCurCfgAreaTable, ip6GwEchoreq=ip6GwEchoreq, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, rip2InfoIntfTable=rip2InfoIntfTable, ip6Stats=ip6Stats, ipNewCfgAlistState=ipNewCfgAlistState, ospfIntfNbrStart=ospfIntfNbrStart, allowedNwInfoVlan=allowedNwInfoVlan, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, ospfIntfUnloop=ospfIntfUnloop, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ospfNbrInExchState=ospfNbrInExchState, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, ospfNewCfgState=ospfNewCfgState, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ip6GwMaster=ip6GwMaster, ospfIntfNbrChange=ospfIntfNbrChange, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ipCurCfgAspathEntry=ipCurCfgAspathEntry, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ripCurCfgIntfDefault=ripCurCfgIntfDefault, ipCurCfgAspathTable=ipCurCfgAspathTable, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, icmp6InNAs=icmp6InNAs, ipFwdCurCfgPortState=ipFwdCurCfgPortState, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, arpCfg=arpCfg, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ipNewCfgGwTable=ipNewCfgGwTable, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, vrrpCfg=vrrpCfg, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, ipRouteInfoDestIp=ipRouteInfoDestIp, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaRxHello=ospfAreaRxHello, ospfAreaInfoIndex=ospfAreaInfoIndex, ipNewCfgGwVlan=ipNewCfgGwVlan, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, nbrcacheInfoPortNum=nbrcacheInfoPortNum, bgpOperStopPeerNum=bgpOperStopPeerNum, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrN2way=ospfAreaNbrN2way, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgASNumber=ipCurCfgASNumber, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ripStatInBadSourceIP=ripStatInBadSourceIP, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, icmp6OutRedirects=icmp6OutRedirects, ospfAreaTxDatabase=ospfAreaTxDatabase, ospfIntfTxlsAcks=ospfIntfTxlsAcks, ospfAreaIntfHello=ospfAreaIntfHello, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ripInfoIntfDefault=ripInfoIntfDefault, ospfCumNbrChangeStats=ospfCumNbrChangeStats, allowedNwInfoTable=allowedNwInfoTable, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, ospfLsTypesSupported=ospfLsTypesSupported, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ipCurCfgNwfMask=ipCurCfgNwfMask, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfCurCfgAreaState=ospfCurCfgAreaState, bgpNewCfgPeerState=bgpNewCfgPeerState, ospfCumNbrN1way=ospfCumNbrN1way, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, arpInfoTable=arpInfoTable, ipFwdCurCfgState=ipFwdCurCfgState, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, gatewayInfoVlan=gatewayInfoVlan, routeStats=routeStats, ifStatsEntry=ifStatsEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, ipRoute6Info=ipRoute6Info, ipGatewayCfg=ipGatewayCfg, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ripInfoStaticSupply=ripInfoStaticSupply, ospfNewCfgIntfDead=ospfNewCfgIntfDead, intfInfoVlan=intfInfoVlan, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIfNbrPriority=ospfIfNbrPriority, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpCurCfgIfTable=vrrpCurCfgIfTable, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, ospfRedistributeEbgp=ospfRedistributeEbgp, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, intfInfoNetMask=intfInfoNetMask, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, routeTableClear=routeTableClear)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfIntfCountForRouter=ospfIntfCountForRouter, layer3Stats=layer3Stats, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, ipRoute6InfoProto=ipRoute6InfoProto, ospfRedistributeRip=ospfRedistributeRip, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, icmp6StatsTable=icmp6StatsTable, rip2GeneralInfo=rip2GeneralInfo, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, icmp6OutNSs=icmp6OutNSs, ipRouteInfoGateway=ipRouteInfoGateway, bgpCfg=bgpCfg, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, layer3Oper=layer3Oper, icmp6OutEchos=icmp6OutEchos, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfIntfNbrIndex=ospfIntfNbrIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetric=ipNewCfgRmapMetric, bgpAggrTableMax=bgpAggrTableMax, ip6InDelivers=ip6InDelivers, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipNewCfgRmapEntry=ipNewCfgRmapEntry, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, tcpStatCurConn=tcpStatCurConn, icmp6OutEchoReps=icmp6OutEchoReps, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, ospfCurCfgHostIndex=ospfCurCfgHostIndex, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, ripInfoIntfListen=ripInfoIntfListen, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ospfinfo=ospfinfo, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfAreaRxPkts=ospfAreaRxPkts, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, ripNewCfgIntfAuth=ripNewCfgIntfAuth, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, vrrpCurCfgGenState=vrrpCurCfgGenState, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfIntfIndex=ospfIntfIndex, ripInfoIntfAddress=ripInfoIntfAddress, ospfIntfInfoEntry=ospfIntfInfoEntry, ospfNewCfgHostState=ospfNewCfgHostState, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, ripStatInResponsePkts=ripStatInResponsePkts, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ospfIntfRxlsAcks=ospfIntfRxlsAcks, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ipRoutingInfo=ipRoutingInfo, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, bgpCurCfgState=bgpCurCfgState, rip2CurCfgVip=rip2CurCfgVip, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ospfIfNbrTable=ospfIfNbrTable, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ipRouteInfoTable=ipRouteInfoTable, ip6OutNoRoutes=ip6OutNoRoutes, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfIntfRxTxStats=ospfIntfRxTxStats, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, ripInfoIntfEntry=ripInfoIntfEntry, rip2RoutesInfoTable=rip2RoutesInfoTable, ipCurCfgGwArp=ipCurCfgGwArp, gatewayInfoAddr=gatewayInfoAddr, clearStats=clearStats, arpInfo=arpInfo, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, vrrpIfTableMaxSize=vrrpIfTableMaxSize, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ospfNewCfgAreaType=ospfNewCfgAreaType, ospfCumNbrRstAd=ospfCumNbrRstAd, ip6InDiscards=ip6InDiscards, ip6icmpOutMsgs=ip6icmpOutMsgs, ipNewCfgAlistMetric=ipNewCfgAlistMetric, arpStatEntries=arpStatEntries, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ospfAreaNbrhello=ospfAreaNbrhello, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ifClearStats=ifClearStats, icmp6InEchoReps=icmp6InEchoReps, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ripNewCfgIntfState=ripNewCfgIntfState, ospfCfg=ospfCfg, ripNewCfgIntfEntry=ripNewCfgIntfEntry, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, ipNewCfgRmapAp=ipNewCfgRmapAp, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ripInfoIntfAuth=ripInfoIntfAuth, ospfAreaNbrStart=ospfAreaNbrStart, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, ripNewCfgIntfListen=ripNewCfgIntfListen, ipGatewayTableMax=ipGatewayTableMax, ripNewCfgIntfIndex=ripNewCfgIntfIndex, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipNewCfgAlistAction=ipNewCfgAlistAction, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfCurCfgState=ospfCurCfgState, ipCurCfgAspathAction=ipCurCfgAspathAction, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ospfCumNbrDown=ospfCumNbrDown, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ospfCurCfgAreaType=ospfCurCfgAreaType, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpGeneral=vrrpGeneral, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, bgpNewCfgPeerTable=bgpNewCfgPeerTable, intfInfoIndex=intfInfoIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, ipCurCfgBootpState=ipCurCfgBootpState, ospfCurCfgLsdb=ospfCurCfgLsdb, ospfCurCfgRangeState=ospfCurCfgRangeState, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, routeStatEntries=routeStatEntries, ospfAreaInfoId=ospfAreaInfoId, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, ospfAreaNbrN1way=ospfAreaNbrN1way, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, allowedNwInfoIndex=allowedNwInfoIndex, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, bgpOperStartPeerNum=bgpOperStartPeerNum, intfInfoStatus=intfInfoStatus, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, bgpCurCfgAggrState=bgpCurCfgAggrState, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfIntfErrorStats=ospfIntfErrorStats, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ipCurCfgGwRetry=ipCurCfgGwRetry, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ipNewCfgRouterID=ipNewCfgRouterID, ospfStartTime=ospfStartTime, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ipCurCfgAspathIndex=ipCurCfgAspathIndex, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, ospfAreaTxlsAcks=ospfAreaTxlsAcks, allowedNwInfoEntry=allowedNwInfoEntry, icmp6InTooBigs=icmp6InTooBigs, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ip6gwStats=ip6gwStats, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, rip2RoutesInfoEntry=rip2RoutesInfoEntry, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfCumRxPkts=ospfCumRxPkts, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ripNewCfgIntfKey=ripNewCfgIntfKey, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfNbrEntry=ospfIfNbrEntry, ospfArea=ospfArea, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, arpStatHighWater=arpStatHighWater, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, ipCurCfgRmapAp=ipCurCfgRmapAp, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ripStatOutPackets=ripStatOutPackets, ospfAreaNbrDown=ospfAreaNbrDown, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, ipRmapCfg=ipRmapCfg, ospfNbrInInitState=ospfNbrInInitState, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipIntfInfo=ipIntfInfo, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ospfIntfWaitTimer=ospfIntfWaitTimer, ospfIfWaitInterval=ospfIfWaitInterval, ripInfoVip=ripInfoVip, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, garpOperIpAddr=garpOperIpAddr, ipCurCfgGwEntry=ipCurCfgGwEntry, ipCurCfgGwIndex=ipCurCfgGwIndex, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ipInterfaceCfg=ipInterfaceCfg, vrrpInfo=vrrpInfo, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfCurCfgHostCost=ospfCurCfgHostCost)
mibBuilder.exportSymbols("ALTEON-CHEETAH-NETWORK-MIB", ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ospfIntfNbrhello=ospfIntfNbrhello, ospfRedistributeFixed=ospfRedistributeFixed, ipNewCfgGwEntry=ipNewCfgGwEntry, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, ipFwdNewCfgPortState=ipFwdNewCfgPortState, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ipNewCfgGwDelete=ipNewCfgGwDelete, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ipNewCfgGwState=ipNewCfgGwState, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, intfInfoAddr=intfInfoAddr, ospfCumTxDatabase=ospfCumTxDatabase, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, ripCurCfgIntfKey=ripCurCfgIntfKey, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, intfInfoIpver=intfInfoIpver, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ipNewCfgRmapPrec=ipNewCfgRmapPrec, arpInfoFlag=arpInfoFlag, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ripInfoIntfIndex=ripInfoIntfIndex, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, ipCurCfgRmapLp=ipCurCfgRmapLp, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfIntfChangeStats=ospfIntfChangeStats, layer3Info=layer3Info, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfCumTxlsAcks=ospfCumTxlsAcks, ip6GwStatsIndex=ip6GwStatsIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, ipNewCfgIntfDelete=ipNewCfgIntfDelete, ipRouteInfoGateway2=ipRouteInfoGateway2, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, ospfIntfTxDatabase=ospfIntfTxDatabase, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, ospfNewCfgRipMetric=ospfNewCfgRipMetric, ipNewCfgAspathIndex=ipNewCfgAspathIndex, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, ospfAreaRxDatabase=ospfAreaRxDatabase, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ripInfoIntfState=ripInfoIntfState, layer3=layer3, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, ripStatRouteTimeout=ripStatRouteTimeout, icmp6OutNAs=icmp6OutNAs, ip6GwFails=ip6GwFails, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, ip6icmpInErrors=ip6icmpInErrors, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgRmapEntry=ipCurCfgRmapEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ipNewCfgAspathDelete=ipNewCfgAspathDelete, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry)
|
(aws_switch,) = mibBuilder.importSymbols('ALTEON-ROOT-MIB', 'aws-switch')
(object_identifier, octet_string, integer) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'OctetString', 'Integer')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_range_constraint, value_size_constraint, single_value_constraint, constraints_union, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueRangeConstraint', 'ValueSizeConstraint', 'SingleValueConstraint', 'ConstraintsUnion', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(notification_type, counter32, ip_address, object_identity, integer32, gauge32, bits, module_identity, counter64, unsigned32, time_ticks, iso, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier) = mibBuilder.importSymbols('SNMPv2-SMI', 'NotificationType', 'Counter32', 'IpAddress', 'ObjectIdentity', 'Integer32', 'Gauge32', 'Bits', 'ModuleIdentity', 'Counter64', 'Unsigned32', 'TimeTicks', 'iso', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier')
(display_string, textual_convention, phys_address) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention', 'PhysAddress')
layer3 = module_identity((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3))
layer3.setRevisions(('2009-08-05 00:00',))
if mibBuilder.loadTexts:
layer3.setLastUpdated('200908050000Z')
if mibBuilder.loadTexts:
layer3.setOrganization('Radware Ltd.')
layer3_configs = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1))
layer3_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2))
layer3_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3))
layer3_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4))
ip_interface_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1))
ip_gateway_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2))
ip_static_route_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3))
ip_forward_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4))
vrrp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6))
arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7))
ip_bootp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8))
dns_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9))
ip_nwf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10))
ip_rmap_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11))
bgp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12))
ospf_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13))
ip_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14))
ip_static_arp_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15))
rip2_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18))
arp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2))
route_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3))
dns_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4))
vrrp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5))
ospf_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6))
clear_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7))
ip6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10))
icmp6_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11))
ip6gw_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12))
rip2_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13))
tcp_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14))
ip_routing_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1))
arp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2))
vrrp_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3))
ospfinfo = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4))
gateway_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5))
nbrcache_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7))
ip_route6_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8))
ip_intf_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9))
rip2_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10))
rip2_routes_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11))
allowed_nw_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12))
vrrp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1))
ip_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2))
ip_interface_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipInterfaceTableMax.setStatus('current')
ip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2))
if mibBuilder.loadTexts:
ipCurCfgIntfTable.setStatus('current')
ip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ipCurCfgIntfEntry.setStatus('current')
ip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIndex.setStatus('current')
ip_cur_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfAddr.setStatus('current')
ip_cur_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfMask.setStatus('current')
ip_cur_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfBroadcast.setStatus('obsolete')
ip_cur_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfVlan.setStatus('current')
ip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfState.setStatus('current')
ip_cur_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfBootpRelay.setStatus('current')
ip_cur_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIpVer.setStatus('current')
ip_cur_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfIpv6Addr.setStatus('current')
ip_cur_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfPrefixLen.setStatus('current')
ip_cur_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 2, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgIntfRouteAdv.setStatus('current')
ip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3))
if mibBuilder.loadTexts:
ipNewCfgIntfTable.setStatus('current')
ip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ipNewCfgIntfEntry.setStatus('current')
ip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgIntfIndex.setStatus('current')
ip_new_cfg_intf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfAddr.setStatus('current')
ip_new_cfg_intf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfMask.setStatus('current')
ip_new_cfg_intf_broadcast = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfBroadcast.setStatus('obsolete')
ip_new_cfg_intf_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfVlan.setStatus('current')
ip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfState.setStatus('current')
ip_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfDelete.setStatus('current')
ip_new_cfg_intf_bootp_relay = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfBootpRelay.setStatus('current')
ip_new_cfg_intf_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfIpVer.setStatus('current')
ip_new_cfg_intf_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfIpv6Addr.setStatus('current')
ip_new_cfg_intf_prefix_len = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfPrefixLen.setStatus('current')
ip_new_cfg_intf_route_adv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 1, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgIntfRouteAdv.setStatus('current')
ip_cur_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwMetric.setStatus('current')
ip_new_cfg_gw_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('strict', 1), ('roundrobin', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgGwMetric.setStatus('current')
ip_gateway_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipGatewayTableMax.setStatus('current')
ip_cur_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4))
if mibBuilder.loadTexts:
ipCurCfgGwTable.setStatus('current')
ip_cur_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgGwIndex'))
if mibBuilder.loadTexts:
ipCurCfgGwEntry.setStatus('current')
ip_cur_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIndex.setStatus('current')
ip_cur_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwAddr.setStatus('current')
ip_cur_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwInterval.setStatus('current')
ip_cur_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwRetry.setStatus('current')
ip_cur_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwState.setStatus('current')
ip_cur_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwArp.setStatus('current')
ip_cur_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwVlan.setStatus('current')
ip_cur_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwPriority.setStatus('current')
ip_cur_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIpVer.setStatus('current')
ip_cur_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 4, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgGwIpv6Addr.setStatus('current')
ip_new_cfg_gw_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5))
if mibBuilder.loadTexts:
ipNewCfgGwTable.setStatus('current')
ip_new_cfg_gw_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgGwIndex'))
if mibBuilder.loadTexts:
ipNewCfgGwEntry.setStatus('current')
ip_new_cfg_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgGwIndex.setStatus('current')
ip_new_cfg_gw_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwAddr.setStatus('current')
ip_new_cfg_gw_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 60))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwInterval.setStatus('current')
ip_new_cfg_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwRetry.setStatus('current')
ip_new_cfg_gw_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwState.setStatus('current')
ip_new_cfg_gw_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwDelete.setStatus('current')
ip_new_cfg_gw_arp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwArp.setStatus('current')
ip_new_cfg_gw_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 8), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwVlan.setStatus('current')
ip_new_cfg_gw_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('low', 1), ('high', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwPriority.setStatus('current')
ip_new_cfg_gw_ip_ver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwIpVer.setStatus('current')
ip_new_cfg_gw_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 2, 5, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgGwIpv6Addr.setStatus('current')
ip_static_route_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticRouteTableMaxSize.setStatus('current')
ip_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2))
if mibBuilder.loadTexts:
ipCurCfgStaticRouteTable.setStatus('current')
ip_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipCurCfgStaticRouteEntry.setStatus('current')
ip_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteIndx.setStatus('current')
ip_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteDestIp.setStatus('current')
ip_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteMask.setStatus('current')
ip_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteGateway.setStatus('current')
ip_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticRouteInterface.setStatus('current')
ip_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3))
if mibBuilder.loadTexts:
ipNewCfgStaticRouteTable.setStatus('current')
ip_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipNewCfgStaticRouteEntry.setStatus('current')
ip_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteIndx.setStatus('current')
ip_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteDestIp.setStatus('current')
ip_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteMask.setStatus('current')
ip_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 4), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteGateway.setStatus('current')
ip_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteAction.setStatus('current')
ip_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 3, 1, 6), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticRouteInterface.setStatus('current')
ipv6_cur_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4))
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteTable.setStatus('current')
ipv6_cur_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6CurCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteEntry.setStatus('current')
ipv6_cur_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteIndx.setStatus('current')
ipv6_cur_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteDestIp.setStatus('current')
ipv6_cur_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteMask.setStatus('current')
ipv6_cur_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteGateway.setStatus('current')
ipv6_cur_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipv6CurCfgStaticRouteInterface.setStatus('current')
ipv6_new_cfg_static_route_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5))
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteTable.setStatus('current')
ipv6_new_cfg_static_route_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipv6NewCfgStaticRouteIndx'))
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteEntry.setStatus('current')
ipv6_new_cfg_static_route_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 1), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteIndx.setStatus('current')
ipv6_new_cfg_static_route_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteDestIp.setStatus('current')
ipv6_new_cfg_static_route_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteMask.setStatus('current')
ipv6_new_cfg_static_route_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteGateway.setStatus('current')
ipv6_new_cfg_static_route_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteAction.setStatus('current')
ipv6_new_cfg_static_route_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 3, 5, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipv6NewCfgStaticRouteInterface.setStatus('current')
rip_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1))
if mibBuilder.loadTexts:
ripCurCfgIntfTable.setStatus('current')
rip_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ripCurCfgIntfEntry.setStatus('current')
rip_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfIndex.setStatus('current')
rip_cur_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfVersion.setStatus('current')
rip_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfState.setStatus('current')
rip_cur_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfListen.setStatus('current')
rip_cur_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfDefListen.setStatus('obsolete')
rip_cur_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfTrigUpdate.setStatus('current')
rip_cur_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfMcastUpdate.setStatus('current')
rip_cur_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfPoisonReverse.setStatus('current')
rip_cur_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfSupply.setStatus('current')
rip_cur_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfMetric.setStatus('current')
rip_cur_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfAuth.setStatus('current')
rip_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfKey.setStatus('current')
rip_cur_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripCurCfgIntfDefault.setStatus('current')
rip_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2))
if mibBuilder.loadTexts:
ripNewCfgIntfTable.setStatus('current')
rip_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ripNewCfgIntfEntry.setStatus('current')
rip_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripNewCfgIntfIndex.setStatus('current')
rip_new_cfg_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2), ('both', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfVersion.setStatus('current')
rip_new_cfg_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfSupply.setStatus('current')
rip_new_cfg_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfListen.setStatus('current')
rip_new_cfg_intf_def_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfDefListen.setStatus('obsolete')
rip_new_cfg_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfTrigUpdate.setStatus('current')
rip_new_cfg_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfMcastUpdate.setStatus('current')
rip_new_cfg_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfPoisonReverse.setStatus('current')
rip_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfState.setStatus('current')
rip_new_cfg_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ripNewCfgIntfMetric.setStatus('current')
rip_new_cfg_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ripNewCfgIntfAuth.setStatus('current')
rip_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfKey.setStatus('current')
rip_new_cfg_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ripNewCfgIntfDefault.setStatus('current')
rip_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3))
rip2_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgState.setStatus('current')
rip2_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgState.setStatus('current')
rip2_cur_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgUpdatePeriod.setStatus('current')
rip2_new_cfg_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgUpdatePeriod.setStatus('current')
rip2_cur_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgVip.setStatus('current')
rip2_new_cfg_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgVip.setStatus('current')
rip2_cur_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2CurCfgStaticSupply.setStatus('current')
rip2_new_cfg_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 18, 3, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rip2NewCfgStaticSupply.setStatus('current')
ip_fwd_general_cfg = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1))
ip_fwd_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgState.setStatus('current')
ip_fwd_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('on', 2), ('off', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgState.setStatus('current')
ip_fwd_cur_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgDirectedBcast.setStatus('current')
ip_fwd_new_cfg_directed_bcast = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgDirectedBcast.setStatus('current')
ip_fwd_cur_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgNoICMPRedirect.setStatus('current')
ip_fwd_new_cfg_no_icmp_redirect = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgNoICMPRedirect.setStatus('current')
ip_fwd_cur_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgRtCache.setStatus('current')
ip_fwd_new_cfg_rt_cache = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgRtCache.setStatus('current')
ip_fwd_port_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdPortTableMaxSize.setStatus('current')
ip_fwd_cur_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3))
if mibBuilder.loadTexts:
ipFwdCurCfgPortTable.setStatus('current')
ip_fwd_cur_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgPortIndex'))
if mibBuilder.loadTexts:
ipFwdCurCfgPortEntry.setStatus('current')
ip_fwd_cur_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgPortIndex.setStatus('current')
ip_fwd_cur_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgPortState.setStatus('current')
ip_fwd_new_cfg_port_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4))
if mibBuilder.loadTexts:
ipFwdNewCfgPortTable.setStatus('current')
ip_fwd_new_cfg_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgPortIndex'))
if mibBuilder.loadTexts:
ipFwdNewCfgPortEntry.setStatus('current')
ip_fwd_new_cfg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdNewCfgPortIndex.setStatus('current')
ip_fwd_new_cfg_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipFwdNewCfgPortState.setStatus('current')
ip_fwd_local_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdLocalTableMaxSize.setStatus('current')
ip_fwd_cur_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6))
if mibBuilder.loadTexts:
ipFwdCurCfgLocalTable.setStatus('current')
ip_fwd_cur_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdCurCfgLocalIndex'))
if mibBuilder.loadTexts:
ipFwdCurCfgLocalEntry.setStatus('current')
ip_fwd_cur_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalIndex.setStatus('current')
ip_fwd_cur_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalSubnet.setStatus('current')
ip_fwd_cur_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 6, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdCurCfgLocalMask.setStatus('current')
ip_fwd_new_cfg_local_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7))
if mibBuilder.loadTexts:
ipFwdNewCfgLocalTable.setStatus('current')
ip_fwd_new_cfg_local_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipFwdNewCfgLocalIndex'))
if mibBuilder.loadTexts:
ipFwdNewCfgLocalEntry.setStatus('current')
ip_fwd_new_cfg_local_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalIndex.setStatus('current')
ip_fwd_new_cfg_local_subnet = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalSubnet.setStatus('current')
ip_fwd_new_cfg_local_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalMask.setStatus('current')
ip_fwd_new_cfg_local_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 4, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipFwdNewCfgLocalDelete.setStatus('current')
arp_cur_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 1), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpCurCfgReARPPeriod.setStatus('current')
arp_new_cfg_re_arp_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 7, 2), integer32().subtype(subtypeSpec=value_range_constraint(2, 120))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
arpNewCfgReARPPeriod.setStatus('current')
ip_cur_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr.setStatus('current')
ip_new_cfg_bootp_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr.setStatus('current')
ip_cur_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpAddr2.setStatus('current')
ip_new_cfg_bootp_addr2 = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpAddr2.setStatus('current')
ip_cur_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgBootpState.setStatus('current')
ip_new_cfg_bootp_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 8, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgBootpState.setStatus('current')
vrrp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1))
vrrp_cur_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenState.setStatus('current')
vrrp_new_cfg_gen_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenState.setStatus('current')
vrrp_cur_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVirtRtrInc.setStatus('current')
vrrp_new_cfg_gen_tck_virt_rtr_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVirtRtrInc.setStatus('current')
vrrp_cur_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckIpIntfInc.setStatus('current')
vrrp_new_cfg_gen_tck_ip_intf_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckIpIntfInc.setStatus('current')
vrrp_cur_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckVlanPortInc.setStatus('current')
vrrp_new_cfg_gen_tck_vlan_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckVlanPortInc.setStatus('current')
vrrp_cur_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckL4PortInc.setStatus('current')
vrrp_new_cfg_gen_tck_l4_port_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckL4PortInc.setStatus('current')
vrrp_cur_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckRServerInc.setStatus('current')
vrrp_new_cfg_gen_tck_r_server_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckRServerInc.setStatus('current')
vrrp_cur_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrpInc.setStatus('current')
vrrp_new_cfg_gen_tck_hsrp_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrpInc.setStatus('current')
vrrp_cur_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenHotstandby.setStatus('current')
vrrp_new_cfg_gen_hotstandby = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenHotstandby.setStatus('current')
vrrp_cur_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenTckHsrvInc.setStatus('current')
vrrp_new_cfg_gen_tck_hsrv_inc = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 254))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenTckHsrvInc.setStatus('current')
vrrp_cur_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgGenHoldoff.setStatus('current')
vrrp_new_cfg_gen_holdoff = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpNewCfgGenHoldoff.setStatus('current')
vrrp_virt_rtr_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrTableMaxSize.setStatus('current')
vrrp_cur_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTable.setStatus('current')
vrrp_cur_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTableEntry.setStatus('current')
vrrp_cur_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIndx.setStatus('current')
vrrp_cur_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrID.setStatus('current')
vrrp_cur_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrAddr.setStatus('current')
vrrp_cur_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIfIndex.setStatus('current')
vrrp_cur_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrInterval.setStatus('current')
vrrp_cur_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPriority.setStatus('current')
vrrp_cur_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrPreempt.setStatus('current')
vrrp_cur_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrState.setStatus('current')
vrrp_cur_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrSharing.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVirtRtr.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckIpIntf.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckVlanPort.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckL4Port.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckRServer.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrp.setStatus('current')
vrrp_cur_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrTckHsrv.setStatus('current')
vrrp_cur_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVersion.setStatus('current')
vrrp_cur_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 18), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Addr.setStatus('current')
vrrp_cur_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 1045))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrIpv6Interval.setStatus('current')
vrrp_new_cfg_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTable.setStatus('current')
vrrp_new_cfg_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTableEntry.setStatus('current')
vrrp_new_cfg_virt_rtr_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIndx.setStatus('current')
vrrp_new_cfg_virt_rtr_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrID.setStatus('current')
vrrp_new_cfg_virt_rtr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrAddr.setStatus('current')
vrrp_new_cfg_virt_rtr_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIfIndex.setStatus('current')
vrrp_new_cfg_virt_rtr_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrInterval.setStatus('current')
vrrp_new_cfg_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPriority.setStatus('current')
vrrp_new_cfg_virt_rtr_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrPreempt.setStatus('current')
vrrp_new_cfg_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrState.setStatus('current')
vrrp_new_cfg_virt_rtr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrDelete.setStatus('current')
vrrp_new_cfg_virt_rtr_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrSharing.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVirtRtr.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckIpIntf.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckVlanPort.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckL4Port.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckRServer.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrp.setStatus('current')
vrrp_new_cfg_virt_rtr_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrTckHsrv.setStatus('current')
vrrp_new_cfg_virt_rtr_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVersion.setStatus('current')
vrrp_new_cfg_virt_rtr_ipv6_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 19), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Addr.setStatus('current')
vrrp_new_cfg_virt_rtr_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 4, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrIpv6Interval.setStatus('current')
vrrp_if_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpIfTableMaxSize.setStatus('current')
vrrp_cur_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6))
if mibBuilder.loadTexts:
vrrpCurCfgIfTable.setStatus('current')
vrrp_cur_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgIfIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgIfTableEntry.setStatus('current')
vrrp_cur_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfIndx.setStatus('current')
vrrp_cur_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfAuthType.setStatus('current')
vrrp_cur_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfPasswd.setStatus('current')
vrrp_cur_cfg_if_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 6, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgIfIpAddr.setStatus('current')
vrrp_new_cfg_if_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7))
if mibBuilder.loadTexts:
vrrpNewCfgIfTable.setStatus('current')
vrrp_new_cfg_if_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgIfIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgIfTableEntry.setStatus('current')
vrrp_new_cfg_if_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgIfIndx.setStatus('current')
vrrp_new_cfg_if_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('simple-text-password', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfAuthType.setStatus('current')
vrrp_new_cfg_if_passwd = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 7))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfPasswd.setStatus('current')
vrrp_new_cfg_if_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgIfDelete.setStatus('current')
vrrp_virt_rtr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrGrpTableMaxSize.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTable.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrGrpIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTableEntry.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIndx.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpID.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIfIndex.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpInterval.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPriority.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpPreempt.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpState.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpSharing.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVirtRtr.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckIpIntf.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckVlanPort.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckL4Port.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckRServer.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrp.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpTckHsrv.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpVersion.setStatus('current')
vrrp_cur_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 9, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrGrpIpv6Interval.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTable.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrGrpIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTableEntry.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIndx.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpID.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 3), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIfIndex.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpInterval.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPriority.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_preempt = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpPreempt.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpState.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpDelete.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpSharing.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_virt_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVirtRtr.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckIpIntf.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckVlanPort.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckL4Port.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckRServer.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrp.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpTckHsrv.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('v4', 1), ('v6', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpVersion.setStatus('current')
vrrp_new_cfg_virt_rtr_grp_ipv6_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 10, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrGrpIpv6Interval.setStatus('current')
vrrp_virt_rtr_vr_grp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpVirtRtrVrGrpTableMaxSize.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTable.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpCurCfgVirtRtrVrGrpIndx'))
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTableEntry.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpIndx.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpName.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpState.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 4), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpBmap.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPriority.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckL4Port.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckRServer.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrp.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckHsrv.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdd.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpAdverInterval.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpPreemption.setStatus('current')
vrrp_cur_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 12, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpCurCfgVirtRtrVrGrpSharing.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTable.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpNewCfgVirtRtrVrGrpIndx'))
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTableEntry.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpIndx.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_name = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpName.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_add = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdd.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_rem = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpRem.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpState.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpDelete.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_bmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 7), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpBmap.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 254))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPriority.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_ip_intf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckIpIntf.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_vlan_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVlanPort.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_l4_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckL4Port.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_r_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckRServer.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrp.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_hsrv = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckHsrv.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_tck_virt_rtr_no = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 1024))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_adver_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpAdverInterval.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_preemption = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpPreemption.setStatus('current')
vrrp_new_cfg_virt_rtr_vr_grp_sharing = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 6, 13, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
vrrpNewCfgVirtRtrVrGrpSharing.setStatus('current')
dns_cur_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpAddr.setStatus('current')
dns_new_cfg_primary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpAddr.setStatus('current')
dns_cur_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpAddr.setStatus('current')
dns_new_cfg_secondary_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 4), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpAddr.setStatus('current')
dns_cur_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgDomainName.setStatus('current')
dns_new_cfg_domain_name = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 191))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgDomainName.setStatus('current')
dns_cur_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgPrimaryIpv6Addr.setStatus('current')
dns_new_cfg_primary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 8), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgPrimaryIpv6Addr.setStatus('current')
dns_cur_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsCurCfgSecondaryIpv6Addr.setStatus('current')
dns_new_cfg_secondary_ipv6_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 9, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
dnsNewCfgSecondaryIpv6Addr.setStatus('current')
ip_nwf_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNwfTableMax.setStatus('current')
ip_cur_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2))
if mibBuilder.loadTexts:
ipCurCfgNwfTable.setStatus('current')
ip_cur_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgNwfIndex'))
if mibBuilder.loadTexts:
ipCurCfgNwfEntry.setStatus('current')
ip_cur_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfIndex.setStatus('current')
ip_cur_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfAddr.setStatus('current')
ip_cur_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfMask.setStatus('current')
ip_cur_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgNwfState.setStatus('current')
ip_new_cfg_nwf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3))
if mibBuilder.loadTexts:
ipNewCfgNwfTable.setStatus('current')
ip_new_cfg_nwf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgNwfIndex'))
if mibBuilder.loadTexts:
ipNewCfgNwfEntry.setStatus('current')
ip_new_cfg_nwf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgNwfIndex.setStatus('current')
ip_new_cfg_nwf_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfAddr.setStatus('current')
ip_new_cfg_nwf_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfMask.setStatus('current')
ip_new_cfg_nwf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfState.setStatus('current')
ip_new_cfg_nwf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 10, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgNwfDelete.setStatus('current')
ip_rmap_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRmapTableMax.setStatus('current')
ip_cur_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2))
if mibBuilder.loadTexts:
ipCurCfgRmapTable.setStatus('current')
ip_cur_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgRmapIndex'))
if mibBuilder.loadTexts:
ipCurCfgRmapEntry.setStatus('current')
ip_cur_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapIndex.setStatus('current')
ip_cur_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapLp.setStatus('current')
ip_cur_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapMetric.setStatus('current')
ip_cur_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapPrec.setStatus('current')
ip_cur_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapWeight.setStatus('current')
ip_cur_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapState.setStatus('current')
ip_cur_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapAp.setStatus('current')
ip_cur_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRmapMetricType.setStatus('current')
ip_new_cfg_rmap_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3))
if mibBuilder.loadTexts:
ipNewCfgRmapTable.setStatus('current')
ip_new_cfg_rmap_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgRmapIndex'))
if mibBuilder.loadTexts:
ipNewCfgRmapEntry.setStatus('current')
ip_new_cfg_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgRmapIndex.setStatus('current')
ip_new_cfg_rmap_lp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 2), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapLp.setStatus('current')
ip_new_cfg_rmap_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapMetric.setStatus('current')
ip_new_cfg_rmap_prec = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapPrec.setStatus('current')
ip_new_cfg_rmap_weight = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapWeight.setStatus('current')
ip_new_cfg_rmap_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapState.setStatus('current')
ip_new_cfg_rmap_ap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 7), display_string().subtype(subtypeSpec=value_size_constraint(0, 18))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapAp.setStatus('current')
ip_new_cfg_rmap_metric_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapMetricType.setStatus('current')
ip_new_cfg_rmap_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 3, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgRmapDelete.setStatus('current')
ip_alist_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipAlistTableMax.setStatus('current')
ip_cur_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5))
if mibBuilder.loadTexts:
ipCurCfgAlistTable.setStatus('current')
ip_cur_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex'))
if mibBuilder.loadTexts:
ipCurCfgAlistEntry.setStatus('current')
ip_cur_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistRmapIndex.setStatus('current')
ip_cur_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistIndex.setStatus('current')
ip_cur_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistNwf.setStatus('current')
ip_cur_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistMetric.setStatus('current')
ip_cur_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistAction.setStatus('current')
ip_cur_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAlistState.setStatus('current')
ip_new_cfg_alist_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6))
if mibBuilder.loadTexts:
ipNewCfgAlistTable.setStatus('current')
ip_new_cfg_alist_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAlistIndex'))
if mibBuilder.loadTexts:
ipNewCfgAlistEntry.setStatus('current')
ip_new_cfg_alist_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAlistRmapIndex.setStatus('current')
ip_new_cfg_alist_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAlistIndex.setStatus('current')
ip_new_cfg_alist_nwf = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 256))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistNwf.setStatus('current')
ip_new_cfg_alist_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967295))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistMetric.setStatus('current')
ip_new_cfg_alist_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistAction.setStatus('current')
ip_new_cfg_alist_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistState.setStatus('current')
ip_new_cfg_alist_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAlistDelete.setStatus('current')
ip_aspath_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipAspathTableMax.setStatus('current')
ip_cur_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8))
if mibBuilder.loadTexts:
ipCurCfgAspathTable.setStatus('current')
ip_cur_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgAlistIndex'))
if mibBuilder.loadTexts:
ipCurCfgAspathEntry.setStatus('current')
ip_cur_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathRmapIndex.setStatus('current')
ip_cur_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathIndex.setStatus('current')
ip_cur_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathAS.setStatus('current')
ip_cur_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathAction.setStatus('current')
ip_cur_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 8, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgAspathState.setStatus('current')
ip_new_cfg_aspath_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9))
if mibBuilder.loadTexts:
ipNewCfgAspathTable.setStatus('current')
ip_new_cfg_aspath_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathRmapIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgAspathIndex'))
if mibBuilder.loadTexts:
ipNewCfgAspathEntry.setStatus('current')
ip_new_cfg_aspath_rmap_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAspathRmapIndex.setStatus('current')
ip_new_cfg_aspath_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgAspathIndex.setStatus('current')
ip_new_cfg_aspath_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathAS.setStatus('current')
ip_new_cfg_aspath_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('permit', 1), ('deny', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathAction.setStatus('current')
ip_new_cfg_aspath_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathState.setStatus('current')
ip_new_cfg_aspath_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 11, 9, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgAspathDelete.setStatus('current')
bgp_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1))
bgp_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgState.setStatus('current')
bgp_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgState.setStatus('current')
bgp_cur_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 3), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgLocalPref.setStatus('current')
bgp_new_cfg_local_pref = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 4), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgLocalPref.setStatus('current')
bgp_cur_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 5), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgMaxASPath.setStatus('current')
bgp_new_cfg_max_as_path = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 6), unsigned32().subtype(subtypeSpec=value_range_constraint(1, 127))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgMaxASPath.setStatus('current')
bgp_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 7), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgASNumber.setStatus('current')
bgp_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 1, 8), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpNewCfgASNumber.setStatus('current')
bgp_peer_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpPeerTableMax.setStatus('current')
bgp_cur_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3))
if mibBuilder.loadTexts:
bgpCurCfgPeerTable.setStatus('current')
bgp_cur_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgPeerIndex'))
if mibBuilder.loadTexts:
bgpCurCfgPeerEntry.setStatus('current')
bgp_cur_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerIndex.setStatus('current')
bgp_cur_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAddr.setStatus('current')
bgp_cur_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRemoteAs.setStatus('current')
bgp_cur_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerTtl.setStatus('current')
bgp_cur_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerState.setStatus('current')
bgp_cur_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMetric.setStatus('current')
bgp_cur_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerDefaultAction.setStatus('current')
bgp_cur_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerOspfState.setStatus('current')
bgp_cur_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerFixedState.setStatus('current')
bgp_cur_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerStaticState.setStatus('current')
bgp_cur_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerVipState.setStatus('current')
bgp_cur_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 16), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerInRmapList.setStatus('current')
bgp_cur_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 17), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerOutRmapList.setStatus('current')
bgp_cur_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerHoldTime.setStatus('current')
bgp_cur_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerKeepAlive.setStatus('current')
bgp_cur_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinTime.setStatus('current')
bgp_cur_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerConRetry.setStatus('current')
bgp_cur_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerMinAS.setStatus('current')
bgp_cur_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 3, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgPeerRipState.setStatus('current')
bgp_new_cfg_peer_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4))
if mibBuilder.loadTexts:
bgpNewCfgPeerTable.setStatus('current')
bgp_new_cfg_peer_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgPeerIndex'))
if mibBuilder.loadTexts:
bgpNewCfgPeerEntry.setStatus('current')
bgp_new_cfg_peer_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerIndex.setStatus('current')
bgp_new_cfg_peer_remote_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAddr.setStatus('current')
bgp_new_cfg_peer_remote_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoteAs.setStatus('current')
bgp_new_cfg_peer_ttl = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerTtl.setStatus('current')
bgp_new_cfg_peer_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerState.setStatus('current')
bgp_new_cfg_peer_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerDelete.setStatus('current')
bgp_new_cfg_peer_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 10), unsigned32().subtype(subtypeSpec=value_range_constraint(0, 4294967294))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMetric.setStatus('current')
bgp_new_cfg_peer_default_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('none', 1), ('import', 2), ('originate', 3), ('redistribute', 4)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerDefaultAction.setStatus('current')
bgp_new_cfg_peer_ospf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerOspfState.setStatus('current')
bgp_new_cfg_peer_fixed_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerFixedState.setStatus('current')
bgp_new_cfg_peer_static_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerStaticState.setStatus('current')
bgp_new_cfg_peer_vip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerVipState.setStatus('current')
bgp_new_cfg_peer_in_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 16), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerInRmapList.setStatus('current')
bgp_new_cfg_peer_out_rmap_list = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 17), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgPeerOutRmapList.setStatus('current')
bgp_new_cfg_peer_add_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 18), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddInRmap.setStatus('current')
bgp_new_cfg_peer_add_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 19), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerAddOutRmap.setStatus('current')
bgp_new_cfg_peer_remove_in_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 20), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveInRmap.setStatus('current')
bgp_new_cfg_peer_remove_out_rmap = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 21), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRemoveOutRmap.setStatus('current')
bgp_new_cfg_peer_hold_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerHoldTime.setStatus('current')
bgp_new_cfg_peer_keep_alive = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 21845))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerKeepAlive.setStatus('current')
bgp_new_cfg_peer_min_time = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinTime.setStatus('current')
bgp_new_cfg_peer_con_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerConRetry.setStatus('current')
bgp_new_cfg_peer_min_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(30, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerMinAS.setStatus('current')
bgp_new_cfg_peer_rip_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 4, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgPeerRipState.setStatus('current')
bgp_aggr_table_max = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpAggrTableMax.setStatus('current')
bgp_cur_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6))
if mibBuilder.loadTexts:
bgpCurCfgAggrTable.setStatus('current')
bgp_cur_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpCurCfgAggrIndex'))
if mibBuilder.loadTexts:
bgpCurCfgAggrEntry.setStatus('current')
bgp_cur_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrIndex.setStatus('current')
bgp_cur_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrAddr.setStatus('current')
bgp_cur_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrMask.setStatus('current')
bgp_cur_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 6, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpCurCfgAggrState.setStatus('current')
bgp_new_cfg_aggr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7))
if mibBuilder.loadTexts:
bgpNewCfgAggrTable.setStatus('current')
bgp_new_cfg_aggr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'bgpNewCfgAggrIndex'))
if mibBuilder.loadTexts:
bgpNewCfgAggrEntry.setStatus('current')
bgp_new_cfg_aggr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
bgpNewCfgAggrIndex.setStatus('current')
bgp_new_cfg_aggr_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrAddr.setStatus('current')
bgp_new_cfg_aggr_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrMask.setStatus('current')
bgp_new_cfg_aggr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrState.setStatus('current')
bgp_new_cfg_aggr_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 12, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
bgpNewCfgAggrDelete.setStatus('current')
ospf_general = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1))
ospf_cur_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetric.setStatus('current')
ospf_new_cfg_default_route_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetric.setStatus('current')
ospf_cur_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgDefaultRouteMetricType.setStatus('current')
ospf_new_cfg_default_route_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgDefaultRouteMetricType.setStatus('current')
ospf_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTableMaxSize.setStatus('current')
ospf_area_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTableMaxSize.setStatus('current')
ospf_range_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfRangeTableMaxSize.setStatus('current')
ospf_virt_intf_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVirtIntfTableMaxSize.setStatus('current')
ospf_host_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfHostTableMaxSize.setStatus('current')
ospf_cur_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgState.setStatus('current')
ospf_new_cfg_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgState.setStatus('current')
ospf_cur_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgLsdb.setStatus('current')
ospf_new_cfg_lsdb = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 2000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgLsdb.setStatus('current')
ospf_cur_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2))
if mibBuilder.loadTexts:
ospfCurCfgAreaTable.setStatus('current')
ospf_cur_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgAreaId'))
if mibBuilder.loadTexts:
ospfCurCfgAreaEntry.setStatus('current')
ospf_cur_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaIndex.setStatus('current')
ospf_cur_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaId.setStatus('current')
ospf_cur_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaSpfInterval.setStatus('current')
ospf_cur_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaAuthType.setStatus('current')
ospf_cur_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaType.setStatus('current')
ospf_cur_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaMetric.setStatus('current')
ospf_cur_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgAreaState.setStatus('current')
ospf_new_cfg_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3))
if mibBuilder.loadTexts:
ospfNewCfgAreaTable.setStatus('current')
ospf_new_cfg_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgAreaId'))
if mibBuilder.loadTexts:
ospfNewCfgAreaEntry.setStatus('current')
ospf_new_cfg_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgAreaIndex.setStatus('current')
ospf_new_cfg_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgAreaId.setStatus('current')
ospf_new_cfg_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaSpfInterval.setStatus('current')
ospf_new_cfg_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaAuthType.setStatus('current')
ospf_new_cfg_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaType.setStatus('current')
ospf_new_cfg_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaMetric.setStatus('current')
ospf_new_cfg_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaState.setStatus('current')
ospf_new_cfg_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 3, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgAreaDelete.setStatus('current')
ospf_new_cfg_vision_area_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16))
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaTable.setStatus('current')
ospf_new_cfg_vision_area_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVisionAreaIndex'))
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaEntry.setStatus('current')
ospf_new_cfg_vision_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaIndex.setStatus('current')
ospf_new_cfg_vision_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaId.setStatus('current')
ospf_new_cfg_vision_area_spf_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaSpfInterval.setStatus('current')
ospf_new_cfg_vision_area_auth_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('password', 2), ('md5', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaAuthType.setStatus('current')
ospf_new_cfg_vision_area_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('transit', 1), ('stub', 2), ('nssa', 3)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaType.setStatus('current')
ospf_new_cfg_vision_area_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaMetric.setStatus('current')
ospf_new_cfg_vision_area_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaState.setStatus('current')
ospf_new_cfg_vision_area_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 16, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVisionAreaDelete.setStatus('current')
ospf_cur_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12))
if mibBuilder.loadTexts:
ospfCurCfgHostTable.setStatus('current')
ospf_cur_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgHostIndex'))
if mibBuilder.loadTexts:
ospfCurCfgHostEntry.setStatus('current')
ospf_cur_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostIndex.setStatus('current')
ospf_cur_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostIpAddr.setStatus('current')
ospf_cur_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostAreaIndex.setStatus('current')
ospf_cur_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostCost.setStatus('current')
ospf_cur_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 12, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgHostState.setStatus('current')
ospf_new_cfg_host_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13))
if mibBuilder.loadTexts:
ospfNewCfgHostTable.setStatus('current')
ospf_new_cfg_host_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgHostIndex'))
if mibBuilder.loadTexts:
ospfNewCfgHostEntry.setStatus('current')
ospf_new_cfg_host_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgHostIndex.setStatus('current')
ospf_new_cfg_host_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostIpAddr.setStatus('current')
ospf_new_cfg_host_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 3), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostAreaIndex.setStatus('current')
ospf_new_cfg_host_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostCost.setStatus('current')
ospf_new_cfg_host_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostState.setStatus('current')
ospf_new_cfg_host_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 13, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgHostDelete.setStatus('current')
ospf_mdkey_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfMdkeyTableMaxSize.setStatus('current')
ospf_cur_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5))
if mibBuilder.loadTexts:
ospfCurCfgMdkeyTable.setStatus('current')
ospf_cur_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgMdkeyIndex'))
if mibBuilder.loadTexts:
ospfCurCfgMdkeyEntry.setStatus('current')
ospf_cur_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyIndex.setStatus('current')
ospf_cur_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 5, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgMdkeyKey.setStatus('current')
ospf_new_cfg_mdkey_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6))
if mibBuilder.loadTexts:
ospfNewCfgMdkeyTable.setStatus('current')
ospf_new_cfg_mdkey_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgMdkeyIndex'))
if mibBuilder.loadTexts:
ospfNewCfgMdkeyEntry.setStatus('current')
ospf_new_cfg_mdkey_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyIndex.setStatus('current')
ospf_new_cfg_mdkey_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyKey.setStatus('current')
ospf_new_cfg_mdkey_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 6, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgMdkeyDelete.setStatus('current')
ospf_cur_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7))
if mibBuilder.loadTexts:
ospfCurCfgIntfTable.setStatus('current')
ospf_cur_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgIntfIndex'))
if mibBuilder.loadTexts:
ospfCurCfgIntfEntry.setStatus('current')
ospf_cur_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfIndex.setStatus('current')
ospf_cur_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfId.setStatus('current')
ospf_cur_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfMdkey.setStatus('current')
ospf_cur_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfAreaId.setStatus('current')
ospf_cur_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfPriority.setStatus('current')
ospf_cur_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfCost.setStatus('current')
ospf_cur_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfHello.setStatus('current')
ospf_cur_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfDead.setStatus('current')
ospf_cur_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfTransit.setStatus('current')
ospf_cur_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfRetrans.setStatus('current')
ospf_cur_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfKey.setStatus('current')
ospf_cur_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 7, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIntfState.setStatus('current')
ospf_new_cfg_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8))
if mibBuilder.loadTexts:
ospfNewCfgIntfTable.setStatus('current')
ospf_new_cfg_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgIntfIndex'))
if mibBuilder.loadTexts:
ospfNewCfgIntfEntry.setStatus('current')
ospf_new_cfg_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIntfIndex.setStatus('current')
ospf_new_cfg_intf_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIntfId.setStatus('current')
ospf_new_cfg_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfMdkey.setStatus('current')
ospf_new_cfg_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfAreaId.setStatus('current')
ospf_new_cfg_intf_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfPriority.setStatus('current')
ospf_new_cfg_intf_cost = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfCost.setStatus('current')
ospf_new_cfg_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfHello.setStatus('current')
ospf_new_cfg_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfDead.setStatus('current')
ospf_new_cfg_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfTransit.setStatus('current')
ospf_new_cfg_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfRetrans.setStatus('current')
ospf_new_cfg_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 11), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfKey.setStatus('current')
ospf_new_cfg_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfState.setStatus('current')
ospf_new_cfg_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 8, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgIntfDelete.setStatus('current')
ospf_cur_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9))
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTable.setStatus('current')
ospf_cur_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgVirtIntfIndex'))
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfEntry.setStatus('current')
ospf_cur_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfIndex.setStatus('current')
ospf_cur_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfAreaId.setStatus('current')
ospf_cur_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfNbr.setStatus('current')
ospf_cur_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfMdkey.setStatus('current')
ospf_cur_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfHello.setStatus('current')
ospf_cur_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfDead.setStatus('current')
ospf_cur_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfTransit.setStatus('current')
ospf_cur_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfRetrans.setStatus('current')
ospf_cur_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfKey.setStatus('current')
ospf_cur_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 9, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgVirtIntfState.setStatus('current')
ospf_new_cfg_virt_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10))
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTable.setStatus('current')
ospf_new_cfg_virt_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgVirtIntfIndex'))
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfEntry.setStatus('current')
ospf_new_cfg_virt_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfIndex.setStatus('current')
ospf_new_cfg_virt_intf_area_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfAreaId.setStatus('current')
ospf_new_cfg_virt_intf_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfNbr.setStatus('current')
ospf_new_cfg_virt_intf_mdkey = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfMdkey.setStatus('current')
ospf_new_cfg_virt_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfHello.setStatus('current')
ospf_new_cfg_virt_intf_dead = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDead.setStatus('current')
ospf_new_cfg_virt_intf_transit = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfTransit.setStatus('current')
ospf_new_cfg_virt_intf_retrans = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 3600))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfRetrans.setStatus('current')
ospf_new_cfg_virt_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 8))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfKey.setStatus('current')
ospf_new_cfg_virt_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfState.setStatus('current')
ospf_new_cfg_virt_intf_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 10, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgVirtIntfDelete.setStatus('current')
ospf_cur_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14))
if mibBuilder.loadTexts:
ospfCurCfgRangeTable.setStatus('current')
ospf_cur_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfCurCfgRangeIndex'))
if mibBuilder.loadTexts:
ospfCurCfgRangeEntry.setStatus('current')
ospf_cur_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeIndex.setStatus('current')
ospf_cur_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeAddr.setStatus('current')
ospf_cur_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeMask.setStatus('current')
ospf_cur_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeAreaIndex.setStatus('current')
ospf_cur_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeHideState.setStatus('current')
ospf_cur_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 14, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRangeState.setStatus('current')
ospf_new_cfg_range_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15))
if mibBuilder.loadTexts:
ospfNewCfgRangeTable.setStatus('current')
ospf_new_cfg_range_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfNewCfgRangeIndex'))
if mibBuilder.loadTexts:
ospfNewCfgRangeEntry.setStatus('current')
ospf_new_cfg_range_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgRangeIndex.setStatus('current')
ospf_new_cfg_range_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeAddr.setStatus('current')
ospf_new_cfg_range_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 3), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeMask.setStatus('current')
ospf_new_cfg_range_area_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeAreaIndex.setStatus('current')
ospf_new_cfg_range_hide_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeHideState.setStatus('current')
ospf_new_cfg_range_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeState.setStatus('current')
ospf_new_cfg_range_delete = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 15, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ospfNewCfgRangeDelete.setStatus('current')
ospf_route_redistribution = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4))
ospf_redistribute_static = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1))
ospf_cur_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetric.setStatus('current')
ospf_new_cfg_static_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetric.setStatus('current')
ospf_cur_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticMetricType.setStatus('current')
ospf_new_cfg_static_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticMetricType.setStatus('current')
ospf_cur_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgStaticOutRmapList.setStatus('current')
ospf_new_cfg_static_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgStaticOutRmapList.setStatus('current')
ospf_new_cfg_static_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticAddOutRmap.setStatus('current')
ospf_new_cfg_static_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgStaticRemoveOutRmap.setStatus('current')
ospf_redistribute_ebgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2))
ospf_cur_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetric.setStatus('current')
ospf_new_cfg_ebgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetric.setStatus('current')
ospf_cur_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpMetricType.setStatus('current')
ospf_new_cfg_ebgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpMetricType.setStatus('current')
ospf_cur_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgEbgpOutRmapList.setStatus('current')
ospf_new_cfg_ebgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgEbgpOutRmapList.setStatus('current')
ospf_new_cfg_ebgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpAddOutRmap.setStatus('current')
ospf_new_cfg_ebgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 2, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgEbgpRemoveOutRmap.setStatus('current')
ospf_redistribute_ibgp = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3))
ospf_cur_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetric.setStatus('current')
ospf_new_cfg_ibgp_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetric.setStatus('current')
ospf_cur_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpMetricType.setStatus('current')
ospf_new_cfg_ibgp_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpMetricType.setStatus('current')
ospf_cur_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgIbgpOutRmapList.setStatus('current')
ospf_new_cfg_ibgp_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgIbgpOutRmapList.setStatus('current')
ospf_new_cfg_ibgp_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpAddOutRmap.setStatus('current')
ospf_new_cfg_ibgp_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 3, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgIbgpRemoveOutRmap.setStatus('current')
ospf_redistribute_fixed = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4))
ospf_cur_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetric.setStatus('current')
ospf_new_cfg_fixed_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetric.setStatus('current')
ospf_cur_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedMetricType.setStatus('current')
ospf_new_cfg_fixed_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedMetricType.setStatus('current')
ospf_cur_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgFixedOutRmapList.setStatus('current')
ospf_new_cfg_fixed_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgFixedOutRmapList.setStatus('current')
ospf_new_cfg_fixed_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedAddOutRmap.setStatus('current')
ospf_new_cfg_fixed_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 4, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgFixedRemoveOutRmap.setStatus('current')
ospf_redistribute_rip = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5))
ospf_cur_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipMetric.setStatus('current')
ospf_new_cfg_rip_metric = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 16777215))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipMetric.setStatus('current')
ospf_cur_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipMetricType.setStatus('current')
ospf_new_cfg_rip_metric_type = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('none', 1), ('type1', 2), ('type2', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipMetricType.setStatus('current')
ospf_cur_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 5), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCurCfgRipOutRmapList.setStatus('current')
ospf_new_cfg_rip_out_rmap_list = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 6), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNewCfgRipOutRmapList.setStatus('current')
ospf_new_cfg_rip_add_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipAddOutRmap.setStatus('current')
ospf_new_cfg_rip_remove_out_rmap = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 13, 4, 5, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ospfNewCfgRipRemoveOutRmap.setStatus('current')
ip_cur_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgRouterID.setStatus('current')
ip_new_cfg_router_id = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgRouterID.setStatus('current')
ip_cur_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgASNumber.setStatus('current')
ip_new_cfg_as_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 14, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipNewCfgASNumber.setStatus('current')
ip_static_arp_table_max_size = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticArpTableMaxSize.setStatus('current')
ip_cur_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2))
if mibBuilder.loadTexts:
ipCurCfgStaticArpTable.setStatus('current')
ip_cur_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipCurCfgStaticArpIndx'))
if mibBuilder.loadTexts:
ipCurCfgStaticArpEntry.setStatus('current')
ip_cur_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIndx.setStatus('current')
ip_cur_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpIp.setStatus('current')
ip_cur_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 3), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpMAC.setStatus('current')
ip_cur_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpVlan.setStatus('current')
ip_cur_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 2, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipCurCfgStaticArpPort.setStatus('current')
ip_new_cfg_static_arp_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3))
if mibBuilder.loadTexts:
ipNewCfgStaticArpTable.setStatus('current')
ip_new_cfg_static_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipNewCfgStaticArpIndx'))
if mibBuilder.loadTexts:
ipNewCfgStaticArpEntry.setStatus('current')
ip_new_cfg_static_arp_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIndx.setStatus('current')
ip_new_cfg_static_arp_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 2), ip_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpIp.setStatus('current')
ip_new_cfg_static_arp_mac = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 3), phys_address()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpMAC.setStatus('current')
ip_new_cfg_static_arp_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 4), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpVlan.setStatus('current')
ip_new_cfg_static_arp_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 5), integer32()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpPort.setStatus('current')
ip_new_cfg_static_arp_action = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 3, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('other', 1), ('delete', 2)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
ipNewCfgStaticArpAction.setStatus('current')
ip_static_arp_table_next_available_index = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 1, 15, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipStaticArpTableNextAvailableIndex.setStatus('current')
rip_stat_in_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInPackets.setStatus('current')
rip_stat_out_packets = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutPackets.setStatus('current')
rip_stat_in_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInRequestPkts.setStatus('current')
rip_stat_in_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInResponsePkts.setStatus('current')
rip_stat_out_request_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutRequestPkts.setStatus('current')
rip_stat_out_response_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatOutResponsePkts.setStatus('current')
rip_stat_route_timeout = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatRouteTimeout.setStatus('current')
rip_stat_in_bad_size_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSizePkts.setStatus('current')
rip_stat_in_bad_version = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadVersion.setStatus('current')
rip_stat_in_bad_zeros = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadZeros.setStatus('current')
rip_stat_in_bad_source_port = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSourcePort.setStatus('current')
rip_stat_in_bad_source_ip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInBadSourceIP.setStatus('current')
rip_stat_in_self_rcv_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 13, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripStatInSelfRcvPkts.setStatus('current')
tcp_stat_cur_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurConn.setStatus('current')
tcp_stat_cur_in_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurInConn.setStatus('current')
tcp_stat_cur_out_conn = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 14, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
tcpStatCurOutConn.setStatus('current')
arp_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 1), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatEntries.setStatus('current')
arp_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatHighWater.setStatus('current')
arp_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 2, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpStatMaxEntries.setStatus('current')
route_stat_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 1), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatEntries.setStatus('current')
route_stat_high_water = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 2), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatHighWater.setStatus('current')
route_stat_max_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 3, 3), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
routeStatMaxEntries.setStatus('current')
dns_stat_in_good_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatInGoodDnsRequests.setStatus('current')
dns_stat_in_bad_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatInBadDnsRequests.setStatus('current')
dns_stat_out_dns_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 4, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
dnsStatOutDnsRequests.setStatus('current')
vrrp_stat_in_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatInAdvers.setStatus('current')
vrrp_stat_out_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatOutAdvers.setStatus('current')
vrrp_stat_out_bad_advers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 5, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpStatOutBadAdvers.setStatus('current')
ip_clear_stats = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ipClearStats.setStatus('current')
if_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2))
if mibBuilder.loadTexts:
ifStatsTable.setStatus('current')
if_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ifStatsIndex'))
if mibBuilder.loadTexts:
ifStatsEntry.setStatus('current')
if_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ifStatsIndex.setStatus('current')
if_clear_stats = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 7, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ifClearStats.setStatus('current')
ospf_general_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1))
ospf_cum_rx_tx_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1))
ospf_cum_nbr_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2))
ospf_cum_intf_change_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3))
ospf_timers_kick_off_stats = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4))
ospf_area = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2))
ospf_area_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1))
if mibBuilder.loadTexts:
ospfAreaRxTxStats.setStatus('current')
ospf_area_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaRxTxIndex'))
if mibBuilder.loadTexts:
ospfAreaRxTxStatsEntry.setStatus('current')
ospf_area_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxTxIndex.setStatus('current')
ospf_area_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxPkts.setStatus('current')
ospf_area_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxPkts.setStatus('current')
ospf_area_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxHello.setStatus('current')
ospf_area_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxHello.setStatus('current')
ospf_area_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxDatabase.setStatus('current')
ospf_area_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxDatabase.setStatus('current')
ospf_area_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsReqs.setStatus('current')
ospf_area_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsReqs.setStatus('current')
ospf_area_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsAcks.setStatus('current')
ospf_area_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsAcks.setStatus('current')
ospf_area_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaRxlsUpdates.setStatus('current')
ospf_area_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaTxlsUpdates.setStatus('current')
ospf_area_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2))
if mibBuilder.loadTexts:
ospfAreaNbrChangeStats.setStatus('current')
ospf_area_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaNbrIndex'))
if mibBuilder.loadTexts:
ospfAreaNbrChangeStatsEntry.setStatus('current')
ospf_area_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrIndex.setStatus('current')
ospf_area_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrhello.setStatus('current')
ospf_area_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrStart.setStatus('current')
ospf_area_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrAdjointOk.setStatus('current')
ospf_area_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrNegotiationDone.setStatus('current')
ospf_area_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrExchangeDone.setStatus('current')
ospf_area_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrBadRequests.setStatus('current')
ospf_area_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrBadSequence.setStatus('current')
ospf_area_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrLoadingDone.setStatus('current')
ospf_area_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrN1way.setStatus('current')
ospf_area_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrRstAd.setStatus('current')
ospf_area_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrDown.setStatus('current')
ospf_area_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaNbrN2way.setStatus('current')
ospf_area_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3))
if mibBuilder.loadTexts:
ospfAreaChangeStats.setStatus('current')
ospf_area_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaIntfIndex'))
if mibBuilder.loadTexts:
ospfAreaChangeStatsEntry.setStatus('current')
ospf_area_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfIndex.setStatus('current')
ospf_area_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfHello.setStatus('current')
ospf_area_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfDown.setStatus('current')
ospf_area_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfLoop.setStatus('current')
ospf_area_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfUnloop.setStatus('current')
ospf_area_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfWaitTimer.setStatus('current')
ospf_area_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfBackup.setStatus('current')
ospf_area_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaIntfNbrChange.setStatus('current')
ospf_area_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4))
if mibBuilder.loadTexts:
ospfAreaErrorStats.setStatus('current')
ospf_area_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaErrIndex'))
if mibBuilder.loadTexts:
ospfAreaErrorStatsEntry.setStatus('current')
ospf_area_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrIndex.setStatus('current')
ospf_area_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrAuthFailure.setStatus('current')
ospf_area_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrNetmaskMismatch.setStatus('current')
ospf_area_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrHelloMismatch.setStatus('current')
ospf_area_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrDeadMismatch.setStatus('current')
ospf_area_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrOptionsMismatch.setStatus('current')
ospf_area_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 2, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaErrUnknownNbr.setStatus('current')
ospf_interface = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3))
ospf_intf_rx_tx_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1))
if mibBuilder.loadTexts:
ospfIntfRxTxStats.setStatus('current')
ospf_intf_rx_tx_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfRxTxIndex'))
if mibBuilder.loadTexts:
ospfIntfRxTxStatsEntry.setStatus('current')
ospf_intf_rx_tx_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxTxIndex.setStatus('current')
ospf_intf_rx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxPkts.setStatus('current')
ospf_intf_tx_pkts = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxPkts.setStatus('current')
ospf_intf_rx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxHello.setStatus('current')
ospf_intf_tx_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxHello.setStatus('current')
ospf_intf_rx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxDatabase.setStatus('current')
ospf_intf_tx_database = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxDatabase.setStatus('current')
ospf_intf_rxls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsReqs.setStatus('current')
ospf_intf_txls_reqs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsReqs.setStatus('current')
ospf_intf_rxls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsAcks.setStatus('current')
ospf_intf_txls_acks = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsAcks.setStatus('current')
ospf_intf_rxls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfRxlsUpdates.setStatus('current')
ospf_intf_txls_updates = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfTxlsUpdates.setStatus('current')
ospf_intf_nbr_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2))
if mibBuilder.loadTexts:
ospfIntfNbrChangeStats.setStatus('current')
ospf_intf_nbr_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfNbrIndex'))
if mibBuilder.loadTexts:
ospfIntfNbrChangeStatsEntry.setStatus('current')
ospf_intf_nbr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrIndex.setStatus('current')
ospf_intf_nbrhello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrhello.setStatus('current')
ospf_intf_nbr_start = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrStart.setStatus('current')
ospf_intf_nbr_adjoint_ok = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrAdjointOk.setStatus('current')
ospf_intf_nbr_negotiation_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrNegotiationDone.setStatus('current')
ospf_intf_nbr_exchange_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrExchangeDone.setStatus('current')
ospf_intf_nbr_bad_requests = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrBadRequests.setStatus('current')
ospf_intf_nbr_bad_sequence = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrBadSequence.setStatus('current')
ospf_intf_nbr_loading_done = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrLoadingDone.setStatus('current')
ospf_intf_nbr_n1way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrN1way.setStatus('current')
ospf_intf_nbr_rst_ad = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrRstAd.setStatus('current')
ospf_intf_nbr_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrDown.setStatus('current')
ospf_intf_nbr_n2way = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 2, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrN2way.setStatus('current')
ospf_intf_change_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3))
if mibBuilder.loadTexts:
ospfIntfChangeStats.setStatus('current')
ospf_intf_change_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfIndex'))
if mibBuilder.loadTexts:
ospfIntfChangeStatsEntry.setStatus('current')
ospf_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfIndex.setStatus('current')
ospf_intf_hello = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfHello.setStatus('current')
ospf_intf_down = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfDown.setStatus('current')
ospf_intf_loop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfLoop.setStatus('current')
ospf_intf_unloop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfUnloop.setStatus('current')
ospf_intf_wait_timer = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfWaitTimer.setStatus('current')
ospf_intf_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfBackup.setStatus('current')
ospf_intf_nbr_change = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfNbrChange.setStatus('current')
ospf_intf_error_stats = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4))
if mibBuilder.loadTexts:
ospfIntfErrorStats.setStatus('current')
ospf_intf_error_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIntfErrIndex'))
if mibBuilder.loadTexts:
ospfIntfErrorStatsEntry.setStatus('current')
ospf_intf_err_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrIndex.setStatus('current')
ospf_intf_err_auth_failure = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrAuthFailure.setStatus('current')
ospf_intf_err_netmask_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrNetmaskMismatch.setStatus('current')
ospf_intf_err_hello_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrHelloMismatch.setStatus('current')
ospf_intf_err_dead_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrDeadMismatch.setStatus('current')
ospf_intf_err_options_mismatch = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrOptionsMismatch.setStatus('current')
ospf_intf_err_unknown_nbr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 3, 4, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfErrUnknownNbr.setStatus('current')
ospf_cum_rx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxPkts.setStatus('current')
ospf_cum_tx_pkts = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxPkts.setStatus('current')
ospf_cum_rx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxHello.setStatus('current')
ospf_cum_tx_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxHello.setStatus('current')
ospf_cum_rx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxDatabase.setStatus('current')
ospf_cum_tx_database = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxDatabase.setStatus('current')
ospf_cum_rxls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsReqs.setStatus('current')
ospf_cum_txls_reqs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsReqs.setStatus('current')
ospf_cum_rxls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsAcks.setStatus('current')
ospf_cum_txls_acks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsAcks.setStatus('current')
ospf_cum_rxls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumRxlsUpdates.setStatus('current')
ospf_cum_txls_updates = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumTxlsUpdates.setStatus('current')
ospf_cum_nbrhello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrhello.setStatus('current')
ospf_cum_nbr_start = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrStart.setStatus('current')
ospf_cum_nbr_adjoint_ok = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrAdjointOk.setStatus('current')
ospf_cum_nbr_negotiation_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrNegotiationDone.setStatus('current')
ospf_cum_nbr_exchange_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrExchangeDone.setStatus('current')
ospf_cum_nbr_bad_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrBadRequests.setStatus('current')
ospf_cum_nbr_bad_sequence = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrBadSequence.setStatus('current')
ospf_cum_nbr_loading_done = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrLoadingDone.setStatus('current')
ospf_cum_nbr_n1way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrN1way.setStatus('current')
ospf_cum_nbr_rst_ad = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrRstAd.setStatus('current')
ospf_cum_nbr_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrDown.setStatus('current')
ospf_cum_nbr_n2way = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 2, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumNbrN2way.setStatus('current')
ospf_cum_intf_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfHello.setStatus('current')
ospf_cum_intf_down = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfDown.setStatus('current')
ospf_cum_intf_loop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfLoop.setStatus('current')
ospf_cum_intf_unloop = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfUnloop.setStatus('current')
ospf_cum_intf_wait_timer = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfWaitTimer.setStatus('current')
ospf_cum_intf_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfBackup.setStatus('current')
ospf_cum_intf_nbr_change = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 3, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfCumIntfNbrChange.setStatus('current')
ospf_tmrs_kck_off_hello = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffHello.setStatus('current')
ospf_tmrs_kck_off_retransmit = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffRetransmit.setStatus('current')
ospf_tmrs_kck_off_lsa_lock = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaLock.setStatus('current')
ospf_tmrs_kck_off_lsa_ack = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffLsaAck.setStatus('current')
ospf_tmrs_kck_off_dbage = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffDbage.setStatus('current')
ospf_tmrs_kck_off_summary = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffSummary.setStatus('current')
ospf_tmrs_kck_off_ase_export = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 6, 1, 4, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTmrsKckOffAseExport.setStatus('current')
ip6_in_receives = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InReceives.setStatus('current')
ip6_forw_datagrams = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ForwDatagrams.setStatus('current')
ip6_in_delivers = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InDelivers.setStatus('current')
ip6_in_discards = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InDiscards.setStatus('current')
ip6_in_unknown_protos = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InUnknownProtos.setStatus('current')
ip6_in_addr_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6InAddrErrors.setStatus('current')
ip6_out_requests = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6OutRequests.setStatus('current')
ip6_out_no_routes = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6OutNoRoutes.setStatus('current')
ip6_reasm_o_ks = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ReasmOKs.setStatus('current')
ip6_reasm_fails = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6ReasmFails.setStatus('current')
ip6icmp_in_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpInMsgs.setStatus('current')
ip6icmp_out_msgs = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpOutMsgs.setStatus('current')
ip6icmp_in_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpInErrors.setStatus('current')
ip6icmp_out_errors = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 10, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6icmpOutErrors.setStatus('current')
icmp6_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1))
if mibBuilder.loadTexts:
icmp6StatsTable.setStatus('current')
icmp6_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'icmp6StatsIndx'))
if mibBuilder.loadTexts:
icmp6StatsEntry.setStatus('current')
icmp6_stats_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6StatsIndx.setStatus('current')
icmp6_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6IntfIndex.setStatus('current')
icmp6_in_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InMsgs.setStatus('current')
icmp6_in_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InErrors.setStatus('current')
icmp6_in_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InEchos.setStatus('current')
icmp6_in_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InEchoReps.setStatus('current')
icmp6_in_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InNSs.setStatus('current')
icmp6_in_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InNAs.setStatus('current')
icmp6_in_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRSs.setStatus('current')
icmp6_in_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRAs.setStatus('current')
icmp6_in_dest_unreachs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InDestUnreachs.setStatus('current')
icmp6_in_time_excds = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InTimeExcds.setStatus('current')
icmp6_in_too_bigs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InTooBigs.setStatus('current')
icmp6_in_parm_probs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InParmProbs.setStatus('current')
icmp6_in_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6InRedirects.setStatus('current')
icmp6_out_msgs = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutMsgs.setStatus('current')
icmp6_out_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutErrors.setStatus('current')
icmp6_out_echos = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutEchos.setStatus('current')
icmp6_out_echo_reps = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutEchoReps.setStatus('current')
icmp6_out_n_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutNSs.setStatus('current')
icmp6_out_n_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutNAs.setStatus('current')
icmp6_out_r_ss = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRSs.setStatus('current')
icmp6_out_r_as = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRAs.setStatus('current')
icmp6_out_redirects = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 11, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
icmp6OutRedirects.setStatus('current')
ip6_gw_stats_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1))
if mibBuilder.loadTexts:
ip6GwStatsTable.setStatus('current')
ip6_gw_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ip6GwStatsIndex'))
if mibBuilder.loadTexts:
ip6GwStatsEntry.setStatus('current')
ip6_gw_stats_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwStatsIndex.setStatus('current')
ip6_gw_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwIndex.setStatus('current')
ip6_gw_echoreq = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwEchoreq.setStatus('current')
ip6_gw_echoresp = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwEchoresp.setStatus('current')
ip6_gw_fails = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwFails.setStatus('current')
ip6_gw_master = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwMaster.setStatus('current')
ip6_if_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6IfIndex.setStatus('current')
ip6_gw_retry = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 2, 12, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ip6GwRetry.setStatus('current')
ip_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1))
if mibBuilder.loadTexts:
ipIntfInfoTable.setStatus('current')
intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'intfInfoIndex'))
if mibBuilder.loadTexts:
intfInfoEntry.setStatus('current')
intf_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoIndex.setStatus('current')
intf_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoIpver.setStatus('current')
intf_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoAddr.setStatus('current')
intf_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoNetMask.setStatus('current')
intf_info_bcast_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoBcastAddr.setStatus('current')
intf_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoVlan.setStatus('current')
intf_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoStatus.setStatus('current')
intf_info_link_local_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 9, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
intfInfoLinkLocalAddr.setStatus('current')
ip_route_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1))
if mibBuilder.loadTexts:
ipRouteInfoTable.setStatus('current')
ip_route_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRouteInfoIndx'))
if mibBuilder.loadTexts:
ipRouteInfoEntry.setStatus('current')
ip_route_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoIndx.setStatus('current')
ip_route_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoDestIp.setStatus('current')
ip_route_info_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoMask.setStatus('current')
ip_route_info_gateway = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway.setStatus('current')
ip_route_info_tag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('fixed', 1), ('static', 2), ('addr', 3), ('rip', 4), ('broadcast', 5), ('martian', 6), ('multicast', 7), ('vip', 8), ('bgp', 9), ('ospf', 10), ('none', 11)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoTag.setStatus('current')
ip_route_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('indirect', 1), ('direct', 2), ('local', 3), ('broadcast', 4), ('martian', 5), ('multicast', 6), ('other', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoType.setStatus('current')
ip_route_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoInterface.setStatus('current')
ip_route_info_gateway1 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 8), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway1.setStatus('current')
ip_route_info_gateway2 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 9), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoGateway2.setStatus('current')
ip_route_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRouteInfoMetric.setStatus('current')
route_table_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
routeTableClear.setStatus('current')
arp_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1))
if mibBuilder.loadTexts:
arpInfoTable.setStatus('current')
arp_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'arpInfoDestIp'))
if mibBuilder.loadTexts:
arpInfoEntry.setStatus('current')
arp_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 1), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoDestIp.setStatus('current')
arp_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 2), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoMacAddr.setStatus('current')
arp_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoVLAN.setStatus('current')
arp_info_src_port = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoSrcPort.setStatus('current')
arp_info_ref_ports = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoRefPorts.setStatus('current')
arp_info_flag = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('clear', 1), ('unresolved', 2), ('permanent', 3), ('indirect', 4), ('layer4', 5)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
arpInfoFlag.setStatus('current')
arp_cache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
arpCacheClear.setStatus('current')
vrrp_info_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1))
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTable.setStatus('current')
vrrp_info_virt_rtr_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpInfoVirtRtrIndex'))
if mibBuilder.loadTexts:
vrrpInfoVirtRtrTableEntry.setStatus('current')
vrrp_info_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrIndex.setStatus('current')
vrrp_info_virt_rtr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('init', 1), ('master', 2), ('backup', 3), ('holdoff', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrState.setStatus('current')
vrrp_info_virt_rtr_ownership = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('owner', 1), ('renter', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrOwnership.setStatus('current')
vrrp_info_virt_rtr_server = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrServer.setStatus('current')
vrrp_info_virt_rtr_proxy = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('yes', 1), ('no', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrProxy.setStatus('current')
vrrp_info_virt_rtr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpInfoVirtRtrPriority.setStatus('current')
ospf_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1))
ospf_start_time = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfStartTime.setStatus('current')
ospf_process_uptime = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfProcessUptime.setStatus('current')
ospf_ls_types_supported = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfLsTypesSupported.setStatus('current')
ospf_intf_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIntfCountForRouter.setStatus('current')
ospf_vlink_count_for_router = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfVlinkCountForRouter.setStatus('current')
ospf_total_neighbours = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNeighbours.setStatus('current')
ospf_nbr_in_init_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInInitState.setStatus('current')
ospf_nbr_in_exch_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInExchState.setStatus('current')
ospf_nbr_in_full_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNbrInFullState.setStatus('current')
ospf_total_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalAreas.setStatus('current')
ospf_total_transit_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalTransitAreas.setStatus('current')
ospf_total_nssa_areas = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNssaAreas.setStatus('current')
ospf_area_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2))
if mibBuilder.loadTexts:
ospfAreaInfoTable.setStatus('current')
ospf_area_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfAreaInfoIndex'))
if mibBuilder.loadTexts:
ospfAreaInfoEntry.setStatus('current')
ospf_area_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaInfoIndex.setStatus('current')
ospf_total_number_of_interfaces = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfTotalNumberOfInterfaces.setStatus('current')
ospf_number_of_interfaces_up = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNumberOfInterfacesUp.setStatus('current')
ospf_number_of_lsdb_entries = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfNumberOfLsdbEntries.setStatus('current')
ospf_area_info_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 2, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfAreaInfoId.setStatus('current')
ospf_intf_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3))
if mibBuilder.loadTexts:
ospfIntfInfoTable.setStatus('current')
ospf_intf_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfInfoIndex'))
if mibBuilder.loadTexts:
ospfIntfInfoEntry.setStatus('current')
ospf_if_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfInfoIndex.setStatus('current')
ospf_if_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfDesignatedRouterIP.setStatus('current')
ospf_if_backup_designated_router_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfBackupDesignatedRouterIP.setStatus('current')
ospf_if_wait_interval = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfWaitInterval.setStatus('current')
ospf_if_total_neighbours = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfTotalNeighbours.setStatus('current')
ospf_if_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 3, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfInfoIpAddress.setStatus('current')
ospf_if_nbr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5))
if mibBuilder.loadTexts:
ospfIfNbrTable.setStatus('current')
ospf_if_nbr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIntfIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ospfIfNbrIpAddr'))
if mibBuilder.loadTexts:
ospfIfNbrEntry.setStatus('current')
ospf_if_nbr_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIntfIndex.setStatus('current')
ospf_if_nbr_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIpAddr.setStatus('current')
ospf_if_nbr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrPriority.setStatus('current')
ospf_if_nbr_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('down', 1), ('attempt', 2), ('init', 3), ('twoway', 4), ('exStart', 5), ('exchange', 6), ('loading', 7), ('full', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrState.setStatus('current')
ospf_if_nbr_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 5), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrDesignatedRtr.setStatus('current')
ospf_if_nbr_backup_designated_rtr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 6), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrBackupDesignatedRtr.setStatus('current')
ospf_if_nbr_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 4, 5, 1, 7), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ospfIfNbrIpAddress.setStatus('current')
gateway_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1))
if mibBuilder.loadTexts:
gatewayInfoTable.setStatus('current')
gateway_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'gatewayInfoIndex'))
if mibBuilder.loadTexts:
gatewayInfoEntry.setStatus('current')
gateway_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoIndex.setStatus('current')
gateway_info_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoAddr.setStatus('current')
gateway_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoVlan.setStatus('current')
gateway_info_status = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('failed', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoStatus.setStatus('current')
gateway_info_addr6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 5, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gatewayInfoAddr6.setStatus('current')
nbrcache_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1))
if mibBuilder.loadTexts:
nbrcacheInfoTable.setStatus('current')
nbrcache_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'nbrcacheInfoIndex'))
if mibBuilder.loadTexts:
nbrcacheInfoEntry.setStatus('current')
nbrcache_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoIndex.setStatus('current')
nbrcache_info_dest_ip = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoDestIp.setStatus('current')
nbrcache_info_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))).clone(namedValues=named_values(('undef', 1), ('reach', 2), ('stale', 3), ('delay', 4), ('probe', 5), ('inval', 6), ('unknown', 7), ('incmp', 8)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoState.setStatus('current')
nbrcache_info_type = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))).clone(namedValues=named_values(('undef', 1), ('other', 2), ('invalid', 3), ('dynamic', 4), ('static', 5), ('local', 6)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoType.setStatus('current')
nbrcache_info_mac_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 5), phys_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoMacAddr.setStatus('current')
nbrcache_info_vlan_id = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoVlanId.setStatus('current')
nbrcache_info_port_num = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoPortNum.setStatus('current')
nbrcache_clear = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('clear', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
nbrcacheClear.setStatus('current')
nbrcache_info_tot_dynamic_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotDynamicEntries.setStatus('current')
nbrcache_info_tot_local_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotLocalEntries.setStatus('current')
nbrcache_info_tot_other_entries = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 7, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nbrcacheInfoTotOtherEntries.setStatus('current')
ip_route6_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1))
if mibBuilder.loadTexts:
ipRoute6InfoTable.setStatus('current')
ip_route6_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ipRoute6InfoIndx'))
if mibBuilder.loadTexts:
ipRoute6InfoEntry.setStatus('current')
ip_route6_info_indx = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoIndx.setStatus('current')
ip_route6_info_dest_ip6 = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoDestIp6.setStatus('current')
ip_route6_info_interface = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoInterface.setStatus('current')
ip_route6_info_next_hop = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoNextHop.setStatus('current')
ip_route6_info_proto = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 8, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('isis', 1), ('rip', 2), ('ospf', 3), ('static', 4), ('local', 5), ('bgp', 6), ('stlow', 7), ('ospfi', 8), ('ospfe', 9), ('ospfe2', 10), ('ospfa', 11), ('ripa', 12), ('bgpa', 13), ('igmp', 14), ('unknown', 15), ('natpt', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipRoute6InfoProto.setStatus('current')
rip2_general_info = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1))
rip_info_state = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('on', 1), ('off', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoState.setStatus('current')
rip_info_update_period = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoUpdatePeriod.setStatus('current')
rip_info_vip = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoVip.setStatus('current')
rip_info_static_supply = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3))).clone(namedValues=named_values(('enabled', 2), ('disabled', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoStaticSupply.setStatus('current')
rip2_info_intf_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2))
if mibBuilder.loadTexts:
rip2InfoIntfTable.setStatus('current')
rip_info_intf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'ripInfoIntfIndex'))
if mibBuilder.loadTexts:
ripInfoIntfEntry.setStatus('current')
rip_info_intf_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfIndex.setStatus('current')
rip_info_intf_version = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ripVersion1', 1), ('ripVersion2', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfVersion.setStatus('current')
rip_info_intf_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfAddress.setStatus('current')
rip_info_intf_state = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfState.setStatus('current')
rip_info_intf_listen = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfListen.setStatus('current')
rip_info_intf_trig_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfTrigUpdate.setStatus('current')
rip_info_intf_mcast_update = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfMcastUpdate.setStatus('current')
rip_info_intf_poison_reverse = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfPoisonReverse.setStatus('current')
rip_info_intf_supply = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('enabled', 1), ('disabled', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfSupply.setStatus('current')
rip_info_intf_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfMetric.setStatus('current')
rip_info_intf_auth = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('none', 1), ('password', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfAuth.setStatus('current')
rip_info_intf_key = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfKey.setStatus('current')
rip_info_intf_default = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 10, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('both', 1), ('listen', 2), ('supply', 3), ('none', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ripInfoIntfDefault.setStatus('current')
rip2_routes_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1))
if mibBuilder.loadTexts:
rip2RoutesInfoTable.setStatus('current')
rip2_routes_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoDestIndex'), (0, 'ALTEON-CHEETAH-NETWORK-MIB', 'rip2RoutesInfoNxtHopIndex'))
if mibBuilder.loadTexts:
rip2RoutesInfoEntry.setStatus('current')
rip2_routes_info_dest_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoDestIndex.setStatus('current')
rip2_routes_info_nxt_hop_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoNxtHopIndex.setStatus('current')
rip2_routes_info_destination = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoDestination.setStatus('current')
rip2_routes_info_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoIpAddress.setStatus('current')
rip2_routes_info_metric = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rip2RoutesInfoMetric.setStatus('current')
allowed_nw_info_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1))
if mibBuilder.loadTexts:
allowedNwInfoTable.setStatus('current')
allowed_nw_info_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'allowedNwInfoIndex'))
if mibBuilder.loadTexts:
allowedNwInfoEntry.setStatus('current')
allowed_nw_info_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIndex.setStatus('current')
allowed_nw_info_ipver = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ipv4', 1), ('ipv6', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIpver.setStatus('current')
allowed_nw_info_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoVlan.setStatus('current')
allowed_nw_info_begin_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoBeginIpAddr.setStatus('current')
allowed_nw_info_end_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoEndIpAddr.setStatus('current')
allowed_nw_info_net_mask = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoNetMask.setStatus('current')
allowed_nw_info_ip6_prefix = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 3, 12, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
allowedNwInfoIp6Prefix.setStatus('current')
vrrp_oper_virt_rtr_table = mib_table((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1))
if mibBuilder.loadTexts:
vrrpOperVirtRtrTable.setStatus('current')
vrrp_oper_virt_rtr_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1)).setIndexNames((0, 'ALTEON-CHEETAH-NETWORK-MIB', 'vrrpOperVirtRtrIndex'))
if mibBuilder.loadTexts:
vrrpOperVirtRtrEntry.setStatus('current')
vrrp_oper_virt_rtr_index = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
vrrpOperVirtRtrIndex.setStatus('current')
vrrp_oper_virt_rtr_backup = mib_table_column((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpOperVirtRtrBackup.setStatus('current')
vrrp_oper_virt_rtr_group_backup = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('backup', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
vrrpOperVirtRtrGroupBackup.setStatus('current')
bgp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1))
garp_oper = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2))
bgp_oper_start = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1))
bgp_oper_stop = mib_identifier((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2))
bgp_oper_start_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStartPeerNum.setStatus('current')
bgp_oper_start_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('start', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStartSess.setStatus('current')
bgp_oper_stop_peer_num = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 16))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStopPeerNum.setStatus('current')
bgp_oper_stop_sess = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 1, 2, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ok', 1), ('stop', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
bgpOperStopSess.setStatus('current')
garp_oper_ip_addr = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 1), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperIpAddr.setStatus('current')
garp_oper_vlan_number = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 4090))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperVlanNumber.setStatus('current')
garp_oper_send = mib_scalar((1, 3, 6, 1, 4, 1, 1872, 2, 5, 3, 4, 2, 2, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('ok', 1), ('send', 2), ('error', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
garpOperSend.setStatus('current')
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ipCurCfgIntfAddr=ipCurCfgIntfAddr, ipv6NewCfgStaticRouteTable=ipv6NewCfgStaticRouteTable, ipNewCfgBootpAddr=ipNewCfgBootpAddr, arpStatMaxEntries=arpStatMaxEntries, ip6InUnknownProtos=ip6InUnknownProtos, icmp6InRSs=icmp6InRSs, bgpNewCfgAggrState=bgpNewCfgAggrState, ospfCurCfgAreaId=ospfCurCfgAreaId, gatewayInfoIndex=gatewayInfoIndex, ospfCurCfgRangeEntry=ospfCurCfgRangeEntry, ipFwdCurCfgLocalMask=ipFwdCurCfgLocalMask, ospfNewCfgIntfMdkey=ospfNewCfgIntfMdkey, gatewayInfoEntry=gatewayInfoEntry, ospfIntfErrUnknownNbr=ospfIntfErrUnknownNbr, bgpNewCfgPeerVipState=bgpNewCfgPeerVipState, vrrpInfoVirtRtrTable=vrrpInfoVirtRtrTable, vrrpCurCfgVirtRtrIfIndex=vrrpCurCfgVirtRtrIfIndex, ospfIntfNbrRstAd=ospfIntfNbrRstAd, ospfCumNbrNegotiationDone=ospfCumNbrNegotiationDone, vrrpCurCfgVirtRtrGrpTckIpIntf=vrrpCurCfgVirtRtrGrpTckIpIntf, ospfNewCfgAreaAuthType=ospfNewCfgAreaAuthType, ipNewCfgIntfMask=ipNewCfgIntfMask, ipGeneralCfg=ipGeneralCfg, bgpCurCfgPeerVipState=bgpCurCfgPeerVipState, ipCurCfgIntfIndex=ipCurCfgIntfIndex, ipCurCfgNwfTable=ipCurCfgNwfTable, ospfNewCfgEbgpRemoveOutRmap=ospfNewCfgEbgpRemoveOutRmap, ospfNewCfgAreaIndex=ospfNewCfgAreaIndex, icmp6OutRSs=icmp6OutRSs, ospfNewCfgIbgpRemoveOutRmap=ospfNewCfgIbgpRemoveOutRmap, rip2Info=rip2Info, ospfCurCfgMdkeyTable=ospfCurCfgMdkeyTable, ospfNewCfgRangeIndex=ospfNewCfgRangeIndex, bgpNewCfgPeerOspfState=bgpNewCfgPeerOspfState, ospfNewCfgRangeDelete=ospfNewCfgRangeDelete, ripCurCfgIntfAuth=ripCurCfgIntfAuth, vrrpCurCfgVirtRtrGrpState=vrrpCurCfgVirtRtrGrpState, tcpStatCurOutConn=tcpStatCurOutConn, ipNewCfgGwInterval=ipNewCfgGwInterval, ospfNewCfgIntfPriority=ospfNewCfgIntfPriority, ipNewCfgAspathEntry=ipNewCfgAspathEntry, ip6IfIndex=ip6IfIndex, ospfTotalNssaAreas=ospfTotalNssaAreas, ospfNewCfgHostTable=ospfNewCfgHostTable, ipNewCfgGwIpv6Addr=ipNewCfgGwIpv6Addr, ospfNewCfgIntfId=ospfNewCfgIntfId, routeStatHighWater=routeStatHighWater, dnsStatInGoodDnsRequests=dnsStatInGoodDnsRequests, ipCurCfgStaticRouteGateway=ipCurCfgStaticRouteGateway, ipNewCfgAlistRmapIndex=ipNewCfgAlistRmapIndex, ospfCurCfgFixedMetric=ospfCurCfgFixedMetric, ospfCumRxlsReqs=ospfCumRxlsReqs, bgpCurCfgPeerDefaultAction=bgpCurCfgPeerDefaultAction, vrrpOperVirtRtrEntry=vrrpOperVirtRtrEntry, vrrpOperVirtRtrGroupBackup=vrrpOperVirtRtrGroupBackup, vrrpNewCfgVirtRtrGrpVersion=vrrpNewCfgVirtRtrGrpVersion, ospfCurCfgVirtIntfState=ospfCurCfgVirtIntfState, ripCurCfgIntfIndex=ripCurCfgIntfIndex, rip2Stats=rip2Stats, ipv6CurCfgStaticRouteGateway=ipv6CurCfgStaticRouteGateway, ospfCurCfgAreaMetric=ospfCurCfgAreaMetric, ospfNewCfgVisionAreaTable=ospfNewCfgVisionAreaTable, ospfCurCfgIntfTable=ospfCurCfgIntfTable, ipv6CurCfgStaticRouteMask=ipv6CurCfgStaticRouteMask, ospfCumTxPkts=ospfCumTxPkts, ripStatInPackets=ripStatInPackets, ospfAreaErrIndex=ospfAreaErrIndex, ipCurCfgRmapTable=ipCurCfgRmapTable, icmp6StatsEntry=icmp6StatsEntry, tcpStats=tcpStats, ipForwardCfg=ipForwardCfg, vrrpStats=vrrpStats, ospfNewCfgVirtIntfHello=ospfNewCfgVirtIntfHello, ripCurCfgIntfListen=ripCurCfgIntfListen, vrrpCurCfgVirtRtrVrGrpName=vrrpCurCfgVirtRtrVrGrpName, ripInfoState=ripInfoState, ospfNewCfgIbgpMetricType=ospfNewCfgIbgpMetricType, ospfIfNbrIpAddr=ospfIfNbrIpAddr, ripInfoIntfVersion=ripInfoIntfVersion, ospfCumIntfUnloop=ospfCumIntfUnloop, ifStatsIndex=ifStatsIndex, ospfProcessUptime=ospfProcessUptime, bgpOperStopSess=bgpOperStopSess, ospfCurCfgIbgpMetricType=ospfCurCfgIbgpMetricType, vrrpInfoVirtRtrIndex=vrrpInfoVirtRtrIndex, nbrcacheInfoIndex=nbrcacheInfoIndex, ipFwdNewCfgNoICMPRedirect=ipFwdNewCfgNoICMPRedirect, vrrpNewCfgGenTckVirtRtrInc=vrrpNewCfgGenTckVirtRtrInc, vrrpCurCfgVirtRtrVrGrpTckHsrv=vrrpCurCfgVirtRtrVrGrpTckHsrv, ipNewCfgAspathAction=ipNewCfgAspathAction, rip2RoutesInfoDestIndex=rip2RoutesInfoDestIndex, dnsStats=dnsStats, rip2CurCfgState=rip2CurCfgState, ospfAreaErrNetmaskMismatch=ospfAreaErrNetmaskMismatch, vrrpOper=vrrpOper, ipNewCfgRmapLp=ipNewCfgRmapLp, bgpCurCfgPeerFixedState=bgpCurCfgPeerFixedState, vrrpNewCfgVirtRtrVersion=vrrpNewCfgVirtRtrVersion, ospfNewCfgVirtIntfDelete=ospfNewCfgVirtIntfDelete, icmp6InRAs=icmp6InRAs, ipNewCfgGwRetry=ipNewCfgGwRetry, ipCurCfgGwPriority=ipCurCfgGwPriority, bgpNewCfgPeerRemoteAs=bgpNewCfgPeerRemoteAs, ospfIntfRxPkts=ospfIntfRxPkts, nbrcacheInfoVlanId=nbrcacheInfoVlanId, ripNewCfgIntfMetric=ripNewCfgIntfMetric, vrrpCurCfgIfIpAddr=vrrpCurCfgIfIpAddr, ospfCumRxlsAcks=ospfCumRxlsAcks, ospfAreaTxHello=ospfAreaTxHello, ospfIfBackupDesignatedRouterIP=ospfIfBackupDesignatedRouterIP, ipNewCfgIntfState=ipNewCfgIntfState, ipv6CurCfgStaticRouteEntry=ipv6CurCfgStaticRouteEntry, ospfAreaNbrBadRequests=ospfAreaNbrBadRequests, bgpNewCfgPeerRemoveOutRmap=bgpNewCfgPeerRemoveOutRmap, ospfNewCfgVirtIntfAreaId=ospfNewCfgVirtIntfAreaId, ip6GwStatsEntry=ip6GwStatsEntry, ipStaticRouteCfg=ipStaticRouteCfg, ipNewCfgStaticRouteAction=ipNewCfgStaticRouteAction, bgpGeneral=bgpGeneral, ospfAreaIntfIndex=ospfAreaIntfIndex, arpInfoDestIp=arpInfoDestIp, ripStatOutRequestPkts=ripStatOutRequestPkts, ospfTmrsKckOffLsaAck=ospfTmrsKckOffLsaAck, ospfTotalNeighbours=ospfTotalNeighbours, ospfAreaIntfUnloop=ospfAreaIntfUnloop, ipNewCfgStaticRouteMask=ipNewCfgStaticRouteMask, ospfNewCfgVirtIntfRetrans=ospfNewCfgVirtIntfRetrans, ospfCurCfgVirtIntfTable=ospfCurCfgVirtIntfTable, vrrpCurCfgVirtRtrVrGrpTckVlanPort=vrrpCurCfgVirtRtrVrGrpTckVlanPort, ripInfoIntfMetric=ripInfoIntfMetric, ipCurCfgIntfPrefixLen=ipCurCfgIntfPrefixLen, ospfNewCfgRangeEntry=ospfNewCfgRangeEntry, ospfIfNbrState=ospfIfNbrState, gatewayInfoTable=gatewayInfoTable, ospfNewCfgHostIndex=ospfNewCfgHostIndex, dnsCurCfgPrimaryIpAddr=dnsCurCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpBmap=vrrpCurCfgVirtRtrVrGrpBmap, ospfCurCfgRangeAddr=ospfCurCfgRangeAddr, ospfIntfTxHello=ospfIntfTxHello, vrrpNewCfgVirtRtrIpv6Addr=vrrpNewCfgVirtRtrIpv6Addr, ipFwdCurCfgDirectedBcast=ipFwdCurCfgDirectedBcast, vrrpCurCfgVirtRtrGrpID=vrrpCurCfgVirtRtrGrpID, ospfAreaNbrLoadingDone=ospfAreaNbrLoadingDone, ipNewCfgStaticRouteGateway=ipNewCfgStaticRouteGateway, ipCurCfgAlistEntry=ipCurCfgAlistEntry, ospfIntfNbrAdjointOk=ospfIntfNbrAdjointOk, ripCurCfgIntfVersion=ripCurCfgIntfVersion, ipNewCfgStaticRouteIndx=ipNewCfgStaticRouteIndx, ospfIntfTableMaxSize=ospfIntfTableMaxSize, ipAspathTableMax=ipAspathTableMax, vrrpCurCfgGenTckL4PortInc=vrrpCurCfgGenTckL4PortInc, ipCurCfgNwfIndex=ipCurCfgNwfIndex, bgpNewCfgPeerConRetry=bgpNewCfgPeerConRetry, ospfIntfRxDatabase=ospfIntfRxDatabase, icmp6InDestUnreachs=icmp6InDestUnreachs, vrrpCurCfgVirtRtrTable=vrrpCurCfgVirtRtrTable, ripCurCfgIntfTable=ripCurCfgIntfTable, ospfNewCfgVirtIntfEntry=ospfNewCfgVirtIntfEntry, vrrpStatOutAdvers=vrrpStatOutAdvers, icmp6OutMsgs=icmp6OutMsgs, vrrpNewCfgVirtRtrVrGrpPriority=vrrpNewCfgVirtRtrVrGrpPriority, ospfCurCfgRangeIndex=ospfCurCfgRangeIndex, ospfCurCfgIntfCost=ospfCurCfgIntfCost, bgpCurCfgPeerOutRmapList=bgpCurCfgPeerOutRmapList, ospfIntfTxlsReqs=ospfIntfTxlsReqs, vrrpNewCfgVirtRtrTableEntry=vrrpNewCfgVirtRtrTableEntry, vrrpNewCfgIfTable=vrrpNewCfgIfTable, bgpCurCfgAggrTable=bgpCurCfgAggrTable, ipStaticArpTableMaxSize=ipStaticArpTableMaxSize, nbrcacheInfoType=nbrcacheInfoType, vrrpCurCfgGenHotstandby=vrrpCurCfgGenHotstandby, ipNwfCfg=ipNwfCfg, ripCurCfgIntfTrigUpdate=ripCurCfgIntfTrigUpdate, ipNewCfgNwfState=ipNewCfgNwfState, ipNewCfgIntfPrefixLen=ipNewCfgIntfPrefixLen, vrrpNewCfgVirtRtrVrGrpTableEntry=vrrpNewCfgVirtRtrVrGrpTableEntry, ipStaticRouteTableMaxSize=ipStaticRouteTableMaxSize, ipCurCfgStaticArpIndx=ipCurCfgStaticArpIndx, ripInfoIntfSupply=ripInfoIntfSupply, vrrpNewCfgVirtRtrTckHsrv=vrrpNewCfgVirtRtrTckHsrv, ipNewCfgASNumber=ipNewCfgASNumber, rip2CurCfgStaticSupply=rip2CurCfgStaticSupply, ipv6NewCfgStaticRouteIndx=ipv6NewCfgStaticRouteIndx, ospfCurCfgHostTable=ospfCurCfgHostTable, ospfCumIntfChangeStats=ospfCumIntfChangeStats, ospfCurCfgHostEntry=ospfCurCfgHostEntry, ospfIntfBackup=ospfIntfBackup, ipRouteInfoIndx=ipRouteInfoIndx, vrrpCurCfgGenTckRServerInc=vrrpCurCfgGenTckRServerInc, vrrpNewCfgVirtRtrGrpTckVirtRtr=vrrpNewCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgVirtRtrVrGrpTckHsrp=vrrpCurCfgVirtRtrVrGrpTckHsrp, dnsStatOutDnsRequests=dnsStatOutDnsRequests, vrrpNewCfgVirtRtrGrpTable=vrrpNewCfgVirtRtrGrpTable, bgpOper=bgpOper, ospfAreaInfoTable=ospfAreaInfoTable, ospfCumNbrBadSequence=ospfCumNbrBadSequence, ipNwfTableMax=ipNwfTableMax, ospfNewCfgIntfTransit=ospfNewCfgIntfTransit, ip6OutRequests=ip6OutRequests, ipNewCfgGwAddr=ipNewCfgGwAddr, ospfNewCfgVisionAreaAuthType=ospfNewCfgVisionAreaAuthType, ipNewCfgGwArp=ipNewCfgGwArp, ospfCurCfgHostState=ospfCurCfgHostState, icmp6OutRAs=icmp6OutRAs, allowedNwInfo=allowedNwInfo, ipCurCfgRmapMetric=ipCurCfgRmapMetric, ospfNewCfgFixedAddOutRmap=ospfNewCfgFixedAddOutRmap, icmp6InTimeExcds=icmp6InTimeExcds, ospfNewCfgIntfRetrans=ospfNewCfgIntfRetrans, ripCurCfgIntfDefListen=ripCurCfgIntfDefListen, vrrpCurCfgVirtRtrVrGrpAdd=vrrpCurCfgVirtRtrVrGrpAdd, ospfNewCfgLsdb=ospfNewCfgLsdb, allowedNwInfoNetMask=allowedNwInfoNetMask, ip6InAddrErrors=ip6InAddrErrors, ipNewCfgStaticRouteInterface=ipNewCfgStaticRouteInterface, ospfCumTxHello=ospfCumTxHello, ipRouteInfoMetric=ipRouteInfoMetric, ip6InReceives=ip6InReceives, ospfCumIntfHello=ospfCumIntfHello, bgpCurCfgLocalPref=bgpCurCfgLocalPref, ospfNewCfgVisionAreaState=ospfNewCfgVisionAreaState, ospfCumIntfBackup=ospfCumIntfBackup, ipNewCfgNwfMask=ipNewCfgNwfMask, ospfIfNbrIpAddress=ospfIfNbrIpAddress, ipCurCfgIntfIpVer=ipCurCfgIntfIpVer, vrrpNewCfgVirtRtrVrGrpBmap=vrrpNewCfgVirtRtrVrGrpBmap, rip2CurCfgUpdatePeriod=rip2CurCfgUpdatePeriod, vrrpNewCfgVirtRtrPreempt=vrrpNewCfgVirtRtrPreempt, nbrcacheClear=nbrcacheClear, ipv6CurCfgStaticRouteInterface=ipv6CurCfgStaticRouteInterface, ripGeneral=ripGeneral, layer3Configs=layer3Configs, ipCurCfgBootpAddr2=ipCurCfgBootpAddr2, ospfNewCfgIntfCost=ospfNewCfgIntfCost, ipRoute6InfoIndx=ipRoute6InfoIndx, ipCurCfgAspathAS=ipCurCfgAspathAS, bgpNewCfgAggrAddr=bgpNewCfgAggrAddr, icmp6InRedirects=icmp6InRedirects, gatewayInfoAddr6=gatewayInfoAddr6, ipv6NewCfgStaticRouteGateway=ipv6NewCfgStaticRouteGateway, ospfIntfNbrNegotiationDone=ospfIntfNbrNegotiationDone, ospfNewCfgStaticRemoveOutRmap=ospfNewCfgStaticRemoveOutRmap, vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo=vrrpCurCfgVirtRtrVrGrpTckVirtRtrNo, vrrpCurCfgVirtRtrTckIpIntf=vrrpCurCfgVirtRtrTckIpIntf, ipCurCfgGwIpVer=ipCurCfgGwIpVer, ospfNewCfgRangeAddr=ospfNewCfgRangeAddr, ospfAreaTxlsUpdates=ospfAreaTxlsUpdates, ip6ReasmFails=ip6ReasmFails, ipIntfInfoTable=ipIntfInfoTable, ipRouteInfoEntry=ipRouteInfoEntry, ipCurCfgGwTable=ipCurCfgGwTable, ipRouteInfoType=ipRouteInfoType, ipv6CurCfgStaticRouteDestIp=ipv6CurCfgStaticRouteDestIp, vrrpCurCfgVirtRtrTckL4Port=vrrpCurCfgVirtRtrTckL4Port)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfCumTxlsReqs=ospfCumTxlsReqs, intfInfoBcastAddr=intfInfoBcastAddr, ospfCurCfgVirtIntfAreaId=ospfCurCfgVirtIntfAreaId, ipNewCfgIntfBroadcast=ipNewCfgIntfBroadcast, vrrpNewCfgVirtRtrGrpPriority=vrrpNewCfgVirtRtrGrpPriority, bgpCurCfgAggrMask=bgpCurCfgAggrMask, vrrpInfoVirtRtrOwnership=vrrpInfoVirtRtrOwnership, ipFwdCurCfgPortIndex=ipFwdCurCfgPortIndex, ospfCurCfgDefaultRouteMetric=ospfCurCfgDefaultRouteMetric, rip2RoutesInfo=rip2RoutesInfo, ospfCumRxDatabase=ospfCumRxDatabase, ipNewCfgGwPriority=ipNewCfgGwPriority, ospfVlinkCountForRouter=ospfVlinkCountForRouter, vrrpCurCfgIfAuthType=vrrpCurCfgIfAuthType, bgpCurCfgPeerState=bgpCurCfgPeerState, ipNewCfgStaticArpVlan=ipNewCfgStaticArpVlan, ipv6NewCfgStaticRouteInterface=ipv6NewCfgStaticRouteInterface, ospfGeneralStats=ospfGeneralStats, ip6GwEchoresp=ip6GwEchoresp, vrrpInfoVirtRtrTableEntry=vrrpInfoVirtRtrTableEntry, ipFwdCurCfgLocalTable=ipFwdCurCfgLocalTable, ipFwdCurCfgRtCache=ipFwdCurCfgRtCache, ipCurCfgAlistIndex=ipCurCfgAlistIndex, ospfCurCfgMdkeyKey=ospfCurCfgMdkeyKey, icmp6InMsgs=icmp6InMsgs, bgpOperStart=bgpOperStart, ospfNewCfgIbgpOutRmapList=ospfNewCfgIbgpOutRmapList, nbrcacheInfoDestIp=nbrcacheInfoDestIp, bgpNewCfgPeerTtl=bgpNewCfgPeerTtl, ip6icmpOutErrors=ip6icmpOutErrors, ospfCurCfgDefaultRouteMetricType=ospfCurCfgDefaultRouteMetricType, ospfNewCfgIntfAreaId=ospfNewCfgIntfAreaId, vrrpOperVirtRtrIndex=vrrpOperVirtRtrIndex, ip6GwRetry=ip6GwRetry, ipv6CurCfgStaticRouteTable=ipv6CurCfgStaticRouteTable, vrrpCurCfgVirtRtrGrpTckL4Port=vrrpCurCfgVirtRtrGrpTckL4Port, ipStaticArpCfg=ipStaticArpCfg, ospfNewCfgIntfTable=ospfNewCfgIntfTable, ipNewCfgRmapState=ipNewCfgRmapState, vrrpOperVirtRtrBackup=vrrpOperVirtRtrBackup, ospfTmrsKckOffDbage=ospfTmrsKckOffDbage, vrrpCurCfgVirtRtrInterval=vrrpCurCfgVirtRtrInterval, ospfRouteRedistribution=ospfRouteRedistribution, vrrpCurCfgGenTckHsrpInc=vrrpCurCfgGenTckHsrpInc, ipFwdNewCfgPortTable=ipFwdNewCfgPortTable, arpInfoMacAddr=arpInfoMacAddr, ripNewCfgIntfSupply=ripNewCfgIntfSupply, ripCurCfgIntfState=ripCurCfgIntfState, vrrpInfoVirtRtrState=vrrpInfoVirtRtrState, rip2RoutesInfoMetric=rip2RoutesInfoMetric, ipCurCfgStaticArpEntry=ipCurCfgStaticArpEntry, vrrpCurCfgVirtRtrVrGrpTckL4Port=vrrpCurCfgVirtRtrVrGrpTckL4Port, ospfNewCfgVisionAreaSpfInterval=ospfNewCfgVisionAreaSpfInterval, icmp6IntfIndex=icmp6IntfIndex, dnsCfg=dnsCfg, ipCurCfgAlistNwf=ipCurCfgAlistNwf, ipCurCfgGwInterval=ipCurCfgGwInterval, ipv6NewCfgStaticRouteEntry=ipv6NewCfgStaticRouteEntry, ospfIfTotalNeighbours=ospfIfTotalNeighbours, bgpNewCfgAggrMask=bgpNewCfgAggrMask, ospfCurCfgIntfState=ospfCurCfgIntfState, ospfNewCfgIntfHello=ospfNewCfgIntfHello, ipFwdPortTableMaxSize=ipFwdPortTableMaxSize, ospfCurCfgIntfId=ospfCurCfgIntfId, ripStatOutResponsePkts=ripStatOutResponsePkts, ospfAreaNbrRstAd=ospfAreaNbrRstAd, vrrpNewCfgVirtRtrGrpIpv6Interval=vrrpNewCfgVirtRtrGrpIpv6Interval, ospfAreaNbrNegotiationDone=ospfAreaNbrNegotiationDone, ipNewCfgStaticRouteTable=ipNewCfgStaticRouteTable, vrrpNewCfgVirtRtrVrGrpTckIpIntf=vrrpNewCfgVirtRtrVrGrpTckIpIntf, ospfCurCfgVirtIntfMdkey=ospfCurCfgVirtIntfMdkey, ospfNewCfgAreaDelete=ospfNewCfgAreaDelete, vrrpCurCfgVirtRtrPreempt=vrrpCurCfgVirtRtrPreempt, ipv6CurCfgStaticRouteIndx=ipv6CurCfgStaticRouteIndx, ipNewCfgAlistTable=ipNewCfgAlistTable, gatewayInfoStatus=gatewayInfoStatus, ipNewCfgRmapDelete=ipNewCfgRmapDelete, ipNewCfgGwMetric=ipNewCfgGwMetric, ospfCurCfgEbgpMetric=ospfCurCfgEbgpMetric, ipCurCfgNwfEntry=ipCurCfgNwfEntry, vrrpNewCfgVirtRtrVrGrpName=vrrpNewCfgVirtRtrVrGrpName, ospfIntfNbrN2way=ospfIntfNbrN2way, ipNewCfgIntfIpv6Addr=ipNewCfgIntfIpv6Addr, ospfAreaErrorStats=ospfAreaErrorStats, ospfCumNbrhello=ospfCumNbrhello, ipAlistTableMax=ipAlistTableMax, ospfCumIntfDown=ospfCumIntfDown, ipRmapTableMax=ipRmapTableMax, ospfNewCfgIntfKey=ospfNewCfgIntfKey, ripInfoIntfKey=ripInfoIntfKey, vrrpCurCfgVirtRtrVersion=vrrpCurCfgVirtRtrVersion, ipFwdNewCfgPortEntry=ipFwdNewCfgPortEntry, ospfAreaIntfLoop=ospfAreaIntfLoop, ospfRedistributeIbgp=ospfRedistributeIbgp, vrrpNewCfgVirtRtrVrGrpAdd=vrrpNewCfgVirtRtrVrGrpAdd, ospfCurCfgIntfHello=ospfCurCfgIntfHello, ripStatInBadVersion=ripStatInBadVersion, ripNewCfgIntfMcastUpdate=ripNewCfgIntfMcastUpdate, ospfCumIntfLoop=ospfCumIntfLoop, ospfCurCfgVirtIntfRetrans=ospfCurCfgVirtIntfRetrans, ipNewCfgStaticArpPort=ipNewCfgStaticArpPort, bgpNewCfgPeerHoldTime=bgpNewCfgPeerHoldTime, ospfTimersKickOffStats=ospfTimersKickOffStats, ipCurCfgGwState=ipCurCfgGwState, ospfAreaIntfWaitTimer=ospfAreaIntfWaitTimer, ipCurCfgIntfMask=ipCurCfgIntfMask, ospfAreaNbrChangeStats=ospfAreaNbrChangeStats, ipCurCfgRmapPrec=ipCurCfgRmapPrec, ipNewCfgRmapWeight=ipNewCfgRmapWeight, bgpNewCfgPeerAddOutRmap=bgpNewCfgPeerAddOutRmap, ospfIntfErrAuthFailure=ospfIntfErrAuthFailure, allowedNwInfoIp6Prefix=allowedNwInfoIp6Prefix, arpInfoRefPorts=arpInfoRefPorts, ospfIntfDown=ospfIntfDown, bgpNewCfgPeerRemoveInRmap=bgpNewCfgPeerRemoveInRmap, ipFwdCurCfgPortTable=ipFwdCurCfgPortTable, vrrpCurCfgVirtRtrID=vrrpCurCfgVirtRtrID, ospfIntfNbrN1way=ospfIntfNbrN1way, ipRoute6InfoTable=ipRoute6InfoTable, ospfIntfLoop=ospfIntfLoop, ifStatsTable=ifStatsTable, ipNewCfgStaticRouteDestIp=ipNewCfgStaticRouteDestIp, ipBootpCfg=ipBootpCfg, nbrcacheInfo=nbrcacheInfo, ospfTmrsKckOffLsaLock=ospfTmrsKckOffLsaLock, ospfAreaNbrChangeStatsEntry=ospfAreaNbrChangeStatsEntry, bgpNewCfgPeerIndex=bgpNewCfgPeerIndex, bgpNewCfgAggrIndex=bgpNewCfgAggrIndex, ospfAreaInfoEntry=ospfAreaInfoEntry, bgpNewCfgPeerMinTime=bgpNewCfgPeerMinTime, ospfAreaIntfDown=ospfAreaIntfDown, ipCurCfgIntfEntry=ipCurCfgIntfEntry, ipNewCfgStaticArpMAC=ipNewCfgStaticArpMAC, ripCurCfgIntfMetric=ripCurCfgIntfMetric, ipNewCfgAspathState=ipNewCfgAspathState, vrrpCurCfgVirtRtrVrGrpPreemption=vrrpCurCfgVirtRtrVrGrpPreemption, ospfCurCfgAreaSpfInterval=ospfCurCfgAreaSpfInterval, ospfIntfErrHelloMismatch=ospfIntfErrHelloMismatch, vrrpStatInAdvers=vrrpStatInAdvers, vrrpCurCfgGenTckVlanPortInc=vrrpCurCfgGenTckVlanPortInc, allowedNwInfoIpver=allowedNwInfoIpver, ipNewCfgAspathTable=ipNewCfgAspathTable, ospfGeneralInfo=ospfGeneralInfo, ospfAreaChangeStatsEntry=ospfAreaChangeStatsEntry, ospfAreaIntfBackup=ospfAreaIntfBackup, vrrpCurCfgVirtRtrAddr=vrrpCurCfgVirtRtrAddr, ripCurCfgIntfSupply=ripCurCfgIntfSupply, icmp6OutErrors=icmp6OutErrors, ospfTmrsKckOffHello=ospfTmrsKckOffHello, vrrpNewCfgVirtRtrDelete=vrrpNewCfgVirtRtrDelete, ipNewCfgNwfAddr=ipNewCfgNwfAddr, arpInfoEntry=arpInfoEntry, ipCurCfgIntfState=ipCurCfgIntfState, allowedNwInfoBeginIpAddr=allowedNwInfoBeginIpAddr, arpStats=arpStats, ipFwdNewCfgPortIndex=ipFwdNewCfgPortIndex, ospfNewCfgRangeMask=ospfNewCfgRangeMask, ipNewCfgAlistNwf=ipNewCfgAlistNwf, bgpCurCfgPeerMinAS=bgpCurCfgPeerMinAS, vrrpNewCfgGenTckL4PortInc=vrrpNewCfgGenTckL4PortInc, ipInterfaceTableMax=ipInterfaceTableMax, ospfIntfNbrChangeStatsEntry=ospfIntfNbrChangeStatsEntry, ospfIntfRxHello=ospfIntfRxHello, ipCurCfgStaticArpMAC=ipCurCfgStaticArpMAC, icmp6StatsIndx=icmp6StatsIndx, ospfNewCfgRangeAreaIndex=ospfNewCfgRangeAreaIndex, rip2RoutesInfoNxtHopIndex=rip2RoutesInfoNxtHopIndex, ipNewCfgIntfVlan=ipNewCfgIntfVlan, ospfAreaTxlsReqs=ospfAreaTxlsReqs, garpOper=garpOper, ospfNewCfgAreaState=ospfNewCfgAreaState, ospfStats=ospfStats, ip6ForwDatagrams=ip6ForwDatagrams, ospfIfInfoIndex=ospfIfInfoIndex, rip2NewCfgVip=rip2NewCfgVip, ipFwdCurCfgLocalSubnet=ipFwdCurCfgLocalSubnet, ipNewCfgBootpState=ipNewCfgBootpState, ospfInterface=ospfInterface, bgpOperStop=bgpOperStop, garpOperVlanNumber=garpOperVlanNumber, bgpCurCfgPeerConRetry=bgpCurCfgPeerConRetry, ospfCumRxHello=ospfCumRxHello, vrrpNewCfgGenState=vrrpNewCfgGenState, PYSNMP_MODULE_ID=layer3, rip2Cfg=rip2Cfg, ospfNewCfgStaticAddOutRmap=ospfNewCfgStaticAddOutRmap, ipNewCfgIntfIndex=ipNewCfgIntfIndex, ospfNewCfgVirtIntfIndex=ospfNewCfgVirtIntfIndex, ipClearStats=ipClearStats, gatewayInfo=gatewayInfo, ospfAreaRxTxStats=ospfAreaRxTxStats, ipNewCfgAlistDelete=ipNewCfgAlistDelete, ospfCumTxlsUpdates=ospfCumTxlsUpdates, vrrpNewCfgGenHotstandby=vrrpNewCfgGenHotstandby, ospfIntfErrOptionsMismatch=ospfIntfErrOptionsMismatch, ipRoute6InfoEntry=ipRoute6InfoEntry, ospfNewCfgVisionAreaIndex=ospfNewCfgVisionAreaIndex, vrrpNewCfgVirtRtrGrpSharing=vrrpNewCfgVirtRtrGrpSharing, ipCurCfgGwMetric=ipCurCfgGwMetric, vrrpCurCfgVirtRtrVrGrpTckRServer=vrrpCurCfgVirtRtrVrGrpTckRServer, ospfCurCfgIntfMdkey=ospfCurCfgIntfMdkey, ospfCurCfgIbgpOutRmapList=ospfCurCfgIbgpOutRmapList, vrrpNewCfgVirtRtrVrGrpTckVlanPort=vrrpNewCfgVirtRtrVrGrpTckVlanPort, ipNewCfgAspathAS=ipNewCfgAspathAS, ospfCumIntfNbrChange=ospfCumIntfNbrChange, ospfNewCfgHostDelete=ospfNewCfgHostDelete, vrrpNewCfgVirtRtrVrGrpTckRServer=vrrpNewCfgVirtRtrVrGrpTckRServer, intfInfoEntry=intfInfoEntry, bgpNewCfgState=bgpNewCfgState, ospfCurCfgHostAreaIndex=ospfCurCfgHostAreaIndex, ipCurCfgRouterID=ipCurCfgRouterID, icmp6InNSs=icmp6InNSs, icmp6InParmProbs=icmp6InParmProbs, ipCurCfgNwfState=ipCurCfgNwfState, ipNewCfgAlistEntry=ipNewCfgAlistEntry, bgpCurCfgPeerRemoteAddr=bgpCurCfgPeerRemoteAddr, vrrpNewCfgVirtRtrGrpIfIndex=vrrpNewCfgVirtRtrGrpIfIndex, ospfCurCfgFixedOutRmapList=ospfCurCfgFixedOutRmapList, ospfNewCfgFixedOutRmapList=ospfNewCfgFixedOutRmapList, ospfAreaRxTxIndex=ospfAreaRxTxIndex, ipRoute6InfoNextHop=ipRoute6InfoNextHop, ospfIntfInfoTable=ospfIntfInfoTable, ospfGeneral=ospfGeneral, ospfAreaNbrBadSequence=ospfAreaNbrBadSequence, ospfVirtIntfTableMaxSize=ospfVirtIntfTableMaxSize, ipFwdNewCfgState=ipFwdNewCfgState, ospfCurCfgIntfKey=ospfCurCfgIntfKey, ospfNewCfgVirtIntfTransit=ospfNewCfgVirtIntfTransit, ospfIfInfoIpAddress=ospfIfInfoIpAddress, vrrpCurCfgGenTckHsrvInc=vrrpCurCfgGenTckHsrvInc, ospfAreaTableMaxSize=ospfAreaTableMaxSize, ipCurCfgIntfRouteAdv=ipCurCfgIntfRouteAdv, ipCurCfgAlistAction=ipCurCfgAlistAction, ripStatInBadSourcePort=ripStatInBadSourcePort, ipCurCfgAlistState=ipCurCfgAlistState, bgpNewCfgMaxASPath=bgpNewCfgMaxASPath, ospfCurCfgVirtIntfTransit=ospfCurCfgVirtIntfTransit, nbrcacheInfoState=nbrcacheInfoState, ospfNewCfgMdkeyDelete=ospfNewCfgMdkeyDelete, ipCurCfgStaticRouteInterface=ipCurCfgStaticRouteInterface, bgpNewCfgAggrDelete=bgpNewCfgAggrDelete, ospfAreaTxPkts=ospfAreaTxPkts, routeStatMaxEntries=routeStatMaxEntries, ipNewCfgNwfEntry=ipNewCfgNwfEntry, ipRouteInfoMask=ipRouteInfoMask, dnsNewCfgDomainName=dnsNewCfgDomainName, ospfNbrInFullState=ospfNbrInFullState, vrrpNewCfgVirtRtrVrGrpIndx=vrrpNewCfgVirtRtrVrGrpIndx, ipCurCfgRmapIndex=ipCurCfgRmapIndex, vrrpNewCfgVirtRtrIndx=vrrpNewCfgVirtRtrIndx, ospfCurCfgIntfIndex=ospfCurCfgIntfIndex, vrrpNewCfgVirtRtrVrGrpSharing=vrrpNewCfgVirtRtrVrGrpSharing, ospfCurCfgIntfAreaId=ospfCurCfgIntfAreaId, ospfNewCfgVisionAreaId=ospfNewCfgVisionAreaId)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ripStatInRequestPkts=ripStatInRequestPkts, arpInfoSrcPort=arpInfoSrcPort, ipFwdCurCfgLocalEntry=ipFwdCurCfgLocalEntry, bgpPeerTableMax=bgpPeerTableMax, ospfIfNbrBackupDesignatedRtr=ospfIfNbrBackupDesignatedRtr, vrrpCurCfgVirtRtrGrpPriority=vrrpCurCfgVirtRtrGrpPriority, ospfIntfNbrBadSequence=ospfIntfNbrBadSequence, ipCurCfgBootpAddr=ipCurCfgBootpAddr, ipCurCfgStaticArpVlan=ipCurCfgStaticArpVlan, bgpCurCfgAggrEntry=bgpCurCfgAggrEntry, ospfAreaRxlsAcks=ospfAreaRxlsAcks, vrrpNewCfgVirtRtrGrpTableEntry=vrrpNewCfgVirtRtrGrpTableEntry, ospfCurCfgRipMetric=ospfCurCfgRipMetric, vrrpNewCfgVirtRtrGrpTckIpIntf=vrrpNewCfgVirtRtrGrpTckIpIntf, ipNewCfgRmapIndex=ipNewCfgRmapIndex, ospfNewCfgHostIpAddr=ospfNewCfgHostIpAddr, vrrpNewCfgVirtRtrGrpTckRServer=vrrpNewCfgVirtRtrGrpTckRServer, ospfCurCfgIntfRetrans=ospfCurCfgIntfRetrans, vrrpNewCfgIfTableEntry=vrrpNewCfgIfTableEntry, dnsCurCfgPrimaryIpv6Addr=dnsCurCfgPrimaryIpv6Addr, vrrpCurCfgVirtRtrSharing=vrrpCurCfgVirtRtrSharing, ipCurCfgGwVlan=ipCurCfgGwVlan, bgpCurCfgPeerTtl=bgpCurCfgPeerTtl, bgpCurCfgPeerTable=bgpCurCfgPeerTable, ospfCurCfgRangeTable=ospfCurCfgRangeTable, ospfNewCfgRangeState=ospfNewCfgRangeState, ospfTotalAreas=ospfTotalAreas, ipCurCfgNwfAddr=ipCurCfgNwfAddr, ipCurCfgAspathState=ipCurCfgAspathState, ospfNewCfgAreaId=ospfNewCfgAreaId, ospfNewCfgEbgpOutRmapList=ospfNewCfgEbgpOutRmapList, ospfNewCfgMdkeyEntry=ospfNewCfgMdkeyEntry, ospfIntfNbrChangeStats=ospfIntfNbrChangeStats, dnsCurCfgSecondaryIpAddr=dnsCurCfgSecondaryIpAddr, ospfCurCfgVirtIntfDead=ospfCurCfgVirtIntfDead, rip2NewCfgState=rip2NewCfgState, vrrpCurCfgVirtRtrGrpTckVlanPort=vrrpCurCfgVirtRtrGrpTckVlanPort, ip6ReasmOKs=ip6ReasmOKs, bgpCurCfgPeerHoldTime=bgpCurCfgPeerHoldTime, ripNewCfgIntfTrigUpdate=ripNewCfgIntfTrigUpdate, ospfIntfHello=ospfIntfHello, ipv6NewCfgStaticRouteMask=ipv6NewCfgStaticRouteMask, icmp6InErrors=icmp6InErrors, nbrcacheInfoTable=nbrcacheInfoTable, ip6icmpInMsgs=ip6icmpInMsgs, ipNewCfgRmapTable=ipNewCfgRmapTable, vrrpCurCfgVirtRtrGrpTckHsrp=vrrpCurCfgVirtRtrGrpTckHsrp, vrrpNewCfgIfDelete=vrrpNewCfgIfDelete, ipNewCfgNwfIndex=ipNewCfgNwfIndex, ospfNewCfgVirtIntfKey=ospfNewCfgVirtIntfKey, ipNewCfgIntfAddr=ipNewCfgIntfAddr, ospfCurCfgEbgpMetricType=ospfCurCfgEbgpMetricType, ospfNewCfgEbgpAddOutRmap=ospfNewCfgEbgpAddOutRmap, ipNewCfgStaticArpIp=ipNewCfgStaticArpIp, ipCurCfgAlistTable=ipCurCfgAlistTable, nbrcacheInfoTotDynamicEntries=nbrcacheInfoTotDynamicEntries, ripNewCfgIntfDefault=ripNewCfgIntfDefault, ipNewCfgIntfTable=ipNewCfgIntfTable, bgpNewCfgPeerEntry=bgpNewCfgPeerEntry, ipRouteInfoTag=ipRouteInfoTag, ospfNewCfgFixedMetric=ospfNewCfgFixedMetric, ospfCurCfgRipOutRmapList=ospfCurCfgRipOutRmapList, ipRouteInfoGateway1=ipRouteInfoGateway1, ospfCurCfgVirtIntfKey=ospfCurCfgVirtIntfKey, ipFwdGeneralCfg=ipFwdGeneralCfg, vrrpNewCfgVirtRtrGrpState=vrrpNewCfgVirtRtrGrpState, ospfIntfTxPkts=ospfIntfTxPkts, ospfCumNbrExchangeDone=ospfCumNbrExchangeDone, ospfRedistributeStatic=ospfRedistributeStatic, ospfCumNbrStart=ospfCumNbrStart, ospfCumRxTxStats=ospfCumRxTxStats, garpOperSend=garpOperSend, ipNewCfgGwIndex=ipNewCfgGwIndex, ospfIntfErrIndex=ospfIntfErrIndex, icmp6Stats=icmp6Stats, ospfCurCfgFixedMetricType=ospfCurCfgFixedMetricType, ripStatInBadZeros=ripStatInBadZeros, ipNewCfgRmapMetricType=ipNewCfgRmapMetricType, ospfTmrsKckOffRetransmit=ospfTmrsKckOffRetransmit, vrrpOperVirtRtrTable=vrrpOperVirtRtrTable, ospfIntfErrNetmaskMismatch=ospfIntfErrNetmaskMismatch, vrrpNewCfgVirtRtrGrpID=vrrpNewCfgVirtRtrGrpID, ospfNewCfgVirtIntfNbr=ospfNewCfgVirtIntfNbr, ospfAreaChangeStats=ospfAreaChangeStats, ospfHostTableMaxSize=ospfHostTableMaxSize, bgpNewCfgPeerRemoteAddr=bgpNewCfgPeerRemoteAddr, ospfNewCfgDefaultRouteMetric=ospfNewCfgDefaultRouteMetric, ip6GwStatsTable=ip6GwStatsTable, ospfCumNbrN2way=ospfCumNbrN2way, ospfNewCfgHostCost=ospfNewCfgHostCost, ospfCurCfgVirtIntfIndex=ospfCurCfgVirtIntfIndex, ipNewCfgIntfIpVer=ipNewCfgIntfIpVer, ipOper=ipOper, arpCurCfgReARPPeriod=arpCurCfgReARPPeriod, ripStatInBadSizePkts=ripStatInBadSizePkts, ipCurCfgAlistRmapIndex=ipCurCfgAlistRmapIndex, bgpOperStartSess=bgpOperStartSess, dnsNewCfgPrimaryIpAddr=dnsNewCfgPrimaryIpAddr, vrrpCurCfgVirtRtrVrGrpIndx=vrrpCurCfgVirtRtrVrGrpIndx, ipFwdNewCfgLocalSubnet=ipFwdNewCfgLocalSubnet, ospfCumNbrLoadingDone=ospfCumNbrLoadingDone, ipCurCfgStaticRouteIndx=ipCurCfgStaticRouteIndx, ospfNewCfgHostAreaIndex=ospfNewCfgHostAreaIndex, ipRouteInfoInterface=ipRouteInfoInterface, ospfIfNbrDesignatedRtr=ospfIfNbrDesignatedRtr, icmp6InEchos=icmp6InEchos, ospfNewCfgDefaultRouteMetricType=ospfNewCfgDefaultRouteMetricType, arpCacheClear=arpCacheClear, nbrcacheInfoEntry=nbrcacheInfoEntry, rip2RoutesInfoIpAddress=rip2RoutesInfoIpAddress, ipCurCfgStaticRouteTable=ipCurCfgStaticRouteTable, tcpStatCurInConn=tcpStatCurInConn, ripNewCfgIntfVersion=ripNewCfgIntfVersion, vrrpNewCfgVirtRtrInterval=vrrpNewCfgVirtRtrInterval, vrrpNewCfgGenHoldoff=vrrpNewCfgGenHoldoff, ospfIntfRxlsUpdates=ospfIntfRxlsUpdates, arpInfoVLAN=arpInfoVLAN, vrrpCurCfgIfIndx=vrrpCurCfgIfIndx, ospfTotalTransitAreas=ospfTotalTransitAreas, bgpCurCfgPeerMetric=bgpCurCfgPeerMetric, ip6GwIndex=ip6GwIndex, ipCurCfgStaticArpTable=ipCurCfgStaticArpTable, ospfNewCfgMdkeyKey=ospfNewCfgMdkeyKey, ospfNewCfgVirtIntfDead=ospfNewCfgVirtIntfDead, ospfIntfNbrDown=ospfIntfNbrDown, dnsCurCfgDomainName=dnsCurCfgDomainName, ospfNewCfgIntfState=ospfNewCfgIntfState, ospfNewCfgAreaSpfInterval=ospfNewCfgAreaSpfInterval, bgpCurCfgASNumber=bgpCurCfgASNumber, ospfCurCfgEbgpOutRmapList=ospfCurCfgEbgpOutRmapList, vrrpCurCfgVirtRtrVrGrpState=vrrpCurCfgVirtRtrVrGrpState, ospfAreaIntfNbrChange=ospfAreaIntfNbrChange, ospfIntfRxTxIndex=ospfIntfRxTxIndex, vrrpNewCfgVirtRtrTable=vrrpNewCfgVirtRtrTable, ospfCurCfgAreaTable=ospfCurCfgAreaTable, ip6GwEchoreq=ip6GwEchoreq, dnsNewCfgSecondaryIpAddr=dnsNewCfgSecondaryIpAddr, ospfCurCfgIbgpMetric=ospfCurCfgIbgpMetric, rip2InfoIntfTable=rip2InfoIntfTable, ip6Stats=ip6Stats, ipNewCfgAlistState=ipNewCfgAlistState, ospfIntfNbrStart=ospfIntfNbrStart, allowedNwInfoVlan=allowedNwInfoVlan, vrrpNewCfgIfPasswd=vrrpNewCfgIfPasswd, vrrpCurCfgVirtRtrTableEntry=vrrpCurCfgVirtRtrTableEntry, ospfIntfUnloop=ospfIntfUnloop, vrrpCurCfgVirtRtrGrpPreempt=vrrpCurCfgVirtRtrGrpPreempt, ospfNbrInExchState=ospfNbrInExchState, ipFwdNewCfgRtCache=ipFwdNewCfgRtCache, ospfNewCfgState=ospfNewCfgState, ospfIntfNbrLoadingDone=ospfIntfNbrLoadingDone, ip6GwMaster=ip6GwMaster, ospfIntfNbrChange=ospfIntfNbrChange, ipNewCfgGwIpVer=ipNewCfgGwIpVer, ospfCumNbrBadRequests=ospfCumNbrBadRequests, ipCurCfgAspathEntry=ipCurCfgAspathEntry, bgpNewCfgPeerStaticState=bgpNewCfgPeerStaticState, vrrpInfoVirtRtrPriority=vrrpInfoVirtRtrPriority, bgpNewCfgPeerRipState=bgpNewCfgPeerRipState, ripCurCfgIntfDefault=ripCurCfgIntfDefault, ipCurCfgAspathTable=ipCurCfgAspathTable, bgpCurCfgPeerRipState=bgpCurCfgPeerRipState, ospfNewCfgRangeTable=ospfNewCfgRangeTable, ospfNewCfgIbgpAddOutRmap=ospfNewCfgIbgpAddOutRmap, icmp6InNAs=icmp6InNAs, ipFwdCurCfgPortState=ipFwdCurCfgPortState, vrrpInfoVirtRtrServer=vrrpInfoVirtRtrServer, ripInfoUpdatePeriod=ripInfoUpdatePeriod, ripInfoIntfMcastUpdate=ripInfoIntfMcastUpdate, arpCfg=arpCfg, vrrpNewCfgVirtRtrIpv6Interval=vrrpNewCfgVirtRtrIpv6Interval, ospfIntfErrorStatsEntry=ospfIntfErrorStatsEntry, vrrpNewCfgVirtRtrVrGrpState=vrrpNewCfgVirtRtrVrGrpState, ipNewCfgGwTable=ipNewCfgGwTable, ipFwdNewCfgLocalMask=ipFwdNewCfgLocalMask, bgpCurCfgPeerIndex=bgpCurCfgPeerIndex, vrrpCfg=vrrpCfg, vrrpNewCfgIfIndx=vrrpNewCfgIfIndx, ipRouteInfoDestIp=ipRouteInfoDestIp, ipNewCfgStaticArpAction=ipNewCfgStaticArpAction, vrrpNewCfgVirtRtrID=vrrpNewCfgVirtRtrID, ipCurCfgRmapState=ipCurCfgRmapState, ospfAreaRxHello=ospfAreaRxHello, ospfAreaInfoIndex=ospfAreaInfoIndex, ipNewCfgGwVlan=ipNewCfgGwVlan, ospfTmrsKckOffSummary=ospfTmrsKckOffSummary, nbrcacheInfoPortNum=nbrcacheInfoPortNum, bgpOperStopPeerNum=bgpOperStopPeerNum, ospfNewCfgRipMetricType=ospfNewCfgRipMetricType, ospfNewCfgFixedRemoveOutRmap=ospfNewCfgFixedRemoveOutRmap, ospfAreaNbrN2way=ospfAreaNbrN2way, vrrpCurCfgVirtRtrGrpIfIndex=vrrpCurCfgVirtRtrGrpIfIndex, ipCurCfgASNumber=ipCurCfgASNumber, ipNewCfgNwfDelete=ipNewCfgNwfDelete, ipCurCfgIntfTable=ipCurCfgIntfTable, ospfNewCfgAreaEntry=ospfNewCfgAreaEntry, ripStatInBadSourceIP=ripStatInBadSourceIP, ospfIntfNbrBadRequests=ospfIntfNbrBadRequests, icmp6OutRedirects=icmp6OutRedirects, ospfAreaTxDatabase=ospfAreaTxDatabase, ospfIntfTxlsAcks=ospfIntfTxlsAcks, ospfAreaIntfHello=ospfAreaIntfHello, ipCurCfgIntfBootpRelay=ipCurCfgIntfBootpRelay, ripInfoIntfDefault=ripInfoIntfDefault, ospfCumNbrChangeStats=ospfCumNbrChangeStats, allowedNwInfoTable=allowedNwInfoTable, ipStaticArpTableNextAvailableIndex=ipStaticArpTableNextAvailableIndex, ospfIntfTxlsUpdates=ospfIntfTxlsUpdates, ospfLsTypesSupported=ospfLsTypesSupported, vrrpNewCfgVirtRtrPriority=vrrpNewCfgVirtRtrPriority, ipCurCfgNwfMask=ipCurCfgNwfMask, vrrpCurCfgVirtRtrPriority=vrrpCurCfgVirtRtrPriority, ospfCurCfgAreaState=ospfCurCfgAreaState, bgpNewCfgPeerState=bgpNewCfgPeerState, ospfCumNbrN1way=ospfCumNbrN1way, bgpCurCfgPeerMinTime=bgpCurCfgPeerMinTime, ipFwdLocalTableMaxSize=ipFwdLocalTableMaxSize, bgpNewCfgASNumber=bgpNewCfgASNumber, ospfAreaNbrAdjointOk=ospfAreaNbrAdjointOk, arpInfoTable=arpInfoTable, ipFwdCurCfgState=ipFwdCurCfgState, ipCurCfgRmapMetricType=ipCurCfgRmapMetricType, gatewayInfoVlan=gatewayInfoVlan, routeStats=routeStats, ifStatsEntry=ifStatsEntry, ospfCurCfgHostIpAddr=ospfCurCfgHostIpAddr, ospfCurCfgAreaEntry=ospfCurCfgAreaEntry, vrrpCurCfgVirtRtrVrGrpTableEntry=vrrpCurCfgVirtRtrVrGrpTableEntry, ipRoute6Info=ipRoute6Info, ipGatewayCfg=ipGatewayCfg, vrrpCurCfgVirtRtrVrGrpTckIpIntf=vrrpCurCfgVirtRtrVrGrpTckIpIntf, ipCurCfgRmapWeight=ipCurCfgRmapWeight, ripInfoStaticSupply=ripInfoStaticSupply, ospfNewCfgIntfDead=ospfNewCfgIntfDead, intfInfoVlan=intfInfoVlan, vrrpCurCfgIfPasswd=vrrpCurCfgIfPasswd, ospfIfNbrPriority=ospfIfNbrPriority, ripInfoIntfTrigUpdate=ripInfoIntfTrigUpdate, vrrpNewCfgVirtRtrGrpIndx=vrrpNewCfgVirtRtrGrpIndx, ipFwdCurCfgLocalIndex=ipFwdCurCfgLocalIndex, vrrpCurCfgVirtRtrGrpInterval=vrrpCurCfgVirtRtrGrpInterval, vrrpCurCfgIfTable=vrrpCurCfgIfTable, ripNewCfgIntfDefListen=ripNewCfgIntfDefListen, ipFwdNewCfgLocalTable=ipFwdNewCfgLocalTable, ospfRedistributeEbgp=ospfRedistributeEbgp, ipNewCfgStaticArpEntry=ipNewCfgStaticArpEntry, ospfAreaErrOptionsMismatch=ospfAreaErrOptionsMismatch, vrrpVirtRtrTableMaxSize=vrrpVirtRtrTableMaxSize, ospfCurCfgStaticMetricType=ospfCurCfgStaticMetricType, ospfAreaErrUnknownNbr=ospfAreaErrUnknownNbr, intfInfoNetMask=intfInfoNetMask, ospfCurCfgRipMetricType=ospfCurCfgRipMetricType, ospfTotalNumberOfInterfaces=ospfTotalNumberOfInterfaces, routeTableClear=routeTableClear)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfIntfCountForRouter=ospfIntfCountForRouter, layer3Stats=layer3Stats, ipNewCfgStaticRouteEntry=ipNewCfgStaticRouteEntry, vrrpNewCfgGenTckRServerInc=vrrpNewCfgGenTckRServerInc, ipv6NewCfgStaticRouteDestIp=ipv6NewCfgStaticRouteDestIp, vrrpNewCfgVirtRtrVrGrpTable=vrrpNewCfgVirtRtrVrGrpTable, ospfRangeTableMaxSize=ospfRangeTableMaxSize, ospfCurCfgRangeHideState=ospfCurCfgRangeHideState, ospfIntfChangeStatsEntry=ospfIntfChangeStatsEntry, ipRoute6InfoProto=ipRoute6InfoProto, ospfRedistributeRip=ospfRedistributeRip, vrrpCurCfgVirtRtrGrpIndx=vrrpCurCfgVirtRtrGrpIndx, icmp6StatsTable=icmp6StatsTable, rip2GeneralInfo=rip2GeneralInfo, vrrpNewCfgGenTckVlanPortInc=vrrpNewCfgGenTckVlanPortInc, vrrpNewCfgVirtRtrTckL4Port=vrrpNewCfgVirtRtrTckL4Port, icmp6OutNSs=icmp6OutNSs, ipRouteInfoGateway=ipRouteInfoGateway, bgpCfg=bgpCfg, ospfTmrsKckOffAseExport=ospfTmrsKckOffAseExport, layer3Oper=layer3Oper, icmp6OutEchos=icmp6OutEchos, vrrpCurCfgVirtRtrGrpIpv6Interval=vrrpCurCfgVirtRtrGrpIpv6Interval, ospfIntfNbrIndex=ospfIntfNbrIndex, ospfIntfNbrExchangeDone=ospfIntfNbrExchangeDone, ospfCurCfgRangeAreaIndex=ospfCurCfgRangeAreaIndex, ipNewCfgRmapMetric=ipNewCfgRmapMetric, bgpAggrTableMax=bgpAggrTableMax, ip6InDelivers=ip6InDelivers, vrrpCurCfgVirtRtrGrpTckHsrv=vrrpCurCfgVirtRtrGrpTckHsrv, ipNewCfgIntfBootpRelay=ipNewCfgIntfBootpRelay, ipNewCfgRmapEntry=ipNewCfgRmapEntry, vrrpCurCfgVirtRtrIpv6Addr=vrrpCurCfgVirtRtrIpv6Addr, tcpStatCurConn=tcpStatCurConn, icmp6OutEchoReps=icmp6OutEchoReps, ospfIfDesignatedRouterIP=ospfIfDesignatedRouterIP, vrrpNewCfgVirtRtrGrpTckVlanPort=vrrpNewCfgVirtRtrGrpTckVlanPort, ospfCurCfgHostIndex=ospfCurCfgHostIndex, vrrpCurCfgVirtRtrGrpSharing=vrrpCurCfgVirtRtrGrpSharing, ripNewCfgIntfPoisonReverse=ripNewCfgIntfPoisonReverse, ospfNewCfgVisionAreaMetric=ospfNewCfgVisionAreaMetric, ospfAreaErrHelloMismatch=ospfAreaErrHelloMismatch, ripInfoIntfListen=ripInfoIntfListen, ospfIntfErrDeadMismatch=ospfIntfErrDeadMismatch, vrrpNewCfgVirtRtrGrpTckHsrv=vrrpNewCfgVirtRtrGrpTckHsrv, ipNewCfgNwfTable=ipNewCfgNwfTable, vrrpNewCfgVirtRtrVrGrpTckHsrv=vrrpNewCfgVirtRtrVrGrpTckHsrv, ospfCumIntfWaitTimer=ospfCumIntfWaitTimer, vrrpCurCfgVirtRtrVrGrpAdverInterval=vrrpCurCfgVirtRtrVrGrpAdverInterval, ospfinfo=ospfinfo, ospfAreaErrAuthFailure=ospfAreaErrAuthFailure, ipCurCfgAlistMetric=ipCurCfgAlistMetric, ospfAreaRxPkts=ospfAreaRxPkts, ospfIfNbrIntfIndex=ospfIfNbrIntfIndex, vrrpCurCfgVirtRtrGrpVersion=vrrpCurCfgVirtRtrGrpVersion, ripNewCfgIntfAuth=ripNewCfgIntfAuth, vrrpNewCfgVirtRtrState=vrrpNewCfgVirtRtrState, intfInfoLinkLocalAddr=intfInfoLinkLocalAddr, ipFwdNewCfgLocalEntry=ipFwdNewCfgLocalEntry, ipFwdNewCfgLocalIndex=ipFwdNewCfgLocalIndex, vrrpCurCfgVirtRtrTckHsrv=vrrpCurCfgVirtRtrTckHsrv, vrrpCurCfgGenState=vrrpCurCfgGenState, ipNewCfgStaticArpTable=ipNewCfgStaticArpTable, ospfIntfIndex=ospfIntfIndex, ripInfoIntfAddress=ripInfoIntfAddress, ospfIntfInfoEntry=ospfIntfInfoEntry, ospfNewCfgHostState=ospfNewCfgHostState, ripInfoIntfPoisonReverse=ripInfoIntfPoisonReverse, ripStatInResponsePkts=ripStatInResponsePkts, vrrpNewCfgVirtRtrGrpInterval=vrrpNewCfgVirtRtrGrpInterval, ospfIntfRxlsAcks=ospfIntfRxlsAcks, vrrpVirtRtrVrGrpTableMaxSize=vrrpVirtRtrVrGrpTableMaxSize, vrrpCurCfgVirtRtrVrGrpPriority=vrrpCurCfgVirtRtrVrGrpPriority, bgpNewCfgPeerMinAS=bgpNewCfgPeerMinAS, ipCurCfgStaticRouteMask=ipCurCfgStaticRouteMask, arpNewCfgReARPPeriod=arpNewCfgReARPPeriod, ipRoute6InfoDestIp6=ipRoute6InfoDestIp6, vrrpCurCfgIfTableEntry=vrrpCurCfgIfTableEntry, vrrpNewCfgVirtRtrGrpDelete=vrrpNewCfgVirtRtrGrpDelete, ripCurCfgIntfEntry=ripCurCfgIntfEntry, ipRoutingInfo=ipRoutingInfo, vrrpNewCfgVirtRtrGrpTckL4Port=vrrpNewCfgVirtRtrGrpTckL4Port, bgpCurCfgState=bgpCurCfgState, rip2CurCfgVip=rip2CurCfgVip, bgpNewCfgAggrEntry=bgpNewCfgAggrEntry, ospfNewCfgVisionAreaDelete=ospfNewCfgVisionAreaDelete, ospfNewCfgIbgpMetric=ospfNewCfgIbgpMetric, ipCurCfgIntfBroadcast=ipCurCfgIntfBroadcast, vrrpNewCfgIfAuthType=vrrpNewCfgIfAuthType, ospfIfNbrTable=ospfIfNbrTable, vrrpCurCfgVirtRtrTckHsrp=vrrpCurCfgVirtRtrTckHsrp, rip2RoutesInfoDestination=rip2RoutesInfoDestination, ipRouteInfoTable=ipRouteInfoTable, ip6OutNoRoutes=ip6OutNoRoutes, ipv6NewCfgStaticRouteAction=ipv6NewCfgStaticRouteAction, ospfAreaErrDeadMismatch=ospfAreaErrDeadMismatch, ospfIntfRxTxStats=ospfIntfRxTxStats, vrrpNewCfgVirtRtrVrGrpRem=vrrpNewCfgVirtRtrVrGrpRem, ospfAreaRxlsUpdates=ospfAreaRxlsUpdates, ripInfoIntfEntry=ripInfoIntfEntry, rip2RoutesInfoTable=rip2RoutesInfoTable, ipCurCfgGwArp=ipCurCfgGwArp, gatewayInfoAddr=gatewayInfoAddr, clearStats=clearStats, arpInfo=arpInfo, vrrpCurCfgVirtRtrTckRServer=vrrpCurCfgVirtRtrTckRServer, vrrpIfTableMaxSize=vrrpIfTableMaxSize, vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo=vrrpNewCfgVirtRtrVrGrpTckVirtRtrNo, ospfNewCfgAreaType=ospfNewCfgAreaType, ospfCumNbrRstAd=ospfCumNbrRstAd, ip6InDiscards=ip6InDiscards, ip6icmpOutMsgs=ip6icmpOutMsgs, ipNewCfgAlistMetric=ipNewCfgAlistMetric, arpStatEntries=arpStatEntries, ospfCurCfgMdkeyIndex=ospfCurCfgMdkeyIndex, ospfCurCfgAreaIndex=ospfCurCfgAreaIndex, ipNewCfgStaticArpIndx=ipNewCfgStaticArpIndx, dnsStatInBadDnsRequests=dnsStatInBadDnsRequests, ospfAreaNbrhello=ospfAreaNbrhello, ipFwdCurCfgNoICMPRedirect=ipFwdCurCfgNoICMPRedirect, ifClearStats=ifClearStats, icmp6InEchoReps=icmp6InEchoReps, vrrpNewCfgVirtRtrSharing=vrrpNewCfgVirtRtrSharing, ospfNewCfgHostEntry=ospfNewCfgHostEntry, ripNewCfgIntfState=ripNewCfgIntfState, ospfCfg=ospfCfg, ripNewCfgIntfEntry=ripNewCfgIntfEntry, ripCurCfgIntfMcastUpdate=ripCurCfgIntfMcastUpdate, vrrpNewCfgVirtRtrTckIpIntf=vrrpNewCfgVirtRtrTckIpIntf, vrrpNewCfgVirtRtrVrGrpTckL4Port=vrrpNewCfgVirtRtrVrGrpTckL4Port, ipNewCfgRmapAp=ipNewCfgRmapAp, bgpNewCfgPeerInRmapList=bgpNewCfgPeerInRmapList, ripInfoIntfAuth=ripInfoIntfAuth, ospfAreaNbrStart=ospfAreaNbrStart, ospfCurCfgStaticMetric=ospfCurCfgStaticMetric, bgpNewCfgPeerOutRmapList=bgpNewCfgPeerOutRmapList, ripNewCfgIntfListen=ripNewCfgIntfListen, ipGatewayTableMax=ipGatewayTableMax, ripNewCfgIntfIndex=ripNewCfgIntfIndex, ospfNewCfgIntfIndex=ospfNewCfgIntfIndex, ipNewCfgAlistAction=ipNewCfgAlistAction, dnsNewCfgSecondaryIpv6Addr=dnsNewCfgSecondaryIpv6Addr, ospfCurCfgState=ospfCurCfgState, ipCurCfgAspathAction=ipCurCfgAspathAction, ospfCurCfgVirtIntfEntry=ospfCurCfgVirtIntfEntry, ospfNewCfgFixedMetricType=ospfNewCfgFixedMetricType, ospfCumNbrDown=ospfCumNbrDown, vrrpCurCfgVirtRtrGrpTableEntry=vrrpCurCfgVirtRtrGrpTableEntry, vrrpNewCfgVirtRtrTckHsrp=vrrpNewCfgVirtRtrTckHsrp, ospfCurCfgAreaType=ospfCurCfgAreaType, rip2NewCfgUpdatePeriod=rip2NewCfgUpdatePeriod, vrrpGeneral=vrrpGeneral, ospfNewCfgMdkeyIndex=ospfNewCfgMdkeyIndex, ospfCurCfgIntfTransit=ospfCurCfgIntfTransit, bgpNewCfgPeerTable=bgpNewCfgPeerTable, intfInfoIndex=intfInfoIndex, ipFwdNewCfgLocalDelete=ipFwdNewCfgLocalDelete, ipCurCfgBootpState=ipCurCfgBootpState, ospfCurCfgLsdb=ospfCurCfgLsdb, ospfCurCfgRangeState=ospfCurCfgRangeState, ospfNewCfgEbgpMetricType=ospfNewCfgEbgpMetricType, routeStatEntries=routeStatEntries, ospfAreaInfoId=ospfAreaInfoId, ipNewCfgAspathRmapIndex=ipNewCfgAspathRmapIndex, ospfNumberOfLsdbEntries=ospfNumberOfLsdbEntries, vrrpCurCfgVirtRtrGrpTable=vrrpCurCfgVirtRtrGrpTable, ospfAreaNbrN1way=ospfAreaNbrN1way, bgpNewCfgPeerDelete=bgpNewCfgPeerDelete, allowedNwInfoEndIpAddr=allowedNwInfoEndIpAddr, allowedNwInfoIndex=allowedNwInfoIndex, vrrpCurCfgGenTckIpIntfInc=vrrpCurCfgGenTckIpIntfInc, bgpOperStartPeerNum=bgpOperStartPeerNum, intfInfoStatus=intfInfoStatus, ospfNewCfgStaticMetric=ospfNewCfgStaticMetric, bgpCurCfgAggrState=bgpCurCfgAggrState, ospfCurCfgIntfEntry=ospfCurCfgIntfEntry, vrrpCurCfgGenHoldoff=vrrpCurCfgGenHoldoff, ospfMdkeyTableMaxSize=ospfMdkeyTableMaxSize, ospfIntfErrorStats=ospfIntfErrorStats, ospfNewCfgVisionAreaEntry=ospfNewCfgVisionAreaEntry, ipCurCfgGwRetry=ipCurCfgGwRetry, bgpNewCfgPeerFixedState=bgpNewCfgPeerFixedState, bgpCurCfgPeerKeepAlive=bgpCurCfgPeerKeepAlive, bgpCurCfgPeerOspfState=bgpCurCfgPeerOspfState, ospfNewCfgRipOutRmapList=ospfNewCfgRipOutRmapList, vrrpCurCfgVirtRtrIndx=vrrpCurCfgVirtRtrIndx, ospfNewCfgStaticMetricType=ospfNewCfgStaticMetricType, ripStatInSelfRcvPkts=ripStatInSelfRcvPkts, vrrpInfoVirtRtrProxy=vrrpInfoVirtRtrProxy, ipNewCfgRouterID=ipNewCfgRouterID, ospfStartTime=ospfStartTime, ospfNewCfgVirtIntfMdkey=ospfNewCfgVirtIntfMdkey, ipCurCfgGwAddr=ipCurCfgGwAddr, vrrpNewCfgVirtRtrVrGrpTckHsrp=vrrpNewCfgVirtRtrVrGrpTckHsrp, vrrpNewCfgVirtRtrVrGrpPreemption=vrrpNewCfgVirtRtrVrGrpPreemption, vrrpVirtRtrGrpTableMaxSize=vrrpVirtRtrGrpTableMaxSize, bgpCurCfgMaxASPath=bgpCurCfgMaxASPath, ipCurCfgAspathIndex=ipCurCfgAspathIndex, ospfNewCfgVirtIntfTable=ospfNewCfgVirtIntfTable, ospfAreaTxlsAcks=ospfAreaTxlsAcks, allowedNwInfoEntry=allowedNwInfoEntry, icmp6InTooBigs=icmp6InTooBigs, bgpNewCfgPeerAddInRmap=bgpNewCfgPeerAddInRmap, ip6gwStats=ip6gwStats, ipCurCfgIntfIpv6Addr=ipCurCfgIntfIpv6Addr, rip2RoutesInfoEntry=rip2RoutesInfoEntry, bgpCurCfgAggrIndex=bgpCurCfgAggrIndex, ipRoute6InfoInterface=ipRoute6InfoInterface, vrrpNewCfgVirtRtrIfIndex=vrrpNewCfgVirtRtrIfIndex, nbrcacheInfoTotLocalEntries=nbrcacheInfoTotLocalEntries, nbrcacheInfoTotOtherEntries=nbrcacheInfoTotOtherEntries, vrrpNewCfgVirtRtrTckRServer=vrrpNewCfgVirtRtrTckRServer, ospfCumRxPkts=ospfCumRxPkts, ipCurCfgStaticRouteDestIp=ipCurCfgStaticRouteDestIp, vrrpStatOutBadAdvers=vrrpStatOutBadAdvers, vrrpCurCfgVirtRtrTckVirtRtr=vrrpCurCfgVirtRtrTckVirtRtr, ripNewCfgIntfKey=ripNewCfgIntfKey, ospfAreaRxTxStatsEntry=ospfAreaRxTxStatsEntry, ipCurCfgStaticArpPort=ipCurCfgStaticArpPort, ospfIfNbrEntry=ospfIfNbrEntry, ospfArea=ospfArea, ospfNewCfgAreaMetric=ospfNewCfgAreaMetric, vrrpNewCfgVirtRtrVrGrpAdverInterval=vrrpNewCfgVirtRtrVrGrpAdverInterval, arpStatHighWater=arpStatHighWater, ipCurCfgStaticRouteEntry=ipCurCfgStaticRouteEntry, ipCurCfgRmapAp=ipCurCfgRmapAp, ipFwdCurCfgPortEntry=ipFwdCurCfgPortEntry, bgpNewCfgPeerKeepAlive=bgpNewCfgPeerKeepAlive, ripStatOutPackets=ripStatOutPackets, ospfAreaNbrDown=ospfAreaNbrDown, vrrpCurCfgVirtRtrGrpTckRServer=vrrpCurCfgVirtRtrGrpTckRServer, ospfNewCfgRangeHideState=ospfNewCfgRangeHideState, ipRmapCfg=ipRmapCfg, ospfNbrInInitState=ospfNbrInInitState, ipCurCfgAspathRmapIndex=ipCurCfgAspathRmapIndex, ipIntfInfo=ipIntfInfo, vrrpNewCfgVirtRtrVrGrpDelete=vrrpNewCfgVirtRtrVrGrpDelete, dnsCurCfgSecondaryIpv6Addr=dnsCurCfgSecondaryIpv6Addr, ospfNewCfgVisionAreaType=ospfNewCfgVisionAreaType, ospfIntfWaitTimer=ospfIntfWaitTimer, ospfIfWaitInterval=ospfIfWaitInterval, ripInfoVip=ripInfoVip, ospfNewCfgIntfEntry=ospfNewCfgIntfEntry, ospfCurCfgRangeMask=ospfCurCfgRangeMask, garpOperIpAddr=garpOperIpAddr, ipCurCfgGwEntry=ipCurCfgGwEntry, ipCurCfgGwIndex=ipCurCfgGwIndex, vrrpCurCfgVirtRtrTckVlanPort=vrrpCurCfgVirtRtrTckVlanPort, ospfIntfRxlsReqs=ospfIntfRxlsReqs, ospfNewCfgAreaTable=ospfNewCfgAreaTable, ipInterfaceCfg=ipInterfaceCfg, vrrpInfo=vrrpInfo, ipCurCfgIntfVlan=ipCurCfgIntfVlan, ospfCurCfgHostCost=ospfCurCfgHostCost)
mibBuilder.exportSymbols('ALTEON-CHEETAH-NETWORK-MIB', ospfAreaNbrExchangeDone=ospfAreaNbrExchangeDone, bgpNewCfgAggrTable=bgpNewCfgAggrTable, ipNewCfgAlistIndex=ipNewCfgAlistIndex, bgpCurCfgPeerInRmapList=bgpCurCfgPeerInRmapList, ospfIntfNbrhello=ospfIntfNbrhello, ospfRedistributeFixed=ospfRedistributeFixed, ipNewCfgGwEntry=ipNewCfgGwEntry, bgpCurCfgPeerStaticState=bgpCurCfgPeerStaticState, ospfCumNbrAdjointOk=ospfCumNbrAdjointOk, vrrpCurCfgVirtRtrGrpTckVirtRtr=vrrpCurCfgVirtRtrGrpTckVirtRtr, vrrpCurCfgGenTckVirtRtrInc=vrrpCurCfgGenTckVirtRtrInc, bgpCurCfgPeerRemoteAs=bgpCurCfgPeerRemoteAs, ipFwdNewCfgPortState=ipFwdNewCfgPortState, vrrpNewCfgGenTckIpIntfInc=vrrpNewCfgGenTckIpIntfInc, ipNewCfgGwDelete=ipNewCfgGwDelete, vrrpNewCfgVirtRtrGrpPreempt=vrrpNewCfgVirtRtrGrpPreempt, ipNewCfgGwState=ipNewCfgGwState, vrrpNewCfgVirtRtrGrpTckHsrp=vrrpNewCfgVirtRtrGrpTckHsrp, intfInfoAddr=intfInfoAddr, ospfCumTxDatabase=ospfCumTxDatabase, vrrpNewCfgVirtRtrAddr=vrrpNewCfgVirtRtrAddr, ripCurCfgIntfKey=ripCurCfgIntfKey, vrrpNewCfgGenTckHsrvInc=vrrpNewCfgGenTckHsrvInc, ospfCurCfgStaticOutRmapList=ospfCurCfgStaticOutRmapList, ripNewCfgIntfTable=ripNewCfgIntfTable, rip2NewCfgStaticSupply=rip2NewCfgStaticSupply, dnsNewCfgPrimaryIpv6Addr=dnsNewCfgPrimaryIpv6Addr, bgpCurCfgAggrAddr=bgpCurCfgAggrAddr, ospfNewCfgRipAddOutRmap=ospfNewCfgRipAddOutRmap, vrrpCurCfgVirtRtrIpv6Interval=vrrpCurCfgVirtRtrIpv6Interval, ospfNewCfgStaticOutRmapList=ospfNewCfgStaticOutRmapList, intfInfoIpver=intfInfoIpver, ospfCurCfgIntfPriority=ospfCurCfgIntfPriority, ipCurCfgStaticArpIp=ipCurCfgStaticArpIp, vrrpNewCfgVirtRtrTckVlanPort=vrrpNewCfgVirtRtrTckVlanPort, ripCurCfgIntfPoisonReverse=ripCurCfgIntfPoisonReverse, ipNewCfgRmapPrec=ipNewCfgRmapPrec, arpInfoFlag=arpInfoFlag, ospfCurCfgIntfDead=ospfCurCfgIntfDead, ripInfoIntfIndex=ripInfoIntfIndex, vrrpCurCfgVirtRtrVrGrpSharing=vrrpCurCfgVirtRtrVrGrpSharing, ipCurCfgRmapLp=ipCurCfgRmapLp, ospfCurCfgVirtIntfNbr=ospfCurCfgVirtIntfNbr, ospfIntfChangeStats=ospfIntfChangeStats, layer3Info=layer3Info, ospfAreaRxlsReqs=ospfAreaRxlsReqs, ospfCumTxlsAcks=ospfCumTxlsAcks, ip6GwStatsIndex=ip6GwStatsIndex, ospfNewCfgVirtIntfState=ospfNewCfgVirtIntfState, ospfAreaNbrIndex=ospfAreaNbrIndex, ospfCumRxlsUpdates=ospfCumRxlsUpdates, ospfCurCfgAreaAuthType=ospfCurCfgAreaAuthType, ipNewCfgIntfDelete=ipNewCfgIntfDelete, ipRouteInfoGateway2=ipRouteInfoGateway2, bgpNewCfgPeerDefaultAction=bgpNewCfgPeerDefaultAction, ipCurCfgGwIpv6Addr=ipCurCfgGwIpv6Addr, ipNewCfgIntfRouteAdv=ipNewCfgIntfRouteAdv, ospfNewCfgEbgpMetric=ospfNewCfgEbgpMetric, ospfIntfTxDatabase=ospfIntfTxDatabase, ipNewCfgIntfEntry=ipNewCfgIntfEntry, ospfIntfRxTxStatsEntry=ospfIntfRxTxStatsEntry, ospfNewCfgRipMetric=ospfNewCfgRipMetric, ipNewCfgAspathIndex=ipNewCfgAspathIndex, vrrpNewCfgGenTckHsrpInc=vrrpNewCfgGenTckHsrpInc, ospfNewCfgMdkeyTable=ospfNewCfgMdkeyTable, ospfAreaRxDatabase=ospfAreaRxDatabase, bgpNewCfgLocalPref=bgpNewCfgLocalPref, ripInfoIntfState=ripInfoIntfState, layer3=layer3, ospfCurCfgVirtIntfHello=ospfCurCfgVirtIntfHello, ripStatRouteTimeout=ripStatRouteTimeout, icmp6OutNAs=icmp6OutNAs, ip6GwFails=ip6GwFails, bgpCurCfgPeerEntry=bgpCurCfgPeerEntry, nbrcacheInfoMacAddr=nbrcacheInfoMacAddr, ipNewCfgBootpAddr2=ipNewCfgBootpAddr2, ip6icmpInErrors=ip6icmpInErrors, vrrpCurCfgVirtRtrState=vrrpCurCfgVirtRtrState, ipCurCfgRmapEntry=ipCurCfgRmapEntry, ospfNewCfgIntfDelete=ospfNewCfgIntfDelete, ospfNewCfgRipRemoveOutRmap=ospfNewCfgRipRemoveOutRmap, ospfCurCfgMdkeyEntry=ospfCurCfgMdkeyEntry, ipNewCfgAspathDelete=ipNewCfgAspathDelete, vrrpCurCfgVirtRtrVrGrpTable=vrrpCurCfgVirtRtrVrGrpTable, vrrpNewCfgVirtRtrTckVirtRtr=vrrpNewCfgVirtRtrTckVirtRtr, bgpNewCfgPeerMetric=bgpNewCfgPeerMetric, ospfNumberOfInterfacesUp=ospfNumberOfInterfacesUp, ipFwdNewCfgDirectedBcast=ipFwdNewCfgDirectedBcast, ospfAreaErrorStatsEntry=ospfAreaErrorStatsEntry)
|
#
# PySNMP MIB module PDN-IFDEV-IWF-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/PDN-IFDEV-IWF-MIB
# Produced by pysmi-0.3.4 at Mon Apr 29 20:30:02 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")
ConstraintsIntersection, SingleValueConstraint, ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
pdn_interfaces, = mibBuilder.importSymbols("PDN-HEADER-MIB", "pdn-interfaces")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
MibIdentifier, IpAddress, TimeTicks, Bits, MibScalar, MibTable, MibTableRow, MibTableColumn, ObjectIdentity, Counter64, Integer32, iso, NotificationType, ModuleIdentity, Gauge32, Counter32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "MibIdentifier", "IpAddress", "TimeTicks", "Bits", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ObjectIdentity", "Counter64", "Integer32", "iso", "NotificationType", "ModuleIdentity", "Gauge32", "Counter32", "Unsigned32")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
pdnIfDevIwfMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27))
pdnIfDevIwfMIB.setRevisions(('2004-09-10 00:00',))
if mibBuilder.loadTexts: pdnIfDevIwfMIB.setLastUpdated('200409100000Z')
if mibBuilder.loadTexts: pdnIfDevIwfMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB')
pdnIfDevIwfNotifications = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 0))
pdnIfDevIwfObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1))
pdnIfDevIwfAFNs = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 2))
pdnIfDevIwfConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3))
class TxRxUnit(TextualConvention, Integer32):
reference = "RFC 1662, Section 1.2, `Terminology'."
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("other", 1), ("bits", 2), ("octets", 3), ("frames", 4), ("packets", 5), ("datagrams", 6))
pdnIfDevIwfStatsTotalTable = MibTable((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1), )
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalTable.setStatus('current')
pdnIfDevIwfStatsTotalEntry = MibTableRow((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalEntry.setStatus('current')
pdnIfDevIwfStatsTotalBufferUnderruns = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalBufferUnderruns.setStatus('current')
pdnIfDevIwfStatsTotalMRUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalMRUErrors.setStatus('current')
pdnIfDevIwfStatsTotalRxUnit = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 3), TxRxUnit()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRxUnit.setStatus('current')
pdnIfDevIwfStatsTotalRx = MibTableColumn((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: pdnIfDevIwfStatsTotalRx.setStatus('current')
pdnIfDevIwfCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1))
pdnIfDevIwfGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2))
pdnIfDevIwfCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1, 1)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalBufferUnderrunsGroup"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalMRUErrorsGroup"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRxGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnIfDevIwfCompliance = pdnIfDevIwfCompliance.setStatus('current')
pdnIfDevIwfObjGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1))
pdnIfDevIwfAfnGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 2))
pdnIfDevIwfNtfyGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 3))
pdnIfDevIwfStatsTotalBufferUnderrunsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 1)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalBufferUnderruns"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnIfDevIwfStatsTotalBufferUnderrunsGroup = pdnIfDevIwfStatsTotalBufferUnderrunsGroup.setStatus('current')
pdnIfDevIwfStatsTotalMRUErrorsGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 2)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalMRUErrors"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnIfDevIwfStatsTotalMRUErrorsGroup = pdnIfDevIwfStatsTotalMRUErrorsGroup.setStatus('current')
pdnIfDevIwfStatsTotalRxGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 3)).setObjects(("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRxUnit"), ("PDN-IFDEV-IWF-MIB", "pdnIfDevIwfStatsTotalRx"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdnIfDevIwfStatsTotalRxGroup = pdnIfDevIwfStatsTotalRxGroup.setStatus('current')
mibBuilder.exportSymbols("PDN-IFDEV-IWF-MIB", PYSNMP_MODULE_ID=pdnIfDevIwfMIB, pdnIfDevIwfStatsTotalRxUnit=pdnIfDevIwfStatsTotalRxUnit, pdnIfDevIwfObjects=pdnIfDevIwfObjects, pdnIfDevIwfStatsTotalTable=pdnIfDevIwfStatsTotalTable, pdnIfDevIwfStatsTotalMRUErrorsGroup=pdnIfDevIwfStatsTotalMRUErrorsGroup, TxRxUnit=TxRxUnit, pdnIfDevIwfCompliance=pdnIfDevIwfCompliance, pdnIfDevIwfStatsTotalMRUErrors=pdnIfDevIwfStatsTotalMRUErrors, pdnIfDevIwfStatsTotalRx=pdnIfDevIwfStatsTotalRx, pdnIfDevIwfMIB=pdnIfDevIwfMIB, pdnIfDevIwfAFNs=pdnIfDevIwfAFNs, pdnIfDevIwfAfnGroups=pdnIfDevIwfAfnGroups, pdnIfDevIwfStatsTotalBufferUnderrunsGroup=pdnIfDevIwfStatsTotalBufferUnderrunsGroup, pdnIfDevIwfStatsTotalEntry=pdnIfDevIwfStatsTotalEntry, pdnIfDevIwfObjGroups=pdnIfDevIwfObjGroups, pdnIfDevIwfGroups=pdnIfDevIwfGroups, pdnIfDevIwfNtfyGroups=pdnIfDevIwfNtfyGroups, pdnIfDevIwfNotifications=pdnIfDevIwfNotifications, pdnIfDevIwfStatsTotalRxGroup=pdnIfDevIwfStatsTotalRxGroup, pdnIfDevIwfStatsTotalBufferUnderruns=pdnIfDevIwfStatsTotalBufferUnderruns, pdnIfDevIwfConformance=pdnIfDevIwfConformance, pdnIfDevIwfCompliances=pdnIfDevIwfCompliances)
|
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, single_value_constraint, value_size_constraint, value_range_constraint, constraints_union) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(pdn_interfaces,) = mibBuilder.importSymbols('PDN-HEADER-MIB', 'pdn-interfaces')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(mib_identifier, ip_address, time_ticks, bits, mib_scalar, mib_table, mib_table_row, mib_table_column, object_identity, counter64, integer32, iso, notification_type, module_identity, gauge32, counter32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibIdentifier', 'IpAddress', 'TimeTicks', 'Bits', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ObjectIdentity', 'Counter64', 'Integer32', 'iso', 'NotificationType', 'ModuleIdentity', 'Gauge32', 'Counter32', 'Unsigned32')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
pdn_if_dev_iwf_mib = module_identity((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27))
pdnIfDevIwfMIB.setRevisions(('2004-09-10 00:00',))
if mibBuilder.loadTexts:
pdnIfDevIwfMIB.setLastUpdated('200409100000Z')
if mibBuilder.loadTexts:
pdnIfDevIwfMIB.setOrganization('Paradyne Networks MIB Working Group Other information about group editing the MIB')
pdn_if_dev_iwf_notifications = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 0))
pdn_if_dev_iwf_objects = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1))
pdn_if_dev_iwf_af_ns = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 2))
pdn_if_dev_iwf_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3))
class Txrxunit(TextualConvention, Integer32):
reference = "RFC 1662, Section 1.2, `Terminology'."
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('other', 1), ('bits', 2), ('octets', 3), ('frames', 4), ('packets', 5), ('datagrams', 6))
pdn_if_dev_iwf_stats_total_table = mib_table((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1))
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalTable.setStatus('current')
pdn_if_dev_iwf_stats_total_entry = mib_table_row((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalEntry.setStatus('current')
pdn_if_dev_iwf_stats_total_buffer_underruns = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalBufferUnderruns.setStatus('current')
pdn_if_dev_iwf_stats_total_mru_errors = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalMRUErrors.setStatus('current')
pdn_if_dev_iwf_stats_total_rx_unit = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 3), tx_rx_unit()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalRxUnit.setStatus('current')
pdn_if_dev_iwf_stats_total_rx = mib_table_column((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 1, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
pdnIfDevIwfStatsTotalRx.setStatus('current')
pdn_if_dev_iwf_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1))
pdn_if_dev_iwf_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2))
pdn_if_dev_iwf_compliance = module_compliance((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 1, 1)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalBufferUnderrunsGroup'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalMRUErrorsGroup'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRxGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_if_dev_iwf_compliance = pdnIfDevIwfCompliance.setStatus('current')
pdn_if_dev_iwf_obj_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1))
pdn_if_dev_iwf_afn_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 2))
pdn_if_dev_iwf_ntfy_groups = mib_identifier((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 3))
pdn_if_dev_iwf_stats_total_buffer_underruns_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 1)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalBufferUnderruns'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_if_dev_iwf_stats_total_buffer_underruns_group = pdnIfDevIwfStatsTotalBufferUnderrunsGroup.setStatus('current')
pdn_if_dev_iwf_stats_total_mru_errors_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 2)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalMRUErrors'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_if_dev_iwf_stats_total_mru_errors_group = pdnIfDevIwfStatsTotalMRUErrorsGroup.setStatus('current')
pdn_if_dev_iwf_stats_total_rx_group = object_group((1, 3, 6, 1, 4, 1, 1795, 2, 24, 2, 6, 27, 3, 2, 1, 3)).setObjects(('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRxUnit'), ('PDN-IFDEV-IWF-MIB', 'pdnIfDevIwfStatsTotalRx'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
pdn_if_dev_iwf_stats_total_rx_group = pdnIfDevIwfStatsTotalRxGroup.setStatus('current')
mibBuilder.exportSymbols('PDN-IFDEV-IWF-MIB', PYSNMP_MODULE_ID=pdnIfDevIwfMIB, pdnIfDevIwfStatsTotalRxUnit=pdnIfDevIwfStatsTotalRxUnit, pdnIfDevIwfObjects=pdnIfDevIwfObjects, pdnIfDevIwfStatsTotalTable=pdnIfDevIwfStatsTotalTable, pdnIfDevIwfStatsTotalMRUErrorsGroup=pdnIfDevIwfStatsTotalMRUErrorsGroup, TxRxUnit=TxRxUnit, pdnIfDevIwfCompliance=pdnIfDevIwfCompliance, pdnIfDevIwfStatsTotalMRUErrors=pdnIfDevIwfStatsTotalMRUErrors, pdnIfDevIwfStatsTotalRx=pdnIfDevIwfStatsTotalRx, pdnIfDevIwfMIB=pdnIfDevIwfMIB, pdnIfDevIwfAFNs=pdnIfDevIwfAFNs, pdnIfDevIwfAfnGroups=pdnIfDevIwfAfnGroups, pdnIfDevIwfStatsTotalBufferUnderrunsGroup=pdnIfDevIwfStatsTotalBufferUnderrunsGroup, pdnIfDevIwfStatsTotalEntry=pdnIfDevIwfStatsTotalEntry, pdnIfDevIwfObjGroups=pdnIfDevIwfObjGroups, pdnIfDevIwfGroups=pdnIfDevIwfGroups, pdnIfDevIwfNtfyGroups=pdnIfDevIwfNtfyGroups, pdnIfDevIwfNotifications=pdnIfDevIwfNotifications, pdnIfDevIwfStatsTotalRxGroup=pdnIfDevIwfStatsTotalRxGroup, pdnIfDevIwfStatsTotalBufferUnderruns=pdnIfDevIwfStatsTotalBufferUnderruns, pdnIfDevIwfConformance=pdnIfDevIwfConformance, pdnIfDevIwfCompliances=pdnIfDevIwfCompliances)
|
n = int(input())/10e2
if 0.1 > n:
print("00")
elif 5 >= n:
if len(str(int(n*10))) == 1:
print("0{}".format(int(n*10)))
else:
print(int(n*10))
elif 30 >= n:
print(int(n)+50)
elif 70 >= n:
print((int(n) - 30)//5 + 80)
else:
print(89)
|
n = int(input()) / 1000.0
if 0.1 > n:
print('00')
elif 5 >= n:
if len(str(int(n * 10))) == 1:
print('0{}'.format(int(n * 10)))
else:
print(int(n * 10))
elif 30 >= n:
print(int(n) + 50)
elif 70 >= n:
print((int(n) - 30) // 5 + 80)
else:
print(89)
|
# Gareth Duffy 2-3-2018
# example of for loop using range function as iterator
# for loops are definite iterators compared to e.g. while loops (indefinite)
for i in range(1, 99, 2): # change range to experiment (third value is the 'step')
print(i, end=' ') # end prints all on one line instead of separate lines
|
for i in range(1, 99, 2):
print(i, end=' ')
|
fairumei = "alphabet.java"
henkou = fairumei.split(".")
print(henkou[-1])
|
fairumei = 'alphabet.java'
henkou = fairumei.split('.')
print(henkou[-1])
|
# AUTOGENERATED BY NBDEV! DO NOT EDIT!
__all__ = ["index", "modules", "custom_doc_links", "git_url"]
index = {"boto3_available": "00_utils.ipynb",
"setStockDataRoot": "00_utils.ipynb",
"stockDataRoot": "00_utils.ipynb",
"requestUrl": "00_utils.ipynb",
"setSecUserAgent": "00_utils.ipynb",
"secIndexUrl": "00_utils.ipynb",
"appendSpace": "00_utils.ipynb",
"getCombTextRec": "00_utils.ipynb",
"getCombSoupText": "00_utils.ipynb",
"prTree": "00_utils.ipynb",
"prAllTagNames": "00_utils.ipynb",
"downloadSecUrl": "00_utils.ipynb",
"secUrlPref": "00_utils.ipynb",
"secRestDataPref": "00_utils.ipynb",
"secHeaders": "00_utils.ipynb",
"secSleepTime": "00_utils.ipynb",
"accessNoPatStr": "00_utils.ipynb",
"accessNoPat": "00_utils.ipynb",
"spacesPat": "00_utils.ipynb",
"tagsWithLeftSpace": "00_utils.ipynb",
"pageUnavailablePat": "00_utils.ipynb",
"delegates": "00_utils.ipynb",
"callDelegated": "00_utils.ipynb",
"compressGZipBytes": "00_utils.ipynb",
"decompressGZipBytes": "00_utils.ipynb",
"pickleToBytes": "00_utils.ipynb",
"pickleFromBytes": "00_utils.ipynb",
"pickSave": "00_utils.ipynb",
"pickLoad": "00_utils.ipynb",
"pickLoadIfPath": "00_utils.ipynb",
"pickSaveToS3": "00_utils.ipynb",
"pickLoadFromS3": "00_utils.ipynb",
"pickLoadFromS3Public": "00_utils.ipynb",
"savePklToDir": "00_utils.ipynb",
"loadPklFromDir": "00_utils.ipynb",
"saveSplitPklToDir": "00_utils.ipynb",
"loadSplitPklFromDir": "00_utils.ipynb",
"toDateStr": "00_utils.ipynb",
"toDate": "00_utils.ipynb",
"isWeekend": "00_utils.ipynb",
"dateStrsBetween": "00_utils.ipynb",
"formatDateStr": "00_utils.ipynb",
"dateStr8Pat": "00_utils.ipynb",
"curEasternUSTime": "00_utils.ipynb",
"easternUSTimeZone": "00_utils.ipynb",
"sanitizeText": "00_utils.ipynb",
"secBrowse": "00_utils.ipynb",
"printSamp": "00_utils.ipynb",
"printErrInfoOrAccessNo": "00_utils.ipynb",
"secMostRecentListUrl": "01_recentFeed.ipynb",
"printXmlParseWarning": "01_recentFeed.ipynb",
"getRecentChunk": "01_recentFeed.ipynb",
"titlePat": "01_recentFeed.ipynb",
"filedPat": "01_recentFeed.ipynb",
"curEasternTimeStampAndDate": "01_recentFeed.ipynb",
"initRecentFeedS3": "01_recentFeed.ipynb",
"updateRecentFeedS3": "01_recentFeed.ipynb",
"getRecentFromS3": "01_recentFeed.ipynb",
"getRecentFromS3Public": "01_recentFeed.ipynb",
"defaultDLDir": "02_dailyList.ipynb",
"getQStr": "02_dailyList.ipynb",
"getSecDailyIndexUrls": "02_dailyList.ipynb",
"getDailyFList": "02_dailyList.ipynb",
"downloadSecFormList": "02_dailyList.ipynb",
"edgarTxtFPat": "02_dailyList.ipynb",
"isInFormClass": "02_dailyList.ipynb",
"namedFormClasses": "02_dailyList.ipynb",
"noPeriodFormTypes": "02_dailyList.ipynb",
"findCikName": "02_dailyList.ipynb",
"checkMapDates": "02_dailyList.ipynb",
"dailyList": "02_dailyList.ipynb",
"getCikToTickersMap": "02_dailyList.ipynb",
"dlCountFilings": "02_dailyList.ipynb",
"loadAndUpdateDL": "02_dailyList.ipynb",
"getSecTickerDict": "03_tickerMap.ipynb",
"secTickerListUrl": "03_tickerMap.ipynb",
"getRecent": "04_getCikFilings.ipynb",
"defaultBasicInfoDir": "05_basicInfo.ipynb",
"defaultTextLimit": "05_basicInfo.ipynb",
"getSecFormLinkList": "05_basicInfo.ipynb",
"getSecFormCiks": "05_basicInfo.ipynb",
"getTextAfterTag": "05_basicInfo.ipynb",
"get99Texts": "05_basicInfo.ipynb",
"getSecFormInfo": "05_basicInfo.ipynb",
"companyNameAndCikPat": "05_basicInfo.ipynb",
"filedByPat": "05_basicInfo.ipynb",
"periodPat": "05_basicInfo.ipynb",
"periodDatePatStr": "05_basicInfo.ipynb",
"periodDatePat": "05_basicInfo.ipynb",
"acceptedPat": "05_basicInfo.ipynb",
"acceptedDateTimePat": "05_basicInfo.ipynb",
"itemsPat": "05_basicInfo.ipynb",
"itemFormTypes": "05_basicInfo.ipynb",
"startExhibitPat": "05_basicInfo.ipynb",
"defaultBaseScrapeDir": "06_infoScraper.ipynb",
"scraperBase": "06_infoScraper.ipynb",
"default13FDir": "07_scrape13F.ipynb",
"findChildEndingWith": "07_scrape13F.ipynb",
"findChildSeries": "07_scrape13F.ipynb",
"getRowInfo": "07_scrape13F.ipynb",
"parse13FHoldings": "07_scrape13F.ipynb",
"scraper13F": "07_scrape13F.ipynb",
"callOptPat": "07_scrape13F.ipynb",
"putOptPat": "07_scrape13F.ipynb",
"condenseHoldings": "07_scrape13F.ipynb",
"get13FAmendmentType": "07_scrape13F.ipynb",
"indexMap": "07_scrape13F.ipynb",
"getHoldingsMap": "07_scrape13F.ipynb",
"addHoldingsMap": "07_scrape13F.ipynb",
"printRemoveStocksMessage": "07_scrape13F.ipynb",
"holdingsMapToMatrix": "07_scrape13F.ipynb",
"getPeriodAndNextQStartEnd": "07_scrape13F.ipynb",
"getNSSForQ": "07_scrape13F.ipynb",
"saveConvMatrixPy2": "07_scrape13F.ipynb",
"qStartEnds": "07_scrape13F.ipynb",
"qPeriods": "07_scrape13F.ipynb",
"default8KDir": "08_scrape8K.ipynb",
"parse8K": "08_scrape8K.ipynb",
"scraper8K": "08_scrape8K.ipynb",
"itemPat": "08_scrape8K.ipynb",
"explanPat": "08_scrape8K.ipynb",
"default6KDir": "09_scrape6K.ipynb",
"parse6K": "09_scrape6K.ipynb",
"scraper6K": "09_scrape6K.ipynb",
"reg12gStr": "09_scrape6K.ipynb",
"header6KPat": "09_scrape6K.ipynb",
"signaturePat": "09_scrape6K.ipynb",
"skipJunkPat": "09_scrape6K.ipynb",
"default13GDir": "10_scrape13G.ipynb",
"getSec13NshAndPctFromText2": "10_scrape13G.ipynb",
"addNshAndPct": "10_scrape13G.ipynb",
"cusipChecksum": "10_scrape13G.ipynb",
"monthNameToIso": "10_scrape13G.ipynb",
"getMonthPatStr": "10_scrape13G.ipynb",
"parseEventDate": "10_scrape13G.ipynb",
"parse13GD": "10_scrape13G.ipynb",
"scraper13G": "10_scrape13G.ipynb",
"reOPTS": "10_scrape13G.ipynb",
"aggregatePatStr": "10_scrape13G.ipynb",
"percentOfClassPatStr": "10_scrape13G.ipynb",
"typeOfRepPatStr": "10_scrape13G.ipynb",
"form13PiecesPat1": "10_scrape13G.ipynb",
"form13PiecesPat2": "10_scrape13G.ipynb",
"form13PiecesPat3": "10_scrape13G.ipynb",
"nSharesPatStr": "10_scrape13G.ipynb",
"nPctBarePatStr": "10_scrape13G.ipynb",
"nPctWithPctPatStr": "10_scrape13G.ipynb",
"nshAndPctPat1Pref": "10_scrape13G.ipynb",
"form13NshAndPctPats1": "10_scrape13G.ipynb",
"form13NshAndPctPat2": "10_scrape13G.ipynb",
"form13NshAndPctPat3": "10_scrape13G.ipynb",
"purposePat": "10_scrape13G.ipynb",
"strictCusipPatStr": "10_scrape13G.ipynb",
"cusipPatStr": "10_scrape13G.ipynb",
"cusipNumberPatStr": "10_scrape13G.ipynb",
"cusipSearchPats": "10_scrape13G.ipynb",
"spaceDashPat": "10_scrape13G.ipynb",
"monthNames": "10_scrape13G.ipynb",
"monthAbbrevStrs": "10_scrape13G.ipynb",
"monthPatStr": "10_scrape13G.ipynb",
"monthDayPatStr": "10_scrape13G.ipynb",
"possCommaPatStr": "10_scrape13G.ipynb",
"yearPatStr": "10_scrape13G.ipynb",
"dateOfEventPatStr": "10_scrape13G.ipynb",
"dateOfEventAtStartPatStr": "10_scrape13G.ipynb",
"dateOfEventAtEndPatStr": "10_scrape13G.ipynb",
"dateOfEventMonthPat1": "10_scrape13G.ipynb",
"dateOfEventMonthRevPat1": "10_scrape13G.ipynb",
"dateOfEventMonthPat2": "10_scrape13G.ipynb",
"dateOfEventMonthRevPat2": "10_scrape13G.ipynb",
"isoSepPatStr": "10_scrape13G.ipynb",
"dateOfEventIsoPat1": "10_scrape13G.ipynb",
"dateOfEventIsoRevPat1": "10_scrape13G.ipynb",
"dateOfEventIsoPat2": "10_scrape13G.ipynb",
"dateOfEventIsoRevPat2": "10_scrape13G.ipynb",
"whitespacePat": "10_scrape13G.ipynb",
"updateCik13GDPos": "10_scrape13G.ipynb",
"cikSymStr": "10_scrape13G.ipynb",
"calcBonusMap": "10_scrape13G.ipynb",
"default13DDir": "11_scrape13D.ipynb",
"scraper13D": "11_scrape13D.ipynb",
"get13GDDatesForQ": "11_scrape13D.ipynb",
"getCombNSSForQ": "11_scrape13D.ipynb",
"oddballScreen": "11_scrape13D.ipynb",
"default4Dir": "12_scrape4.ipynb",
"formatF4Num": "12_scrape4.ipynb",
"formatTrans": "12_scrape4.ipynb",
"getForm4Value": "12_scrape4.ipynb",
"parse34": "12_scrape4.ipynb",
"scraper4": "12_scrape4.ipynb",
"form4ReportingNamePat": "12_scrape4.ipynb",
"form4ReportingCikPat": "12_scrape4.ipynb",
"form4TransactionPat": "12_scrape4.ipynb",
"form4ValueFieldsAndPats": "12_scrape4.ipynb",
"form4ValueFields": "12_scrape4.ipynb",
"form4ValuePats": "12_scrape4.ipynb",
"form4ADCodes": "12_scrape4.ipynb",
"form4DICodes": "12_scrape4.ipynb",
"form4TransactionCodes": "12_scrape4.ipynb"}
modules = ["utils.py",
"recentFeed.py",
"dailyList.py",
"tickerMap.py",
"getCikFilings.py",
"basicInfo.py",
"infoScraper.py",
"scrape13F.py",
"scrape8K.py",
"scrape6K.py",
"scrape13G.py",
"scrape13D.py",
"scrape4.py"]
doc_url = "https://ikedim01.github.io/secscan/"
git_url = "https://github.com/ikedim01/secscan/tree/master/"
def custom_doc_links(name): return None
|
__all__ = ['index', 'modules', 'custom_doc_links', 'git_url']
index = {'boto3_available': '00_utils.ipynb', 'setStockDataRoot': '00_utils.ipynb', 'stockDataRoot': '00_utils.ipynb', 'requestUrl': '00_utils.ipynb', 'setSecUserAgent': '00_utils.ipynb', 'secIndexUrl': '00_utils.ipynb', 'appendSpace': '00_utils.ipynb', 'getCombTextRec': '00_utils.ipynb', 'getCombSoupText': '00_utils.ipynb', 'prTree': '00_utils.ipynb', 'prAllTagNames': '00_utils.ipynb', 'downloadSecUrl': '00_utils.ipynb', 'secUrlPref': '00_utils.ipynb', 'secRestDataPref': '00_utils.ipynb', 'secHeaders': '00_utils.ipynb', 'secSleepTime': '00_utils.ipynb', 'accessNoPatStr': '00_utils.ipynb', 'accessNoPat': '00_utils.ipynb', 'spacesPat': '00_utils.ipynb', 'tagsWithLeftSpace': '00_utils.ipynb', 'pageUnavailablePat': '00_utils.ipynb', 'delegates': '00_utils.ipynb', 'callDelegated': '00_utils.ipynb', 'compressGZipBytes': '00_utils.ipynb', 'decompressGZipBytes': '00_utils.ipynb', 'pickleToBytes': '00_utils.ipynb', 'pickleFromBytes': '00_utils.ipynb', 'pickSave': '00_utils.ipynb', 'pickLoad': '00_utils.ipynb', 'pickLoadIfPath': '00_utils.ipynb', 'pickSaveToS3': '00_utils.ipynb', 'pickLoadFromS3': '00_utils.ipynb', 'pickLoadFromS3Public': '00_utils.ipynb', 'savePklToDir': '00_utils.ipynb', 'loadPklFromDir': '00_utils.ipynb', 'saveSplitPklToDir': '00_utils.ipynb', 'loadSplitPklFromDir': '00_utils.ipynb', 'toDateStr': '00_utils.ipynb', 'toDate': '00_utils.ipynb', 'isWeekend': '00_utils.ipynb', 'dateStrsBetween': '00_utils.ipynb', 'formatDateStr': '00_utils.ipynb', 'dateStr8Pat': '00_utils.ipynb', 'curEasternUSTime': '00_utils.ipynb', 'easternUSTimeZone': '00_utils.ipynb', 'sanitizeText': '00_utils.ipynb', 'secBrowse': '00_utils.ipynb', 'printSamp': '00_utils.ipynb', 'printErrInfoOrAccessNo': '00_utils.ipynb', 'secMostRecentListUrl': '01_recentFeed.ipynb', 'printXmlParseWarning': '01_recentFeed.ipynb', 'getRecentChunk': '01_recentFeed.ipynb', 'titlePat': '01_recentFeed.ipynb', 'filedPat': '01_recentFeed.ipynb', 'curEasternTimeStampAndDate': '01_recentFeed.ipynb', 'initRecentFeedS3': '01_recentFeed.ipynb', 'updateRecentFeedS3': '01_recentFeed.ipynb', 'getRecentFromS3': '01_recentFeed.ipynb', 'getRecentFromS3Public': '01_recentFeed.ipynb', 'defaultDLDir': '02_dailyList.ipynb', 'getQStr': '02_dailyList.ipynb', 'getSecDailyIndexUrls': '02_dailyList.ipynb', 'getDailyFList': '02_dailyList.ipynb', 'downloadSecFormList': '02_dailyList.ipynb', 'edgarTxtFPat': '02_dailyList.ipynb', 'isInFormClass': '02_dailyList.ipynb', 'namedFormClasses': '02_dailyList.ipynb', 'noPeriodFormTypes': '02_dailyList.ipynb', 'findCikName': '02_dailyList.ipynb', 'checkMapDates': '02_dailyList.ipynb', 'dailyList': '02_dailyList.ipynb', 'getCikToTickersMap': '02_dailyList.ipynb', 'dlCountFilings': '02_dailyList.ipynb', 'loadAndUpdateDL': '02_dailyList.ipynb', 'getSecTickerDict': '03_tickerMap.ipynb', 'secTickerListUrl': '03_tickerMap.ipynb', 'getRecent': '04_getCikFilings.ipynb', 'defaultBasicInfoDir': '05_basicInfo.ipynb', 'defaultTextLimit': '05_basicInfo.ipynb', 'getSecFormLinkList': '05_basicInfo.ipynb', 'getSecFormCiks': '05_basicInfo.ipynb', 'getTextAfterTag': '05_basicInfo.ipynb', 'get99Texts': '05_basicInfo.ipynb', 'getSecFormInfo': '05_basicInfo.ipynb', 'companyNameAndCikPat': '05_basicInfo.ipynb', 'filedByPat': '05_basicInfo.ipynb', 'periodPat': '05_basicInfo.ipynb', 'periodDatePatStr': '05_basicInfo.ipynb', 'periodDatePat': '05_basicInfo.ipynb', 'acceptedPat': '05_basicInfo.ipynb', 'acceptedDateTimePat': '05_basicInfo.ipynb', 'itemsPat': '05_basicInfo.ipynb', 'itemFormTypes': '05_basicInfo.ipynb', 'startExhibitPat': '05_basicInfo.ipynb', 'defaultBaseScrapeDir': '06_infoScraper.ipynb', 'scraperBase': '06_infoScraper.ipynb', 'default13FDir': '07_scrape13F.ipynb', 'findChildEndingWith': '07_scrape13F.ipynb', 'findChildSeries': '07_scrape13F.ipynb', 'getRowInfo': '07_scrape13F.ipynb', 'parse13FHoldings': '07_scrape13F.ipynb', 'scraper13F': '07_scrape13F.ipynb', 'callOptPat': '07_scrape13F.ipynb', 'putOptPat': '07_scrape13F.ipynb', 'condenseHoldings': '07_scrape13F.ipynb', 'get13FAmendmentType': '07_scrape13F.ipynb', 'indexMap': '07_scrape13F.ipynb', 'getHoldingsMap': '07_scrape13F.ipynb', 'addHoldingsMap': '07_scrape13F.ipynb', 'printRemoveStocksMessage': '07_scrape13F.ipynb', 'holdingsMapToMatrix': '07_scrape13F.ipynb', 'getPeriodAndNextQStartEnd': '07_scrape13F.ipynb', 'getNSSForQ': '07_scrape13F.ipynb', 'saveConvMatrixPy2': '07_scrape13F.ipynb', 'qStartEnds': '07_scrape13F.ipynb', 'qPeriods': '07_scrape13F.ipynb', 'default8KDir': '08_scrape8K.ipynb', 'parse8K': '08_scrape8K.ipynb', 'scraper8K': '08_scrape8K.ipynb', 'itemPat': '08_scrape8K.ipynb', 'explanPat': '08_scrape8K.ipynb', 'default6KDir': '09_scrape6K.ipynb', 'parse6K': '09_scrape6K.ipynb', 'scraper6K': '09_scrape6K.ipynb', 'reg12gStr': '09_scrape6K.ipynb', 'header6KPat': '09_scrape6K.ipynb', 'signaturePat': '09_scrape6K.ipynb', 'skipJunkPat': '09_scrape6K.ipynb', 'default13GDir': '10_scrape13G.ipynb', 'getSec13NshAndPctFromText2': '10_scrape13G.ipynb', 'addNshAndPct': '10_scrape13G.ipynb', 'cusipChecksum': '10_scrape13G.ipynb', 'monthNameToIso': '10_scrape13G.ipynb', 'getMonthPatStr': '10_scrape13G.ipynb', 'parseEventDate': '10_scrape13G.ipynb', 'parse13GD': '10_scrape13G.ipynb', 'scraper13G': '10_scrape13G.ipynb', 'reOPTS': '10_scrape13G.ipynb', 'aggregatePatStr': '10_scrape13G.ipynb', 'percentOfClassPatStr': '10_scrape13G.ipynb', 'typeOfRepPatStr': '10_scrape13G.ipynb', 'form13PiecesPat1': '10_scrape13G.ipynb', 'form13PiecesPat2': '10_scrape13G.ipynb', 'form13PiecesPat3': '10_scrape13G.ipynb', 'nSharesPatStr': '10_scrape13G.ipynb', 'nPctBarePatStr': '10_scrape13G.ipynb', 'nPctWithPctPatStr': '10_scrape13G.ipynb', 'nshAndPctPat1Pref': '10_scrape13G.ipynb', 'form13NshAndPctPats1': '10_scrape13G.ipynb', 'form13NshAndPctPat2': '10_scrape13G.ipynb', 'form13NshAndPctPat3': '10_scrape13G.ipynb', 'purposePat': '10_scrape13G.ipynb', 'strictCusipPatStr': '10_scrape13G.ipynb', 'cusipPatStr': '10_scrape13G.ipynb', 'cusipNumberPatStr': '10_scrape13G.ipynb', 'cusipSearchPats': '10_scrape13G.ipynb', 'spaceDashPat': '10_scrape13G.ipynb', 'monthNames': '10_scrape13G.ipynb', 'monthAbbrevStrs': '10_scrape13G.ipynb', 'monthPatStr': '10_scrape13G.ipynb', 'monthDayPatStr': '10_scrape13G.ipynb', 'possCommaPatStr': '10_scrape13G.ipynb', 'yearPatStr': '10_scrape13G.ipynb', 'dateOfEventPatStr': '10_scrape13G.ipynb', 'dateOfEventAtStartPatStr': '10_scrape13G.ipynb', 'dateOfEventAtEndPatStr': '10_scrape13G.ipynb', 'dateOfEventMonthPat1': '10_scrape13G.ipynb', 'dateOfEventMonthRevPat1': '10_scrape13G.ipynb', 'dateOfEventMonthPat2': '10_scrape13G.ipynb', 'dateOfEventMonthRevPat2': '10_scrape13G.ipynb', 'isoSepPatStr': '10_scrape13G.ipynb', 'dateOfEventIsoPat1': '10_scrape13G.ipynb', 'dateOfEventIsoRevPat1': '10_scrape13G.ipynb', 'dateOfEventIsoPat2': '10_scrape13G.ipynb', 'dateOfEventIsoRevPat2': '10_scrape13G.ipynb', 'whitespacePat': '10_scrape13G.ipynb', 'updateCik13GDPos': '10_scrape13G.ipynb', 'cikSymStr': '10_scrape13G.ipynb', 'calcBonusMap': '10_scrape13G.ipynb', 'default13DDir': '11_scrape13D.ipynb', 'scraper13D': '11_scrape13D.ipynb', 'get13GDDatesForQ': '11_scrape13D.ipynb', 'getCombNSSForQ': '11_scrape13D.ipynb', 'oddballScreen': '11_scrape13D.ipynb', 'default4Dir': '12_scrape4.ipynb', 'formatF4Num': '12_scrape4.ipynb', 'formatTrans': '12_scrape4.ipynb', 'getForm4Value': '12_scrape4.ipynb', 'parse34': '12_scrape4.ipynb', 'scraper4': '12_scrape4.ipynb', 'form4ReportingNamePat': '12_scrape4.ipynb', 'form4ReportingCikPat': '12_scrape4.ipynb', 'form4TransactionPat': '12_scrape4.ipynb', 'form4ValueFieldsAndPats': '12_scrape4.ipynb', 'form4ValueFields': '12_scrape4.ipynb', 'form4ValuePats': '12_scrape4.ipynb', 'form4ADCodes': '12_scrape4.ipynb', 'form4DICodes': '12_scrape4.ipynb', 'form4TransactionCodes': '12_scrape4.ipynb'}
modules = ['utils.py', 'recentFeed.py', 'dailyList.py', 'tickerMap.py', 'getCikFilings.py', 'basicInfo.py', 'infoScraper.py', 'scrape13F.py', 'scrape8K.py', 'scrape6K.py', 'scrape13G.py', 'scrape13D.py', 'scrape4.py']
doc_url = 'https://ikedim01.github.io/secscan/'
git_url = 'https://github.com/ikedim01/secscan/tree/master/'
def custom_doc_links(name):
return None
|
# ============================================
# Global Constants
# ============================================
# Shared variables
PUZZLE_ROWS = 9 # Number of rows on the board.
PUZZLE_COLUMNS = 9 # Number of columns on the board.
# Game variables
LEVEL_1_TOTAL_MEDALS = 3
LEVEL_2_TOTAL_MEDALS = 4
LEVEL_3_TOTAL_MEDALS = 5
SCORE = 0
MOVES_LEFT = 20
GEM_TYPES = 6
BONUS_TYPES = 3
ICE_ROWS = 5
ICE_LAYERS = 1
RANDOM_SEED = None # Set to NONE to use current system time
# GUI variables
HD_SCALE = 1.5 # Scale for changing the number of pixels.
BASE_CELL_SIZE = 30 # Base width of each shape (pixels).
GEM_RATIO = 0.9 # Gem size / cell size.
BASE_MARGIN = 70 # Base margin around the board (pixels).
BASE_TEXT_AREA = 75 # Base text area.
ANIMATION_SCALE = 10
EXPLOSION_FRAMES = 9
# Testing
TEST = False
|
puzzle_rows = 9
puzzle_columns = 9
level_1_total_medals = 3
level_2_total_medals = 4
level_3_total_medals = 5
score = 0
moves_left = 20
gem_types = 6
bonus_types = 3
ice_rows = 5
ice_layers = 1
random_seed = None
hd_scale = 1.5
base_cell_size = 30
gem_ratio = 0.9
base_margin = 70
base_text_area = 75
animation_scale = 10
explosion_frames = 9
test = False
|
# 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 diameterOfBinaryTree(self, root: TreeNode) -> int:
if root is None:
return 0
self.max_dist = 0
self.helper(root)
return self.max_dist - 1
def helper(self, root):
if root is None:
return 0
l = self.helper(root.left)
r = self.helper(root.right)
self.max_dist = max(self.max_dist, l + r + 1)
return max(l, r) + 1
|
class Solution:
def diameter_of_binary_tree(self, root: TreeNode) -> int:
if root is None:
return 0
self.max_dist = 0
self.helper(root)
return self.max_dist - 1
def helper(self, root):
if root is None:
return 0
l = self.helper(root.left)
r = self.helper(root.right)
self.max_dist = max(self.max_dist, l + r + 1)
return max(l, r) + 1
|
""" Error classes for USGS Paremeter Codes"""
class Error(Exception):
"""Base class for other exceptions"""
def __init__(self, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)
class AlreadyExistsError(Error):
"""Raises an error when data already exists"""
def __init__(self, *args, **kwargs):
Error.__init__(self, *args, **kwargs)
|
""" Error classes for USGS Paremeter Codes"""
class Error(Exception):
"""Base class for other exceptions"""
def __init__(self, *args, **kwargs):
Exception.__init__(self, *args, **kwargs)
class Alreadyexistserror(Error):
"""Raises an error when data already exists"""
def __init__(self, *args, **kwargs):
Error.__init__(self, *args, **kwargs)
|
class Dataset():
def __init__(self, train_images, test_images, train_labels, test_labels, emotion_index_map, time_delay=None):
self._train_images = train_images
self._test_images = test_images
self._train_labels = train_labels
self._test_labels = test_labels
self._emotion_index_map = emotion_index_map
self._time_delay = time_delay
def get_training_data(self):
return self._train_images, self._train_labels
def get_test_data(self):
return self._test_images, self._test_labels
def get_emotion_index_map(self):
return self._emotion_index_map
def get_time_delay(self):
return self._time_delay
def num_test_images(self):
return len(self._test_images)
def num_train_images(self):
return len(self._train_images)
def num_images(self):
return self.num_train_images() + self.num_test_images()
def print_data_details(self):
print('\nDATASET DETAILS')
print('%d image samples' % (self.num_images()))
print('%d training samples' % self.num_train_images())
print('%d test samples\n' % self.num_test_images())
|
class Dataset:
def __init__(self, train_images, test_images, train_labels, test_labels, emotion_index_map, time_delay=None):
self._train_images = train_images
self._test_images = test_images
self._train_labels = train_labels
self._test_labels = test_labels
self._emotion_index_map = emotion_index_map
self._time_delay = time_delay
def get_training_data(self):
return (self._train_images, self._train_labels)
def get_test_data(self):
return (self._test_images, self._test_labels)
def get_emotion_index_map(self):
return self._emotion_index_map
def get_time_delay(self):
return self._time_delay
def num_test_images(self):
return len(self._test_images)
def num_train_images(self):
return len(self._train_images)
def num_images(self):
return self.num_train_images() + self.num_test_images()
def print_data_details(self):
print('\nDATASET DETAILS')
print('%d image samples' % self.num_images())
print('%d training samples' % self.num_train_images())
print('%d test samples\n' % self.num_test_images())
|
"""
port
part of hwpy: an OO hardware interface library
home: https://www.github.com/wovo/hwpy
"""
class port:
"""A port is a set of pins.
port.n is the number of pins.
port.pins are the pins themselves.
"""
def __init__( self, pins ):
"""Create a port from a list of pins.
"""
self.pins = pins[ : ]
self.n = len( self.pins )
def read( self ):
"""Read from a port.
The result is an integer,
with in bit 0 the value read from the first pin,
in bit 1 the value read from the 2nd pin, etc.
The pins must support read().
"""
result = 0
mask = 1
for pin in self.pins:
if pin.read():
result = result + mask
mask = mask << 1
return result
def write( self, v ):
"""Write to port.
v must be an integer.
The lowest bit in v is written to the first pin,
the lowest-but-one is written to the second pin, etc.
The pins must support write().
"""
mask = 1
for pin in self.pins:
pin.write( ( v & mask ) != 0 )
mask = mask << 1
def make_input( self ):
"""Make all pins inputs.
Note: the pins must be gpio.
"""
for pin in self.pins:
pin.make_input()
def make_output( self ):
"""Make all pins outputs.
Note: The pins must be gpio.
"""
for pin in self.pins:
pin.make_output()
|
"""
port
part of hwpy: an OO hardware interface library
home: https://www.github.com/wovo/hwpy
"""
class Port:
"""A port is a set of pins.
port.n is the number of pins.
port.pins are the pins themselves.
"""
def __init__(self, pins):
"""Create a port from a list of pins.
"""
self.pins = pins[:]
self.n = len(self.pins)
def read(self):
"""Read from a port.
The result is an integer,
with in bit 0 the value read from the first pin,
in bit 1 the value read from the 2nd pin, etc.
The pins must support read().
"""
result = 0
mask = 1
for pin in self.pins:
if pin.read():
result = result + mask
mask = mask << 1
return result
def write(self, v):
"""Write to port.
v must be an integer.
The lowest bit in v is written to the first pin,
the lowest-but-one is written to the second pin, etc.
The pins must support write().
"""
mask = 1
for pin in self.pins:
pin.write(v & mask != 0)
mask = mask << 1
def make_input(self):
"""Make all pins inputs.
Note: the pins must be gpio.
"""
for pin in self.pins:
pin.make_input()
def make_output(self):
"""Make all pins outputs.
Note: The pins must be gpio.
"""
for pin in self.pins:
pin.make_output()
|
__author__ = 'alvertisjo'
recommenderSE='http://snf-561492.vm.okeanos.grnet.gr:8080/recommender-se/rest/recommender/'
recommnederProductCategories=['Home Appliances', 'Electrical Supplies', 'Kitchen Merchandise', 'Pet Care - Food', 'Clothing', 'Sports Equipment', 'Healthcare', 'Communications', 'Lubricants', 'Audio Visual - Photography', 'Lawn - Garden Supplies', 'Computing', 'Cleaning - Hygiene Products', 'Baby Care', 'Tool Storage - Workshop Aids', 'Food - Beverage - Tobacco', 'Household - Office Furniture - Furnishings', 'Footwear', 'Cross Segment', 'Tools - Equipment - Power', 'Beauty - Personal Care - Hygiene', 'Stationery - Office Machinery - Occasion Supplies', 'Music', 'Safety - Protection - DIY', 'Toys - Games', 'Arts - Crafts - Needlework', 'Plumbing - Heating - Ventilation - Air Conditioning', 'Building Products', 'Personal Accessories', 'Automotive', 'Tools - Equipment - Hand'] #Categories to train the Product recommender
##cloudlet='...'
platformAPI="https://demo2.openi-ict.eu:443/v.04/"
## http://147.102.6.98t:1988/v.04/photo/?user=tsourom&apps=[{"cbs": "instagram", "app_name": "OPENi"}]&method=filter_tags_photos&data={"lat": "37.9667", "lng": "23.7167", "tags": ["athens"]}
cloudletAPI="https://193.1.188.34:443/api/v1/"
swaggerAPI="http://openi.epu.ntua.gr:1988/v.04/"
FoursquareURL='https://api.foursquare.com/v2/'
productsDBurl='http://snf-561492.vm.okeanos.grnet.gr:8080/epuDemo/rest/demo/products/'
demo2APIoAuth='https://demo2.openi-ict.eu:443/api/v1/auth/'
ntuaPlatformAPI='https://demo2.openi-ict.eu:443/v.04/'
searchAPIPath='https://demo2.openi-ict.eu:443/api/v1/search?with_property=cbsid&property_filter=cbsid%3Drecommender'
apikey="ce7f31bc55dca7183faee99752b31bed"
secretkey="88ed487d2d727490e5e4babd433c8236b886b1dea947e1f027c37ac6135a3b56"
oauthURL="https://demo2.openi-ict.eu/auth/account?api_key=%s&secret=%s&redirectURL=http://localhost.com#"%(apikey,secretkey)
shop1_username="shop_1"
shop1_pass="shop_1shop_1"
shop2_username="shop_2"
shop2_pass="shop_2shop_2"
#tempToken='eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJqdGkiOiJjXzcwNjQxYjY0Mzk5YzZhNDFkMzhjNDY2ZjdlZDE5NDE0X2YyYTM3OWZmLWJmMjUtNDVkOS1hOTQ5LTU2NDY1MTFiZTg4MCIsImlzcyI6Imh0dHBzOi8vMTI3LjAuMC4xL2F1dGgvdG9rZW4iLCJzdWIiOiJjXzcwNjQxYjY0Mzk5YzZhNDFkMzhjNDY2ZjdlZDE5NDE0IiwiZXhwIjoxNDM1ODc1MzU4LCJpYXQiOjE0MzU4MzIxNTgsIm5vbmNlIjoiMDEyMTk4ZDUtYWU2ZS00NmRlLWI0NDUtY2QxMWVkYjNkNmIxIiwidXNlcl9pZCI6ImNfNzA2NDFiNjQzOTljNmE0MWQzOGM0NjZmN2VkMTk0MTQiLCJjbG91ZGxldCI6ImNfNzA2NDFiNjQzOTljNmE0MWQzOGM0NjZmN2VkMTk0MTQiLCJjbGllbnRfaWQiOiJjZTdmMzFiYzU1ZGNhNzE4M2ZhZWU5OTc1MmIzMWJlZCIsImNsaWVudF9uYW1lIjoidGVzdGMiLCJjb250ZXh0IjoiY183ZTc4YjgzZGRhN2E0N2JjZTM5MjFlYjcyZTk1YjMyOSIsInNjb3BlIjoib3BlbmkiLCJvcGVuaS10b2tlbi10eXBlIjoidG9rZW4iLCJyZXNwb25zZV90eXBlIjoiaWRfdG9rZW4ifQ.HC8iJGLVxmZW_OdM5teclqZTfbXTJf7Gtdy7Yd28D3jhDuD035C0FydtkKzrAolOqCYpyQIv9PZ17jwxMwYRhg'
|
__author__ = 'alvertisjo'
recommender_se = 'http://snf-561492.vm.okeanos.grnet.gr:8080/recommender-se/rest/recommender/'
recommneder_product_categories = ['Home Appliances', 'Electrical Supplies', 'Kitchen Merchandise', 'Pet Care - Food', 'Clothing', 'Sports Equipment', 'Healthcare', 'Communications', 'Lubricants', 'Audio Visual - Photography', 'Lawn - Garden Supplies', 'Computing', 'Cleaning - Hygiene Products', 'Baby Care', 'Tool Storage - Workshop Aids', 'Food - Beverage - Tobacco', 'Household - Office Furniture - Furnishings', 'Footwear', 'Cross Segment', 'Tools - Equipment - Power', 'Beauty - Personal Care - Hygiene', 'Stationery - Office Machinery - Occasion Supplies', 'Music', 'Safety - Protection - DIY', 'Toys - Games', 'Arts - Crafts - Needlework', 'Plumbing - Heating - Ventilation - Air Conditioning', 'Building Products', 'Personal Accessories', 'Automotive', 'Tools - Equipment - Hand']
platform_api = 'https://demo2.openi-ict.eu:443/v.04/'
cloudlet_api = 'https://193.1.188.34:443/api/v1/'
swagger_api = 'http://openi.epu.ntua.gr:1988/v.04/'
foursquare_url = 'https://api.foursquare.com/v2/'
products_d_burl = 'http://snf-561492.vm.okeanos.grnet.gr:8080/epuDemo/rest/demo/products/'
demo2_ap_io_auth = 'https://demo2.openi-ict.eu:443/api/v1/auth/'
ntua_platform_api = 'https://demo2.openi-ict.eu:443/v.04/'
search_api_path = 'https://demo2.openi-ict.eu:443/api/v1/search?with_property=cbsid&property_filter=cbsid%3Drecommender'
apikey = 'ce7f31bc55dca7183faee99752b31bed'
secretkey = '88ed487d2d727490e5e4babd433c8236b886b1dea947e1f027c37ac6135a3b56'
oauth_url = 'https://demo2.openi-ict.eu/auth/account?api_key=%s&secret=%s&redirectURL=http://localhost.com#' % (apikey, secretkey)
shop1_username = 'shop_1'
shop1_pass = 'shop_1shop_1'
shop2_username = 'shop_2'
shop2_pass = 'shop_2shop_2'
|
"""Probabilistic linear solvers.
Iterative probabilistic numerical methods solving linear systems :math:`Ax = b`.
"""
class ProbabilisticLinearSolver:
r"""Compose a custom probabilistic linear solver.
Class implementing probabilistic linear solvers. Such (iterative) solvers infer
solutions to problems of the form
.. math:: Ax=b,
where :math:`A \in \mathbb{R}^{n \times n}` and :math:`b \in \mathbb{R}^{n}`.
They return a probability measure which quantifies uncertainty in the output arising
from finite computational resources or stochastic input. This class unifies and
generalizes probabilistic linear solvers as described in the literature. [1]_ [2]_
[3]_ [4]_
Parameters
----------
References
----------
.. [1] Hennig, P., Probabilistic Interpretation of Linear Solvers, *SIAM Journal on
Optimization*, 2015, 25, 234-260
.. [2] Cockayne, J. et al., A Bayesian Conjugate Gradient Method, *Bayesian
Analysis*, 2019, 14, 937-1012
.. [3] Bartels, S. et al., Probabilistic Linear Solvers: A Unifying View,
*Statistics and Computing*, 2019
.. [4] Wenger, J. and Hennig, P., Probabilistic Linear Solvers for Machine Learning,
*Advances in Neural Information Processing Systems (NeurIPS)*, 2020
See Also
--------
problinsolve : Solve linear systems in a Bayesian framework.
bayescg : Solve linear systems with prior information on the solution.
Examples
--------
"""
|
"""Probabilistic linear solvers.
Iterative probabilistic numerical methods solving linear systems :math:`Ax = b`.
"""
class Probabilisticlinearsolver:
"""Compose a custom probabilistic linear solver.
Class implementing probabilistic linear solvers. Such (iterative) solvers infer
solutions to problems of the form
.. math:: Ax=b,
where :math:`A \\in \\mathbb{R}^{n \\times n}` and :math:`b \\in \\mathbb{R}^{n}`.
They return a probability measure which quantifies uncertainty in the output arising
from finite computational resources or stochastic input. This class unifies and
generalizes probabilistic linear solvers as described in the literature. [1]_ [2]_
[3]_ [4]_
Parameters
----------
References
----------
.. [1] Hennig, P., Probabilistic Interpretation of Linear Solvers, *SIAM Journal on
Optimization*, 2015, 25, 234-260
.. [2] Cockayne, J. et al., A Bayesian Conjugate Gradient Method, *Bayesian
Analysis*, 2019, 14, 937-1012
.. [3] Bartels, S. et al., Probabilistic Linear Solvers: A Unifying View,
*Statistics and Computing*, 2019
.. [4] Wenger, J. and Hennig, P., Probabilistic Linear Solvers for Machine Learning,
*Advances in Neural Information Processing Systems (NeurIPS)*, 2020
See Also
--------
problinsolve : Solve linear systems in a Bayesian framework.
bayescg : Solve linear systems with prior information on the solution.
Examples
--------
"""
|
# Python program showing no need to
# use global keyword for accessing
# a global value
# global variable
a = 15
b = 10
# function to perform addition
def add():
c = a + b
print(c)
# calling a function
add()
|
a = 15
b = 10
def add():
c = a + b
print(c)
add()
|
def test():
for i in xrange(1):
t = ''
for j in xrange(int(1e5)):
t += 'x'
#print(len(t))
test()
|
def test():
for i in xrange(1):
t = ''
for j in xrange(int(100000.0)):
t += 'x'
test()
|
"""
Copyright (c) 2009 Charles E. R. Wegrzyn
All Right Reserved.
chuck.wegrzyn at gmail.com
This application is free software and subject to the Version 1.0
of the Common Public Attribution License.
"""
|
"""
Copyright (c) 2009 Charles E. R. Wegrzyn
All Right Reserved.
chuck.wegrzyn at gmail.com
This application is free software and subject to the Version 1.0
of the Common Public Attribution License.
"""
|
def miniPeaks(nums):
result = []
left = 0
right = 0
for i in range(1, len(nums) - 1):
left = nums[i - 1]
right = nums[i + 1]
if nums[i] > left and nums[i] > right:
result.append(nums[i])
return result
# Time Complexity : O(n)
# Space Complexity : O(m),
# n = nos of elements
# m = nos of peak elements
|
def mini_peaks(nums):
result = []
left = 0
right = 0
for i in range(1, len(nums) - 1):
left = nums[i - 1]
right = nums[i + 1]
if nums[i] > left and nums[i] > right:
result.append(nums[i])
return result
|
#!/usr/bin/env python
__author__ = "Aditya Pahuja"
__copyright__ = "Copyright (c) 2020"
__maintainer__ = "Aditya Pahuja"
__email__ = "[email protected]"
__status__ = "Production"
class Window:
def __init__(self, start_date, stop_date):
self.start_date = start_date
self.stop_date = stop_date
|
__author__ = 'Aditya Pahuja'
__copyright__ = 'Copyright (c) 2020'
__maintainer__ = 'Aditya Pahuja'
__email__ = '[email protected]'
__status__ = 'Production'
class Window:
def __init__(self, start_date, stop_date):
self.start_date = start_date
self.stop_date = stop_date
|
#!/usr/bin/python
def modular_helper(base, exponent, modulus, prefactor=1):
c = 1
for k in range(exponent):
c = (c * base) % modulus
return ((prefactor % modulus) * c) % modulus
def fibN(n):
phi = (1 + 5 ** 0.5) / 2
return int(phi ** n / 5 ** 0.5 + 0.5)
# Alternate problem solutions start here
def problem0012a():
p = primes(1000)
n, Dn, cnt = 3, 2, 0
while cnt <= 500:
n, n1 = n + 1, n
if n1 % 2 == 0:
n1 = n1 // 2
Dn1 = 1
for pi in p:
if pi * pi > n1:
Dn1 = 2 * Dn1
break
exponent = 1
while n1 % pi == 0:
exponent += 1
n1 = n1 / pi
if exponent > 1:
Dn1 = Dn1 * exponent
if n1 == 1:
break
cnt = Dn * Dn1
Dn = Dn1
return (n - 1) * (n - 2) // 2
def problem0013a():
with open('problem0013.txt') as f:
s = f.readlines()
return int(str(sum(int(k[:11]) for k in s))[:10])
# solution due to veritas on Project Euler Forums
def problem0014a(ub=1000000):
table = {1: 1}
def collatz(n):
if not n in table:
if n % 2 == 0:
table[n] = collatz(n // 2) + 1
elif n % 4 == 1:
table[n] = collatz((3 * n + 1) // 4) + 3
else:
table[n] = collatz((3 * n + 1) // 2) + 2
return table[n]
return max(xrange(ub // 2 + 1, ub, 2), key=collatz)
# 13 -> 40 -> 20 -> 10 -> 5 -> 16 -> 8 -> 4 -> 2 -> 1
# 13 -(3)-> 10 -(1)-> 5 -(3)-> 4 -(1)-> 2 -(1)-> 1
def veritas_iterative(ub=1000000):
table = {1: 1}
def collatz(n):
seq, steps = [], []
while not n in table:
seq.append(n)
if n % 2 and n % 4 == 1:
n, x = (3 * n + 1) // 4, 3
elif n % 2:
n, x = (3 * n + 1) // 2, 2
else:
n, x = n // 2, 1
steps.append(x)
x = table[n]
while seq:
n, xn = seq.pop(), steps.pop()
x = x + xn
table[n] = x
return x
return max(xrange(ub // 2 + 1, ub, 2), key=collatz)
def problem0026a(n=1000):
return max(d for d in primes(n)
if not any(10 ** x % d == 1 for x in range(1, d - 1)))
def problem0031a():
def tally(*p):
d = (100, 50, 20, 10, 5, 2, 1)
return 200 - sum(k * v for k, v in zip(p, d))
c = 2
for p100 in range(2):
mp50 = int(tally(p100) / 50) + 1
for p50 in range(mp50):
mp20 = int(tally(p100, p50) / 20) + 1
for p20 in range(mp20):
mp10 = int(tally(p100, p50, p20) / 10) + 1
for p10 in range(mp10):
mp5 = int(tally(p100, p50, p20, p10) / 5) + 1
for p5 in range(mp5):
mp2 = int(tally(p100, p50, p20, p10, p5) / 2) + 1
for p2 in range(mp2):
c += 1
return c
def problem0089a():
n2r = [(1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'),
(100, 'C'), (90, 'XC'), (50, 'L'), (40, 'XL'),
(10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I')]
r2n = {b: a for a, b in n2r}
def to_roman(x):
s = []
while x:
n, c = next((n, c) for n, c in n2r if x >= n)
s.append(c)
x = x - n
return ''.join(s)
def from_roman(r):
k, s = 0, 0
while k < len(r):
if r[k] not in ('I', 'X', 'C') or k == len(r) - 1:
s = s + r2n[r[k]]
elif r[k:k+2] in r2n:
s = s + r2n[r[k:k+2]]
k = k + 1
else:
s = s + r2n[r[k]]
k = k + 1
return s
return sum(len(r) - len(to_roman(from_roman(r)))
for r in data.readRoman())
def problem0097a():
# Note 7830457 = 29 * 270015 + 22
# (10 ** 10 - 1) * 2 ** 29 does not overflow a 64 bit integer
p, b, e = 28433, 2, 7830457
d, m = divmod(e, 29)
prefactor = 28433 * 2 ** m
return modular_helper(2 ** 29, 270015, 10 ** 10, 28433 * 2 ** m) + 1
|
def modular_helper(base, exponent, modulus, prefactor=1):
c = 1
for k in range(exponent):
c = c * base % modulus
return prefactor % modulus * c % modulus
def fib_n(n):
phi = (1 + 5 ** 0.5) / 2
return int(phi ** n / 5 ** 0.5 + 0.5)
def problem0012a():
p = primes(1000)
(n, dn, cnt) = (3, 2, 0)
while cnt <= 500:
(n, n1) = (n + 1, n)
if n1 % 2 == 0:
n1 = n1 // 2
dn1 = 1
for pi in p:
if pi * pi > n1:
dn1 = 2 * Dn1
break
exponent = 1
while n1 % pi == 0:
exponent += 1
n1 = n1 / pi
if exponent > 1:
dn1 = Dn1 * exponent
if n1 == 1:
break
cnt = Dn * Dn1
dn = Dn1
return (n - 1) * (n - 2) // 2
def problem0013a():
with open('problem0013.txt') as f:
s = f.readlines()
return int(str(sum((int(k[:11]) for k in s)))[:10])
def problem0014a(ub=1000000):
table = {1: 1}
def collatz(n):
if not n in table:
if n % 2 == 0:
table[n] = collatz(n // 2) + 1
elif n % 4 == 1:
table[n] = collatz((3 * n + 1) // 4) + 3
else:
table[n] = collatz((3 * n + 1) // 2) + 2
return table[n]
return max(xrange(ub // 2 + 1, ub, 2), key=collatz)
def veritas_iterative(ub=1000000):
table = {1: 1}
def collatz(n):
(seq, steps) = ([], [])
while not n in table:
seq.append(n)
if n % 2 and n % 4 == 1:
(n, x) = ((3 * n + 1) // 4, 3)
elif n % 2:
(n, x) = ((3 * n + 1) // 2, 2)
else:
(n, x) = (n // 2, 1)
steps.append(x)
x = table[n]
while seq:
(n, xn) = (seq.pop(), steps.pop())
x = x + xn
table[n] = x
return x
return max(xrange(ub // 2 + 1, ub, 2), key=collatz)
def problem0026a(n=1000):
return max((d for d in primes(n) if not any((10 ** x % d == 1 for x in range(1, d - 1)))))
def problem0031a():
def tally(*p):
d = (100, 50, 20, 10, 5, 2, 1)
return 200 - sum((k * v for (k, v) in zip(p, d)))
c = 2
for p100 in range(2):
mp50 = int(tally(p100) / 50) + 1
for p50 in range(mp50):
mp20 = int(tally(p100, p50) / 20) + 1
for p20 in range(mp20):
mp10 = int(tally(p100, p50, p20) / 10) + 1
for p10 in range(mp10):
mp5 = int(tally(p100, p50, p20, p10) / 5) + 1
for p5 in range(mp5):
mp2 = int(tally(p100, p50, p20, p10, p5) / 2) + 1
for p2 in range(mp2):
c += 1
return c
def problem0089a():
n2r = [(1000, 'M'), (900, 'CM'), (500, 'D'), (400, 'CD'), (100, 'C'), (90, 'XC'), (50, 'L'), (40, 'XL'), (10, 'X'), (9, 'IX'), (5, 'V'), (4, 'IV'), (1, 'I')]
r2n = {b: a for (a, b) in n2r}
def to_roman(x):
s = []
while x:
(n, c) = next(((n, c) for (n, c) in n2r if x >= n))
s.append(c)
x = x - n
return ''.join(s)
def from_roman(r):
(k, s) = (0, 0)
while k < len(r):
if r[k] not in ('I', 'X', 'C') or k == len(r) - 1:
s = s + r2n[r[k]]
elif r[k:k + 2] in r2n:
s = s + r2n[r[k:k + 2]]
k = k + 1
else:
s = s + r2n[r[k]]
k = k + 1
return s
return sum((len(r) - len(to_roman(from_roman(r))) for r in data.readRoman()))
def problem0097a():
(p, b, e) = (28433, 2, 7830457)
(d, m) = divmod(e, 29)
prefactor = 28433 * 2 ** m
return modular_helper(2 ** 29, 270015, 10 ** 10, 28433 * 2 ** m) + 1
|
# List of lists, where each inner list corresponds to a bubble
class ListSet:
def __init__(self, N):
self.N = N
self._bubbles = []
for i in range(N):
self._bubbles.append({i})
def get_set_label(self, i):
"""
Return a number that is the same for every element in
the set that i is in, and which is unique to that set
Parameters
----------
i: int
Element we're looking for
Returns
-------
Index of the bubble containing i
"""
index = -1
k = 0
while k < len(self._bubbles) and index == -1:
if i in self._bubbles[k]:
index = k
k += 1
return index
def find(self, i, j):
"""
Return true if i and j are in the same component, or
false otherwise
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
return self.get_set_label(i) == self.get_set_label(j)
def union(self, i, j):
"""
Merge the two sets containing i and j, or do nothing if they're
in the same set
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
idx_i = self.get_set_label(i)
idx_j = self.get_set_label(j)
if idx_i != idx_j:
# Merge lists
# Decide that bubble containing j will be absorbed into
# bubble containing i
self._bubbles[idx_i] |= self._bubbles[idx_j]
# Remove the old bubble containing j
self._bubbles = self._bubbles[0:idx_j] + self._bubbles[idx_j+1::]
# Single list, each element is the ID of the corresponding object
class IDsSet:
def __init__(self, N):
self.N = N
self._ids = list(range(N))
def get_set_label(self, i):
"""
Return a number that is the same for every element in
the set that i is in, and which is unique to that set
Parameters
----------
i: int
Element we're looking for
Returns
-------
Index of the bubble containing i
"""
return self._ids[i]
def find(self, i, j):
"""
Return true if i and j are in the same component, or
false otherwise
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
return self._ids[i] == self._ids[j]
def union(self, i, j):
"""
Merge the two sets containing i and j, or do nothing if they're
in the same set
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
# If i and j have different IDs, then we have to
# merge the bubbles
id_i = self._ids[i]
id_j = self._ids[j]
if id_i != id_j:
# Let's merge everything in the bubble containing j
# into the bubble containing i
# In other words, everything with id_j should now
# have id_i
for k, id_k in enumerate(self._ids):
if id_k == id_j:
self._ids[k] = id_i
|
class Listset:
def __init__(self, N):
self.N = N
self._bubbles = []
for i in range(N):
self._bubbles.append({i})
def get_set_label(self, i):
"""
Return a number that is the same for every element in
the set that i is in, and which is unique to that set
Parameters
----------
i: int
Element we're looking for
Returns
-------
Index of the bubble containing i
"""
index = -1
k = 0
while k < len(self._bubbles) and index == -1:
if i in self._bubbles[k]:
index = k
k += 1
return index
def find(self, i, j):
"""
Return true if i and j are in the same component, or
false otherwise
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
return self.get_set_label(i) == self.get_set_label(j)
def union(self, i, j):
"""
Merge the two sets containing i and j, or do nothing if they're
in the same set
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
idx_i = self.get_set_label(i)
idx_j = self.get_set_label(j)
if idx_i != idx_j:
self._bubbles[idx_i] |= self._bubbles[idx_j]
self._bubbles = self._bubbles[0:idx_j] + self._bubbles[idx_j + 1:]
class Idsset:
def __init__(self, N):
self.N = N
self._ids = list(range(N))
def get_set_label(self, i):
"""
Return a number that is the same for every element in
the set that i is in, and which is unique to that set
Parameters
----------
i: int
Element we're looking for
Returns
-------
Index of the bubble containing i
"""
return self._ids[i]
def find(self, i, j):
"""
Return true if i and j are in the same component, or
false otherwise
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
return self._ids[i] == self._ids[j]
def union(self, i, j):
"""
Merge the two sets containing i and j, or do nothing if they're
in the same set
Parameters
----------
i: int
Index of first element
j: int
Index of second element
"""
id_i = self._ids[i]
id_j = self._ids[j]
if id_i != id_j:
for (k, id_k) in enumerate(self._ids):
if id_k == id_j:
self._ids[k] = id_i
|
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution(object):
def lowestCommonAncestor(self, root, p, q):
"""
:type root: TreeNode
:type p: TreeNode
:type q: TreeNode
:rtype: TreeNode
"""
pList = []
qList = []
self.computeList(root, p, pList)
self.computeList(root, q, qList)
pSet = set(pList)
for elem in reversed(qList):
if elem in pSet:
return elem
def computeList(self, root, target, L):
if root.val == target.val:
L.append(root)
else:
L.append(root)
if root.val > target.val:
self.computeList(root.left, target, L)
else:
self.computeList(root.right, target, L)
|
class Solution(object):
def lowest_common_ancestor(self, root, p, q):
"""
:type root: TreeNode
:type p: TreeNode
:type q: TreeNode
:rtype: TreeNode
"""
p_list = []
q_list = []
self.computeList(root, p, pList)
self.computeList(root, q, qList)
p_set = set(pList)
for elem in reversed(qList):
if elem in pSet:
return elem
def compute_list(self, root, target, L):
if root.val == target.val:
L.append(root)
else:
L.append(root)
if root.val > target.val:
self.computeList(root.left, target, L)
else:
self.computeList(root.right, target, L)
|
def is_connected(node1,node2,G):
"""returns True if node1 and node2 are connected in G. Otherwise returns False
Prec:G is a dictionary. node1 and node2 are keys in G"""
to_visit=G[node1]
visit=[node1]
while(to_visit!=[]):
cur_node=to_visit[0]
visit.append(cur_node)
to_visit=to_visit[1:]
if cur_node==node2:
return True
for d in G[cur_node]:
if d not in visit and d not in to_visit:
to_visit.append(d)
return False
G1={"A":["B"],"B":["A","C"],"C":["B"],"D":[]}
print(is_connected("A","B",G1))
"""def is_connected(node1,node2,G):
to_visit=G[node1]
visit=[node1]
while(to_visit!=[]):
index=len(to_visit)-1
visit.append(to_visit[index])
to_visit.pop()
index=index-1
for d in G[to_visit[index]]:
if d not in visit:
to_visit.append(d)
if node2 in to_visit:
return True
G1={"A":["B"],"B":["A","C"],"C":["B"],"D":[]}
print(is_connected("A","B",G1))"""
|
def is_connected(node1, node2, G):
"""returns True if node1 and node2 are connected in G. Otherwise returns False
Prec:G is a dictionary. node1 and node2 are keys in G"""
to_visit = G[node1]
visit = [node1]
while to_visit != []:
cur_node = to_visit[0]
visit.append(cur_node)
to_visit = to_visit[1:]
if cur_node == node2:
return True
for d in G[cur_node]:
if d not in visit and d not in to_visit:
to_visit.append(d)
return False
g1 = {'A': ['B'], 'B': ['A', 'C'], 'C': ['B'], 'D': []}
print(is_connected('A', 'B', G1))
'def is_connected(node1,node2,G):\n to_visit=G[node1]\n visit=[node1]\n while(to_visit!=[]):\n index=len(to_visit)-1\n visit.append(to_visit[index])\n to_visit.pop()\n index=index-1\n for d in G[to_visit[index]]:\n if d not in visit:\n to_visit.append(d)\n if node2 in to_visit:\n return True\nG1={"A":["B"],"B":["A","C"],"C":["B"],"D":[]}\nprint(is_connected("A","B",G1))'
|
class Vector2D:
def __init__(self, vec: List[List[int]]):
self.v = vec
self.row=0
self.col=0
def next(self) -> int:
if self.hasNext():
val=self.v[self.row][self.col]
self.col+=1
return val
else:
return
def hasNext(self) -> bool:
while self.row<len(self.v):
if self.col<len(self.v[self.row]):
return True
self.row+=1
self.col=0
return False
# Your Vector2D object will be instantiated and called as such:
# obj = Vector2D(vec)
# param_1 = obj.next()
# param_2 = obj.hasNext()
|
class Vector2D:
def __init__(self, vec: List[List[int]]):
self.v = vec
self.row = 0
self.col = 0
def next(self) -> int:
if self.hasNext():
val = self.v[self.row][self.col]
self.col += 1
return val
else:
return
def has_next(self) -> bool:
while self.row < len(self.v):
if self.col < len(self.v[self.row]):
return True
self.row += 1
self.col = 0
return False
|
# Create a dictionary with the roll number, name and marks
# of n students in a class and display the names of students
# who have marks above 75.
n = int(input("Enter number of students: "))
result = {}
for i in range(n):
print("Enter Details of student No.", i+1)
rno = int(input("Roll No: "))
name = input("Name: ")
marks = int(input("Marks: "))
result[rno] = [name, marks]
for student in result:
if result[student][1] > 75:
print(f'{result[student][0]} has marks more than 75')
|
n = int(input('Enter number of students: '))
result = {}
for i in range(n):
print('Enter Details of student No.', i + 1)
rno = int(input('Roll No: '))
name = input('Name: ')
marks = int(input('Marks: '))
result[rno] = [name, marks]
for student in result:
if result[student][1] > 75:
print(f'{result[student][0]} has marks more than 75')
|
def abs(x: str) -> float:
return x if x > 0 else -x
# print(abs(10))
# print(abs(-10))
x = set()
# print(type(x))
x.add(10)
x.add(10)
x.add(10)
# print(x)
# print(len(x))
# print([ord(character) for character in input()])
# print(x.__repr__())
# var = map(int, input().split())
# print(var)
n = int(input())
print(sum(x ** 2 for x in range(1, n + 1)))
|
def abs(x: str) -> float:
return x if x > 0 else -x
x = set()
x.add(10)
x.add(10)
x.add(10)
n = int(input())
print(sum((x ** 2 for x in range(1, n + 1))))
|
first_number = 500 / 100 + 50 + 45
second_number = 250 - 50
print(first_number)
print(second_number)
total = first_number + second_number
print(total)
|
first_number = 500 / 100 + 50 + 45
second_number = 250 - 50
print(first_number)
print(second_number)
total = first_number + second_number
print(total)
|
CORE_URL = "https://www.gov.br/receitafederal/pt-br/assuntos/orientacao-tributaria/cadastros/consultas/dados-publicos-cnpj"
CORE_URL_FILES = "http://200.152.38.155/CNPJ"
CNAE_JSON_NAME = 'cnaes.json'
NATJU_JSON_NAME = 'natju.json'
QUAL_SOCIO_JSON_NAME = 'qual_socio.json'
MOTIVOS_JSON_NAME = 'motivos.json'
PAIS_JSON_NAME = 'pais.json'
MUNIC_JSON_NAME = 'municipios.json'
|
core_url = 'https://www.gov.br/receitafederal/pt-br/assuntos/orientacao-tributaria/cadastros/consultas/dados-publicos-cnpj'
core_url_files = 'http://200.152.38.155/CNPJ'
cnae_json_name = 'cnaes.json'
natju_json_name = 'natju.json'
qual_socio_json_name = 'qual_socio.json'
motivos_json_name = 'motivos.json'
pais_json_name = 'pais.json'
munic_json_name = 'municipios.json'
|
CLIENT_LOCK_QUEUE_REQUEST_TIME_OUT = 30000
CLIENT_UNLOCK_QUEUE_REQUEST_TIME_OUT = 30000
CLIENT_DEFAULT_DECLARE_QUEUES_REQUEST_TIME_OUT = 30000
CLIENT_DEFAULT_DECLARE_QUEUE_REQUEST_TIME_OUT = 30000
CLIENT_DEFAULT_DECLARE_EXCHANGES_REQUEST_TIME_OUT = 30000
CLIENT_DEFAULT_DECLARE_EXCHANGE_REQUEST_TIME_OUT = 30000
CLIENT_DEFAULT_DELETE_QUEUES_REQUEST_TIME_OUT = 30000
# Validation time outs; milliseconds.
QM_LOCK_QUEUES_REQUEST_TIME_OUT = 30000
QM_UNLOCK_QUEUES_REQUEST_TIME_OUT = 30000
WORKER_VALIDATE_QUEUE_DELETION_TIMEOUT = 30000
WORKER_VALIDATE_DECLARATION_TIMEOUT = 30000
|
client_lock_queue_request_time_out = 30000
client_unlock_queue_request_time_out = 30000
client_default_declare_queues_request_time_out = 30000
client_default_declare_queue_request_time_out = 30000
client_default_declare_exchanges_request_time_out = 30000
client_default_declare_exchange_request_time_out = 30000
client_default_delete_queues_request_time_out = 30000
qm_lock_queues_request_time_out = 30000
qm_unlock_queues_request_time_out = 30000
worker_validate_queue_deletion_timeout = 30000
worker_validate_declaration_timeout = 30000
|
# Sometimes methods take arguments.
# Try changing the argument passed to lpad.
# Then try some whole different methods...
catcher = 'Joyce'
print(third_batter.lpad(10))
print(third_batter.startswith('M'))
print(third_batter.endswith(''))
|
catcher = 'Joyce'
print(third_batter.lpad(10))
print(third_batter.startswith('M'))
print(third_batter.endswith(''))
|
count_shiny_gold_bag = 0
rules = {}
with open("input.txt", "r") as f:
lines = [line.rstrip() for line in f.readlines()]
answered_yes_group = []
for line in lines:
line = line.split(" bags contain ")
line[1] = line[1].split(",")
bags = []
for bag in line[1]:
bag = bag.strip(" ")
bags.append(bag.split(" "))
contained_bags = []
for bag in bags:
bag = bag[1] + " " + bag[2]
contained_bags.append(bag)
if "other" in contained_bags[0]:
contained_bags[0] = "None"
rules[line[0]] = contained_bags
bags = ["shiny gold"]
for bag in bags:
for rule in rules:
if bag in rules[rule]:
if rule not in bags:
bags.append(rule)
print(f"\nHow many bag colors can eventually contain at least one shiny gold bag? {len(bags) - 1}")
|
count_shiny_gold_bag = 0
rules = {}
with open('input.txt', 'r') as f:
lines = [line.rstrip() for line in f.readlines()]
answered_yes_group = []
for line in lines:
line = line.split(' bags contain ')
line[1] = line[1].split(',')
bags = []
for bag in line[1]:
bag = bag.strip(' ')
bags.append(bag.split(' '))
contained_bags = []
for bag in bags:
bag = bag[1] + ' ' + bag[2]
contained_bags.append(bag)
if 'other' in contained_bags[0]:
contained_bags[0] = 'None'
rules[line[0]] = contained_bags
bags = ['shiny gold']
for bag in bags:
for rule in rules:
if bag in rules[rule]:
if rule not in bags:
bags.append(rule)
print(f'\nHow many bag colors can eventually contain at least one shiny gold bag? {len(bags) - 1}')
|
class ParserInterface():
def open(self):
pass
def get_data(self):
pass
def close(self):
pass
|
class Parserinterface:
def open(self):
pass
def get_data(self):
pass
def close(self):
pass
|
# Number of bromine atoms in each species
cfc11 = 0
cfc12 = 0
cfc113 = 0
cfc114 = 0
cfc115 = 0
carb_tet = 0
mcf = 0
hcfc22 = 0
hcfc141b = 0
hcfc142b = 0
halon1211 = 1
halon1202 = 2
halon1301 = 1
halon2402 = 2
ch3br = 1
ch3cl = 0
aslist = [cfc11, cfc12, cfc113, cfc114, cfc115, carb_tet, mcf, hcfc22,
hcfc141b, hcfc142b, halon1211, halon1202, halon1301, halon2402,
ch3br, ch3cl]
|
cfc11 = 0
cfc12 = 0
cfc113 = 0
cfc114 = 0
cfc115 = 0
carb_tet = 0
mcf = 0
hcfc22 = 0
hcfc141b = 0
hcfc142b = 0
halon1211 = 1
halon1202 = 2
halon1301 = 1
halon2402 = 2
ch3br = 1
ch3cl = 0
aslist = [cfc11, cfc12, cfc113, cfc114, cfc115, carb_tet, mcf, hcfc22, hcfc141b, hcfc142b, halon1211, halon1202, halon1301, halon2402, ch3br, ch3cl]
|
class S:
ASSETS_PATH = "assets/"
WINDOW_SIZE = (432, 768)
@staticmethod
def save_sprite(name, image):
name = name.upper()
if not hasattr(S, name):
setattr(S, name, image)
setattr(S, name + "_RECT", image.get_rect())
|
class S:
assets_path = 'assets/'
window_size = (432, 768)
@staticmethod
def save_sprite(name, image):
name = name.upper()
if not hasattr(S, name):
setattr(S, name, image)
setattr(S, name + '_RECT', image.get_rect())
|
#!/usr/bin/env python
count = 3
list1 = []
while count > 0:
num = int(input(">>> "))
list1.append(num)
count -= 1
list1.sort()
print(list1)
|
count = 3
list1 = []
while count > 0:
num = int(input('>>> '))
list1.append(num)
count -= 1
list1.sort()
print(list1)
|
def Fun():
pass
class A:
def __init__(self):
pass
def Fun(self):
pass
try:
print(Fun.__name__)
print(A.__init__.__name__)
print(A.Fun.__name__)
print(A().Fun.__name__)
except AttributeError:
print('SKIP')
|
def fun():
pass
class A:
def __init__(self):
pass
def fun(self):
pass
try:
print(Fun.__name__)
print(A.__init__.__name__)
print(A.Fun.__name__)
print(a().Fun.__name__)
except AttributeError:
print('SKIP')
|
a = input()
d = {'A':0,'B':0}
for i in range(0,len(a),2):
d[a[i]] += int(a[i+1])
if d['A'] > d['B']:
print("A")
else:
print("B")
|
a = input()
d = {'A': 0, 'B': 0}
for i in range(0, len(a), 2):
d[a[i]] += int(a[i + 1])
if d['A'] > d['B']:
print('A')
else:
print('B')
|
# -*- coding: utf-8 -*-
# this file is released under public domain and you can use without limitations
#########################################################################
## This is a sample controller
## - index is the default action of any application
## - user is required for authentication and authorization
## - download is for downloading files uploaded in the db (does streaming)
#########################################################################
@auth.requires_membership('admins')
def manage_author():
mydb.author.image.represent = lambda image, row: IMG(_src=URL('admin', 'download', args=image),
_class='author_image',
_width='50px',
_onclick='$("#image_container").attr("src","'+URL("admin", "download", args=image)+'");document.getElementById("text_container").innerHTML = "'+str(row.name)+'"; $("#imageModal").modal("show");',
) if image else ''
grid = SQLFORM.grid(mydb.author,
headers={'author.image':'Autor'},
#user_signature=False #http://www.web2py.com/books/default/chapter/29/07/forms-and-validators#SQLFORM-grid, do not check login
showbuttontext = False
)
#return locals()
return {'author': grid}
@auth.requires_membership('admins')
def manage_book():
mydb.book.image.represent = lambda image, row: IMG(_src=URL('admin', 'download', args=image),
_class='book_image',
_width='50px',
_onclick='$("#image_container").attr("src","'+URL("admin", "download", args=image)+'");document.getElementById("text_container").innerHTML = "'+str(row.book[row] if 'trailer' in row.book else '')+'"; $("#imageModal").modal("show");',
) if image else ''
mydb.author.image.represent = lambda image, row: IMG(_src=URL('admin', 'download', args=image),
_class='author_image',
_width='50px',
_onclick='$("#image_container").attr("src","'+URL("admin", "download", args=image)+'");document.getElementById("text_container").innerHTML = "'+str(row.author['name'] if 'name' in row.author else row.as_dict())+'"; $("#imageModal").modal("show");',
) if image else ''
mydb.author.name.readable = False
grid = SQLFORM.grid(mydb.book,
left = [ mydb.author.on( mydb.book.author == mydb.author.id )],
fields = [ mydb.book.title, mydb.book.publish_date, mydb.book.isbn,mydb.book.trailer, mydb.book.image, mydb.author.image, mydb.author.name],
#user_signature=False,
maxtextlength=200,
showbuttontext = False,
headers={'book.image':'Buch','author.image':'Autor'}
)
return {'books':grid}
def download():
return response.download(request, mydb)
#todo: receive variable quantities. x_number_of_quantities = book_copy.
'''
TOOD
- set the grid so that adding new entries is not allowed
- add a custom button in the corresponding view pointing to new_hofb()
'''
@auth.requires_membership('admins')
def handling_of_the_book():
grid = SQLFORM.grid(mydb.handling_of_the_book,
#user_signature=True,
maxtextlength=200,
showbuttontext = False,
)
return {'handling_of_the_book':grid}
def finish_book_order(i_status, i_status_2, i_check_in):
logger.debug('finish_book_order with arguments {} {} {}'.format(i_status, i_status_2, i_check_in))
hb_id = mydb( mydb.book_order_checkout.id == request.args(0) ).select( mydb.book_order_checkout.handling_of_the_book )[0]["handling_of_the_book"] #get id of handle table
logger.debug('book id: {}'.format(hb_id))
mydb(mydb.handling_of_the_book.id == hb_id).update(status=i_status)
order_row = mydb( mydb.book_order_checkout.id == request.args(0) ).select()[0] #get row of table 'book_order_checkout'
mydb(mydb.book_order_checkout.id == request.args(0)).delete() #delete row in table 'book_order_checkout'
mydb.book_order_past.insert(check_out=order_row['check_out'],check_in=i_check_in,username=order_row['username'],user_id=order_row['user_id'],status=i_status_2,handling_of_the_book=hb_id) #backup oder in backup table
redirect(URL('admin', 'requested_books')) #redirect back to checkin page
@auth.requires_membership('admins')
def lost_book():
#TODO fix, read book id from argument and then update the record
finish_book_order(19, 19, '')
@auth.requires_membership('admins')
def checkin_book():
#TODO fix, read book id from argument and then update the record
finish_book_order(17, 24, request.now)
@auth.requires_membership('admins')
def checkout():
#TODO fix, read book id from argument and then update the record
hb_id = mydb( mydb.book_order_checkout.id == request.args(0) ).select( mydb.book_order_checkout.handling_of_the_book )[0]["handling_of_the_book"] #get id of handle table
mydb(mydb.handling_of_the_book.id == hb_id).update(status=22) #set status to 'checked out'
mydb(mydb.book_order_checkout.id == request.args(0)).update(status=22, check_out=request.now) #set status in table 'book_order_checkout' to 'checked out' and set check out date
redirect(URL('admin', 'requested_books')) #redirect back to checkin page
@auth.requires_membership('admins')
def checkin():
grid = SQLFORM.grid(mydb.book_order_checkout.status == 22, #get books with status 'checked out'
left = [ mydb.handling_of_the_book.on( mydb.handling_of_the_book.id == mydb.book_order_checkout.handling_of_the_book ), #left join handling table
mydb.book.on( mydb.handling_of_the_book.book == mydb.book.id )], #left join book tabke
fields = [ mydb.book_order_checkout.id, mydb.book.title,mydb.book_order_checkout.user_id, mydb.book_order_checkout.username, mydb.book_order_checkout.check_out ], #fields to display
deletable = True,
editable = True,
create = False,
maxtextlength=100,
details = False,
csv = False,
links=[lambda row: A(T('Check in'), #button for checking in a book
_href=URL('admin', 'checkin_book', args=row.book_order_checkout.id),
_class='button btn btn-default',
_name='btnUpdate'
),
lambda row: A(T('Lost'), #button for marking a book as lost
_href=URL('admin', 'lost_book', args=row.book_order_checkout.id),
_class='button btn btn-default',
_name='btnUpdate',
showbuttontext = False,
)
]
)
return {'checkin':grid}
@auth.requires_membership('admins')
def requested_books():
grid = SQLFORM.grid( mydb( (mydb.book_order_checkout.status == 21) | (mydb.book_order_checkout.status == 22) ),
left = [ mydb.handling_of_the_book.on( mydb.handling_of_the_book.id == mydb.book_order_checkout.handling_of_the_book ), #left join handling table
mydb.book.on( mydb.handling_of_the_book.book == mydb.book.id )], #left join book table
fields = [ mydb.book_order_checkout.status, mydb.book_order_checkout.id, mydb.book.title,mydb.book.image, mydb.book_order_checkout.user_id, mydb.book_order_checkout.username, mydb.book_order_checkout.check_out ], #fields to be displayed
deletable = False,
editable = False,
create = False,
maxtextlength=100,
details = False,
csv = False,
links=[ lambda row: create_buttons(row)],
showbuttontext = False
)
return dict(grid=grid)
def create_buttons(row):
buttons = []
if(row.book_order_checkout.status == 21):
return A(T('Check out'), #button for checking in a book
_href=URL('admin', 'checkout', args=row.book_order_checkout.id),
_class='button btn btn-default',
_name='btnUpdate'
)
elif(row.book_order_checkout.status == 22):
return DIV(A(T('Check in'),
_href=URL('admin', 'checkin_book', args=row.book_order_checkout.id),
_class='button btn btn-default',
_name='btnUpdate'
) +
A(T('Lost'), #button for checking in a book
_href=URL('admin', 'lost_book', args=row.book_order_checkout.id),
_class='button btn btn-default',
_name='btnUpdate'
))
return ''
@auth.requires_membership('admins')
def past_book_orders():
grid = SQLFORM.grid(mydb( mydb.book_order_past ), #show past book orders for logged in user
left = [ mydb.handling_of_the_book.on( mydb.handling_of_the_book.id == mydb.book_order_past.handling_of_the_book ), #left join handling table
mydb.book.on( mydb.handling_of_the_book.book == mydb.book.id )], #left join book table
fields = [ mydb.book.title,mydb.book.image, mydb.book_order_past.check_out, mydb.book_order_past.username, mydb.book_order_past.check_in, mydb.book_order_past.status ],
editable = False,
maxtextlength=100,
details = False,
csv = False,
showbuttontext = False
)
return dict(past_book_orders=grid)
#new_hofb() = new_handling_of_the_book():
def new_hofb():
#creating a standard SQLFORM from the handling_of_the_book table
form = SQLFORM(mydb.handling_of_the_book,
fields=['book', 'location'],
)
#creating new quantity variables which are used to display an additional field to the form
#as quantity is not part of the handling_of_the_book table
quantity_label = LABEL('Quantity', _class='form-control-label col-sm-3', _for='handling_of_the_book_copy_quantity')
quantity_input = DIV(
INPUT(_name='quantity', _value=1, _type='number', _min="1", _id='handling_of_the_book_copy_quantity', _class='generic-widget form-control'),
_class='col-sm-9'
)
quantity_element = DIV( _class='form-group row', _id='handling_of_the_book_quantity__row')
quantity_element.append(quantity_label)
quantity_element.append(quantity_input)
#adding quantity label and field, to the form, using the correct format (structure, classes, ids, ...)
form[0].insert(-1, quantity_element)
#hello world
#TODO (1) handle the form input
#TODO (2) create a new handling_of_the_book row "quantity" times, and insert them in the db
#DONE (3) validate quantity (1 or more, error on 0 or negative)
#DONE (4) tell the admin user the result of the action (ok, error)
#attempting to get from variables and handle them (1 and 4, the rest if for later)
#if form.accepts(request, session):
#hell and damnation! the SQLFORM is inserting records automatically!!! I have to handle the additional values by hand... but how?
#the work is done by the "accepts" method! nasty code!
if form.process(onvalidation=new_hofb_validation, dbio=False).accepted:
#we use the form vars, which are now validated
book_id = int(form.vars.book)
location_id = int(form.vars.location)
quantity = int(form.vars.quantity)
status = 17 #hard coding the status id, should be using a select but I do thid as placehodler, I'll do the select afterwards
#TODO point (2)
#create the records
#insert the records
for n in range(quantity):
mydb.handling_of_the_book.insert(book=book_id, status=17, location=location_id)
request.vars.book = mydb( mydb.book.id == book_id ).select( mydb.book.title )[0]['title']
request.vars.location = mydb( mydb.location.id == location_id ).select( mydb.location.location_name )[0]['location_name']
response.flash = 'Books records created'
elif form.errors:
response.flash = 'Please check the form for errors'
else:
response.flash = 'Dear Librarian, here you can add new books to the library. Beware of rats'
logger.warn('errors in the form {}'.format(request.vars))
if request.vars.book is None:
request.vars.book = ''
request.vars.quantity = ''
request.vars.location = ''
return dict(form=form)
'''
additional function to help validating the quantity in new_hofb form
'''
def new_hofb_validation(form):
quantity = form.vars.quantity #TODO check if quantity is in form.vars
try:
if quantity == None: #this should never happen as the html form should handle
form.errors.quantity = "Quantity cannot be empty"
elif int(quantity) < 1: #this should be handled by html5 number fields, but just in case...
form.errors.quantity = "Quantity cannot be less than 1"
except expression as identifier:
form.errors.quantity = "Quantity must be a number"
def authors_and_books():
#TODO reformat this as SQLFORM.grid
'''
t = TABLE()
header = TR(TH('Author'), TH('Books count'), TH('Books'))
authors_rows = mydb(mydb.author.id > 0).select()
for author_row in authors_rows:
r = TR()
print '-----'
print author_row.id, author_row.name
r.append( TD(author_row.name) )
books_rows = mydb(mydb.book.author == author_row.id).select()
#print ('%s' % books_rows)
count = 0
for book in books_rows:
count = count + 1
print book.id, book.title
#count = len(books_rows)
r.append( TD(count) )
link = A('books', _href=URL(works_of_the_author, args=[author_row.id]))
r.append( TD(link) )
t.append(r)
'''
#TODO add counts column dict(header='name',body=lambda row: A(...))
#TODO add link column (use the link attribute as by SQLFORM.grid in chapter 7)
t = SQLFORM.grid( mydb.author,
#user_signature=False,
deletable = False,
editable = False,
create = False,
details = False,
csv = False,
links = [
{'header':'book_count','body':lambda row: _generate_author_books_count(row)},
{'header':'link_to_books', 'body':lambda row: A('link', _href=URL(works_of_the_author, args=[row.id]))}
]
)
return {'out':t}
@auth.requires_membership('admins')
def works_of_the_author():
grid = SQLFORM.grid(mydb(mydb.book.author == request.args[0]),
fields = [mydb.book.title, mydb.book.publish_date, mydb.book.isbn],
user_signature=False,
maxtextlength=200,
showbuttontext = False
)
return {'out':grid}
@auth.requires_membership('admins')
def user_overview():
grid = SQLFORM.grid(db(db.auth_user),
left = [ db.auth_membership.on( db.auth_user.id == db.auth_membership.user_id ),
db.auth_group.on( db.auth_membership.group_id == db.auth_group.id )],
fields = [db.auth_user.username, db.auth_user.first_name, db.auth_user.last_name, db.auth_group.role, db.auth_user.registration_key],
#user_signature=False,
maxtextlength=200,
links = [{'header':'', 'body':lambda row: _registration_button(row)}],
showbuttontext = False,
)
return {'users':grid}
def _registration_button(row):
try:
btn = A('Status')
registration_status = row.auth_user.registration_key
'''
using URL with vars, so each value will have it's corresponding key
if I had used args, then they would be sent in order but without key
vars:
code: vars={'username':row.auth_user.username,'value':'active'}
output: http://127.0.0.1:8000/Bibi2/admin/update_registration_status?username=andrea&value=active
args:
code: args=[row.auth_user.username, 'active']
output: http://127.0.0.1:8000/Bibi2/admin/update_registration_status?andrea&active
'''
if registration_status in ['pending', 'disabled', 'blocked']: #TODO check the various user registration possible states in the documentation
btn = A('Activate', _class = 'btn btn-success', _href= URL('update_registration_status', vars={'username':row.auth_user.username,'value':'activate'}))
else:
btn = A('Disable', _class = 'btn btn-danger', _href= URL('update_registration_status', vars={'username':row.auth_user.username,'value':'disable'}))
return btn
except:
return ''
@auth.requires_membership('admins')
def update_registration_status():
#read arguments from url
#eg http://127.0.0.1:8000/Bibi2/admin/update_registration_status?username=testUser&value=active
#how to read vars
username = request.vars['username'] if 'username' in request.vars else None
value = request.vars['value'] if 'value' in request.vars else None
out = None
'''
#how to read args
username = request.args[0] if len(request.args) >= 1 else None
value = request.args[1] if len(request.args) >= 2 else None
'''
if (username != None and value != None):
if (value == 'activate'):
out = db(db.auth_user.username == username).update(registration_key=None)
if (value == 'disable'):
out = db(db.auth_user.username == username).update(registration_key='blocked')
pass
else:
#do nothing because stuff is missing, or find a way to display some kind of unobstrusive error
out = 0
redirect(URL('admin', 'user_overview'))
return out
def _generate_author_books_count( row ):
books_rows = mydb(mydb.book.author == row.id).select()
books_count = 0
for book in books_rows:
books_count = books_count + 1
return books_count
'''
option: from lambda call a function
'count': lambda row:
generate_count_of_books(books_rows)
count = 0
for book in books_rows:
count = count + 1
return count
'link': lambda row:
generate_author_book_link(link)
def generate_count_of_books():
def generate_author_book_link():
return {'out':t}
'''
def free_books():
return 0
|
@auth.requires_membership('admins')
def manage_author():
mydb.author.image.represent = lambda image, row: img(_src=url('admin', 'download', args=image), _class='author_image', _width='50px', _onclick='$("#image_container").attr("src","' + url('admin', 'download', args=image) + '");document.getElementById("text_container").innerHTML = "' + str(row.name) + '"; $("#imageModal").modal("show");') if image else ''
grid = SQLFORM.grid(mydb.author, headers={'author.image': 'Autor'}, showbuttontext=False)
return {'author': grid}
@auth.requires_membership('admins')
def manage_book():
mydb.book.image.represent = lambda image, row: img(_src=url('admin', 'download', args=image), _class='book_image', _width='50px', _onclick='$("#image_container").attr("src","' + url('admin', 'download', args=image) + '");document.getElementById("text_container").innerHTML = "' + str(row.book[row] if 'trailer' in row.book else '') + '"; $("#imageModal").modal("show");') if image else ''
mydb.author.image.represent = lambda image, row: img(_src=url('admin', 'download', args=image), _class='author_image', _width='50px', _onclick='$("#image_container").attr("src","' + url('admin', 'download', args=image) + '");document.getElementById("text_container").innerHTML = "' + str(row.author['name'] if 'name' in row.author else row.as_dict()) + '"; $("#imageModal").modal("show");') if image else ''
mydb.author.name.readable = False
grid = SQLFORM.grid(mydb.book, left=[mydb.author.on(mydb.book.author == mydb.author.id)], fields=[mydb.book.title, mydb.book.publish_date, mydb.book.isbn, mydb.book.trailer, mydb.book.image, mydb.author.image, mydb.author.name], maxtextlength=200, showbuttontext=False, headers={'book.image': 'Buch', 'author.image': 'Autor'})
return {'books': grid}
def download():
return response.download(request, mydb)
'\nTOOD\n- set the grid so that adding new entries is not allowed\n- add a custom button in the corresponding view pointing to new_hofb()\n'
@auth.requires_membership('admins')
def handling_of_the_book():
grid = SQLFORM.grid(mydb.handling_of_the_book, maxtextlength=200, showbuttontext=False)
return {'handling_of_the_book': grid}
def finish_book_order(i_status, i_status_2, i_check_in):
logger.debug('finish_book_order with arguments {} {} {}'.format(i_status, i_status_2, i_check_in))
hb_id = mydb(mydb.book_order_checkout.id == request.args(0)).select(mydb.book_order_checkout.handling_of_the_book)[0]['handling_of_the_book']
logger.debug('book id: {}'.format(hb_id))
mydb(mydb.handling_of_the_book.id == hb_id).update(status=i_status)
order_row = mydb(mydb.book_order_checkout.id == request.args(0)).select()[0]
mydb(mydb.book_order_checkout.id == request.args(0)).delete()
mydb.book_order_past.insert(check_out=order_row['check_out'], check_in=i_check_in, username=order_row['username'], user_id=order_row['user_id'], status=i_status_2, handling_of_the_book=hb_id)
redirect(url('admin', 'requested_books'))
@auth.requires_membership('admins')
def lost_book():
finish_book_order(19, 19, '')
@auth.requires_membership('admins')
def checkin_book():
finish_book_order(17, 24, request.now)
@auth.requires_membership('admins')
def checkout():
hb_id = mydb(mydb.book_order_checkout.id == request.args(0)).select(mydb.book_order_checkout.handling_of_the_book)[0]['handling_of_the_book']
mydb(mydb.handling_of_the_book.id == hb_id).update(status=22)
mydb(mydb.book_order_checkout.id == request.args(0)).update(status=22, check_out=request.now)
redirect(url('admin', 'requested_books'))
@auth.requires_membership('admins')
def checkin():
grid = SQLFORM.grid(mydb.book_order_checkout.status == 22, left=[mydb.handling_of_the_book.on(mydb.handling_of_the_book.id == mydb.book_order_checkout.handling_of_the_book), mydb.book.on(mydb.handling_of_the_book.book == mydb.book.id)], fields=[mydb.book_order_checkout.id, mydb.book.title, mydb.book_order_checkout.user_id, mydb.book_order_checkout.username, mydb.book_order_checkout.check_out], deletable=True, editable=True, create=False, maxtextlength=100, details=False, csv=False, links=[lambda row: a(t('Check in'), _href=url('admin', 'checkin_book', args=row.book_order_checkout.id), _class='button btn btn-default', _name='btnUpdate'), lambda row: a(t('Lost'), _href=url('admin', 'lost_book', args=row.book_order_checkout.id), _class='button btn btn-default', _name='btnUpdate', showbuttontext=False)])
return {'checkin': grid}
@auth.requires_membership('admins')
def requested_books():
grid = SQLFORM.grid(mydb((mydb.book_order_checkout.status == 21) | (mydb.book_order_checkout.status == 22)), left=[mydb.handling_of_the_book.on(mydb.handling_of_the_book.id == mydb.book_order_checkout.handling_of_the_book), mydb.book.on(mydb.handling_of_the_book.book == mydb.book.id)], fields=[mydb.book_order_checkout.status, mydb.book_order_checkout.id, mydb.book.title, mydb.book.image, mydb.book_order_checkout.user_id, mydb.book_order_checkout.username, mydb.book_order_checkout.check_out], deletable=False, editable=False, create=False, maxtextlength=100, details=False, csv=False, links=[lambda row: create_buttons(row)], showbuttontext=False)
return dict(grid=grid)
def create_buttons(row):
buttons = []
if row.book_order_checkout.status == 21:
return a(t('Check out'), _href=url('admin', 'checkout', args=row.book_order_checkout.id), _class='button btn btn-default', _name='btnUpdate')
elif row.book_order_checkout.status == 22:
return div(a(t('Check in'), _href=url('admin', 'checkin_book', args=row.book_order_checkout.id), _class='button btn btn-default', _name='btnUpdate') + a(t('Lost'), _href=url('admin', 'lost_book', args=row.book_order_checkout.id), _class='button btn btn-default', _name='btnUpdate'))
return ''
@auth.requires_membership('admins')
def past_book_orders():
grid = SQLFORM.grid(mydb(mydb.book_order_past), left=[mydb.handling_of_the_book.on(mydb.handling_of_the_book.id == mydb.book_order_past.handling_of_the_book), mydb.book.on(mydb.handling_of_the_book.book == mydb.book.id)], fields=[mydb.book.title, mydb.book.image, mydb.book_order_past.check_out, mydb.book_order_past.username, mydb.book_order_past.check_in, mydb.book_order_past.status], editable=False, maxtextlength=100, details=False, csv=False, showbuttontext=False)
return dict(past_book_orders=grid)
def new_hofb():
form = sqlform(mydb.handling_of_the_book, fields=['book', 'location'])
quantity_label = label('Quantity', _class='form-control-label col-sm-3', _for='handling_of_the_book_copy_quantity')
quantity_input = div(input(_name='quantity', _value=1, _type='number', _min='1', _id='handling_of_the_book_copy_quantity', _class='generic-widget form-control'), _class='col-sm-9')
quantity_element = div(_class='form-group row', _id='handling_of_the_book_quantity__row')
quantity_element.append(quantity_label)
quantity_element.append(quantity_input)
form[0].insert(-1, quantity_element)
if form.process(onvalidation=new_hofb_validation, dbio=False).accepted:
book_id = int(form.vars.book)
location_id = int(form.vars.location)
quantity = int(form.vars.quantity)
status = 17
for n in range(quantity):
mydb.handling_of_the_book.insert(book=book_id, status=17, location=location_id)
request.vars.book = mydb(mydb.book.id == book_id).select(mydb.book.title)[0]['title']
request.vars.location = mydb(mydb.location.id == location_id).select(mydb.location.location_name)[0]['location_name']
response.flash = 'Books records created'
elif form.errors:
response.flash = 'Please check the form for errors'
else:
response.flash = 'Dear Librarian, here you can add new books to the library. Beware of rats'
logger.warn('errors in the form {}'.format(request.vars))
if request.vars.book is None:
request.vars.book = ''
request.vars.quantity = ''
request.vars.location = ''
return dict(form=form)
'\nadditional function to help validating the quantity in new_hofb form\n'
def new_hofb_validation(form):
quantity = form.vars.quantity
try:
if quantity == None:
form.errors.quantity = 'Quantity cannot be empty'
elif int(quantity) < 1:
form.errors.quantity = 'Quantity cannot be less than 1'
except expression as identifier:
form.errors.quantity = 'Quantity must be a number'
def authors_and_books():
"""
t = TABLE()
header = TR(TH('Author'), TH('Books count'), TH('Books'))
authors_rows = mydb(mydb.author.id > 0).select()
for author_row in authors_rows:
r = TR()
print '-----'
print author_row.id, author_row.name
r.append( TD(author_row.name) )
books_rows = mydb(mydb.book.author == author_row.id).select()
#print ('%s' % books_rows)
count = 0
for book in books_rows:
count = count + 1
print book.id, book.title
#count = len(books_rows)
r.append( TD(count) )
link = A('books', _href=URL(works_of_the_author, args=[author_row.id]))
r.append( TD(link) )
t.append(r)
"""
t = SQLFORM.grid(mydb.author, deletable=False, editable=False, create=False, details=False, csv=False, links=[{'header': 'book_count', 'body': lambda row: _generate_author_books_count(row)}, {'header': 'link_to_books', 'body': lambda row: a('link', _href=url(works_of_the_author, args=[row.id]))}])
return {'out': t}
@auth.requires_membership('admins')
def works_of_the_author():
grid = SQLFORM.grid(mydb(mydb.book.author == request.args[0]), fields=[mydb.book.title, mydb.book.publish_date, mydb.book.isbn], user_signature=False, maxtextlength=200, showbuttontext=False)
return {'out': grid}
@auth.requires_membership('admins')
def user_overview():
grid = SQLFORM.grid(db(db.auth_user), left=[db.auth_membership.on(db.auth_user.id == db.auth_membership.user_id), db.auth_group.on(db.auth_membership.group_id == db.auth_group.id)], fields=[db.auth_user.username, db.auth_user.first_name, db.auth_user.last_name, db.auth_group.role, db.auth_user.registration_key], maxtextlength=200, links=[{'header': '', 'body': lambda row: _registration_button(row)}], showbuttontext=False)
return {'users': grid}
def _registration_button(row):
try:
btn = a('Status')
registration_status = row.auth_user.registration_key
"\n using URL with vars, so each value will have it's corresponding key\n if I had used args, then they would be sent in order but without key\n vars:\n code: vars={'username':row.auth_user.username,'value':'active'}\n output: http://127.0.0.1:8000/Bibi2/admin/update_registration_status?username=andrea&value=active\n\n args: \n code: args=[row.auth_user.username, 'active']\n output: http://127.0.0.1:8000/Bibi2/admin/update_registration_status?andrea&active\n "
if registration_status in ['pending', 'disabled', 'blocked']:
btn = a('Activate', _class='btn btn-success', _href=url('update_registration_status', vars={'username': row.auth_user.username, 'value': 'activate'}))
else:
btn = a('Disable', _class='btn btn-danger', _href=url('update_registration_status', vars={'username': row.auth_user.username, 'value': 'disable'}))
return btn
except:
return ''
@auth.requires_membership('admins')
def update_registration_status():
username = request.vars['username'] if 'username' in request.vars else None
value = request.vars['value'] if 'value' in request.vars else None
out = None
'\n #how to read args\n username = request.args[0] if len(request.args) >= 1 else None\n value = request.args[1] if len(request.args) >= 2 else None\n '
if username != None and value != None:
if value == 'activate':
out = db(db.auth_user.username == username).update(registration_key=None)
if value == 'disable':
out = db(db.auth_user.username == username).update(registration_key='blocked')
pass
else:
out = 0
redirect(url('admin', 'user_overview'))
return out
def _generate_author_books_count(row):
books_rows = mydb(mydb.book.author == row.id).select()
books_count = 0
for book in books_rows:
books_count = books_count + 1
return books_count
"\n option: from lambda call a function\n\n 'count': lambda row:\n generate_count_of_books(books_rows)\n count = 0\n for book in books_rows:\n count = count + 1\n return count\n\n\n 'link': lambda row:\n generate_author_book_link(link)\n\n def generate_count_of_books():\n\n def generate_author_book_link(): \n\n \n\n \n return {'out':t}\n "
def free_books():
return 0
|
# Leetcode 94. Binary Tree Inorder Traversal
#
# Link: https://leetcode.com/problems/binary-tree-inorder-traversal/
# Difficulty: Easy
# Complexity:
# O(N) time | where N represent the number of nodes in the tree
# O(N) space | where N represent the number of nodes in the tree
# 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 inorderTraversal(self, root: Optional[TreeNode]) -> List[int]:
def recursive(root):
if not root:
return []
return recursive(root.left) + [root.val] + recursive(root.right)
def iterative(root):
stack = []
result = []
while root or stack:
while root:
stack.append(root)
root = root.left
root = stack.pop()
result.append(root.val)
root = root.right
return result
return iterative(root)
|
class Solution:
def inorder_traversal(self, root: Optional[TreeNode]) -> List[int]:
def recursive(root):
if not root:
return []
return recursive(root.left) + [root.val] + recursive(root.right)
def iterative(root):
stack = []
result = []
while root or stack:
while root:
stack.append(root)
root = root.left
root = stack.pop()
result.append(root.val)
root = root.right
return result
return iterative(root)
|
"""
Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge
is a pair of nodes), write a function to find the number of connected components
in an undirected graph.
Example 1:
0 3
| |
1 --- 2 4
Given n = 5 and edges = [[0, 1], [1, 2], [3, 4]], return 2.
Example 2:
0 4
| |
1 --- 2 --- 3
Given n = 5 and edges = [[0, 1], [1, 2], [2, 3], [3, 4]], return 1.
Note:
You can assume that no duplicate edges will appear in edges. Since all edges
are undirected, [0, 1] is the same as [1, 0] and thus will not appear
together in edges.
"""
class Solution(object):
def countComponents(self, n, edges):
"""
:type n: int
:type edges: List[List[int]]
:rtype: int
"""
self.nodes = n
self.idx = list(range(n))
self.size = [1] * n
self.parts = n
for edge in edges:
self.union(edge)
return self.parts
def root(self, node):
while node != self.idx[node]:
self.idx[node] = self.idx[self.idx[node]]
node = self.idx[node]
return node
def union(self, edge):
p, q = edge[0], edge[1]
rootp, rootq = self.root(p), self.root(q)
if rootp == rootq:
return
elif self.size[rootp] > self.size[rootq]:
self.idx[rootq] = rootp
self.size[rootq] += self.size[rootp]
else:
self.idx[rootp] = rootq
self.size[rootp] += self.size[rootq]
self.parts -= 1
def find(self, p, q):
return self.root(p) == self.root(q)
"""
Note:
Weighted Quick Union with Path Compression
[Sample Java Code](http://algs4.cs.princeton.edu/15uf/QuickUnionPathCompressionUF.java.html)
"""
|
"""
Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge
is a pair of nodes), write a function to find the number of connected components
in an undirected graph.
Example 1:
0 3
| |
1 --- 2 4
Given n = 5 and edges = [[0, 1], [1, 2], [3, 4]], return 2.
Example 2:
0 4
| |
1 --- 2 --- 3
Given n = 5 and edges = [[0, 1], [1, 2], [2, 3], [3, 4]], return 1.
Note:
You can assume that no duplicate edges will appear in edges. Since all edges
are undirected, [0, 1] is the same as [1, 0] and thus will not appear
together in edges.
"""
class Solution(object):
def count_components(self, n, edges):
"""
:type n: int
:type edges: List[List[int]]
:rtype: int
"""
self.nodes = n
self.idx = list(range(n))
self.size = [1] * n
self.parts = n
for edge in edges:
self.union(edge)
return self.parts
def root(self, node):
while node != self.idx[node]:
self.idx[node] = self.idx[self.idx[node]]
node = self.idx[node]
return node
def union(self, edge):
(p, q) = (edge[0], edge[1])
(rootp, rootq) = (self.root(p), self.root(q))
if rootp == rootq:
return
elif self.size[rootp] > self.size[rootq]:
self.idx[rootq] = rootp
self.size[rootq] += self.size[rootp]
else:
self.idx[rootp] = rootq
self.size[rootp] += self.size[rootq]
self.parts -= 1
def find(self, p, q):
return self.root(p) == self.root(q)
'\nNote:\n Weighted Quick Union with Path Compression\n [Sample Java Code](http://algs4.cs.princeton.edu/15uf/QuickUnionPathCompressionUF.java.html)\n'
|
def median(L):
L.sort()
return L[len(L) // 2]
if __name__ == "__main__":
L = [10, 17, 25, 1, 4, 15, 6]
print(median(L))
|
def median(L):
L.sort()
return L[len(L) // 2]
if __name__ == '__main__':
l = [10, 17, 25, 1, 4, 15, 6]
print(median(L))
|
def greet(bot_name, birth_year):
print('Hello! My name is ' + bot_name + '.')
print('I was created in ' + birth_year + '.')
def remind_name():
print('Please, remind me your name.')
name = input()
print('What a great name you have, ' + name + '!')
def guess_age():
# Remainders are the remains of dividing age by 3, 5 and 7.
remainder3 = int(input('Enter the rest resulting from dividing your age by 3: > '))
remainder5 = int(input('Enter the rest resulting from dividing your age by 5: > '))
remainder7 = int(input('Enter the rest resulting from dividing your age by 7: > '))
# Guess how old you are
your_age = (remainder3 * 70 + remainder5 * 21 + remainder7 * 15) % 105
print(f"Your age is", your_age, "that's a good time to start programming!")
def count():
print('Now I will prove to you that I can count to any number you want.')
num = int(input())
curr = 0
while curr <= num:
print(curr, '!')
curr = curr + 1
def test():
print("Let's test your programming knowledge.")
# write your code here
print("Why do we use methods? \n1. To repeat a statement multiple times.\n2. To decompose a program into several small subroutines.\n3. To determine the execution time of a program.\n4. To interrupt the execution of a program?")
choose = input()
while choose == 2:
print('Completed, have a nice day!')
else:
print("error: Wrong answer!")
def end():
print('Congratulations, have a nice day!')
greet('borjauria', '2020')
remind_name()
guess_age()
count()
test()
end()
|
def greet(bot_name, birth_year):
print('Hello! My name is ' + bot_name + '.')
print('I was created in ' + birth_year + '.')
def remind_name():
print('Please, remind me your name.')
name = input()
print('What a great name you have, ' + name + '!')
def guess_age():
remainder3 = int(input('Enter the rest resulting from dividing your age by 3: > '))
remainder5 = int(input('Enter the rest resulting from dividing your age by 5: > '))
remainder7 = int(input('Enter the rest resulting from dividing your age by 7: > '))
your_age = (remainder3 * 70 + remainder5 * 21 + remainder7 * 15) % 105
print(f'Your age is', your_age, "that's a good time to start programming!")
def count():
print('Now I will prove to you that I can count to any number you want.')
num = int(input())
curr = 0
while curr <= num:
print(curr, '!')
curr = curr + 1
def test():
print("Let's test your programming knowledge.")
print('Why do we use methods? \n1. To repeat a statement multiple times.\n2. To decompose a program into several small subroutines.\n3. To determine the execution time of a program.\n4. To interrupt the execution of a program?')
choose = input()
while choose == 2:
print('Completed, have a nice day!')
else:
print('error: Wrong answer!')
def end():
print('Congratulations, have a nice day!')
greet('borjauria', '2020')
remind_name()
guess_age()
count()
test()
end()
|
self.description = "Install packages with huge descriptions"
p1 = pmpkg("pkg1")
p1.desc = 'A' * 500 * 1024
self.addpkg(p1)
p2 = pmpkg("pkg2")
p2.desc = 'A' * 600 * 1024
self.addpkg(p2)
self.args = "-U %s %s" % (p1.filename(), p2.filename())
# We error out when fed a package with an invalid description; the second one
# fits the bill in this case as the desc is > 512K
self.addrule("PACMAN_RETCODE=1")
self.addrule("!PKG_EXIST=pkg1")
self.addrule("!PKG_EXIST=pkg1")
|
self.description = 'Install packages with huge descriptions'
p1 = pmpkg('pkg1')
p1.desc = 'A' * 500 * 1024
self.addpkg(p1)
p2 = pmpkg('pkg2')
p2.desc = 'A' * 600 * 1024
self.addpkg(p2)
self.args = '-U %s %s' % (p1.filename(), p2.filename())
self.addrule('PACMAN_RETCODE=1')
self.addrule('!PKG_EXIST=pkg1')
self.addrule('!PKG_EXIST=pkg1')
|
# 99 Days of Code - Sung to the tune of "99 bottles of beer"
x = 99
z = 1
while x > 1:
y = x - 1
print(x , "days of code to complete,", x, "days of code.")
print("Commit to win,then start again", y, "days of code to complete...")
print()
x = x - 1
if x == 1:
print("1 day of code to complete,", "1 day of code")
print("It wont be long so finish off strong, 1 day of code to complete.")
print()
print("No more days of code to complete, no more days of code")
print("Don't be blue, just pick something new! 99 days of code to complete")
|
x = 99
z = 1
while x > 1:
y = x - 1
print(x, 'days of code to complete,', x, 'days of code.')
print('Commit to win,then start again', y, 'days of code to complete...')
print()
x = x - 1
if x == 1:
print('1 day of code to complete,', '1 day of code')
print('It wont be long so finish off strong, 1 day of code to complete.')
print()
print('No more days of code to complete, no more days of code')
print("Don't be blue, just pick something new! 99 days of code to complete")
|
def dist(X, m):
S = 0
for x in X:
S += abs(x - m)
return S
T = int(input())
for ti in range(T):
N, M, F = map(int, input().split())
X = []
Y = []
for fi in range(F):
x, y = map(int, input().split())
X.append(x)
Y.append(y)
X = sorted(X)
Y = sorted(Y)
F = 2
if F & 1:
xx = str(X[F // 2])
yy = str(Y[F // 2])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
else:
a = F // 2
b = (F // 2) - 1
A = dist(X, X[a]) + dist(Y, Y[a])
B = dist(X, X[b]) + dist(Y, Y[b])
print(A, B)
if A < B:
xx = str(X[a])
yy = str(Y[a])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
else:
xx = str(X[b])
yy = str(Y[b])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
|
def dist(X, m):
s = 0
for x in X:
s += abs(x - m)
return S
t = int(input())
for ti in range(T):
(n, m, f) = map(int, input().split())
x = []
y = []
for fi in range(F):
(x, y) = map(int, input().split())
X.append(x)
Y.append(y)
x = sorted(X)
y = sorted(Y)
f = 2
if F & 1:
xx = str(X[F // 2])
yy = str(Y[F // 2])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
else:
a = F // 2
b = F // 2 - 1
a = dist(X, X[a]) + dist(Y, Y[a])
b = dist(X, X[b]) + dist(Y, Y[b])
print(A, B)
if A < B:
xx = str(X[a])
yy = str(Y[a])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
else:
xx = str(X[b])
yy = str(Y[b])
print('(Street: ' + xx + ', Avenue: ' + yy + ')')
|
# When squirrels get together for a party, they like to have acorns. A squirrel party is successful when the number of acorns is between 40 and 60, inclusively. During the weekends, there is no need for acorns. The party is always fun.
# input
num_acorns = int(input('Enter the number of acorns: '))
is_weekend = input('Is it the weekend? (Y/N): ')
# processing & output
if is_weekend == 'Y':
print('The party was a success.')
else:
if num_acorns >= 40 and num_acorns <= 60:
print('The party was a success.')
else:
print(':(')
|
num_acorns = int(input('Enter the number of acorns: '))
is_weekend = input('Is it the weekend? (Y/N): ')
if is_weekend == 'Y':
print('The party was a success.')
elif num_acorns >= 40 and num_acorns <= 60:
print('The party was a success.')
else:
print(':(')
|
"""Supported Versions class."""
class SupportedVersions:
"""Container for all supported versions by the ONYX.CENTER."""
def __init__(self, versions: list):
"""Initialize the versions."""
self.versions = versions
def supports(self, version: str) -> bool:
"""Check if the provided version is supported."""
return version in self.versions
|
"""Supported Versions class."""
class Supportedversions:
"""Container for all supported versions by the ONYX.CENTER."""
def __init__(self, versions: list):
"""Initialize the versions."""
self.versions = versions
def supports(self, version: str) -> bool:
"""Check if the provided version is supported."""
return version in self.versions
|
class Report(object):
""" Parent class for all reports """
__slots__ = (
'stats',
'start',
'end',
)
def __init__(self, start, end):
self.start = start
self.end = end
def render(self, output):
""" Render the report to the specified output file """
raise NotImplementedError("This abstract method must be implemented by the child class.")
def load_events(self):
return []
|
class Report(object):
""" Parent class for all reports """
__slots__ = ('stats', 'start', 'end')
def __init__(self, start, end):
self.start = start
self.end = end
def render(self, output):
""" Render the report to the specified output file """
raise not_implemented_error('This abstract method must be implemented by the child class.')
def load_events(self):
return []
|
# MIN-MAX HACKER EARTH
n = int(input())
arr = str(input())
arr = arr.split()
arr1 = []
for i in range(0,n,1):
x = int(arr[i])
arr1 += [x]
min_arr = min(arr1)
max_arr = max(arr1)
count = 0
for i in range(min_arr+1,max_arr,1):
num = i
for j in range(0,n,1):
if num == arr1[j]:
count = count + 1
break
diff = max_arr - min_arr - 1
if count == diff:
print("YES")
else:
print("NO")
|
n = int(input())
arr = str(input())
arr = arr.split()
arr1 = []
for i in range(0, n, 1):
x = int(arr[i])
arr1 += [x]
min_arr = min(arr1)
max_arr = max(arr1)
count = 0
for i in range(min_arr + 1, max_arr, 1):
num = i
for j in range(0, n, 1):
if num == arr1[j]:
count = count + 1
break
diff = max_arr - min_arr - 1
if count == diff:
print('YES')
else:
print('NO')
|
#
# Collective Knowledge (MLPerf inference benchmark submitter)
#
# See CK LICENSE.txt for licensing details
# See CK COPYRIGHT.txt for copyright details
#
# Developer: Grigori Fursin, http://fursin.net
#
cfg = {} # Will be updated by CK (meta description of this module)
work = {} # Will be updated by CK (temporal data)
ck = None # Will be updated by CK (initialized CK kernel)
# Local settings
#import sys
#import os
#sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
#from ck_e6a349d5bb2efa09 import ...
##############################################################################
# Initialize module
def init(i):
"""
Input: {}
Output: {
return - return code = 0, if successful
> 0, if error
(error) - error text if return > 0
}
"""
return {'return': 0}
|
cfg = {}
work = {}
ck = None
def init(i):
"""
Input: {}
Output: {
return - return code = 0, if successful
> 0, if error
(error) - error text if return > 0
}
"""
return {'return': 0}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.