content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
__version__ = "2.0.1"
__version_info__ = tuple(int(num) for num in __version__.split("."))
default_app_config = "dbfiles.apps.DBFilesConfig"
|
__version__ = '2.0.1'
__version_info__ = tuple((int(num) for num in __version__.split('.')))
default_app_config = 'dbfiles.apps.DBFilesConfig'
|
fo = open("list.txt", "r")
lines = fo.readlines()
outf = open("out.txt", "w")
for line in lines:
l = line.replace("\n","")
ls = l.split(",")
pl = "first: " + ls[0] + " second: " + ls[1] + " third: " + ls[2]
outf.write(pl)
outf.close()
|
fo = open('list.txt', 'r')
lines = fo.readlines()
outf = open('out.txt', 'w')
for line in lines:
l = line.replace('\n', '')
ls = l.split(',')
pl = 'first: ' + ls[0] + ' second: ' + ls[1] + ' third: ' + ls[2]
outf.write(pl)
outf.close()
|
# coding: utf-8
# created by Martin Haese, Tel FRM 10763
# last modified 01.02.2018
# to call it
# ssh -X refsans@refsansctrl01 oder 02
# cd /refsanscontrol/src/nicos-core
# INSTRUMENT=nicos_mlz.refsans bin/nicos-monitor -S monitor_scatgeo
description = 'REFSANS scattering geometry monitor'
group = 'special'
# Legende fuer _componentpositioncol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_componentpositioncol = Column(
# Block(' x: component position in beam direction (b3 = 0.0mm) ', [
Block(' x: component position in beam direction ', [
BlockRow(
Field(name='goniometer', dev='goniometer_x', width=14, unit='mm'),
Field(name='sample center', dev='sample_x', width=14, unit='mm'),
Field(name='monitor pos', dev='monitor_pos', width=14, unit='mm'),
Field(name='backguard pos', dev='backguard_pos', width=14, unit='mm'),
Field(name='tube pivot', dev='tube_pivot', width=10),
Field(name='table origin', dev='table_zero', width=14, unit='mm'),
Field(name='table', dev='table_pos', width=14, unit='mm'),
Field(name='dist b3 gonio', dev='b3_gonio', width=14, unit='mm'),
Field(name='dist b3 sample', dev='b3_sample', width=14, unit='mm'),
Field(name='dist b3 monitor', dev='b3_monitor', width=14, unit='mm'),
# Field(name='dist b3 backguard', dev='b3_backguard', width=14, unit='mm'),
Field(name='det_pivot', dev='det_pivot', width=10),
Field(name='det_table', dev='det_table', width=14, unit='mm'),
Field(name='dist sample det', dev='sample_det', width=14, unit='mm'),
Field(name='flight path', dev='flight_path', width=14, unit='mm'),
),
],
),
)
# Legende fuer _componentlateralcol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_componentlateralcol = Column(
Block(' y: lateral component position and angle (b3 = 0.0mm) ', [
# Block(' y: lateral component position ', [
BlockRow(
Field(name='sample y', dev='probenwechsler', width=14, unit='mm'),
Field(name='sample phi', dev='sample_phi', width=14, unit='deg'),
Field(name='tube y', dev='tube_y', width=14, unit='mm'),
Field(name='tube angle', dev='tube_lateral_angle', width=14, unit='deg'),
Field(name='probenwechsler', dev='probenwechsler', width=14, unit='mm'),
Field(name='gonio_y', dev='gonio_y', width=14, unit='mm'),
Field(name='det y', dev='det_y', width=14, unit='mm'),
Field(name='beamstop y', dev='beamstop_y', width=14, unit='mm'),
),
],
),
)
# Legende fuer _componentverticalcol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_componentverticalcol = Column(
Block(' z: vertical component position and angle (b3 = 0.0mm) ', [
# Block(' z: vertical component position ', [
BlockRow(
Field(name='sample z', dev='sample_z', width=14, unit='mm'),
Field(name='sample theta', dev='sample_theta', width=14, unit='deg'),
Field(name='backguard', dev='backguard_z', width=14, unit='mm'),
Field(name='tube', dev='tube_z', width=14, unit='mm'),
Field(name='tube angle', dev='tube_vertical_angle', width=14, unit='deg'),
Field(name='beamstop', dev='beamstop_z', width=14, unit='mm'),
Field(name='gonio_z', dev='gonio_z', width=14, unit='mm'),
Field(name='backguard', dev='backguard', width=14, unit='mm'),
Field(name='det_yoke', dev='det_yoke', width=14, unit='mm'),
Field(name='beamstop z', dev='beamstop_z', width=14, unit='mm'),
),
],
),
)
# Legende fuer _componentanglescol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_componentanglescol = Column(
Block(' component angles ', [
BlockRow(
Field(name='gonio_theta', dev='gonio_theta', width=14, unit='deg'),
Field(name='gonio_phi', dev='gonio_phi', width=14, unit='deg'),
Field(name='gonio_omega', dev='gonio_omega', width=14, unit='deg'),
Field(name='det hor angle', dev='det_hor_angle', width=14, unit='deg'),
Field(name='det vert angle', dev='det_vert_angle', width=14, unit='deg'),
Field(name='beam_tilt', dev='beam_tilt', width=14, unit='mrad'),
),
],
),
)
# Legende fuer _topgoniometercol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_topgoniometercol = Column(
Block(' top goniometer ', [
BlockRow(
Field(name='top_theta', dev='top_theta', width=14, unit='deg'),
Field(name='top_phi', dev='top_phi', width=14, unit='deg'),
Field(name='top_omega', dev='top_omega', width=14, unit='deg'),
Field(name='top_x', dev='top_x', width=14, unit='mm'),
Field(name='top_y', dev='top_y', width=14, unit='mm'),
Field(name='top_z', dev='top_z', width=14, unit='mm'),
),
],
),
)
# Legende fuer _autocollimatorcol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_autocollimatorcol = Column(
Block(' autocollimator ', [
BlockRow(
Field(name='ac_theta', dev='ac_theta', width=14, unit='deg'),
Field(name='ac_phi', dev='ac_phi', width=14, unit='deg'),
Field(name='ac_error', dev='ac_error', width=14, unit='deg'),
),
],
),
)
# Legende fuer _altimetercol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_altimetercol = Column(
Block(' altimeter ', [
BlockRow(
Field(name='height', dev='altimeter', width=14, unit='mm'),
),
],
),
)
# Legende fuer _samplesizecol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_samplesizecol = Column(
Block(' sample size ', [
BlockRow(
Field(name='length', key='sample/length', width=14, unit='mm'),
Field(name='width', key='sample/width', width=14, unit='mm'),
Field(name='footprint', dev='footprint', width=14, unit='mm'),
),
],
),
)
# Legende fuer _sampletempcol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_sampletempcol = Column(
Block(' sample temperature ', [
BlockRow(
Field(name='julabo', dev='temp_julabo', width=14, unit='deg C'),
Field(name='cryo', dev='temp_cryo', width=14, unit='K'),
),
],
),
)
# Legende fuer _samplethumicol
# dev='...' stellt hier nur die moeglichen Werte dar, keine devices
_samplethumicol = Column(
Block(' sample ', [
BlockRow(
Field(name='humidity', dev='humidity', width=14, unit='%'),
),
],
),
)
devices = dict(
Monitor = device('nicos.services.monitor.qt.Monitor',
title = description,
loglevel = 'info',
cache = 'localhost',
valuefont = 'Consolas',
padding = 5,
layout = [
Row(_componentpositioncol),
Row(_componentlateralcol, _sampletempcol),
Row(_componentverticalcol, _altimetercol, _samplethumicol),
Row(_autocollimatorcol, _samplesizecol),
Row(_componentanglescol),
Row(_topgoniometercol),
],
),
)
|
description = 'REFSANS scattering geometry monitor'
group = 'special'
_componentpositioncol = column(block(' x: component position in beam direction ', [block_row(field(name='goniometer', dev='goniometer_x', width=14, unit='mm'), field(name='sample center', dev='sample_x', width=14, unit='mm'), field(name='monitor pos', dev='monitor_pos', width=14, unit='mm'), field(name='backguard pos', dev='backguard_pos', width=14, unit='mm'), field(name='tube pivot', dev='tube_pivot', width=10), field(name='table origin', dev='table_zero', width=14, unit='mm'), field(name='table', dev='table_pos', width=14, unit='mm'), field(name='dist b3 gonio', dev='b3_gonio', width=14, unit='mm'), field(name='dist b3 sample', dev='b3_sample', width=14, unit='mm'), field(name='dist b3 monitor', dev='b3_monitor', width=14, unit='mm'), field(name='det_pivot', dev='det_pivot', width=10), field(name='det_table', dev='det_table', width=14, unit='mm'), field(name='dist sample det', dev='sample_det', width=14, unit='mm'), field(name='flight path', dev='flight_path', width=14, unit='mm'))]))
_componentlateralcol = column(block(' y: lateral component position and angle (b3 = 0.0mm) ', [block_row(field(name='sample y', dev='probenwechsler', width=14, unit='mm'), field(name='sample phi', dev='sample_phi', width=14, unit='deg'), field(name='tube y', dev='tube_y', width=14, unit='mm'), field(name='tube angle', dev='tube_lateral_angle', width=14, unit='deg'), field(name='probenwechsler', dev='probenwechsler', width=14, unit='mm'), field(name='gonio_y', dev='gonio_y', width=14, unit='mm'), field(name='det y', dev='det_y', width=14, unit='mm'), field(name='beamstop y', dev='beamstop_y', width=14, unit='mm'))]))
_componentverticalcol = column(block(' z: vertical component position and angle (b3 = 0.0mm) ', [block_row(field(name='sample z', dev='sample_z', width=14, unit='mm'), field(name='sample theta', dev='sample_theta', width=14, unit='deg'), field(name='backguard', dev='backguard_z', width=14, unit='mm'), field(name='tube', dev='tube_z', width=14, unit='mm'), field(name='tube angle', dev='tube_vertical_angle', width=14, unit='deg'), field(name='beamstop', dev='beamstop_z', width=14, unit='mm'), field(name='gonio_z', dev='gonio_z', width=14, unit='mm'), field(name='backguard', dev='backguard', width=14, unit='mm'), field(name='det_yoke', dev='det_yoke', width=14, unit='mm'), field(name='beamstop z', dev='beamstop_z', width=14, unit='mm'))]))
_componentanglescol = column(block(' component angles ', [block_row(field(name='gonio_theta', dev='gonio_theta', width=14, unit='deg'), field(name='gonio_phi', dev='gonio_phi', width=14, unit='deg'), field(name='gonio_omega', dev='gonio_omega', width=14, unit='deg'), field(name='det hor angle', dev='det_hor_angle', width=14, unit='deg'), field(name='det vert angle', dev='det_vert_angle', width=14, unit='deg'), field(name='beam_tilt', dev='beam_tilt', width=14, unit='mrad'))]))
_topgoniometercol = column(block(' top goniometer ', [block_row(field(name='top_theta', dev='top_theta', width=14, unit='deg'), field(name='top_phi', dev='top_phi', width=14, unit='deg'), field(name='top_omega', dev='top_omega', width=14, unit='deg'), field(name='top_x', dev='top_x', width=14, unit='mm'), field(name='top_y', dev='top_y', width=14, unit='mm'), field(name='top_z', dev='top_z', width=14, unit='mm'))]))
_autocollimatorcol = column(block(' autocollimator ', [block_row(field(name='ac_theta', dev='ac_theta', width=14, unit='deg'), field(name='ac_phi', dev='ac_phi', width=14, unit='deg'), field(name='ac_error', dev='ac_error', width=14, unit='deg'))]))
_altimetercol = column(block(' altimeter ', [block_row(field(name='height', dev='altimeter', width=14, unit='mm'))]))
_samplesizecol = column(block(' sample size ', [block_row(field(name='length', key='sample/length', width=14, unit='mm'), field(name='width', key='sample/width', width=14, unit='mm'), field(name='footprint', dev='footprint', width=14, unit='mm'))]))
_sampletempcol = column(block(' sample temperature ', [block_row(field(name='julabo', dev='temp_julabo', width=14, unit='deg C'), field(name='cryo', dev='temp_cryo', width=14, unit='K'))]))
_samplethumicol = column(block(' sample ', [block_row(field(name='humidity', dev='humidity', width=14, unit='%'))]))
devices = dict(Monitor=device('nicos.services.monitor.qt.Monitor', title=description, loglevel='info', cache='localhost', valuefont='Consolas', padding=5, layout=[row(_componentpositioncol), row(_componentlateralcol, _sampletempcol), row(_componentverticalcol, _altimetercol, _samplethumicol), row(_autocollimatorcol, _samplesizecol), row(_componentanglescol), row(_topgoniometercol)]))
|
#!/usr/bin/env python
'''
--- Day 12: Passage Pathing ---
With your submarine's subterranean subsystems subsisting suboptimally, the only way you're getting
out of this cave anytime soon is by finding a path yourself. Not just a path - the only way to
know if you've found the best path is to find all of them.
Fortunately, the sensors are still mostly working, and so you build a rough map of the remaining caves
(your puzzle input). For example:
start-A
start-b
A-c
A-b
b-d
A-end
b-end
This is a list of how all of the caves are connected. You start in the cave named start, and your
destination is the cave named end. An entry like b-d means that cave b is connected to cave d
- that is, you can move between them.
So, the above cave system looks roughly like this:
start
/ \
c--A-----b--d
\ /
end
Your goal is to find the number of distinct paths that start at start, end at end, and don't
visit small caves more than once. There are two types of caves: big caves (written in uppercase,
like A) and small caves (written in lowercase, like b). It would be a waste of time to visit any
small cave more than once, but big caves are large enough that it might be worth visiting them multiple
times. So, all paths you find should visit small caves at most once, and can visit big caves any
number of times.
Given these rules, there are 10 paths through this example cave system:
start,A,b,A,c,A,end
start,A,b,A,end
start,A,b,end
start,A,c,A,b,A,end
start,A,c,A,b,end
start,A,c,A,end
start,A,end
start,b,A,c,A,end
start,b,A,end
start,b,end
(Each line in the above list corresponds to a single path; the caves visited by that path are listed
in the order they are visited and separated by commas.)
Note that in this cave system, cave d is never visited by any path: to do so, cave b would need
to be visited twice (once on the way to cave d and a second time when returning from cave d),
and since cave b is small, this is not allowed.
Here is a slightly larger example:
dc-end
HN-start
start-kj
dc-start
dc-HN
LN-dc
HN-end
kj-sa
kj-HN
kj-dc
The 19 paths through it are as follows:
start,HN,dc,HN,end
start,HN,dc,HN,kj,HN,end
start,HN,dc,end
start,HN,dc,kj,HN,end
start,HN,end
start,HN,kj,HN,dc,HN,end
start,HN,kj,HN,dc,end
start,HN,kj,HN,end
start,HN,kj,dc,HN,end
start,HN,kj,dc,end
start,dc,HN,end
start,dc,HN,kj,HN,end
start,dc,end
start,dc,kj,HN,end
start,kj,HN,dc,HN,end
start,kj,HN,dc,end
start,kj,HN,end
start,kj,dc,HN,end
start,kj,dc,end
Finally, this even larger example has 226 paths through it:
fs-end
he-DX
fs-he
start-DX
pj-DX
end-zg
zg-sl
zg-pj
pj-he
RW-he
fs-DX
pj-RW
zg-RW
start-pj
he-WI
zg-he
pj-fs
start-RW
How many paths through this cave system are there that visit small caves at most once?
Your puzzle answer was 3485.
--- Part Two ---
After reviewing the available paths, you realize you might have time to visit a single small cave
twice. Specifically, big caves can be visited any number of times, a single small cave can be
visited at most twice, and the remaining small caves can be visited at most once. However, the
caves named start and end can only be visited exactly once each: once you leave the start cave,
you may not return to it, and once you reach the end cave, the path must end immediately.
Now, the 36 possible paths through the first example above are:
start,A,b,A,b,A,c,A,end
start,A,b,A,b,A,end
start,A,b,A,b,end
start,A,b,A,c,A,b,A,end
start,A,b,A,c,A,b,end
start,A,b,A,c,A,c,A,end
start,A,b,A,c,A,end
start,A,b,A,end
start,A,b,d,b,A,c,A,end
start,A,b,d,b,A,end
start,A,b,d,b,end
start,A,b,end
start,A,c,A,b,A,b,A,end
start,A,c,A,b,A,b,end
start,A,c,A,b,A,c,A,end
start,A,c,A,b,A,end
start,A,c,A,b,d,b,A,end
start,A,c,A,b,d,b,end
start,A,c,A,b,end
start,A,c,A,c,A,b,A,end
start,A,c,A,c,A,b,end
start,A,c,A,c,A,end
start,A,c,A,end
start,A,end
start,b,A,b,A,c,A,end
start,b,A,b,A,end
start,b,A,b,end
start,b,A,c,A,b,A,end
start,b,A,c,A,b,end
start,b,A,c,A,c,A,end
start,b,A,c,A,end
start,b,A,end
start,b,d,b,A,c,A,end
start,b,d,b,A,end
start,b,d,b,end
start,b,end
The slightly larger example above now has 103 paths through it, and the even larger example now
has 3509 paths through it.
Given these new rules, how many paths through this cave system are there?
Your puzzle answer was 85062.
'''
graph_map = {}
class PassageMap:
def __init__(self, part_1):
self.graph = {}
self.small_caves = {}
self.paths_to_end = 0
self.small_cave_travel_twice = False
self.part_1 = part_1
def add_node(self, start, end):
# Add the start and end node in the graph, these are bi-directional graphs
if start not in self.graph:
self.graph[start] = []
if end not in self.graph:
self.graph[end] = []
if start.islower():
if start not in self.small_caves:
self.small_caves[start] = 0
if end.islower():
if end not in self.small_caves:
self.small_caves[end] = 0
self.graph[start].append(end)
self.graph[end].append(start)
def depth_first_search_to_end(self, current_cave='start'):
# using depth first search find all the paths to end
for cave in self.graph[current_cave]:
if cave == 'start':
# ignore start cave
continue
if cave == 'end':
# we are at the end of the path
self.paths_to_end += 1
continue
# Check the small caves we have traverse
if cave in self.small_caves:
if self.small_caves[cave] >= 1:
if self.part_1 or self.small_cave_travel_twice:
continue
self.small_cave_travel_twice = True
self.small_caves[cave] += 1
# Go deeper
self.depth_first_search_to_end(cave)
if cave in self.small_caves:
# decrease the number of small caves
self.small_caves[cave] -= 1
if self.small_caves[cave] == 1:
self.small_cave_travel_twice = False
def number_paths_to_end(self):
return self.paths_to_end
def reset(self, part_1):
self.paths_to_end = 0
self.part_1 = part_1
passage_map = PassageMap(part_1=True)
with open('input_data.txt', 'r') as f:
line = f.readline()
while line:
start, end = line.strip().split('-')
passage_map.add_node(start, end)
line = f.readline()
passage_map.depth_first_search_to_end()
print(f"number of paths to end for part-1: {passage_map.number_paths_to_end()}")
passage_map.reset(part_1=False)
passage_map.depth_first_search_to_end()
print(f"number of paths to end for part-2: {passage_map.number_paths_to_end()}")
|
"""
--- Day 12: Passage Pathing ---
With your submarine's subterranean subsystems subsisting suboptimally, the only way you're getting
out of this cave anytime soon is by finding a path yourself. Not just a path - the only way to
know if you've found the best path is to find all of them.
Fortunately, the sensors are still mostly working, and so you build a rough map of the remaining caves
(your puzzle input). For example:
start-A
start-b
A-c
A-b
b-d
A-end
b-end
This is a list of how all of the caves are connected. You start in the cave named start, and your
destination is the cave named end. An entry like b-d means that cave b is connected to cave d
- that is, you can move between them.
So, the above cave system looks roughly like this:
start
/ c--A-----b--d
\\ /
end
Your goal is to find the number of distinct paths that start at start, end at end, and don't
visit small caves more than once. There are two types of caves: big caves (written in uppercase,
like A) and small caves (written in lowercase, like b). It would be a waste of time to visit any
small cave more than once, but big caves are large enough that it might be worth visiting them multiple
times. So, all paths you find should visit small caves at most once, and can visit big caves any
number of times.
Given these rules, there are 10 paths through this example cave system:
start,A,b,A,c,A,end
start,A,b,A,end
start,A,b,end
start,A,c,A,b,A,end
start,A,c,A,b,end
start,A,c,A,end
start,A,end
start,b,A,c,A,end
start,b,A,end
start,b,end
(Each line in the above list corresponds to a single path; the caves visited by that path are listed
in the order they are visited and separated by commas.)
Note that in this cave system, cave d is never visited by any path: to do so, cave b would need
to be visited twice (once on the way to cave d and a second time when returning from cave d),
and since cave b is small, this is not allowed.
Here is a slightly larger example:
dc-end
HN-start
start-kj
dc-start
dc-HN
LN-dc
HN-end
kj-sa
kj-HN
kj-dc
The 19 paths through it are as follows:
start,HN,dc,HN,end
start,HN,dc,HN,kj,HN,end
start,HN,dc,end
start,HN,dc,kj,HN,end
start,HN,end
start,HN,kj,HN,dc,HN,end
start,HN,kj,HN,dc,end
start,HN,kj,HN,end
start,HN,kj,dc,HN,end
start,HN,kj,dc,end
start,dc,HN,end
start,dc,HN,kj,HN,end
start,dc,end
start,dc,kj,HN,end
start,kj,HN,dc,HN,end
start,kj,HN,dc,end
start,kj,HN,end
start,kj,dc,HN,end
start,kj,dc,end
Finally, this even larger example has 226 paths through it:
fs-end
he-DX
fs-he
start-DX
pj-DX
end-zg
zg-sl
zg-pj
pj-he
RW-he
fs-DX
pj-RW
zg-RW
start-pj
he-WI
zg-he
pj-fs
start-RW
How many paths through this cave system are there that visit small caves at most once?
Your puzzle answer was 3485.
--- Part Two ---
After reviewing the available paths, you realize you might have time to visit a single small cave
twice. Specifically, big caves can be visited any number of times, a single small cave can be
visited at most twice, and the remaining small caves can be visited at most once. However, the
caves named start and end can only be visited exactly once each: once you leave the start cave,
you may not return to it, and once you reach the end cave, the path must end immediately.
Now, the 36 possible paths through the first example above are:
start,A,b,A,b,A,c,A,end
start,A,b,A,b,A,end
start,A,b,A,b,end
start,A,b,A,c,A,b,A,end
start,A,b,A,c,A,b,end
start,A,b,A,c,A,c,A,end
start,A,b,A,c,A,end
start,A,b,A,end
start,A,b,d,b,A,c,A,end
start,A,b,d,b,A,end
start,A,b,d,b,end
start,A,b,end
start,A,c,A,b,A,b,A,end
start,A,c,A,b,A,b,end
start,A,c,A,b,A,c,A,end
start,A,c,A,b,A,end
start,A,c,A,b,d,b,A,end
start,A,c,A,b,d,b,end
start,A,c,A,b,end
start,A,c,A,c,A,b,A,end
start,A,c,A,c,A,b,end
start,A,c,A,c,A,end
start,A,c,A,end
start,A,end
start,b,A,b,A,c,A,end
start,b,A,b,A,end
start,b,A,b,end
start,b,A,c,A,b,A,end
start,b,A,c,A,b,end
start,b,A,c,A,c,A,end
start,b,A,c,A,end
start,b,A,end
start,b,d,b,A,c,A,end
start,b,d,b,A,end
start,b,d,b,end
start,b,end
The slightly larger example above now has 103 paths through it, and the even larger example now
has 3509 paths through it.
Given these new rules, how many paths through this cave system are there?
Your puzzle answer was 85062.
"""
graph_map = {}
class Passagemap:
def __init__(self, part_1):
self.graph = {}
self.small_caves = {}
self.paths_to_end = 0
self.small_cave_travel_twice = False
self.part_1 = part_1
def add_node(self, start, end):
if start not in self.graph:
self.graph[start] = []
if end not in self.graph:
self.graph[end] = []
if start.islower():
if start not in self.small_caves:
self.small_caves[start] = 0
if end.islower():
if end not in self.small_caves:
self.small_caves[end] = 0
self.graph[start].append(end)
self.graph[end].append(start)
def depth_first_search_to_end(self, current_cave='start'):
for cave in self.graph[current_cave]:
if cave == 'start':
continue
if cave == 'end':
self.paths_to_end += 1
continue
if cave in self.small_caves:
if self.small_caves[cave] >= 1:
if self.part_1 or self.small_cave_travel_twice:
continue
self.small_cave_travel_twice = True
self.small_caves[cave] += 1
self.depth_first_search_to_end(cave)
if cave in self.small_caves:
self.small_caves[cave] -= 1
if self.small_caves[cave] == 1:
self.small_cave_travel_twice = False
def number_paths_to_end(self):
return self.paths_to_end
def reset(self, part_1):
self.paths_to_end = 0
self.part_1 = part_1
passage_map = passage_map(part_1=True)
with open('input_data.txt', 'r') as f:
line = f.readline()
while line:
(start, end) = line.strip().split('-')
passage_map.add_node(start, end)
line = f.readline()
passage_map.depth_first_search_to_end()
print(f'number of paths to end for part-1: {passage_map.number_paths_to_end()}')
passage_map.reset(part_1=False)
passage_map.depth_first_search_to_end()
print(f'number of paths to end for part-2: {passage_map.number_paths_to_end()}')
|
intervals = [(2, 15), (36, 45), (9, 29), (16, 23), (4, 9)]
def room_num(intervals):
intervals_sorted = sorted(intervals, key=lambda x: x[0])
rooms = 1
room_open_time = [intervals_sorted[0][1]]
for interval in intervals_sorted[1:]:
if interval[0] < min(room_open_time):
rooms += 1
room_open_time.append(interval[1])
else:
room_open_time[room_open_time.index(min(room_open_time))] = interval[1]
return rooms
print(room_num(intervals))
|
intervals = [(2, 15), (36, 45), (9, 29), (16, 23), (4, 9)]
def room_num(intervals):
intervals_sorted = sorted(intervals, key=lambda x: x[0])
rooms = 1
room_open_time = [intervals_sorted[0][1]]
for interval in intervals_sorted[1:]:
if interval[0] < min(room_open_time):
rooms += 1
room_open_time.append(interval[1])
else:
room_open_time[room_open_time.index(min(room_open_time))] = interval[1]
return rooms
print(room_num(intervals))
|
def merge(pic_1, pic_2):
return {
'id': pic_1['id'] + pic_2['id'],
'tags': pic_1['tags'] | pic_2['tags'],
}
def get_score_table(pics):
score_table = {}
for i in range(len(pics)):
for j in range(i + 1, len(pics)):
r = len(pics[i]['tags'] & pics[j]['tags'])
p = len(pics[i]['tags']) - r
q = len(pics[j]['tags']) - r
score = min([r, p, q])
if i not in score_table:
score_table[i] = []
if j not in score_table:
score_table[j] = []
score_table[i].append((score, j))
score_table[j].append((score, i))
for idx in score_table:
score_table[idx].sort(key=lambda x: -x[0])
return score_table
def get_slides(h_pics, v_pics):
get_num_tags = lambda pic: len(pic['tags'])
sorted_v_pics = sorted(v_pics, key=get_num_tags)
v_slides = [merge(sorted_v_pics[2 * i], sorted_v_pics[2 * i + 1]) for i in range(len(sorted_v_pics) // 2)]
slides = sorted(h_pics + v_slides, key=get_num_tags)
partition = 10
top_tier = slides[-len(slides) // partition:]
score_table = get_score_table(top_tier)
seen_table = {top_tier_idx: 0 for top_tier_idx in score_table}
selected_id = set([0])
sorted_top_tier = [top_tier[0]]
last_idx = 0
for i in range(len(top_tier) - 1):
for j in range(seen_table[last_idx], len(top_tier) - 1):
next_idx = score_table[last_idx][j][1]
if next_idx not in selected_id:
sorted_top_tier.append(top_tier[next_idx])
seen_table[last_idx] = j
selected_id.add(next_idx)
last_idx = next_idx
break
return slides[:-len(slides) // partition] + sorted_top_tier
def get_score(slides):
score = 0
for i in range(len(slides) - 1):
r = len(slides[i]['tags'] & slides[i + 1]['tags'])
p = len(slides[i]['tags']) - r
q = len(slides[i + 1]['tags']) - r
score += min([p, q, r])
return score
sol_folder = 'top_tier'
datasets = ['a_example', 'b_lovely_landscapes', 'c_memorable_moments', 'd_pet_pictures', 'e_shiny_selfies']
# datasets = ['d_pet_pictures']
max_score = {dataset: 0 for dataset in datasets}
ref_ans = {dataset: [] for dataset in datasets}
random_round = 1
for dataset in datasets:
f = open('QualificationRound/{}.txt'.format(dataset))
n = int(f.readline())
h_pics, v_pics = [], []
for i in range(n):
tags = f.readline().strip().split()
pic_type, num_tags, tags = tags[0], int(tags[1]), set(tags[2:])
if pic_type == 'H':
h_pics.append({
'id': [str(i)],
'tags': tags,
})
elif pic_type == 'V':
v_pics.append({
'id': [str(i)],
'tags': tags
})
for a in range(random_round):
slides = get_slides(h_pics, v_pics)
score = get_score(slides)
if score > max_score[dataset]:
max_score[dataset] = score
ref_ans[dataset] = slides
for dataset in datasets:
wf = open('QualificationRound/{}/{}.txt'.format(sol_folder, dataset), 'w')
wf.write('{}\n'.format(len(ref_ans[dataset])))
for slide in ref_ans[dataset]:
wf.write('{}\n'.format(' '.join(slide['id'])))
wf.close()
# for i in range(len(slides)):
# print(slides[i]['tags'])
# if(i!=len(slides)-1):
# middle = len(slides[i]['tags'].intersection(slides[i+1]['tags']))
# left = len(slides[i]['tags']) - middle
# right = len(slides[i+1]['tags']) - middle
# print(left, middle, right, min(left,middle,right))
|
def merge(pic_1, pic_2):
return {'id': pic_1['id'] + pic_2['id'], 'tags': pic_1['tags'] | pic_2['tags']}
def get_score_table(pics):
score_table = {}
for i in range(len(pics)):
for j in range(i + 1, len(pics)):
r = len(pics[i]['tags'] & pics[j]['tags'])
p = len(pics[i]['tags']) - r
q = len(pics[j]['tags']) - r
score = min([r, p, q])
if i not in score_table:
score_table[i] = []
if j not in score_table:
score_table[j] = []
score_table[i].append((score, j))
score_table[j].append((score, i))
for idx in score_table:
score_table[idx].sort(key=lambda x: -x[0])
return score_table
def get_slides(h_pics, v_pics):
get_num_tags = lambda pic: len(pic['tags'])
sorted_v_pics = sorted(v_pics, key=get_num_tags)
v_slides = [merge(sorted_v_pics[2 * i], sorted_v_pics[2 * i + 1]) for i in range(len(sorted_v_pics) // 2)]
slides = sorted(h_pics + v_slides, key=get_num_tags)
partition = 10
top_tier = slides[-len(slides) // partition:]
score_table = get_score_table(top_tier)
seen_table = {top_tier_idx: 0 for top_tier_idx in score_table}
selected_id = set([0])
sorted_top_tier = [top_tier[0]]
last_idx = 0
for i in range(len(top_tier) - 1):
for j in range(seen_table[last_idx], len(top_tier) - 1):
next_idx = score_table[last_idx][j][1]
if next_idx not in selected_id:
sorted_top_tier.append(top_tier[next_idx])
seen_table[last_idx] = j
selected_id.add(next_idx)
last_idx = next_idx
break
return slides[:-len(slides) // partition] + sorted_top_tier
def get_score(slides):
score = 0
for i in range(len(slides) - 1):
r = len(slides[i]['tags'] & slides[i + 1]['tags'])
p = len(slides[i]['tags']) - r
q = len(slides[i + 1]['tags']) - r
score += min([p, q, r])
return score
sol_folder = 'top_tier'
datasets = ['a_example', 'b_lovely_landscapes', 'c_memorable_moments', 'd_pet_pictures', 'e_shiny_selfies']
max_score = {dataset: 0 for dataset in datasets}
ref_ans = {dataset: [] for dataset in datasets}
random_round = 1
for dataset in datasets:
f = open('QualificationRound/{}.txt'.format(dataset))
n = int(f.readline())
(h_pics, v_pics) = ([], [])
for i in range(n):
tags = f.readline().strip().split()
(pic_type, num_tags, tags) = (tags[0], int(tags[1]), set(tags[2:]))
if pic_type == 'H':
h_pics.append({'id': [str(i)], 'tags': tags})
elif pic_type == 'V':
v_pics.append({'id': [str(i)], 'tags': tags})
for a in range(random_round):
slides = get_slides(h_pics, v_pics)
score = get_score(slides)
if score > max_score[dataset]:
max_score[dataset] = score
ref_ans[dataset] = slides
for dataset in datasets:
wf = open('QualificationRound/{}/{}.txt'.format(sol_folder, dataset), 'w')
wf.write('{}\n'.format(len(ref_ans[dataset])))
for slide in ref_ans[dataset]:
wf.write('{}\n'.format(' '.join(slide['id'])))
wf.close()
|
def part1(inp):
drawn_numbers = [int(x) for x in inp.pop(0).split(",")]
boards = []
for i in range(len(inp) // 6):
inp.pop(0)
board = [[int(x) for x in inp.pop(0).split()] for j in range(5)]
boards.append(board)
for num in drawn_numbers:
for board in boards:
mark_board(board, num)
if check_for_win(board):
return num * sum(
[sum(x for x in board[i][:] if x != -1) for i in range(len(board))]
)
def part2(inp):
drawn_numbers = [int(x) for x in inp.pop(0).split(",")]
boards = []
for i in range(len(inp) // 6):
inp.pop(0)
board = [[int(x) for x in inp.pop(0).split()] for j in range(5)]
boards.append(board)
boards_won = set()
for num in drawn_numbers:
for i, board in enumerate(boards):
if i in boards_won:
continue
mark_board(board, num)
if check_for_win(board):
boards_won.add(i)
if len(boards_won) == len(boards):
return num * sum(
[sum(x for x in board[i][:] if x != -1) for i in range(len(board))]
)
def mark_board(board, num):
for i in range(len(board)):
for j in range(len(board[0])):
if board[i][j] == num:
board[i][j] = -1
def check_for_win(board):
for row in board:
if all(x == -1 for x in row):
return True
for col in range(len(board[0])):
if all(board[i][col] == -1 for i in range(len(board))):
return True
return False
# def part2(inp):
def test_check_for_win():
board = [
[1, 2, 3, 4],
[1, 2, 3, 4],
[-1, -1, -1, -1],
[1, 2, 3, 4],
]
assert check_for_win(board) is True
board[2] = [1, 1, 1, 1]
assert check_for_win(board) is False
board[0][1] = -1
board[1][1] = -1
board[2][1] = -1
board[3][1] = -1
assert check_for_win(board) is True
def test_day4_sample():
with open("/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_sample.txt") as f:
inp = [s.rstrip("\n").lstrip() for s in f.readlines()]
assert part1(inp) == 4512
def test_day4_submission():
with open(
"/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_submission.txt"
) as f:
inp = [s.rstrip("\n") for s in f.readlines()]
assert part1(inp) == 16674
def test_day4_part2_sample():
with open("/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_sample.txt") as f:
inp = [s.rstrip("\n") for s in f.readlines()]
assert part2(inp) == 1924
def test_day4_part2_submission():
with open(
"/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_submission.txt"
) as f:
inp = [s.rstrip("\n") for s in f.readlines()]
assert part2(inp) == 7075
|
def part1(inp):
drawn_numbers = [int(x) for x in inp.pop(0).split(',')]
boards = []
for i in range(len(inp) // 6):
inp.pop(0)
board = [[int(x) for x in inp.pop(0).split()] for j in range(5)]
boards.append(board)
for num in drawn_numbers:
for board in boards:
mark_board(board, num)
if check_for_win(board):
return num * sum([sum((x for x in board[i][:] if x != -1)) for i in range(len(board))])
def part2(inp):
drawn_numbers = [int(x) for x in inp.pop(0).split(',')]
boards = []
for i in range(len(inp) // 6):
inp.pop(0)
board = [[int(x) for x in inp.pop(0).split()] for j in range(5)]
boards.append(board)
boards_won = set()
for num in drawn_numbers:
for (i, board) in enumerate(boards):
if i in boards_won:
continue
mark_board(board, num)
if check_for_win(board):
boards_won.add(i)
if len(boards_won) == len(boards):
return num * sum([sum((x for x in board[i][:] if x != -1)) for i in range(len(board))])
def mark_board(board, num):
for i in range(len(board)):
for j in range(len(board[0])):
if board[i][j] == num:
board[i][j] = -1
def check_for_win(board):
for row in board:
if all((x == -1 for x in row)):
return True
for col in range(len(board[0])):
if all((board[i][col] == -1 for i in range(len(board)))):
return True
return False
def test_check_for_win():
board = [[1, 2, 3, 4], [1, 2, 3, 4], [-1, -1, -1, -1], [1, 2, 3, 4]]
assert check_for_win(board) is True
board[2] = [1, 1, 1, 1]
assert check_for_win(board) is False
board[0][1] = -1
board[1][1] = -1
board[2][1] = -1
board[3][1] = -1
assert check_for_win(board) is True
def test_day4_sample():
with open('/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_sample.txt') as f:
inp = [s.rstrip('\n').lstrip() for s in f.readlines()]
assert part1(inp) == 4512
def test_day4_submission():
with open('/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_submission.txt') as f:
inp = [s.rstrip('\n') for s in f.readlines()]
assert part1(inp) == 16674
def test_day4_part2_sample():
with open('/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_sample.txt') as f:
inp = [s.rstrip('\n') for s in f.readlines()]
assert part2(inp) == 1924
def test_day4_part2_submission():
with open('/Users/sep/CLionProjects/aoc-2021/src/test_files/day4_submission.txt') as f:
inp = [s.rstrip('\n') for s in f.readlines()]
assert part2(inp) == 7075
|
class Version(str):
SEPARATOR = '.'
def __new__(cls, version=""):
obj = str.__new__(cls, version)
obj._list = None
return obj
@property
def list(self):
if self._list is None:
self._list = []
for item in self.split(Version.SEPARATOR):
self._list.append(int(item) if item.isdigit() else item)
return self._list
def serialize(self):
return str(self)
@staticmethod
def deserialize(data):
if not data:
return None
return Version(data)
def __cmp__(self, other):
if other is None:
return cmp(self.list, None)
if isinstance(other, basestring):
other = Version(other)
return cmp(self.list, other.list)
def __gt__(self, other):
return cmp(self, other) == 1
def __lt__(self, other):
return cmp(self, other) == -1
def __le__(self, other):
c = cmp(self, other)
return c in [0, -1]
def __ge__(self, other):
c = cmp(self, other)
return c in [0, 1]
|
class Version(str):
separator = '.'
def __new__(cls, version=''):
obj = str.__new__(cls, version)
obj._list = None
return obj
@property
def list(self):
if self._list is None:
self._list = []
for item in self.split(Version.SEPARATOR):
self._list.append(int(item) if item.isdigit() else item)
return self._list
def serialize(self):
return str(self)
@staticmethod
def deserialize(data):
if not data:
return None
return version(data)
def __cmp__(self, other):
if other is None:
return cmp(self.list, None)
if isinstance(other, basestring):
other = version(other)
return cmp(self.list, other.list)
def __gt__(self, other):
return cmp(self, other) == 1
def __lt__(self, other):
return cmp(self, other) == -1
def __le__(self, other):
c = cmp(self, other)
return c in [0, -1]
def __ge__(self, other):
c = cmp(self, other)
return c in [0, 1]
|
# MEDIUM
# this is like Word Break => DFS + Memoization
# define a lambda x,y: x {+,-,*} y
# scan the string s:
# break at operators "+-*" => left = s[:operator] right = s[operator+1:]
# recurse each left, right:
# try every possible operations of left and right
# Time O(N!) Space O(N)
class Solution:
def diffWaysToCompute(self, input: str) -> List[int]:
self.memo = {}
self.ops = {
"+": lambda x,y: x+y,
"-": lambda x,y: x-y,
"*": lambda x,y: x*y,
}
return self.dfs(input)
def dfs(self,s):
result = []
if s in self.memo:
return self.memo[s]
for i in range(len(s)):
if s[i] in {"+","-","*"}:
left = s[:i]
right = s[i+1:]
l = self.dfs(left)
r = self.dfs(right)
for a in l:
for b in r:
result.append(self.ops[s[i]](a,b))
if not result:
result.append(int(s))
self.memo[s] = result
return result
|
class Solution:
def diff_ways_to_compute(self, input: str) -> List[int]:
self.memo = {}
self.ops = {'+': lambda x, y: x + y, '-': lambda x, y: x - y, '*': lambda x, y: x * y}
return self.dfs(input)
def dfs(self, s):
result = []
if s in self.memo:
return self.memo[s]
for i in range(len(s)):
if s[i] in {'+', '-', '*'}:
left = s[:i]
right = s[i + 1:]
l = self.dfs(left)
r = self.dfs(right)
for a in l:
for b in r:
result.append(self.ops[s[i]](a, b))
if not result:
result.append(int(s))
self.memo[s] = result
return result
|
git_response = {
"login": "dimddev",
"id": 57534,
"node_id": "MdQ6VXnlc4U3NTM0NDA=",
"avatar_url": "https://avatars1.githubusercontent.com/u/5753440?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/dimddev",
"html_url": "https://github.com/dimddev",
"followers_url": "https://api.github.com/users/dimddev/followers",
"following_url":
"https://api.github.com/users/dimddev/following{/other_user}",
"gists_url": "https://api.github.com/users/dimddev/gists{/gist_id}",
"starred_url":
"https://api.github.com/users/dimddev/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/dimddev/subscriptions",
"organizations_url": "https://api.github.com/users/dimddev/orgs",
"repos_url": "https://api.github.com/users/dimddev/repos",
"events_url": "https://api.github.com/users/dimddev/events{/privacy}",
"received_events_url":
"https://api.github.com/users/dimddev/received_events",
"type": "User",
"site_admin": "false",
"name": "Di Mita Hakini",
"company": "null",
"blog": "http://nasa.gov",
"location": "Sofia",
"email": "[email protected]",
"hireable": "null",
"bio": "null",
"public_repos": 34,
"public_gists": 2,
"followers": 21,
"following": 12,
"created_at": "2013-10-23T06:07:30Z",
"updated_at": "2019-08-24T09:06:41Z",
"private_gists": 1,
"total_private_repos": 0,
"owned_private_repos": 0,
"disk_usage": 5819,
"collaborators": 0,
"two_factor_authentication": "false",
"plan":
{
"name": "free",
"space": 976562499,
"collaborators": 0,
"private_repos": 10000
}
}
fresh_response = {
"active": 'false',
"address": "Sofia",
"company_id": 'null',
"view_all_tickets": 'null',
"deleted": 'false',
"description": 'null',
"email": "[email protected]",
"id": 47003672837,
"job_title": 'null',
"language": "en",
"mobile": 'null',
"name": "Di Mita Hakini",
"phone": 'null',
"time_zone": "Baghdad",
"twitter_id": 'null',
"custom_fields": {},
"tags": [],
"other_emails": [],
"facebook_id": 'null',
"created_at": "2019-09-30T14:05:52Z",
"updated_at": "2019-09-30T14:05:52Z",
"other_companies": [],
"unique_external_id": 'null',
"avatar": 'null'
}
|
git_response = {'login': 'dimddev', 'id': 57534, 'node_id': 'MdQ6VXnlc4U3NTM0NDA=', 'avatar_url': 'https://avatars1.githubusercontent.com/u/5753440?v=4', 'gravatar_id': '', 'url': 'https://api.github.com/users/dimddev', 'html_url': 'https://github.com/dimddev', 'followers_url': 'https://api.github.com/users/dimddev/followers', 'following_url': 'https://api.github.com/users/dimddev/following{/other_user}', 'gists_url': 'https://api.github.com/users/dimddev/gists{/gist_id}', 'starred_url': 'https://api.github.com/users/dimddev/starred{/owner}{/repo}', 'subscriptions_url': 'https://api.github.com/users/dimddev/subscriptions', 'organizations_url': 'https://api.github.com/users/dimddev/orgs', 'repos_url': 'https://api.github.com/users/dimddev/repos', 'events_url': 'https://api.github.com/users/dimddev/events{/privacy}', 'received_events_url': 'https://api.github.com/users/dimddev/received_events', 'type': 'User', 'site_admin': 'false', 'name': 'Di Mita Hakini', 'company': 'null', 'blog': 'http://nasa.gov', 'location': 'Sofia', 'email': '[email protected]', 'hireable': 'null', 'bio': 'null', 'public_repos': 34, 'public_gists': 2, 'followers': 21, 'following': 12, 'created_at': '2013-10-23T06:07:30Z', 'updated_at': '2019-08-24T09:06:41Z', 'private_gists': 1, 'total_private_repos': 0, 'owned_private_repos': 0, 'disk_usage': 5819, 'collaborators': 0, 'two_factor_authentication': 'false', 'plan': {'name': 'free', 'space': 976562499, 'collaborators': 0, 'private_repos': 10000}}
fresh_response = {'active': 'false', 'address': 'Sofia', 'company_id': 'null', 'view_all_tickets': 'null', 'deleted': 'false', 'description': 'null', 'email': '[email protected]', 'id': 47003672837, 'job_title': 'null', 'language': 'en', 'mobile': 'null', 'name': 'Di Mita Hakini', 'phone': 'null', 'time_zone': 'Baghdad', 'twitter_id': 'null', 'custom_fields': {}, 'tags': [], 'other_emails': [], 'facebook_id': 'null', 'created_at': '2019-09-30T14:05:52Z', 'updated_at': '2019-09-30T14:05:52Z', 'other_companies': [], 'unique_external_id': 'null', 'avatar': 'null'}
|
#
# user-statistician: Github action for generating a user stats card
#
# Copyright (c) 2021 Vincent A Cicirello
# https://www.cicirello.org/
#
# MIT License
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# Notes on the included themes:
#
# The light, dark, and dark-dimmed themes are based on
# GitHub's themes, and color-palette (see
# https://primer.style/css/support/color-system
# and https://primer.style/primitives/).
#
# Specifically, from the link above we use:
# * background color (bg): bg.canvasInset
# * border color: box.blueBorder
# * icons: icon.info
# * text: text.primary
# * title: bg.canvasInverse
#
# Notes to Potential Contributors:
#
# (1) For those who want to contribute a theme,
# please check the combination of your background
# color with text color, and background with title
# color for accessibility at this site,
# https://colorable.jxnblk.com/, and make sure the
# combination has a rating of at least AA. You can also
# simply run the test cases, which will automatically
# verify that the text color and the background color have
# a contrast ratio of at least 4.5:1, which is AA.
# The contrast ratio between the background and title
# colors should also be at least 4.5:1 (also enforced by test cases).
#
# (2) Before contributing a new color theme, ask yourself
# whether it will likely have broad appeal or a narrow
# audience. For example, if it is just the color palette
# of your personal website or blog, then a theme may not
# be necessary. You can simply use the colors input for
# your usage.
#
# (3) Is it similar to one of the existing themes? Or does it
# provide users with something truly new to choose from?
#
# (4) Please add the new theme alphabetized by theme name.
#
# (5) Include a comment with your GitHub userid indicating you
# are the contributor of the theme (see the existing themes).
#
# (6) You can use either 3-digit hex, 6-digit hex, or named colors.
#
# (7) The existing test cases will automatically test that your
# colors are valid hex, or valid named colors.
# See https://developer.mozilla.org/en-US/docs/Web/CSS/color_value
# for list of named colors.
colorMapping = {
# Contributor: cicirello (part of initial theme set)
"dark" : {
"bg" : "#090c10",
"border" : "#0d419d",
"icons" : "#79c0ff",
"text" : "#c9d1d9",
"title" : "#f0f6fc"
},
# Contributor: cicirello (part of initial theme set)
"dark-dimmed" : {
"bg" : "#1e2228",
"border" : "#1b4b91",
"icons" : "#6cb6ff",
"text" : "#adbac7",
"title" : "#cdd9e5"
},
# Contributor: cicirello (part of initial theme set)
"light" : {
"bg" : "#f6f8fa",
"border" : "#c8e1ff",
"icons" : "#0366d6",
"text" : "#24292e",
"title" : "#24292e"
}
}
|
color_mapping = {'dark': {'bg': '#090c10', 'border': '#0d419d', 'icons': '#79c0ff', 'text': '#c9d1d9', 'title': '#f0f6fc'}, 'dark-dimmed': {'bg': '#1e2228', 'border': '#1b4b91', 'icons': '#6cb6ff', 'text': '#adbac7', 'title': '#cdd9e5'}, 'light': {'bg': '#f6f8fa', 'border': '#c8e1ff', 'icons': '#0366d6', 'text': '#24292e', 'title': '#24292e'}}
|
# These default settings initally apply to all installations of the config_app.
#
# This file _is_ and should remain under version control.
#
DEBUG = False
SQLALCHEMY_ECHO = False
SECRET_KEY = b'default_SECRET_KEY'
#
# IMPORTANT: Do _not_ edit this file.
# Instead, over-ride with settings in the instance/config.py file.
#
|
debug = False
sqlalchemy_echo = False
secret_key = b'default_SECRET_KEY'
|
class Solution:
def getHint(self, secret: str, guess: str) -> str:
index = 0
secret = list(secret)
guess = list(guess)
A = 0
while index < len(secret):
# count A
if secret[index] == guess[index]:
secret = secret[:index] + secret[index + 1:]
guess = guess[:index] + guess[index + 1:]
A += 1
else:
index += 1
# count B
B = 0
di = collections.defaultdict(int)
for s in secret:
di[s] += 1
for g in guess:
if di[g] > 0:
di[g] -= 1
B += 1
return '{}A{}B'.format(A, B)
|
class Solution:
def get_hint(self, secret: str, guess: str) -> str:
index = 0
secret = list(secret)
guess = list(guess)
a = 0
while index < len(secret):
if secret[index] == guess[index]:
secret = secret[:index] + secret[index + 1:]
guess = guess[:index] + guess[index + 1:]
a += 1
else:
index += 1
b = 0
di = collections.defaultdict(int)
for s in secret:
di[s] += 1
for g in guess:
if di[g] > 0:
di[g] -= 1
b += 1
return '{}A{}B'.format(A, B)
|
COLOMBIA_PLACES_FILTERS = [
# Colombia
{'country': 'CO', 'location': 'Bogota'},
{'country': 'CO', 'location': 'Medellin'},
# TODO: solve issue, meetup is not returning results for cali even though it actually exist a django group
{'country': 'CO', 'location': 'Cali'},
{'country': 'CO', 'location': 'Barranquilla'},
{'country': 'CO', 'location': 'Santa marta'},
{'country': 'CO', 'location': 'Pasto'},
]
LATAM_PLACES_FILTERS = [
# Argentina
{'country': 'AR', 'location': 'Buenos Aires'},
{'country': 'AR', 'location': 'Cordoba'},
# TODO: solve issue, when this filter is enabled, US groups are being returned. Only AR groups should ve returned
#{'country': 'AR', 'location': 'La Plata'},
# Bolivia
{'country': 'BO', 'location': 'Santa Cruz de la Sierra'},
{'country': 'BO', 'location': 'El Alto'},
{'country': 'BO', 'location': 'La Paz'},
{'country': 'BO', 'location': 'Cochabamba'},
#
# Brazil
{'country': 'BR', 'location': 'sao paulo'},
{'country': 'BR', 'location': 'brasilia'},
# Chile
{'country': 'CL', 'location': 'Santiago'},
#
# # # Costa Rica
# TODO: solve issue, when this filter is enabled, US groups are being returned. Only AR groups should ve returned
# {'country': 'CR', 'location': 'San Jose'},
#
# # # Cuba
# TODO: solve issue, when this filter is enabled, US groups are being returned. Only AR groups should ve returned
# {'country': 'CU', 'location': 'Habana'},
# Ecuador
{'country': 'EC', 'location': 'quito'},
# Guatemala
{'country': 'GT', 'location': 'Guatemala'},
# Honduras
{'country': 'HN', 'location': 'Tegucigalpa'},
# Mexico
{'country': 'MX', 'location': 'ciudad de mexico'},
{'country': 'MX', 'location': 'Ecatepec'},
{'country': 'MX', 'location': 'Guadalajara'},
{'country': 'MX', 'location': 'Puebla'},
{'country': 'MX', 'location': 'Monterrey'},
# Paraguay
{'country': 'PY', 'location': 'asuncion'},
# Peru
{'country': 'PE', 'location': 'Lima'},
# Uruguay
{'country': 'UY', 'location': 'Montevideo'},
# El Salvador
{'country': 'SV', 'location': 'San Salvador'},
]
# add colombia filters to latam filters
LATAM_PLACES_FILTERS.extend(COLOMBIA_PLACES_FILTERS)
# Keyword filers that contain the criteria a group would be considered in the statistics
KEYWORD_FILTERS = [
# general keywords
"Django", "Python", "PyData", "PyLadies", "Py",
# special group names
"Grupy-SP",
]
LOCATION_CODES = {
"CO": "Colombia",
"LATAM": "LATAM"
}
|
colombia_places_filters = [{'country': 'CO', 'location': 'Bogota'}, {'country': 'CO', 'location': 'Medellin'}, {'country': 'CO', 'location': 'Cali'}, {'country': 'CO', 'location': 'Barranquilla'}, {'country': 'CO', 'location': 'Santa marta'}, {'country': 'CO', 'location': 'Pasto'}]
latam_places_filters = [{'country': 'AR', 'location': 'Buenos Aires'}, {'country': 'AR', 'location': 'Cordoba'}, {'country': 'BO', 'location': 'Santa Cruz de la Sierra'}, {'country': 'BO', 'location': 'El Alto'}, {'country': 'BO', 'location': 'La Paz'}, {'country': 'BO', 'location': 'Cochabamba'}, {'country': 'BR', 'location': 'sao paulo'}, {'country': 'BR', 'location': 'brasilia'}, {'country': 'CL', 'location': 'Santiago'}, {'country': 'EC', 'location': 'quito'}, {'country': 'GT', 'location': 'Guatemala'}, {'country': 'HN', 'location': 'Tegucigalpa'}, {'country': 'MX', 'location': 'ciudad de mexico'}, {'country': 'MX', 'location': 'Ecatepec'}, {'country': 'MX', 'location': 'Guadalajara'}, {'country': 'MX', 'location': 'Puebla'}, {'country': 'MX', 'location': 'Monterrey'}, {'country': 'PY', 'location': 'asuncion'}, {'country': 'PE', 'location': 'Lima'}, {'country': 'UY', 'location': 'Montevideo'}, {'country': 'SV', 'location': 'San Salvador'}]
LATAM_PLACES_FILTERS.extend(COLOMBIA_PLACES_FILTERS)
keyword_filters = ['Django', 'Python', 'PyData', 'PyLadies', 'Py', 'Grupy-SP']
location_codes = {'CO': 'Colombia', 'LATAM': 'LATAM'}
|
# -*- coding: utf-8 -*-
n = int(input())
t = []
for _ in range(n):
t.append(int(input()))
for i in range(n):
if i > 0 and i < n - 1:
print(sum(t[i - 1:i + 2]))
elif i == 0:
print(sum(t[:2]))
else:
print(sum(t[i - 1:]))
|
n = int(input())
t = []
for _ in range(n):
t.append(int(input()))
for i in range(n):
if i > 0 and i < n - 1:
print(sum(t[i - 1:i + 2]))
elif i == 0:
print(sum(t[:2]))
else:
print(sum(t[i - 1:]))
|
N = int(input())
lst = [list(map(int,input().split())) for i in range(N)]
for i in range(N-2):
for j in range(i+1,N-1):
for k in range(j+1,N):
x0,y0 = lst[i]
x1,y1 = lst[j]
x2,y2 = lst[k]
x0 -= x2
x1 -= x2
y0 -= y2
y1 -= y2
if x0*y1==x1*y0:
print("Yes")
exit()
print("No")
|
n = int(input())
lst = [list(map(int, input().split())) for i in range(N)]
for i in range(N - 2):
for j in range(i + 1, N - 1):
for k in range(j + 1, N):
(x0, y0) = lst[i]
(x1, y1) = lst[j]
(x2, y2) = lst[k]
x0 -= x2
x1 -= x2
y0 -= y2
y1 -= y2
if x0 * y1 == x1 * y0:
print('Yes')
exit()
print('No')
|
class ConsoleLine:
body = None
current_character = None
type = None
|
class Consoleline:
body = None
current_character = None
type = None
|
class KeyExReturn:
def __init__(self):
self._status_code = None
self._msg = None
def __call__(self):
return self._msg, self._status_code
def status_code(self):
return self._status_code
def message(self):
return self._msg
class OK(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 200
self._msg = data
class Success(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 201
self._msg = data
class NonUniqueKey(KeyExReturn):
def __init__(self, dev_id):
super().__init__()
self._status_code = 400
self._msg = "Device ID {} already exists; and could not be added.".format(dev_id)
class Forbidden(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 403
self._msg = "Server is inactive and not accepting new registration requests."
class MissingJSON(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 400
self._msg = "Missing or invalid values in JSON data received:\n{}".format(data)
class BadJSON(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 400
self._msg = "Malformed JSON data received:\n{}".format(data)
class DatabaseError(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 500
self._msg = "A database error occurred - {}".format(data)
class DatabaseConnectionError(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 500
self._msg = "An internal database error has occurred..."
class SignatureVerificationError(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 400
self._msg = "The signature did not verify"
class CSRVerificationError(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 400
self._msg = "The CSR data did not verify"
class IDNotFound(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 404
self._msg = "The specified device identity was not found"
|
class Keyexreturn:
def __init__(self):
self._status_code = None
self._msg = None
def __call__(self):
return (self._msg, self._status_code)
def status_code(self):
return self._status_code
def message(self):
return self._msg
class Ok(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 200
self._msg = data
class Success(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 201
self._msg = data
class Nonuniquekey(KeyExReturn):
def __init__(self, dev_id):
super().__init__()
self._status_code = 400
self._msg = 'Device ID {} already exists; and could not be added.'.format(dev_id)
class Forbidden(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 403
self._msg = 'Server is inactive and not accepting new registration requests.'
class Missingjson(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 400
self._msg = 'Missing or invalid values in JSON data received:\n{}'.format(data)
class Badjson(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 400
self._msg = 'Malformed JSON data received:\n{}'.format(data)
class Databaseerror(KeyExReturn):
def __init__(self, data):
super().__init__()
self._status_code = 500
self._msg = 'A database error occurred - {}'.format(data)
class Databaseconnectionerror(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 500
self._msg = 'An internal database error has occurred...'
class Signatureverificationerror(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 400
self._msg = 'The signature did not verify'
class Csrverificationerror(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 400
self._msg = 'The CSR data did not verify'
class Idnotfound(KeyExReturn):
def __init__(self):
super().__init__()
self._status_code = 404
self._msg = 'The specified device identity was not found'
|
# Radix sort in Python
def counting_sort(array, place):
size = len(array)
output = [0] * size
count = [0] * 10
for i in range(0, size):
index = array[i] // place
count[index % 10] += 1
for i in range(1, 10):
count[i] += count[i - 1]
i = size - 1
while i >= 0:
index = array[i] // place
output[count[index % 10] - 1] = array[i]
count[index % 10] -= 1
i -= 1
for i in range(0, size):
array[i] = output[i]
def radix_sort(array):
max_element = max(array)
place = 1
while max_element // place > 0:
counting_sort(array, place)
place *= 10
data = [121, 432, 564, 23, 1, 45, 788]
radix_sort(data)
print(data)
|
def counting_sort(array, place):
size = len(array)
output = [0] * size
count = [0] * 10
for i in range(0, size):
index = array[i] // place
count[index % 10] += 1
for i in range(1, 10):
count[i] += count[i - 1]
i = size - 1
while i >= 0:
index = array[i] // place
output[count[index % 10] - 1] = array[i]
count[index % 10] -= 1
i -= 1
for i in range(0, size):
array[i] = output[i]
def radix_sort(array):
max_element = max(array)
place = 1
while max_element // place > 0:
counting_sort(array, place)
place *= 10
data = [121, 432, 564, 23, 1, 45, 788]
radix_sort(data)
print(data)
|
class Fields:
#rearrange the field order at will
#if renaming or adding additional fields modifying target.csv is required
values = ['Timestamp', 'Transaction Id', 'Payment ID', 'Note', 'Receive/Send Address', 'Debit', 'Credit', 'Network Fee', 'Balance', 'Currency']
|
class Fields:
values = ['Timestamp', 'Transaction Id', 'Payment ID', 'Note', 'Receive/Send Address', 'Debit', 'Credit', 'Network Fee', 'Balance', 'Currency']
|
FILENAME = "input.txt"
class Expression:
def __init__(self, expression_str: str):
expression_list = expression_str.split()
if len(expression_list) == 1:
self.parse_expression(None, None, expression_list[0])
elif len(expression_list) == 2:
self.parse_expression(None, *expression_list)
else:
self.parse_expression(*expression_list)
def parse_expression(
self, left_literal: str | None, operator: str | None, right_literal: str
):
try:
self._left_literal = int(left_literal)
except:
self._left_literal = left_literal
try:
self._right_literal = int(right_literal)
except:
self._right_literal = right_literal
self._operator = operator
def eval(self, table) -> int:
if self._left_literal is not None:
if isinstance(self._left_literal, int):
left = self._left_literal
else:
left = table.get_value(self._left_literal)
if isinstance(self._right_literal, int):
right = self._right_literal
else:
right = table.get_value(self._right_literal)
if self._operator == "AND":
return left & right
elif self._operator == "OR":
return left | right
elif self._operator == "NOT":
return 2**16 - right - 1
elif self._operator == "LSHIFT":
return left << right
elif self._operator == "RSHIFT":
return left >> right
elif self._operator is None:
return right
else:
raise ValueError(f"Unknown operator: {self._operator}")
class Table:
def __init__(self):
self._variable_dict = dict()
def process_expression(self, variable: str, expression: Expression):
self._variable_dict[variable] = expression
def get_value(self, variable: str) -> int:
result = self._variable_dict[variable].eval(self)
self._variable_dict[variable] = Expression(str(result))
return result
def get_input() -> Table:
table = Table()
with open(FILENAME) as file:
for line in file.readlines():
lhs, rhs = line.strip().split(" -> ")
table.process_expression(rhs, Expression(lhs))
return table
def part_1():
table = get_input()
WIRE_VAR = "a"
result = table.get_value(WIRE_VAR)
print(f"Signal {result} is ultimately provided to wire {WIRE_VAR}")
def part_2():
table1 = get_input()
table2 = get_input()
WIRE_VAR = "a"
a_signal = table1.get_value(WIRE_VAR)
table2.process_expression("b", Expression(str(a_signal)))
result = table2.get_value(WIRE_VAR)
print(f"Signal {result} is ultimately provided to wire {WIRE_VAR}")
if __name__ == "__main__":
# part_1()
# part_2()
pass
|
filename = 'input.txt'
class Expression:
def __init__(self, expression_str: str):
expression_list = expression_str.split()
if len(expression_list) == 1:
self.parse_expression(None, None, expression_list[0])
elif len(expression_list) == 2:
self.parse_expression(None, *expression_list)
else:
self.parse_expression(*expression_list)
def parse_expression(self, left_literal: str | None, operator: str | None, right_literal: str):
try:
self._left_literal = int(left_literal)
except:
self._left_literal = left_literal
try:
self._right_literal = int(right_literal)
except:
self._right_literal = right_literal
self._operator = operator
def eval(self, table) -> int:
if self._left_literal is not None:
if isinstance(self._left_literal, int):
left = self._left_literal
else:
left = table.get_value(self._left_literal)
if isinstance(self._right_literal, int):
right = self._right_literal
else:
right = table.get_value(self._right_literal)
if self._operator == 'AND':
return left & right
elif self._operator == 'OR':
return left | right
elif self._operator == 'NOT':
return 2 ** 16 - right - 1
elif self._operator == 'LSHIFT':
return left << right
elif self._operator == 'RSHIFT':
return left >> right
elif self._operator is None:
return right
else:
raise value_error(f'Unknown operator: {self._operator}')
class Table:
def __init__(self):
self._variable_dict = dict()
def process_expression(self, variable: str, expression: Expression):
self._variable_dict[variable] = expression
def get_value(self, variable: str) -> int:
result = self._variable_dict[variable].eval(self)
self._variable_dict[variable] = expression(str(result))
return result
def get_input() -> Table:
table = table()
with open(FILENAME) as file:
for line in file.readlines():
(lhs, rhs) = line.strip().split(' -> ')
table.process_expression(rhs, expression(lhs))
return table
def part_1():
table = get_input()
wire_var = 'a'
result = table.get_value(WIRE_VAR)
print(f'Signal {result} is ultimately provided to wire {WIRE_VAR}')
def part_2():
table1 = get_input()
table2 = get_input()
wire_var = 'a'
a_signal = table1.get_value(WIRE_VAR)
table2.process_expression('b', expression(str(a_signal)))
result = table2.get_value(WIRE_VAR)
print(f'Signal {result} is ultimately provided to wire {WIRE_VAR}')
if __name__ == '__main__':
pass
|
# generated from genmsg/cmake/pkg-genmsg.context.in
messages_str = "/workspace/src/ros_control/controller_manager_msgs/msg/ControllerState.msg;/workspace/src/ros_control/controller_manager_msgs/msg/ControllerStatistics.msg;/workspace/src/ros_control/controller_manager_msgs/msg/ControllersStatistics.msg;/workspace/src/ros_control/controller_manager_msgs/msg/HardwareInterfaceResources.msg"
services_str = "/workspace/src/ros_control/controller_manager_msgs/srv/ListControllerTypes.srv;/workspace/src/ros_control/controller_manager_msgs/srv/ListControllers.srv;/workspace/src/ros_control/controller_manager_msgs/srv/LoadController.srv;/workspace/src/ros_control/controller_manager_msgs/srv/ReloadControllerLibraries.srv;/workspace/src/ros_control/controller_manager_msgs/srv/SwitchController.srv;/workspace/src/ros_control/controller_manager_msgs/srv/UnloadController.srv"
pkg_name = "controller_manager_msgs"
dependencies_str = "std_msgs"
langs = "gencpp;geneus;genlisp;gennodejs;genpy"
dep_include_paths_str = "controller_manager_msgs;/workspace/src/ros_control/controller_manager_msgs/msg;std_msgs;/opt/ros/melodic/share/std_msgs/cmake/../msg"
PYTHON_EXECUTABLE = "/usr/bin/python2"
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = "/opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py"
|
messages_str = '/workspace/src/ros_control/controller_manager_msgs/msg/ControllerState.msg;/workspace/src/ros_control/controller_manager_msgs/msg/ControllerStatistics.msg;/workspace/src/ros_control/controller_manager_msgs/msg/ControllersStatistics.msg;/workspace/src/ros_control/controller_manager_msgs/msg/HardwareInterfaceResources.msg'
services_str = '/workspace/src/ros_control/controller_manager_msgs/srv/ListControllerTypes.srv;/workspace/src/ros_control/controller_manager_msgs/srv/ListControllers.srv;/workspace/src/ros_control/controller_manager_msgs/srv/LoadController.srv;/workspace/src/ros_control/controller_manager_msgs/srv/ReloadControllerLibraries.srv;/workspace/src/ros_control/controller_manager_msgs/srv/SwitchController.srv;/workspace/src/ros_control/controller_manager_msgs/srv/UnloadController.srv'
pkg_name = 'controller_manager_msgs'
dependencies_str = 'std_msgs'
langs = 'gencpp;geneus;genlisp;gennodejs;genpy'
dep_include_paths_str = 'controller_manager_msgs;/workspace/src/ros_control/controller_manager_msgs/msg;std_msgs;/opt/ros/melodic/share/std_msgs/cmake/../msg'
python_executable = '/usr/bin/python2'
package_has_static_sources = 'TRUE' == 'TRUE'
genmsg_check_deps_script = '/opt/ros/melodic/share/genmsg/cmake/../../../lib/genmsg/genmsg_check_deps.py'
|
a=[]
while True:
b=input("Enter Number(Break Using String):")
if b.isalpha():
break
else:
a.append(int(b))
continue
c=a[0]
for x in a:
if c>x:
c=x
else:
continue
d=0
if c in a:
d=a.index(c)
print ("Index:",d)
print ("Number:",c)
|
a = []
while True:
b = input('Enter Number(Break Using String):')
if b.isalpha():
break
else:
a.append(int(b))
continue
c = a[0]
for x in a:
if c > x:
c = x
else:
continue
d = 0
if c in a:
d = a.index(c)
print('Index:', d)
print('Number:', c)
|
'''
PROBLEM: Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word (last word means the last appearing word if we loop from left to right) in the string.
If the last word does not exist, return 0.
Note: A word is defined as a maximal substring consisting of non-space characters only.
Example:
Input: "Hello World"
Output: 5
Problem link : https://leetcode.com/problems/length-of-last-word/
'''
'''
APPROACH -
We can convert string into list of words and can calculate length using reverse indexing
'''
class Solution:
def lengthOfLastWord(self, s: str) -> int:
a = s.split()
if (len(a)>=1):
return len(a[-1])
else:
return 0
|
"""
PROBLEM: Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word (last word means the last appearing word if we loop from left to right) in the string.
If the last word does not exist, return 0.
Note: A word is defined as a maximal substring consisting of non-space characters only.
Example:
Input: "Hello World"
Output: 5
Problem link : https://leetcode.com/problems/length-of-last-word/
"""
'\nAPPROACH -\nWe can convert string into list of words and can calculate length using reverse indexing\n'
class Solution:
def length_of_last_word(self, s: str) -> int:
a = s.split()
if len(a) >= 1:
return len(a[-1])
else:
return 0
|
#
# PySNMP MIB module RBN-TC (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/RBN-TC
# Produced by pysmi-0.3.4 at Wed May 1 14:52:26 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")
SingleValueConstraint, ValueRangeConstraint, ConstraintsUnion, ConstraintsIntersection, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ValueRangeConstraint", "ConstraintsUnion", "ConstraintsIntersection", "ValueSizeConstraint")
rbnModules, = mibBuilder.importSymbols("RBN-SMI", "rbnModules")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
MibScalar, MibTable, MibTableRow, MibTableColumn, Counter64, ObjectIdentity, Counter32, MibIdentifier, TimeTicks, Gauge32, ModuleIdentity, Unsigned32, iso, IpAddress, Bits, Integer32, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Counter64", "ObjectIdentity", "Counter32", "MibIdentifier", "TimeTicks", "Gauge32", "ModuleIdentity", "Unsigned32", "iso", "IpAddress", "Bits", "Integer32", "NotificationType")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
rbnTC = ModuleIdentity((1, 3, 6, 1, 4, 1, 2352, 5, 2))
rbnTC.setRevisions(('2009-10-20 17:00', '2004-06-19 17:00', '2003-03-17 17:00', '2002-11-11 00:00', '2002-06-26 00:00', '2000-07-14 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: rbnTC.setRevisionsDescriptions(('Added new textual convention: RbnUnsigned64 for read-write capable 64 bit integer value.', 'Added new textual convention: RbnPortMediumType. Correct warnings given by smilint.', 'Added new textual convention: RbnVidOrUntagged.', 'Moved definitions of RbnSlot and RbnPort from RBN-PVC-MIB. Updated range on RbnSlot and RbnPort.', 'Updated CONTACT-INFO. Added new textual conventions: RbnKBytes and RbnPercentage.', 'Initial version.',))
if mibBuilder.loadTexts: rbnTC.setLastUpdated('200910201700Z')
if mibBuilder.loadTexts: rbnTC.setOrganization('Redback Networks, Inc.')
if mibBuilder.loadTexts: rbnTC.setContactInfo(' RedBack Networks, Inc. Postal: 300 Holger Way San Jose, CA 95134-1362 USA Phone: +1 408 750 5000 Fax: +1 408 750 5599 E-mail: [email protected] ')
if mibBuilder.loadTexts: rbnTC.setDescription('Defines common textual conventions used in Redback mib modules.')
class RbnCircuitHandle(TextualConvention, OctetString):
description = 'A unique identifier for individual circuits. The string is composed of the following: Octet 1 slot 2 port 3-8 circuit identifier slots/ports are numbered 0..n. The SMS CLI also numbers slots/ports 0..n but SE CLI numbers slots/ports 1..n. For example: When the SE CLI refers to slot/port 1/2, this maps to to the RbnCircuitHandle slot/port 0/1 '
status = 'current'
displayHint = '1d:1d:2x-2x-2x'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 8)
fixedLength = 8
class RbnKBytes(TextualConvention, Integer32):
description = 'Storage size, expressed in units of 1024 bytes.'
status = 'current'
displayHint = 'd'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 2147483647)
class RbnPercentage(TextualConvention, Integer32):
description = 'This Textual Convention describes an object that stores a whole integer percentage value.'
status = 'current'
displayHint = 'd%'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(0, 100)
class RbnSlot(TextualConvention, Unsigned32):
description = "The chassis slot number. This is the physical slot number as reported in the CLI command 'show hardware' on SMS and the CLI command 'show port' on SE."
status = 'current'
displayHint = 'd'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 255)
class RbnPort(TextualConvention, Unsigned32):
description = "The chassis port number. This is the physical port number as reported in the CLI command 'show hardware' on SMS and the CLI command 'show port' on SE."
status = 'current'
displayHint = 'd'
subtypeSpec = Unsigned32.subtypeSpec + ValueRangeConstraint(0, 255)
class RbnVidOrUntagged(TextualConvention, Integer32):
description = 'The twelve-bit VLAN Identifer (VID) used to uniquely identify the VLAN to which the frame belongs. The VID is encoded as an unsigned binary number. An untagged frame does not carry any identification of the VLAN to which it belongs and is designated with a value of 4096.'
status = 'current'
displayHint = 'd'
subtypeSpec = Integer32.subtypeSpec + ValueRangeConstraint(1, 4096)
class RbnPortMediumType(TextualConvention, Integer32):
description = 'Medium type of NAS port.'
status = 'current'
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(0, 11, 12, 13, 14))
namedValues = NamedValues(("unknown", 0), ("dsl", 11), ("cable", 12), ("wireless", 13), ("satellite", 14))
class RbnUnsigned64(TextualConvention, OctetString):
description = 'Unsigned 64 bit integer value is represented as an OCTET STRING. This allows an unsigned integer value in the range 0..18446744073709551615. The octets are ordered with the first octet containing the highest ordered bits of the integer and the 8th octet containing the lowest ordered bits, corresponding to network byte order.'
status = 'current'
displayHint = '8d'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(8, 8)
fixedLength = 8
mibBuilder.exportSymbols("RBN-TC", RbnSlot=RbnSlot, RbnVidOrUntagged=RbnVidOrUntagged, RbnPercentage=RbnPercentage, RbnCircuitHandle=RbnCircuitHandle, PYSNMP_MODULE_ID=rbnTC, rbnTC=rbnTC, RbnPortMediumType=RbnPortMediumType, RbnKBytes=RbnKBytes, RbnUnsigned64=RbnUnsigned64, RbnPort=RbnPort)
|
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, value_range_constraint, constraints_union, constraints_intersection, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueSizeConstraint')
(rbn_modules,) = mibBuilder.importSymbols('RBN-SMI', 'rbnModules')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(mib_scalar, mib_table, mib_table_row, mib_table_column, counter64, object_identity, counter32, mib_identifier, time_ticks, gauge32, module_identity, unsigned32, iso, ip_address, bits, integer32, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Counter64', 'ObjectIdentity', 'Counter32', 'MibIdentifier', 'TimeTicks', 'Gauge32', 'ModuleIdentity', 'Unsigned32', 'iso', 'IpAddress', 'Bits', 'Integer32', 'NotificationType')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
rbn_tc = module_identity((1, 3, 6, 1, 4, 1, 2352, 5, 2))
rbnTC.setRevisions(('2009-10-20 17:00', '2004-06-19 17:00', '2003-03-17 17:00', '2002-11-11 00:00', '2002-06-26 00:00', '2000-07-14 00:00'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
rbnTC.setRevisionsDescriptions(('Added new textual convention: RbnUnsigned64 for read-write capable 64 bit integer value.', 'Added new textual convention: RbnPortMediumType. Correct warnings given by smilint.', 'Added new textual convention: RbnVidOrUntagged.', 'Moved definitions of RbnSlot and RbnPort from RBN-PVC-MIB. Updated range on RbnSlot and RbnPort.', 'Updated CONTACT-INFO. Added new textual conventions: RbnKBytes and RbnPercentage.', 'Initial version.'))
if mibBuilder.loadTexts:
rbnTC.setLastUpdated('200910201700Z')
if mibBuilder.loadTexts:
rbnTC.setOrganization('Redback Networks, Inc.')
if mibBuilder.loadTexts:
rbnTC.setContactInfo(' RedBack Networks, Inc. Postal: 300 Holger Way San Jose, CA 95134-1362 USA Phone: +1 408 750 5000 Fax: +1 408 750 5599 E-mail: [email protected] ')
if mibBuilder.loadTexts:
rbnTC.setDescription('Defines common textual conventions used in Redback mib modules.')
class Rbncircuithandle(TextualConvention, OctetString):
description = 'A unique identifier for individual circuits. The string is composed of the following: Octet 1 slot 2 port 3-8 circuit identifier slots/ports are numbered 0..n. The SMS CLI also numbers slots/ports 0..n but SE CLI numbers slots/ports 1..n. For example: When the SE CLI refers to slot/port 1/2, this maps to to the RbnCircuitHandle slot/port 0/1 '
status = 'current'
display_hint = '1d:1d:2x-2x-2x'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 8)
fixed_length = 8
class Rbnkbytes(TextualConvention, Integer32):
description = 'Storage size, expressed in units of 1024 bytes.'
status = 'current'
display_hint = 'd'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 2147483647)
class Rbnpercentage(TextualConvention, Integer32):
description = 'This Textual Convention describes an object that stores a whole integer percentage value.'
status = 'current'
display_hint = 'd%'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(0, 100)
class Rbnslot(TextualConvention, Unsigned32):
description = "The chassis slot number. This is the physical slot number as reported in the CLI command 'show hardware' on SMS and the CLI command 'show port' on SE."
status = 'current'
display_hint = 'd'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 255)
class Rbnport(TextualConvention, Unsigned32):
description = "The chassis port number. This is the physical port number as reported in the CLI command 'show hardware' on SMS and the CLI command 'show port' on SE."
status = 'current'
display_hint = 'd'
subtype_spec = Unsigned32.subtypeSpec + value_range_constraint(0, 255)
class Rbnvidoruntagged(TextualConvention, Integer32):
description = 'The twelve-bit VLAN Identifer (VID) used to uniquely identify the VLAN to which the frame belongs. The VID is encoded as an unsigned binary number. An untagged frame does not carry any identification of the VLAN to which it belongs and is designated with a value of 4096.'
status = 'current'
display_hint = 'd'
subtype_spec = Integer32.subtypeSpec + value_range_constraint(1, 4096)
class Rbnportmediumtype(TextualConvention, Integer32):
description = 'Medium type of NAS port.'
status = 'current'
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(0, 11, 12, 13, 14))
named_values = named_values(('unknown', 0), ('dsl', 11), ('cable', 12), ('wireless', 13), ('satellite', 14))
class Rbnunsigned64(TextualConvention, OctetString):
description = 'Unsigned 64 bit integer value is represented as an OCTET STRING. This allows an unsigned integer value in the range 0..18446744073709551615. The octets are ordered with the first octet containing the highest ordered bits of the integer and the 8th octet containing the lowest ordered bits, corresponding to network byte order.'
status = 'current'
display_hint = '8d'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(8, 8)
fixed_length = 8
mibBuilder.exportSymbols('RBN-TC', RbnSlot=RbnSlot, RbnVidOrUntagged=RbnVidOrUntagged, RbnPercentage=RbnPercentage, RbnCircuitHandle=RbnCircuitHandle, PYSNMP_MODULE_ID=rbnTC, rbnTC=rbnTC, RbnPortMediumType=RbnPortMediumType, RbnKBytes=RbnKBytes, RbnUnsigned64=RbnUnsigned64, RbnPort=RbnPort)
|
# Copyright (C) 2019 SignalFx, Inc. All rights reserved.
name = 'signalfx_serverless_gcf'
version = '0.0.1'
user_agent = 'signalfx_serverless/' + version
packages = ['signalfx_gcf', 'signalfx_gcf.serverless']
|
name = 'signalfx_serverless_gcf'
version = '0.0.1'
user_agent = 'signalfx_serverless/' + version
packages = ['signalfx_gcf', 'signalfx_gcf.serverless']
|
print("Hello! I am a script in python");
def Hi(firstName, lastName):
print("Hello " + firstName + " " + lastName)
|
print('Hello! I am a script in python')
def hi(firstName, lastName):
print('Hello ' + firstName + ' ' + lastName)
|
class GN3:
def __init__(self):
self.name = 'GN3'
def __str__(self):
return self.name
|
class Gn3:
def __init__(self):
self.name = 'GN3'
def __str__(self):
return self.name
|
# Specialization: Google IT Automation with Python
# Course 01: Crash Course with Python
# Week 2 Module Part 1 Exercise 02
# Student: Shawn Solomon
# Learning Platform: Coursera.org
# Practice writing some expressions and conversions yourself.
# In this scenario, we have a directory with 5 files in it. Each file has a different size: 2048, 4357, 97658, 125, and 8.
# Fill in the blanks to calculate the average file size by having Python add all the values for you, and then set the files variable to the number of files.
# Finally, output a message saying "The average size is: " followed by the resulting number. Remember to use the str() function to convert the number into a string.
# total = 2048 + ___ + ___ + ___ + ___
# files = ___
# average = total / files
# print("___" + str(___))
total = 2048 + 4357 + 97658 + 125 + 8
files = 5
average = total / files
print("The average size is: " + str(average))
|
total = 2048 + 4357 + 97658 + 125 + 8
files = 5
average = total / files
print('The average size is: ' + str(average))
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of xy-cli.
# https://github.com/exiahuang/xy-cli
# Licensed under the Apache License 2.0:
# http://www.opensource.org/licenses/Apache-2.0
# Copyright (c) 2020, exiahuang <[email protected]>
__version__ = '0.8' # NOQA
__desc__ = 'xy command tools'
|
__version__ = '0.8'
__desc__ = 'xy command tools'
|
class Stack:
def __init__(self) -> None:
self.elements = []
def push(self, element):
self.elements.append(element)
def size(self):
return len(self.elements)
def pop(self):
result = self.elements[self.size()-1]
self.elements = self.elements[:self.size()-1]
return result
def peek(self):
result = self.elements[self.size()-1]
return result
|
class Stack:
def __init__(self) -> None:
self.elements = []
def push(self, element):
self.elements.append(element)
def size(self):
return len(self.elements)
def pop(self):
result = self.elements[self.size() - 1]
self.elements = self.elements[:self.size() - 1]
return result
def peek(self):
result = self.elements[self.size() - 1]
return result
|
# Lets attempt to draw two points and have them move also
pos_1 = 0
velo_1 = 1
pos_2 = 9
velo_2 = -1
line = 10*[' ']
# The code is beginning to be clustered and hard to read
for i in range(10):
line[pos_1] = '*'
line[pos_2] = '*'
print("".join(line))
line[pos_1] = ' '
line[pos_2] = ' '
pos_1 += velo_1
pos_2 += velo_2
# Note that if we used the pos now to index the line, we would get errors or wrong behavior
print(pos_1, pos_2)
print("".join(line))
# This is going to become extremely problematic if we try to go beyond this
# If we wanted to add more points or dimensions, the code will quickly degrade`
|
pos_1 = 0
velo_1 = 1
pos_2 = 9
velo_2 = -1
line = 10 * [' ']
for i in range(10):
line[pos_1] = '*'
line[pos_2] = '*'
print(''.join(line))
line[pos_1] = ' '
line[pos_2] = ' '
pos_1 += velo_1
pos_2 += velo_2
print(pos_1, pos_2)
print(''.join(line))
|
a = int(input("Enter a -: "))
b = int(input("Enter b -: "))
print("A, B se bada ya barabar h bhai") if a >= b else print(
"B, A se bada h bhai")
|
a = int(input('Enter a -: '))
b = int(input('Enter b -: '))
print('A, B se bada ya barabar h bhai') if a >= b else print('B, A se bada h bhai')
|
# A postgres database url
# postgresql://[user[:password]@][netloc][:port][/dbname]
DATABASE_URL=""
# Your discord bot token
TOKEN=""
|
database_url = ''
token = ''
|
def gcd(a,b):
return gcd(b,a%b) if b>0 else a
a,b,c=map(int,input().split())
if a*b//gcd(a,b) <=c:
print("yes")
else:
print("no")
|
def gcd(a, b):
return gcd(b, a % b) if b > 0 else a
(a, b, c) = map(int, input().split())
if a * b // gcd(a, b) <= c:
print('yes')
else:
print('no')
|
load("@io_bazel_rules_go//go:def.bzl", "go_context", "go_rule")
load("@bazel_skylib//lib:shell.bzl", "shell")
def _go_vendor(ctx):
go = go_context(ctx)
out = ctx.actions.declare_file(ctx.label.name + ".sh")
substitutions = {
"@@GO@@": shell.quote(go.go.path),
"@@GAZELLE@@": shell.quote(ctx.executable._gazelle.short_path),
}
ctx.actions.expand_template(
template = ctx.file._template,
output = out,
substitutions = substitutions,
is_executable = True,
)
runfiles = ctx.runfiles(files = [go.go, ctx.executable._gazelle])
return [
DefaultInfo(
runfiles = runfiles,
executable = out,
),
]
go_vendor = go_rule(
implementation = _go_vendor,
executable = True,
attrs = {
"_template": attr.label(
default = "//build/rules/go:vendor.bash",
allow_single_file = True,
),
"_gazelle": attr.label(
default = "@bazel_gazelle//cmd/gazelle",
executable = True,
cfg = "host",
),
},
)
|
load('@io_bazel_rules_go//go:def.bzl', 'go_context', 'go_rule')
load('@bazel_skylib//lib:shell.bzl', 'shell')
def _go_vendor(ctx):
go = go_context(ctx)
out = ctx.actions.declare_file(ctx.label.name + '.sh')
substitutions = {'@@GO@@': shell.quote(go.go.path), '@@GAZELLE@@': shell.quote(ctx.executable._gazelle.short_path)}
ctx.actions.expand_template(template=ctx.file._template, output=out, substitutions=substitutions, is_executable=True)
runfiles = ctx.runfiles(files=[go.go, ctx.executable._gazelle])
return [default_info(runfiles=runfiles, executable=out)]
go_vendor = go_rule(implementation=_go_vendor, executable=True, attrs={'_template': attr.label(default='//build/rules/go:vendor.bash', allow_single_file=True), '_gazelle': attr.label(default='@bazel_gazelle//cmd/gazelle', executable=True, cfg='host')})
|
#
# PySNMP MIB module CTRON-SFPS-COMMON-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/CTRON-SFPS-COMMON-MIB
# Produced by pysmi-0.3.4 at Wed May 1 12:30:50 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
Integer, OctetString, ObjectIdentifier = mibBuilder.importSymbols("ASN1", "Integer", "OctetString", "ObjectIdentifier")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ValueSizeConstraint, ValueRangeConstraint, ConstraintsUnion, SingleValueConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "ValueSizeConstraint", "ValueRangeConstraint", "ConstraintsUnion", "SingleValueConstraint", "ConstraintsIntersection")
sfpsSystemGenerics, sfpsDiagEventLog, sfpsAOPropertiesAPI, sfpsAOProperties = mibBuilder.importSymbols("CTRON-SFPS-INCLUDE-MIB", "sfpsSystemGenerics", "sfpsDiagEventLog", "sfpsAOPropertiesAPI", "sfpsAOProperties")
NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "NotificationGroup", "ModuleCompliance")
Integer32, TimeTicks, Counter32, Counter64, Gauge32, IpAddress, ObjectIdentity, ModuleIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, MibIdentifier, Unsigned32, iso, NotificationType, Bits = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "TimeTicks", "Counter32", "Counter64", "Gauge32", "IpAddress", "ObjectIdentity", "ModuleIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "MibIdentifier", "Unsigned32", "iso", "NotificationType", "Bits")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
class HexInteger(Integer32):
pass
sfpsGenericVersionTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1), )
if mibBuilder.loadTexts: sfpsGenericVersionTable.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionTable.setDescription('Table describing the SFS generics and their versions that are contained within this image.')
sfpsGenericVersionEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1), ).setIndexNames((0, "CTRON-SFPS-COMMON-MIB", "sfpsGenericVersionHash"))
if mibBuilder.loadTexts: sfpsGenericVersionEntry.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionEntry.setDescription('An entry in the table instanced by the Generic name.')
sfpsGenericVersionHash = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsGenericVersionHash.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionHash.setDescription('Hash of the name to make it a unique entry.')
sfpsGenericVersionName = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsGenericVersionName.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionName.setDescription('Name of the Generic.')
sfpsGenericVersionVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsGenericVersionVersion.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionVersion.setDescription('Version stamp of the generic component.')
sfpsGenericVersionMIBRev = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsGenericVersionMIBRev.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsGenericVersionMIBRev.setDescription('MIB version of the generic component.')
sfpsDiagLogConfigTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1), )
if mibBuilder.loadTexts: sfpsDiagLogConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigTable.setDescription('This table contains the informtion to configure an Event Logger object.')
sfpsDiagLogConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1), ).setIndexNames((0, "CTRON-SFPS-COMMON-MIB", "sfpsDiagLogConfigInstance"))
if mibBuilder.loadTexts: sfpsDiagLogConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigEntry.setDescription('Each entry contains configuration data.')
sfpsDiagLogConfigInstance = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsDiagLogConfigInstance.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigInstance.setDescription('The instance of this Event Logger.')
sfpsDiagLogConfigStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("other", 1), ("disabled", 2), ("enabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigStatus.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigStatus.setDescription('The status of this Event Logger object.')
sfpsDiagLogConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsDiagLogConfigIndex.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigIndex.setDescription('The current index in the circular buffer where events are being logged.')
sfpsDiagLogConfigStart = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigStart.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigStart.setDescription('The starting index in the circular buffer to display.')
sfpsDiagLogConfigStop = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigStop.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigStop.setDescription('The last index in the circular buffer to display.')
sfpsDiagLogConfigLogIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigLogIndex.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigLogIndex.setDescription('The current index in the log buffer where we are looking.')
sfpsDiagLogConfigFilterMatch = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 7), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterMatch.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterMatch.setDescription('The specified Event Id to log. A value of 0 will cause every event to be logged.')
sfpsDiagLogConfigFilterStart = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 8), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterStart.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterStart.setDescription('The beginning range of Event Ids to log.')
sfpsDiagLogConfigFilterStop = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 9), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterStop.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigFilterStop.setDescription('The ending range of Event Ids to log.')
sfpsDiagLogAccessPortControl = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 10), HexInteger()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogAccessPortControl.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogAccessPortControl.setDescription('Leaf to be used to set a port bit mask. This bit mask represents which ports shall be statically set to be an ACCESS port. Bit 0 corresponds to Port 1.')
sfpsDiagLogCallIdleTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 11), Integer32().clone(60)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogCallIdleTime.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogCallIdleTime.setDescription('Leaf to be used to set a debug variable. (in seconds)')
sfpsDiagLogFilterAddTimer = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 12), Integer32().clone(900)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogFilterAddTimer.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogFilterAddTimer.setDescription('Leaf to be used to set how long a filter connection should be (Default : 900 seconds)')
sfpsDiagLogRedirectorWakeup = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogRedirectorWakeup.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogRedirectorWakeup.setDescription('Leaf to be used to set how often the Redirector wakes up to service the queue (in seconds)')
sfpsDiagLogRedirectorNumPackets = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 14), Integer32().clone(64)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogRedirectorNumPackets.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogRedirectorNumPackets.setDescription('Leaf to be used to set how many packets the Redirector reads off at a time.')
sfpsDiagLogEndSystemTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 15), Integer32().clone(600)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogEndSystemTimeout.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogEndSystemTimeout.setDescription('Leaf to be used to set a debug variable. (Default : 10 minutes) (in seconds)')
sfpsDiagLogSwitchIdleInterval = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 16), Integer32().clone(30)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogSwitchIdleInterval.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogSwitchIdleInterval.setDescription('Leaf to be used to set a debug variable. (in seconds)')
sfpsDiagLogInlnFltrAgeTime = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 17), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogInlnFltrAgeTime.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogInlnFltrAgeTime.setDescription('Leaf to be used to set the BAF age time (seconds).')
sfpsDiagLogConfigDebug9 = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 18), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigDebug9.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigDebug9.setDescription('Leaf to be used to set a debug variable.')
sfpsDiagLogSignalThrottle = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 19), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogSignalThrottle.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogSignalThrottle.setDescription('Leaf to be used to set the Signal Thottle knob. Throttling defaults to off. By setting it to 1,2,5, or 10 one can dictate the rate (signal/second) at which SFPS sends signals to the ACMS Signal Stack..')
sfpsDiagLogConfigOther = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("string", 1), ("integer", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigOther.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigOther.setDescription('Dictates the format of the Event to be displayed (either Text or Integer values).')
sfpsDiagLogConfigSoftReset = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 21), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigSoftReset.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigSoftReset.setDescription('')
sfpsDiagLogConfigSFPSVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 22), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsDiagLogConfigSFPSVlan.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsDiagLogConfigSFPSVlan.setDescription('')
sfpsAOPropertiesTable = MibTable((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1), )
if mibBuilder.loadTexts: sfpsAOPropertiesTable.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesTable.setDescription('')
sfpsAOPropertiesEntry = MibTableRow((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1), ).setIndexNames((0, "CTRON-SFPS-COMMON-MIB", "sfpsAOPropertiesTag"))
if mibBuilder.loadTexts: sfpsAOPropertiesEntry.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesEntry.setDescription('An entry in the table instanced by the tag.')
sfpsAOPropertiesTag = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesTag.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesTag.setDescription('')
sfpsAOPropertiesTagDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 2), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesTagDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesTagDescriptor.setDescription('')
sfpsAOPropertiesPrettyType = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 3), OctetString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesPrettyType.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesPrettyType.setDescription('')
sfpsAOPropertiesNumBytes = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesNumBytes.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesNumBytes.setDescription('')
sfpsAOPropertiesIsLimit = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesIsLimit.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesIsLimit.setDescription('')
sfpsAOPropertiesIsMobile = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesIsMobile.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesIsMobile.setDescription('')
sfpsAOPropertiesIsSingle = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesIsSingle.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesIsSingle.setDescription('')
sfpsAOPropertiesNoBlock = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesNoBlock.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesNoBlock.setDescription('')
sfpsAOPropertiesNoDelta = MibTableColumn((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesNoDelta.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesNoDelta.setDescription('')
sfpsAOPropertiesAPITag = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPITag.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPITag.setDescription('')
sfpsAOPropertiesAPITagString = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesAPITagString.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPITagString.setDescription('')
sfpsAOPropertiesAPIPrettyType = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesAPIPrettyType.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPIPrettyType.setDescription('')
sfpsAOPropertiesAPINumBytes = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpsAOPropertiesAPINumBytes.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPINumBytes.setDescription('')
sfpsAOPropertiesAPIIsLimit = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSet", 1), ("false", 2), ("true", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsLimit.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsLimit.setDescription('')
sfpsAOPropertiesAPIIsMobile = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSet", 1), ("false", 2), ("true", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsMobile.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsMobile.setDescription('')
sfpsAOPropertiesAPIIsSingle = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSet", 1), ("false", 2), ("true", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsSingle.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPIIsSingle.setDescription('')
sfpsAOPropertiesAPINoBlock = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSet", 1), ("false", 2), ("true", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPINoBlock.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPINoBlock.setDescription('')
sfpsAOPropertiesAPINoDelta = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("notSet", 1), ("false", 2), ("true", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPINoDelta.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPINoDelta.setDescription('')
sfpsAOPropertiesAPIAction = MibScalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("readProperties", 1), ("setProperties", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sfpsAOPropertiesAPIAction.setStatus('mandatory')
if mibBuilder.loadTexts: sfpsAOPropertiesAPIAction.setDescription('')
mibBuilder.exportSymbols("CTRON-SFPS-COMMON-MIB", sfpsDiagLogConfigDebug9=sfpsDiagLogConfigDebug9, sfpsDiagLogConfigOther=sfpsDiagLogConfigOther, sfpsGenericVersionVersion=sfpsGenericVersionVersion, sfpsDiagLogConfigStatus=sfpsDiagLogConfigStatus, sfpsDiagLogEndSystemTimeout=sfpsDiagLogEndSystemTimeout, sfpsAOPropertiesTable=sfpsAOPropertiesTable, sfpsDiagLogConfigIndex=sfpsDiagLogConfigIndex, sfpsAOPropertiesNoBlock=sfpsAOPropertiesNoBlock, sfpsAOPropertiesAPIAction=sfpsAOPropertiesAPIAction, sfpsDiagLogConfigSFPSVlan=sfpsDiagLogConfigSFPSVlan, sfpsDiagLogSwitchIdleInterval=sfpsDiagLogSwitchIdleInterval, sfpsAOPropertiesAPIPrettyType=sfpsAOPropertiesAPIPrettyType, sfpsDiagLogConfigFilterMatch=sfpsDiagLogConfigFilterMatch, sfpsGenericVersionEntry=sfpsGenericVersionEntry, sfpsAOPropertiesTag=sfpsAOPropertiesTag, HexInteger=HexInteger, sfpsDiagLogRedirectorNumPackets=sfpsDiagLogRedirectorNumPackets, sfpsDiagLogConfigFilterStop=sfpsDiagLogConfigFilterStop, sfpsAOPropertiesPrettyType=sfpsAOPropertiesPrettyType, sfpsDiagLogConfigLogIndex=sfpsDiagLogConfigLogIndex, sfpsAOPropertiesAPIIsLimit=sfpsAOPropertiesAPIIsLimit, sfpsAOPropertiesAPINumBytes=sfpsAOPropertiesAPINumBytes, sfpsDiagLogConfigInstance=sfpsDiagLogConfigInstance, sfpsAOPropertiesAPINoBlock=sfpsAOPropertiesAPINoBlock, sfpsAOPropertiesAPINoDelta=sfpsAOPropertiesAPINoDelta, sfpsAOPropertiesIsMobile=sfpsAOPropertiesIsMobile, sfpsDiagLogRedirectorWakeup=sfpsDiagLogRedirectorWakeup, sfpsAOPropertiesIsLimit=sfpsAOPropertiesIsLimit, sfpsDiagLogAccessPortControl=sfpsDiagLogAccessPortControl, sfpsAOPropertiesNoDelta=sfpsAOPropertiesNoDelta, sfpsAOPropertiesAPIIsSingle=sfpsAOPropertiesAPIIsSingle, sfpsDiagLogSignalThrottle=sfpsDiagLogSignalThrottle, sfpsAOPropertiesAPIIsMobile=sfpsAOPropertiesAPIIsMobile, sfpsGenericVersionHash=sfpsGenericVersionHash, sfpsDiagLogConfigTable=sfpsDiagLogConfigTable, sfpsAOPropertiesEntry=sfpsAOPropertiesEntry, sfpsDiagLogConfigEntry=sfpsDiagLogConfigEntry, sfpsGenericVersionName=sfpsGenericVersionName, sfpsDiagLogCallIdleTime=sfpsDiagLogCallIdleTime, sfpsGenericVersionTable=sfpsGenericVersionTable, sfpsDiagLogFilterAddTimer=sfpsDiagLogFilterAddTimer, sfpsDiagLogConfigStop=sfpsDiagLogConfigStop, sfpsAOPropertiesAPITagString=sfpsAOPropertiesAPITagString, sfpsAOPropertiesTagDescriptor=sfpsAOPropertiesTagDescriptor, sfpsDiagLogConfigFilterStart=sfpsDiagLogConfigFilterStart, sfpsDiagLogConfigStart=sfpsDiagLogConfigStart, sfpsGenericVersionMIBRev=sfpsGenericVersionMIBRev, sfpsAOPropertiesAPITag=sfpsAOPropertiesAPITag, sfpsDiagLogConfigSoftReset=sfpsDiagLogConfigSoftReset, sfpsAOPropertiesNumBytes=sfpsAOPropertiesNumBytes, sfpsDiagLogInlnFltrAgeTime=sfpsDiagLogInlnFltrAgeTime, sfpsAOPropertiesIsSingle=sfpsAOPropertiesIsSingle)
|
(integer, octet_string, object_identifier) = mibBuilder.importSymbols('ASN1', 'Integer', 'OctetString', 'ObjectIdentifier')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(value_size_constraint, value_range_constraint, constraints_union, single_value_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ValueSizeConstraint', 'ValueRangeConstraint', 'ConstraintsUnion', 'SingleValueConstraint', 'ConstraintsIntersection')
(sfps_system_generics, sfps_diag_event_log, sfps_ao_properties_api, sfps_ao_properties) = mibBuilder.importSymbols('CTRON-SFPS-INCLUDE-MIB', 'sfpsSystemGenerics', 'sfpsDiagEventLog', 'sfpsAOPropertiesAPI', 'sfpsAOProperties')
(notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'NotificationGroup', 'ModuleCompliance')
(integer32, time_ticks, counter32, counter64, gauge32, ip_address, object_identity, module_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, mib_identifier, unsigned32, iso, notification_type, bits) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'TimeTicks', 'Counter32', 'Counter64', 'Gauge32', 'IpAddress', 'ObjectIdentity', 'ModuleIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'MibIdentifier', 'Unsigned32', 'iso', 'NotificationType', 'Bits')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
class Hexinteger(Integer32):
pass
sfps_generic_version_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1))
if mibBuilder.loadTexts:
sfpsGenericVersionTable.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionTable.setDescription('Table describing the SFS generics and their versions that are contained within this image.')
sfps_generic_version_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1)).setIndexNames((0, 'CTRON-SFPS-COMMON-MIB', 'sfpsGenericVersionHash'))
if mibBuilder.loadTexts:
sfpsGenericVersionEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionEntry.setDescription('An entry in the table instanced by the Generic name.')
sfps_generic_version_hash = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsGenericVersionHash.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionHash.setDescription('Hash of the name to make it a unique entry.')
sfps_generic_version_name = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsGenericVersionName.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionName.setDescription('Name of the Generic.')
sfps_generic_version_version = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsGenericVersionVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionVersion.setDescription('Version stamp of the generic component.')
sfps_generic_version_mib_rev = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 3, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsGenericVersionMIBRev.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsGenericVersionMIBRev.setDescription('MIB version of the generic component.')
sfps_diag_log_config_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1))
if mibBuilder.loadTexts:
sfpsDiagLogConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigTable.setDescription('This table contains the informtion to configure an Event Logger object.')
sfps_diag_log_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1)).setIndexNames((0, 'CTRON-SFPS-COMMON-MIB', 'sfpsDiagLogConfigInstance'))
if mibBuilder.loadTexts:
sfpsDiagLogConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigEntry.setDescription('Each entry contains configuration data.')
sfps_diag_log_config_instance = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsDiagLogConfigInstance.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigInstance.setDescription('The instance of this Event Logger.')
sfps_diag_log_config_status = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('other', 1), ('disabled', 2), ('enabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStatus.setDescription('The status of this Event Logger object.')
sfps_diag_log_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsDiagLogConfigIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigIndex.setDescription('The current index in the circular buffer where events are being logged.')
sfps_diag_log_config_start = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStart.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStart.setDescription('The starting index in the circular buffer to display.')
sfps_diag_log_config_stop = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStop.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigStop.setDescription('The last index in the circular buffer to display.')
sfps_diag_log_config_log_index = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigLogIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigLogIndex.setDescription('The current index in the log buffer where we are looking.')
sfps_diag_log_config_filter_match = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 7), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterMatch.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterMatch.setDescription('The specified Event Id to log. A value of 0 will cause every event to be logged.')
sfps_diag_log_config_filter_start = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 8), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterStart.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterStart.setDescription('The beginning range of Event Ids to log.')
sfps_diag_log_config_filter_stop = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 9), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterStop.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigFilterStop.setDescription('The ending range of Event Ids to log.')
sfps_diag_log_access_port_control = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 10), hex_integer()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogAccessPortControl.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogAccessPortControl.setDescription('Leaf to be used to set a port bit mask. This bit mask represents which ports shall be statically set to be an ACCESS port. Bit 0 corresponds to Port 1.')
sfps_diag_log_call_idle_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 11), integer32().clone(60)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogCallIdleTime.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogCallIdleTime.setDescription('Leaf to be used to set a debug variable. (in seconds)')
sfps_diag_log_filter_add_timer = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 12), integer32().clone(900)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogFilterAddTimer.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogFilterAddTimer.setDescription('Leaf to be used to set how long a filter connection should be (Default : 900 seconds)')
sfps_diag_log_redirector_wakeup = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogRedirectorWakeup.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogRedirectorWakeup.setDescription('Leaf to be used to set how often the Redirector wakes up to service the queue (in seconds)')
sfps_diag_log_redirector_num_packets = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 14), integer32().clone(64)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogRedirectorNumPackets.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogRedirectorNumPackets.setDescription('Leaf to be used to set how many packets the Redirector reads off at a time.')
sfps_diag_log_end_system_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 15), integer32().clone(600)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogEndSystemTimeout.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogEndSystemTimeout.setDescription('Leaf to be used to set a debug variable. (Default : 10 minutes) (in seconds)')
sfps_diag_log_switch_idle_interval = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 16), integer32().clone(30)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogSwitchIdleInterval.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogSwitchIdleInterval.setDescription('Leaf to be used to set a debug variable. (in seconds)')
sfps_diag_log_inln_fltr_age_time = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 17), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogInlnFltrAgeTime.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogInlnFltrAgeTime.setDescription('Leaf to be used to set the BAF age time (seconds).')
sfps_diag_log_config_debug9 = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 18), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigDebug9.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigDebug9.setDescription('Leaf to be used to set a debug variable.')
sfps_diag_log_signal_throttle = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 19), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogSignalThrottle.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogSignalThrottle.setDescription('Leaf to be used to set the Signal Thottle knob. Throttling defaults to off. By setting it to 1,2,5, or 10 one can dictate the rate (signal/second) at which SFPS sends signals to the ACMS Signal Stack..')
sfps_diag_log_config_other = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('string', 1), ('integer', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigOther.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigOther.setDescription('Dictates the format of the Event to be displayed (either Text or Integer values).')
sfps_diag_log_config_soft_reset = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 21), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigSoftReset.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigSoftReset.setDescription('')
sfps_diag_log_config_sfps_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 2, 6, 1, 1, 1, 22), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsDiagLogConfigSFPSVlan.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsDiagLogConfigSFPSVlan.setDescription('')
sfps_ao_properties_table = mib_table((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1))
if mibBuilder.loadTexts:
sfpsAOPropertiesTable.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesTable.setDescription('')
sfps_ao_properties_entry = mib_table_row((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1)).setIndexNames((0, 'CTRON-SFPS-COMMON-MIB', 'sfpsAOPropertiesTag'))
if mibBuilder.loadTexts:
sfpsAOPropertiesEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesEntry.setDescription('An entry in the table instanced by the tag.')
sfps_ao_properties_tag = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesTag.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesTag.setDescription('')
sfps_ao_properties_tag_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 2), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesTagDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesTagDescriptor.setDescription('')
sfps_ao_properties_pretty_type = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 3), octet_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesPrettyType.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesPrettyType.setDescription('')
sfps_ao_properties_num_bytes = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesNumBytes.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesNumBytes.setDescription('')
sfps_ao_properties_is_limit = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsLimit.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsLimit.setDescription('')
sfps_ao_properties_is_mobile = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsMobile.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsMobile.setDescription('')
sfps_ao_properties_is_single = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsSingle.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesIsSingle.setDescription('')
sfps_ao_properties_no_block = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesNoBlock.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesNoBlock.setDescription('')
sfps_ao_properties_no_delta = mib_table_column((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesNoDelta.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesNoDelta.setDescription('')
sfps_ao_properties_api_tag = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPITag.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPITag.setDescription('')
sfps_ao_properties_api_tag_string = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPITagString.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPITagString.setDescription('')
sfps_ao_properties_api_pretty_type = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIPrettyType.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIPrettyType.setDescription('')
sfps_ao_properties_api_num_bytes = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINumBytes.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINumBytes.setDescription('')
sfps_ao_properties_api_is_limit = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSet', 1), ('false', 2), ('true', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsLimit.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsLimit.setDescription('')
sfps_ao_properties_api_is_mobile = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSet', 1), ('false', 2), ('true', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsMobile.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsMobile.setDescription('')
sfps_ao_properties_api_is_single = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSet', 1), ('false', 2), ('true', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsSingle.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIIsSingle.setDescription('')
sfps_ao_properties_api_no_block = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSet', 1), ('false', 2), ('true', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINoBlock.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINoBlock.setDescription('')
sfps_ao_properties_api_no_delta = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('notSet', 1), ('false', 2), ('true', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINoDelta.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPINoDelta.setDescription('')
sfps_ao_properties_api_action = mib_scalar((1, 3, 6, 1, 4, 1, 52, 4, 2, 4, 2, 1, 1, 5, 2, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('readProperties', 1), ('setProperties', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIAction.setStatus('mandatory')
if mibBuilder.loadTexts:
sfpsAOPropertiesAPIAction.setDescription('')
mibBuilder.exportSymbols('CTRON-SFPS-COMMON-MIB', sfpsDiagLogConfigDebug9=sfpsDiagLogConfigDebug9, sfpsDiagLogConfigOther=sfpsDiagLogConfigOther, sfpsGenericVersionVersion=sfpsGenericVersionVersion, sfpsDiagLogConfigStatus=sfpsDiagLogConfigStatus, sfpsDiagLogEndSystemTimeout=sfpsDiagLogEndSystemTimeout, sfpsAOPropertiesTable=sfpsAOPropertiesTable, sfpsDiagLogConfigIndex=sfpsDiagLogConfigIndex, sfpsAOPropertiesNoBlock=sfpsAOPropertiesNoBlock, sfpsAOPropertiesAPIAction=sfpsAOPropertiesAPIAction, sfpsDiagLogConfigSFPSVlan=sfpsDiagLogConfigSFPSVlan, sfpsDiagLogSwitchIdleInterval=sfpsDiagLogSwitchIdleInterval, sfpsAOPropertiesAPIPrettyType=sfpsAOPropertiesAPIPrettyType, sfpsDiagLogConfigFilterMatch=sfpsDiagLogConfigFilterMatch, sfpsGenericVersionEntry=sfpsGenericVersionEntry, sfpsAOPropertiesTag=sfpsAOPropertiesTag, HexInteger=HexInteger, sfpsDiagLogRedirectorNumPackets=sfpsDiagLogRedirectorNumPackets, sfpsDiagLogConfigFilterStop=sfpsDiagLogConfigFilterStop, sfpsAOPropertiesPrettyType=sfpsAOPropertiesPrettyType, sfpsDiagLogConfigLogIndex=sfpsDiagLogConfigLogIndex, sfpsAOPropertiesAPIIsLimit=sfpsAOPropertiesAPIIsLimit, sfpsAOPropertiesAPINumBytes=sfpsAOPropertiesAPINumBytes, sfpsDiagLogConfigInstance=sfpsDiagLogConfigInstance, sfpsAOPropertiesAPINoBlock=sfpsAOPropertiesAPINoBlock, sfpsAOPropertiesAPINoDelta=sfpsAOPropertiesAPINoDelta, sfpsAOPropertiesIsMobile=sfpsAOPropertiesIsMobile, sfpsDiagLogRedirectorWakeup=sfpsDiagLogRedirectorWakeup, sfpsAOPropertiesIsLimit=sfpsAOPropertiesIsLimit, sfpsDiagLogAccessPortControl=sfpsDiagLogAccessPortControl, sfpsAOPropertiesNoDelta=sfpsAOPropertiesNoDelta, sfpsAOPropertiesAPIIsSingle=sfpsAOPropertiesAPIIsSingle, sfpsDiagLogSignalThrottle=sfpsDiagLogSignalThrottle, sfpsAOPropertiesAPIIsMobile=sfpsAOPropertiesAPIIsMobile, sfpsGenericVersionHash=sfpsGenericVersionHash, sfpsDiagLogConfigTable=sfpsDiagLogConfigTable, sfpsAOPropertiesEntry=sfpsAOPropertiesEntry, sfpsDiagLogConfigEntry=sfpsDiagLogConfigEntry, sfpsGenericVersionName=sfpsGenericVersionName, sfpsDiagLogCallIdleTime=sfpsDiagLogCallIdleTime, sfpsGenericVersionTable=sfpsGenericVersionTable, sfpsDiagLogFilterAddTimer=sfpsDiagLogFilterAddTimer, sfpsDiagLogConfigStop=sfpsDiagLogConfigStop, sfpsAOPropertiesAPITagString=sfpsAOPropertiesAPITagString, sfpsAOPropertiesTagDescriptor=sfpsAOPropertiesTagDescriptor, sfpsDiagLogConfigFilterStart=sfpsDiagLogConfigFilterStart, sfpsDiagLogConfigStart=sfpsDiagLogConfigStart, sfpsGenericVersionMIBRev=sfpsGenericVersionMIBRev, sfpsAOPropertiesAPITag=sfpsAOPropertiesAPITag, sfpsDiagLogConfigSoftReset=sfpsDiagLogConfigSoftReset, sfpsAOPropertiesNumBytes=sfpsAOPropertiesNumBytes, sfpsDiagLogInlnFltrAgeTime=sfpsDiagLogInlnFltrAgeTime, sfpsAOPropertiesIsSingle=sfpsAOPropertiesIsSingle)
|
print("git UNT ")
print("git lunes")
|
print('git UNT ')
print('git lunes')
|
def metaLine2metaDict(metaLine):
metaDict = {}
fields = metaLine.split(';')
for field in fields:
fl = field.split('=')
subfieldName = fl[0]
fieldInfo = fl[1]
metaDict[subfieldName] = fieldInfo
return metaDict
def getGeneInformationFromGFFline(line, field):
result = False
if not line.startswith('#'):
ll = line.strip().split('\t')
if len(ll) > 2 and ll[2] == 'gene':
start = ll[3]
end = ll[4]
strand = ll[6]
metaLine = ll[8]
metaDict= metaLine2metaDict(metaLine)
result = metaDict[field]
return result
|
def meta_line2meta_dict(metaLine):
meta_dict = {}
fields = metaLine.split(';')
for field in fields:
fl = field.split('=')
subfield_name = fl[0]
field_info = fl[1]
metaDict[subfieldName] = fieldInfo
return metaDict
def get_gene_information_from_gf_fline(line, field):
result = False
if not line.startswith('#'):
ll = line.strip().split('\t')
if len(ll) > 2 and ll[2] == 'gene':
start = ll[3]
end = ll[4]
strand = ll[6]
meta_line = ll[8]
meta_dict = meta_line2meta_dict(metaLine)
result = metaDict[field]
return result
|
s=input('Enter Main String:')
subs=input('Enter Substring to search:')
if subs in s:
print(subs, 'Is found in Main String')
else:
print(subs, 'is not found in Main String')
|
s = input('Enter Main String:')
subs = input('Enter Substring to search:')
if subs in s:
print(subs, 'Is found in Main String')
else:
print(subs, 'is not found in Main String')
|
# automatically generated by the FlatBuffers compiler, do not modify
# namespace: FBS
class FByteDataType(object):
UINT8 = 0
FLOAT16 = 1
FLOAT32 = 2
PNG = 3
JPEG = 4
Other = 5
|
class Fbytedatatype(object):
uint8 = 0
float16 = 1
float32 = 2
png = 3
jpeg = 4
other = 5
|
FILE_PATH = './Day4/input.txt'
def parseData(recordData):
record = {}
for data in recordData:
fieldPairs = data.split(' ')
for fieldPair in fieldPairs:
field, value = fieldPair.split(':')
record[field] = value
if field not in ['byr', 'iyr', 'eyr', 'hgt', 'hcl', 'ecl', 'pid', 'cid']:
print('What no!!! {}'.format(field))
return record
def readFile(path):
f = open(path, 'r')
records = []
recordData = []
for l in f:
l = l.strip()
if l == '':
record = parseData(recordData)
records.append(record)
recordData = []
else:
recordData.append(l)
records.append(parseData(recordData))
return records
def isPassportValid(record):
requiredFields = ['byr', 'iyr', 'eyr', 'hgt', 'hcl', 'ecl', 'pid']
for field in requiredFields:
if not field in record:
print('missingField: {}. {}'.format(field, record))
return False
return True
def checkPassports():
records = readFile(FILE_PATH)
print('{} passports'.format(len(records)))
count = 0
for rec in records:
if isPassportValid(rec):
count += 1
return count
def validateBYR(byr):
if not byr.isnumeric() or len(byr) != 4:
return False
byrNum = int(byr)
return byrNum >= 1920 and byrNum <= 2002
def validateIYR(iyr):
if not iyr.isnumeric() or len(iyr) != 4:
return False
iyrNum = int(iyr)
return iyrNum >= 2010 and iyrNum <= 2020
def validateEYR(eyr):
if not eyr.isnumeric() or len(eyr) != 4:
return False
eyrNum = int(eyr)
return eyrNum >= 2020 and eyrNum <= 2030
def validateHeight(height):
if len(height) < 4:
return False
if height[-2:] == 'cm':
hVal = height[:-2]
if hVal.isnumeric():
hNum = int(hVal)
return hNum <= 193 and hNum >= 150
elif height[-2:] == 'in':
hVal = height[:-2]
if hVal.isnumeric():
hNum = int(hVal)
return hNum <= 76 and hNum >= 59
return False
def validateHCL(hcl):
if len(hcl) != 7 or hcl[0] != '#':
return False
validChars = '1234567890abcdef'
for i in range(1, len(hcl)):
if hcl[i] not in validChars:
return False
return True
def validateECL(ecl):
validClr = set(['amb', 'blu', 'brn', 'gry', 'grn', 'hzl', 'oth'])
return ecl in validClr
def validatePID(pid):
return len(pid) == 9 and pid.isnumeric()
def validatePassport(passport):
if not isPassportValid(passport):
return False
if not validateBYR(passport['byr']):
return False
if not validateIYR(passport['iyr']):
return False
if not validateEYR(passport['eyr']):
return False
if not validateHeight(passport['hgt']):
return False
if not validateHCL(passport['hcl']):
return False
if not validateECL(passport['ecl']):
return False
if not validatePID(passport['pid']):
return False
return True
def validatePassports():
records = readFile(FILE_PATH)
count = 0
for rec in records:
if validatePassport(rec):
count += 1
return count
if __name__ == "__main__":
# print(checkPassports())
print(validatePassports())
|
file_path = './Day4/input.txt'
def parse_data(recordData):
record = {}
for data in recordData:
field_pairs = data.split(' ')
for field_pair in fieldPairs:
(field, value) = fieldPair.split(':')
record[field] = value
if field not in ['byr', 'iyr', 'eyr', 'hgt', 'hcl', 'ecl', 'pid', 'cid']:
print('What no!!! {}'.format(field))
return record
def read_file(path):
f = open(path, 'r')
records = []
record_data = []
for l in f:
l = l.strip()
if l == '':
record = parse_data(recordData)
records.append(record)
record_data = []
else:
recordData.append(l)
records.append(parse_data(recordData))
return records
def is_passport_valid(record):
required_fields = ['byr', 'iyr', 'eyr', 'hgt', 'hcl', 'ecl', 'pid']
for field in requiredFields:
if not field in record:
print('missingField: {}. {}'.format(field, record))
return False
return True
def check_passports():
records = read_file(FILE_PATH)
print('{} passports'.format(len(records)))
count = 0
for rec in records:
if is_passport_valid(rec):
count += 1
return count
def validate_byr(byr):
if not byr.isnumeric() or len(byr) != 4:
return False
byr_num = int(byr)
return byrNum >= 1920 and byrNum <= 2002
def validate_iyr(iyr):
if not iyr.isnumeric() or len(iyr) != 4:
return False
iyr_num = int(iyr)
return iyrNum >= 2010 and iyrNum <= 2020
def validate_eyr(eyr):
if not eyr.isnumeric() or len(eyr) != 4:
return False
eyr_num = int(eyr)
return eyrNum >= 2020 and eyrNum <= 2030
def validate_height(height):
if len(height) < 4:
return False
if height[-2:] == 'cm':
h_val = height[:-2]
if hVal.isnumeric():
h_num = int(hVal)
return hNum <= 193 and hNum >= 150
elif height[-2:] == 'in':
h_val = height[:-2]
if hVal.isnumeric():
h_num = int(hVal)
return hNum <= 76 and hNum >= 59
return False
def validate_hcl(hcl):
if len(hcl) != 7 or hcl[0] != '#':
return False
valid_chars = '1234567890abcdef'
for i in range(1, len(hcl)):
if hcl[i] not in validChars:
return False
return True
def validate_ecl(ecl):
valid_clr = set(['amb', 'blu', 'brn', 'gry', 'grn', 'hzl', 'oth'])
return ecl in validClr
def validate_pid(pid):
return len(pid) == 9 and pid.isnumeric()
def validate_passport(passport):
if not is_passport_valid(passport):
return False
if not validate_byr(passport['byr']):
return False
if not validate_iyr(passport['iyr']):
return False
if not validate_eyr(passport['eyr']):
return False
if not validate_height(passport['hgt']):
return False
if not validate_hcl(passport['hcl']):
return False
if not validate_ecl(passport['ecl']):
return False
if not validate_pid(passport['pid']):
return False
return True
def validate_passports():
records = read_file(FILE_PATH)
count = 0
for rec in records:
if validate_passport(rec):
count += 1
return count
if __name__ == '__main__':
print(validate_passports())
|
print(60*'=')
print(' CAIXA ELETRONICO ')
print(60*'=')
total = int(input('Que valor deseja sacar ? R$ '))
cedula = 50
totalced = 0
while True:
if total >= cedula:
total-=cedula
totalced+=1
print(total)
else:
if totalced>0:
print(f'Total de {totalced} cedulas de R$ {cedula}')
if cedula==50:
cedula = 20
elif cedula==20:
cedula = 10
elif cedula==10:
cedula=1
totalced= 0
if total == 0:
break
print(60*'=')
print(' VOLTE SEMPRE ')
|
print(60 * '=')
print(' CAIXA ELETRONICO ')
print(60 * '=')
total = int(input('Que valor deseja sacar ? R$ '))
cedula = 50
totalced = 0
while True:
if total >= cedula:
total -= cedula
totalced += 1
print(total)
else:
if totalced > 0:
print(f'Total de {totalced} cedulas de R$ {cedula}')
if cedula == 50:
cedula = 20
elif cedula == 20:
cedula = 10
elif cedula == 10:
cedula = 1
totalced = 0
if total == 0:
break
print(60 * '=')
print(' VOLTE SEMPRE ')
|
class BaseRandomizer():
def __init__(self, projectName=None, seed=None, programMode=True) -> None:
self.seed = seed
if programMode:
self.inputPath = f'projects/{projectName}/tmp/text/'
else:
self.inputPath = f'projects/{projectName}/text/'
|
class Baserandomizer:
def __init__(self, projectName=None, seed=None, programMode=True) -> None:
self.seed = seed
if programMode:
self.inputPath = f'projects/{projectName}/tmp/text/'
else:
self.inputPath = f'projects/{projectName}/text/'
|
def padlindromic_date1(date1):
d,m,y = date1.split('/')
return (d+y)[::-1] == y and (m+d) [::-1] == y
def padlindromic_date2(date2):
dd,mm,yyyy = date2.split('/')
date11 = ''.join([dd,mm,yyyy])
date12 = ''.join([mm,dd,yyyy])
return date11 == date11[::-1] and date12 == date12[::-1]
def padlindromic_date3(date3):
d,m,y = date3.split('/')
return d==m and d+m==y[::-1]
pd1 = padlindromic_date1("02/02/2020"), padlindromic_date1("11/12/2019"), padlindromic_date1("11/12/2011")
print(pd1)
pd2 = padlindromic_date2("02/02/2020"), padlindromic_date2("11/12/2019"), padlindromic_date2("11/12/2011")
print(pd2)
pd3 = padlindromic_date3("02/02/2020"), padlindromic_date3("11/12/2019"), padlindromic_date3("11/12/2011")
print(pd3)
|
def padlindromic_date1(date1):
(d, m, y) = date1.split('/')
return (d + y)[::-1] == y and (m + d)[::-1] == y
def padlindromic_date2(date2):
(dd, mm, yyyy) = date2.split('/')
date11 = ''.join([dd, mm, yyyy])
date12 = ''.join([mm, dd, yyyy])
return date11 == date11[::-1] and date12 == date12[::-1]
def padlindromic_date3(date3):
(d, m, y) = date3.split('/')
return d == m and d + m == y[::-1]
pd1 = (padlindromic_date1('02/02/2020'), padlindromic_date1('11/12/2019'), padlindromic_date1('11/12/2011'))
print(pd1)
pd2 = (padlindromic_date2('02/02/2020'), padlindromic_date2('11/12/2019'), padlindromic_date2('11/12/2011'))
print(pd2)
pd3 = (padlindromic_date3('02/02/2020'), padlindromic_date3('11/12/2019'), padlindromic_date3('11/12/2011'))
print(pd3)
|
sum = 0
for i in range(1,1000):
if i%3==0 or i%5==0:
sum += i
print(sum)
|
sum = 0
for i in range(1, 1000):
if i % 3 == 0 or i % 5 == 0:
sum += i
print(sum)
|
class ORMBaseException(Exception):
def __init__(self):
self.message = ""
super().__init__()
def __str__(self):
return self.message
class FieldDoesNotExist(ORMBaseException):
def __init__(self, field: str):
self.message = f"This field '{field}' is not avaible"
|
class Ormbaseexception(Exception):
def __init__(self):
self.message = ''
super().__init__()
def __str__(self):
return self.message
class Fielddoesnotexist(ORMBaseException):
def __init__(self, field: str):
self.message = f"This field '{field}' is not avaible"
|
#Translation table for atomic numbers to element names and vice versa
#Note that the NIST database provides data up to atomic number 92 (= Uranium)
#Last column contains material densities
ElementaryData = [
(0, "Void", "X", 0),
(1, "Hydrogen", "H", 8.375E-05),
(2, "Helium", "He", 1.663E-04),
(3, "Lithium", "Li", 5.340E-01),
(4, "Beryllium", "Be", 1.848E+00),
(5, "Boron", "B", 2.370E+00),
(6, "Carbon", "C", 1.700E+00),
(7, "Nitrogen", "N", 1.165E-03),
(8, "Oxygen", "O", 1.332E-03),
(9, "Fluorine", "F", 1.580E-03),
(10, "Neon", "Ne", 8.385E-04),
(11, "Sodium", "Na", 9.710E-01),
(12, "Magnesium", "Mg", 1.740E+00),
(13, "Aluminium", "Al", 2.699E+00),
(14, "Silicon", "Si", 2.330E+00),
(15, "Phosphorus", "P", 2.200E+00),
(16, "Sulfur", "S", 2.000E+00),
(17, "Chlorine", "Cl", 2.995E-03),
(18, "Argon", "Ar", 1.662E-03),
(19, "Potassium", "K", 8.620E-01),
(20, "Calcium", "Ca", 1.550E+00),
(21, "Scandium", "Sc", 2.989E+00),
(22, "Titanium", "Ti", 4.540E+00),
(23, "Vanadium", "V", 6.110E+00),
(24, "Chromium", "Cr", 7.180E+00),
(25, "Manganese", "Mn", 7.440E+00),
(26, "Iron", "Fe", 7.874E+00),
(27, "Cobalt", "Co", 8.900E+00),
(28, "Nickel", "Ni", 8.902E+00),
(29, "Copper", "Cu", 8.960E+00),
(30, "Zinc", "Zn", 7.133E+00),
(31, "Gallium", "Ga", 5.904E+00),
(32, "Germanium", "Ge", 5.323E+00),
(33, "Arsenic", "As", 5.730E+00),
(34, "Selenium", "Se", 4.500E+00),
(35, "Bromine", "Br", 7.072E-03),
(36, "Krypton", "Kr", 3.478E-03),
(37, "Rubidium", "Rb", 1.532E+00),
(38, "Strontium", "Sr", 2.540E+00),
(39, "Yttrium", "Y", 4.469E+00),
(40, "Zirconium", "Zr", 6.506E+00),
(41, "Niobium", "Nb", 8.570E+00),
(42, "Molybdenum", "Mo", 1.022E+01),
(43, "Technetium", "Tc", 1.150E+01),
(44, "Ruthenium", "Ru", 1.241E+01),
(45, "Rhodium", "Rh", 1.241E+01),
(46, "Palladium", "Pd", 1.202E+01),
(47, "Silver", "Ag", 1.050E+01),
(48, "Cadmium", "Cd", 8.650E+00),
(49, "Indium", "In", 7.310E+00),
(50, "Tin", "Sn", 7.310E+00),
(51, "Antimony", "Sb", 6.691E+00),
(52, "Tellurium", "Te", 6.240E+00),
(53, "Iodine", "I", 4.930E+00),
(54, "Xenon", "Xe", 5.485E-03),
(55, "Cesium", "Cs", 1.873E+00),
(56, "Barium", "Ba", 3.500E+00),
(57, "Lanthanum", "La", 6.154E+00),
(58, "Cerium", "Ce", 6.657E+00),
(59, "Praseodymium", "Pr", 6.710E+00),
(60, "Neodymium", "Nd", 6.900E+00),
(61, "Promethium", "Pm", 7.220E+00),
(62, "Samarium", "Sm", 7.460E+00),
(63, "Europium", "Eu", 5.243E+00),
(64, "Gadolinium", "Gd", 7.900E+00),
(65, "Terbium", "Tb", 8.229E+00),
(66, "Dysprosium", "Dy", 8.550E+00),
(67, "Holmium", "Ho", 8.795E+00),
(68, "Erbium", "Er", 9.066E+00),
(69, "Thulium", "Tm", 9.321E+00),
(70, "Ytterbium", "Yb", 6.730E+00),
(71, "Lutetium", "Lu", 9.840E+00),
(72, "Hafnium", "Hf", 1.331E+01),
(73, "Tantalum", "Ta", 1.665E+01),
(74, "Tungsten", "W", 1.930E+01),
(75, "Rhenium", "Re", 2.102E+01),
(76, "Osmium", "Os", 2.257E+01),
(77, "Iridium", "Ir", 2.242E+01),
(78, "Platinum", "Pt", 2.145E+01),
(79, "Gold", "Au", 1.932E+01),
(80, "Mercury", "Hg", 1.355E+01),
(81, "Thallium", "Tl", 1.172E+01),
(82, "Lead", "Pb", 1.135E+01),
(83, "Bismuth", "Bi", 9.747E+00),
(84, "Polonium", "Po", 9.320E+00),
(85, "Astatine", "At", 1.000E+01),
(86, "Radon", "Rn", 9.066E-03),
(87, "Francium", "Fr", 1.000E+01),
(88, "Radium", "Ra", 5.000E+00),
(89, "Actinium", "Ac", 1.007E+01),
(90, "Thorium", "Th", 1.172E+01),
(91, "Protactinium", "Pa", 1.537E+01),
(92, "Uranium", "U", 1.895E+01),
(93, "Neptunium", "Np", 0),
(94, "Plutonium", "Pu", 0),
(95, "Americium", "Am", 0),
(96, "Curium", "Cm", 0),
(97, "Berkelium", "Bk", 0),
(98, "Californium", "Cf", 0),
(99, "Einsteinium", "Es", 0),
(100,"Fermium", "Fm", 0),
(101,"Mendelevium", "Md", 0),
(102,"Nobelium", "No", 0),
(103,"Lawrencium", "Lr", 0),
(104,"Rutherfordium", "Rf", 0),
(105,"Dubnium", "Db", 0),
(106,"Seaborgium", "Sg", 0),
(107,"Bohrium", "Bh", 0),
(108,"Hassium", "Hs", 0),
(109,"Meitnerium", "Mt", 0),
(110,"Darmstadtium", "Ds", 0),
(111,"Roentgenium" "Rg", 0),
(112,"Ununbium", "Uub", 0),
(113,"Ununtrium", "Uut", 0),
(114,"Ununquadium", "Uuq", 0),
(115,"Ununpentium", "Uup", 0),
(116,"Ununhexium", "Uuh", 0),
(117,"Ununseptium", "Uus", 0),
(118,"Ununoctium", "Uuo", 0)
]
|
elementary_data = [(0, 'Void', 'X', 0), (1, 'Hydrogen', 'H', 8.375e-05), (2, 'Helium', 'He', 0.0001663), (3, 'Lithium', 'Li', 0.534), (4, 'Beryllium', 'Be', 1.848), (5, 'Boron', 'B', 2.37), (6, 'Carbon', 'C', 1.7), (7, 'Nitrogen', 'N', 0.001165), (8, 'Oxygen', 'O', 0.001332), (9, 'Fluorine', 'F', 0.00158), (10, 'Neon', 'Ne', 0.0008385), (11, 'Sodium', 'Na', 0.971), (12, 'Magnesium', 'Mg', 1.74), (13, 'Aluminium', 'Al', 2.699), (14, 'Silicon', 'Si', 2.33), (15, 'Phosphorus', 'P', 2.2), (16, 'Sulfur', 'S', 2.0), (17, 'Chlorine', 'Cl', 0.002995), (18, 'Argon', 'Ar', 0.001662), (19, 'Potassium', 'K', 0.862), (20, 'Calcium', 'Ca', 1.55), (21, 'Scandium', 'Sc', 2.989), (22, 'Titanium', 'Ti', 4.54), (23, 'Vanadium', 'V', 6.11), (24, 'Chromium', 'Cr', 7.18), (25, 'Manganese', 'Mn', 7.44), (26, 'Iron', 'Fe', 7.874), (27, 'Cobalt', 'Co', 8.9), (28, 'Nickel', 'Ni', 8.902), (29, 'Copper', 'Cu', 8.96), (30, 'Zinc', 'Zn', 7.133), (31, 'Gallium', 'Ga', 5.904), (32, 'Germanium', 'Ge', 5.323), (33, 'Arsenic', 'As', 5.73), (34, 'Selenium', 'Se', 4.5), (35, 'Bromine', 'Br', 0.007072), (36, 'Krypton', 'Kr', 0.003478), (37, 'Rubidium', 'Rb', 1.532), (38, 'Strontium', 'Sr', 2.54), (39, 'Yttrium', 'Y', 4.469), (40, 'Zirconium', 'Zr', 6.506), (41, 'Niobium', 'Nb', 8.57), (42, 'Molybdenum', 'Mo', 10.22), (43, 'Technetium', 'Tc', 11.5), (44, 'Ruthenium', 'Ru', 12.41), (45, 'Rhodium', 'Rh', 12.41), (46, 'Palladium', 'Pd', 12.02), (47, 'Silver', 'Ag', 10.5), (48, 'Cadmium', 'Cd', 8.65), (49, 'Indium', 'In', 7.31), (50, 'Tin', 'Sn', 7.31), (51, 'Antimony', 'Sb', 6.691), (52, 'Tellurium', 'Te', 6.24), (53, 'Iodine', 'I', 4.93), (54, 'Xenon', 'Xe', 0.005485), (55, 'Cesium', 'Cs', 1.873), (56, 'Barium', 'Ba', 3.5), (57, 'Lanthanum', 'La', 6.154), (58, 'Cerium', 'Ce', 6.657), (59, 'Praseodymium', 'Pr', 6.71), (60, 'Neodymium', 'Nd', 6.9), (61, 'Promethium', 'Pm', 7.22), (62, 'Samarium', 'Sm', 7.46), (63, 'Europium', 'Eu', 5.243), (64, 'Gadolinium', 'Gd', 7.9), (65, 'Terbium', 'Tb', 8.229), (66, 'Dysprosium', 'Dy', 8.55), (67, 'Holmium', 'Ho', 8.795), (68, 'Erbium', 'Er', 9.066), (69, 'Thulium', 'Tm', 9.321), (70, 'Ytterbium', 'Yb', 6.73), (71, 'Lutetium', 'Lu', 9.84), (72, 'Hafnium', 'Hf', 13.31), (73, 'Tantalum', 'Ta', 16.65), (74, 'Tungsten', 'W', 19.3), (75, 'Rhenium', 'Re', 21.02), (76, 'Osmium', 'Os', 22.57), (77, 'Iridium', 'Ir', 22.42), (78, 'Platinum', 'Pt', 21.45), (79, 'Gold', 'Au', 19.32), (80, 'Mercury', 'Hg', 13.55), (81, 'Thallium', 'Tl', 11.72), (82, 'Lead', 'Pb', 11.35), (83, 'Bismuth', 'Bi', 9.747), (84, 'Polonium', 'Po', 9.32), (85, 'Astatine', 'At', 10.0), (86, 'Radon', 'Rn', 0.009066), (87, 'Francium', 'Fr', 10.0), (88, 'Radium', 'Ra', 5.0), (89, 'Actinium', 'Ac', 10.07), (90, 'Thorium', 'Th', 11.72), (91, 'Protactinium', 'Pa', 15.37), (92, 'Uranium', 'U', 18.95), (93, 'Neptunium', 'Np', 0), (94, 'Plutonium', 'Pu', 0), (95, 'Americium', 'Am', 0), (96, 'Curium', 'Cm', 0), (97, 'Berkelium', 'Bk', 0), (98, 'Californium', 'Cf', 0), (99, 'Einsteinium', 'Es', 0), (100, 'Fermium', 'Fm', 0), (101, 'Mendelevium', 'Md', 0), (102, 'Nobelium', 'No', 0), (103, 'Lawrencium', 'Lr', 0), (104, 'Rutherfordium', 'Rf', 0), (105, 'Dubnium', 'Db', 0), (106, 'Seaborgium', 'Sg', 0), (107, 'Bohrium', 'Bh', 0), (108, 'Hassium', 'Hs', 0), (109, 'Meitnerium', 'Mt', 0), (110, 'Darmstadtium', 'Ds', 0), (111, 'RoentgeniumRg', 0), (112, 'Ununbium', 'Uub', 0), (113, 'Ununtrium', 'Uut', 0), (114, 'Ununquadium', 'Uuq', 0), (115, 'Ununpentium', 'Uup', 0), (116, 'Ununhexium', 'Uuh', 0), (117, 'Ununseptium', 'Uus', 0), (118, 'Ununoctium', 'Uuo', 0)]
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = 'Phoenix1327'
a = 'ABC'
b = a
a = 'XYZ'
print(b)
# a --> 'ABC'
# b --> a --> 'ABC'(i.e. b --> 'ABC')
# a --> 'XYZ'
#exercise
n = 123
f = 456.789
s1 = 'Hello, world'
s2 = 'Hello, \'Adam\''
s3 = r'Hello, "Bart"'
s4 = r'''Hello,
Lisa!'''
print (n)
print (f)
print (s1)
print (s2)
print (s3)
print (s4)
|
__author__ = 'Phoenix1327'
a = 'ABC'
b = a
a = 'XYZ'
print(b)
n = 123
f = 456.789
s1 = 'Hello, world'
s2 = "Hello, 'Adam'"
s3 = 'Hello, "Bart"'
s4 = 'Hello,\nLisa!'
print(n)
print(f)
print(s1)
print(s2)
print(s3)
print(s4)
|
class URL(object):
BASE_URL = 'https://uatapi.nimbbl.tech/api'
ORDER_URL = "/orders"
AUTHURL = "v2/generate-token";
ORDER_CREATE = "v2/create-order";
ORDER_GET = "v2/get-order";
ORDER_LIST = "orders/many?f=&pt=yes";
LIST_QUERYPARAM1 = "f";
LIST_QUERYPARAM2 = "pt";
NO = "no";
Empty = "";
USER_CREATE = "users/create";
USER_GET = "users/one";
USER_LIST = "users/many?f=&pt=yes";
Transaction_CREATE = "transactions/create";
Transaction_GET = "transactions/one";
Transaction_LIST = "transactions/many?f=%sandpt=no";
ACCESS_KEY = "access_key";
SECRET_KEY = "access_secret";
TOKEN = "token";
Bearer = "Bearer ";
|
class Url(object):
base_url = 'https://uatapi.nimbbl.tech/api'
order_url = '/orders'
authurl = 'v2/generate-token'
order_create = 'v2/create-order'
order_get = 'v2/get-order'
order_list = 'orders/many?f=&pt=yes'
list_queryparam1 = 'f'
list_queryparam2 = 'pt'
no = 'no'
empty = ''
user_create = 'users/create'
user_get = 'users/one'
user_list = 'users/many?f=&pt=yes'
transaction_create = 'transactions/create'
transaction_get = 'transactions/one'
transaction_list = 'transactions/many?f=%sandpt=no'
access_key = 'access_key'
secret_key = 'access_secret'
token = 'token'
bearer = 'Bearer '
|
#!/usr/bin/python
# encoding: utf-8
def search(key, *args, kwargs):
pass
if __name__ == "__main__":
pass
|
def search(key, *args, kwargs):
pass
if __name__ == '__main__':
pass
|
# -*- coding: utf-8 -*-
# @Author: rish
# @Date: 2020-08-02 23:03:40
# @Last Modified by: rish
# @Last Modified time: 2020-08-04 01:20:05
def info():
print(
'er_extractor module - functionality for data collection of exchange\
rates based on provided arguments and persistence of data collected\
into the database.'
)
|
def info():
print('er_extractor module - functionality for data collection of exchange\t\trates based on provided arguments and persistence of data collected\t\tinto the database.')
|
class Node(object):
def __init__(self, value = None, leftChild = None, rightChild = None):
self.value = value
self.leftChild = leftChild
self.rightChild = rightChild
|
class Node(object):
def __init__(self, value=None, leftChild=None, rightChild=None):
self.value = value
self.leftChild = leftChild
self.rightChild = rightChild
|
class TreeNode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def lowestCommonAncestor(self, root, p, q):
if root is None or root == p or root == q:
return root
l = self.lowestCommonAncestor(root.left, p, q)
r = self.lowestCommonAncestor(root.right, p, q)
if l is None:
return r
else:
if r is None:
return l
return root
if __name__ == "__main__":
solution = Solution()
root = TreeNode(3)
root.left = TreeNode(5)
root.right = TreeNode(1)
root.left.left = TreeNode(6)
root.left.right = TreeNode(2)
root.left.right.left = TreeNode(7)
root.left.right.right = TreeNode(4)
root.right.left = TreeNode(0)
root.right.right = TreeNode(8)
print(solution.lowestCommonAncestor(root, root.left, root.right))
|
class Treenode:
def __init__(self, x):
self.val = x
self.left = None
self.right = None
class Solution:
def lowest_common_ancestor(self, root, p, q):
if root is None or root == p or root == q:
return root
l = self.lowestCommonAncestor(root.left, p, q)
r = self.lowestCommonAncestor(root.right, p, q)
if l is None:
return r
else:
if r is None:
return l
return root
if __name__ == '__main__':
solution = solution()
root = tree_node(3)
root.left = tree_node(5)
root.right = tree_node(1)
root.left.left = tree_node(6)
root.left.right = tree_node(2)
root.left.right.left = tree_node(7)
root.left.right.right = tree_node(4)
root.right.left = tree_node(0)
root.right.right = tree_node(8)
print(solution.lowestCommonAncestor(root, root.left, root.right))
|
class Writing:
'''
--help = This class provides the working of TOEFL Writing section.
'''
def question(self):
pass
def __init__(self):
pass
## TODO: Label - instructions, question
## TODO: Text Field - Write answerd
|
class Writing:
"""
--help = This class provides the working of TOEFL Writing section.
"""
def question(self):
pass
def __init__(self):
pass
|
class GameObject:
def __init__(self, data, localizer):
# self.key will be set prior to invoking _name()
self.key = self._key(data)
self.name = self._name(localizer)
self.prerequisites = self._prerequisites(data[self.key])
def _name(self, localizer):
return localizer.get(self.key)
def _key(self, data):
return list(data.keys())[0]
def _prerequisites(self, data):
return self._valueOrDefault(data, 'prerequisites', [])
def _valueOrDefault(self, data, name, default):
try:
val = next(iter(key for key
in data
if list(key.keys())[0] == name))[name]
except StopIteration:
val = default
return val
def _boolFromYes(self, data, name, default = False):
try:
yes_no = next(iter(key for key in data if list(key.keys())[0] == name))[name]
yes_no = True if yes_no.lower() == 'yes' else False
except StopIteration:
yes_no = default
return yes_no
|
class Gameobject:
def __init__(self, data, localizer):
self.key = self._key(data)
self.name = self._name(localizer)
self.prerequisites = self._prerequisites(data[self.key])
def _name(self, localizer):
return localizer.get(self.key)
def _key(self, data):
return list(data.keys())[0]
def _prerequisites(self, data):
return self._valueOrDefault(data, 'prerequisites', [])
def _value_or_default(self, data, name, default):
try:
val = next(iter((key for key in data if list(key.keys())[0] == name)))[name]
except StopIteration:
val = default
return val
def _bool_from_yes(self, data, name, default=False):
try:
yes_no = next(iter((key for key in data if list(key.keys())[0] == name)))[name]
yes_no = True if yes_no.lower() == 'yes' else False
except StopIteration:
yes_no = default
return yes_no
|
ALL_LETTERS = [
letter.lower()
for letter in [
"E",
"A",
"R",
"I",
"O",
"T",
"N",
"S",
"L",
"C",
"U",
"D",
"P",
"M",
"H",
"G",
"B",
"F",
"Y",
"W",
"K",
"V",
"X",
"Z",
"J",
"Q",
]
]
class GameState:
def __init__(self, word_length=5):
self.word_length = word_length
self.unexplored_letters = ALL_LETTERS
self.bad_letters = {idx: [] for idx in range(word_length)}
self.potential_letters = {idx: [] for idx in range(word_length)}
self.solution = {idx: [] for idx in range(word_length)}
def print(self):
print("Bad letters:")
print(self.bad_letters)
print("Potential letters:")
print(self.potential_letters)
print("All potential letters:")
print(self.all_potential_letters())
print("Solution:")
print(self.print_solution())
def print_solution(self):
solution = ""
for letter in self.solution.values():
if letter == []:
solution += "_"
else:
solution += letter
return solution
def update(self, guess, results):
# print(f"Updating Game State with guess={guess} and results={results}")
# print("Before update")
# self.print()
for idx in range(self.word_length):
try:
letter = guess[idx]
except IndexError:
raise IndexError(f"Entered guess length should be {self.word_length}")
try:
result = results[idx]
except IndexError:
raise IndexError(f"Entered result length should be {self.word_length}")
# remove from unexplored letters
try:
self.unexplored_letters.remove(letter)
except ValueError:
pass
if result == "0":
# remove from possible letters
self.add_bad_letter(letter, idx)
elif result == "1":
self.add_potential_letter(letter, idx)
elif result == "2":
# add to solution
self.add_valid_letter(letter, idx)
# self.print()
# input("After update")
def all_valid_letters(self):
return filter(lambda x: x not in self.bad_letters, ALL_LETTERS)
def required_letters(self):
return list(set([letter for letter in self.solution.values() if letter != []]))
def unchecked_vowels(self):
return [
letter for letter in ["a", "e", "i", "o", "u", "y"]
if letter in self.unexplored_letters
]
def possible_words(self, words, ignore_solution=False):
possible_words = []
for word in words:
invalid = False
if not self.valid_word(word) and not ignore_solution:
invalid = True
continue
if not invalid and not ignore_solution:
for idx, letter in self.solution.items():
if letter != [] and word[idx] != letter:
invalid = True
continue
if not invalid:
possible_words.append(word)
return possible_words
def valid_word(self, word):
# invalid if bad letters present at each index
for index, bad_letters in self.bad_letters.items():
if word[index] in bad_letters:
return False
return True
def add_bad_letter(self, letter, idx):
self.bad_letters[idx].append(letter)
self.bad_letters[idx] = list(set(self.bad_letters[idx]))
def add_potential_letter(self, letter, found_at):
try:
tmp = list(set(self.potential_letters[found_at]))
tmp.remove(letter)
self.potential_letters[found_at] = tmp
except ValueError:
pass
# add to misplaced letters
self.add_bad_letter(letter, found_at)
for idx in range(self.word_length):
if idx != found_at:
# only update other indices if not already part of the solution
if self.solution[idx] == []:
self.potential_letters[idx].append(letter)
def add_valid_letter(self, letter, index):
self.solution[index] = letter
self.potential_letters[index] = []
def all_potential_letters(self):
all_potential_letters = []
for _, letters in self.potential_letters.items():
all_potential_letters.extend(letters)
for _, letters in self.solution.items():
all_potential_letters.extend(letters)
return list(set(all_potential_letters))
def unexplored_vowels(self):
return [
letter for letter in ["a", "e", "i", "o", "u", "y"]
if letter in self.unexplored_letters
]
|
all_letters = [letter.lower() for letter in ['E', 'A', 'R', 'I', 'O', 'T', 'N', 'S', 'L', 'C', 'U', 'D', 'P', 'M', 'H', 'G', 'B', 'F', 'Y', 'W', 'K', 'V', 'X', 'Z', 'J', 'Q']]
class Gamestate:
def __init__(self, word_length=5):
self.word_length = word_length
self.unexplored_letters = ALL_LETTERS
self.bad_letters = {idx: [] for idx in range(word_length)}
self.potential_letters = {idx: [] for idx in range(word_length)}
self.solution = {idx: [] for idx in range(word_length)}
def print(self):
print('Bad letters:')
print(self.bad_letters)
print('Potential letters:')
print(self.potential_letters)
print('All potential letters:')
print(self.all_potential_letters())
print('Solution:')
print(self.print_solution())
def print_solution(self):
solution = ''
for letter in self.solution.values():
if letter == []:
solution += '_'
else:
solution += letter
return solution
def update(self, guess, results):
for idx in range(self.word_length):
try:
letter = guess[idx]
except IndexError:
raise index_error(f'Entered guess length should be {self.word_length}')
try:
result = results[idx]
except IndexError:
raise index_error(f'Entered result length should be {self.word_length}')
try:
self.unexplored_letters.remove(letter)
except ValueError:
pass
if result == '0':
self.add_bad_letter(letter, idx)
elif result == '1':
self.add_potential_letter(letter, idx)
elif result == '2':
self.add_valid_letter(letter, idx)
def all_valid_letters(self):
return filter(lambda x: x not in self.bad_letters, ALL_LETTERS)
def required_letters(self):
return list(set([letter for letter in self.solution.values() if letter != []]))
def unchecked_vowels(self):
return [letter for letter in ['a', 'e', 'i', 'o', 'u', 'y'] if letter in self.unexplored_letters]
def possible_words(self, words, ignore_solution=False):
possible_words = []
for word in words:
invalid = False
if not self.valid_word(word) and (not ignore_solution):
invalid = True
continue
if not invalid and (not ignore_solution):
for (idx, letter) in self.solution.items():
if letter != [] and word[idx] != letter:
invalid = True
continue
if not invalid:
possible_words.append(word)
return possible_words
def valid_word(self, word):
for (index, bad_letters) in self.bad_letters.items():
if word[index] in bad_letters:
return False
return True
def add_bad_letter(self, letter, idx):
self.bad_letters[idx].append(letter)
self.bad_letters[idx] = list(set(self.bad_letters[idx]))
def add_potential_letter(self, letter, found_at):
try:
tmp = list(set(self.potential_letters[found_at]))
tmp.remove(letter)
self.potential_letters[found_at] = tmp
except ValueError:
pass
self.add_bad_letter(letter, found_at)
for idx in range(self.word_length):
if idx != found_at:
if self.solution[idx] == []:
self.potential_letters[idx].append(letter)
def add_valid_letter(self, letter, index):
self.solution[index] = letter
self.potential_letters[index] = []
def all_potential_letters(self):
all_potential_letters = []
for (_, letters) in self.potential_letters.items():
all_potential_letters.extend(letters)
for (_, letters) in self.solution.items():
all_potential_letters.extend(letters)
return list(set(all_potential_letters))
def unexplored_vowels(self):
return [letter for letter in ['a', 'e', 'i', 'o', 'u', 'y'] if letter in self.unexplored_letters]
|
class PistonResponse:
def __init__(self, data: dict) -> None:
self.ran = data.get("ran")
self.language = data.get("language")
self.version = data.get("version")
self.stdout = data.get("stdout")
self.stderr = data.get("stderr")
self.output = data.get("output")
def __repr__(self) -> str:
return f"<PistonResponse language='{self.language}' version='{self.version}' ran={self.ran}>"
def __str__(self) -> str:
return self.output
def __eq__(self, o) -> bool:
if isinstance(o, PistonResponse):
return self.output == o.output
else:
return self.output == o.output
def __ne__(self, o) -> bool:
return not self.__eq__(o)
|
class Pistonresponse:
def __init__(self, data: dict) -> None:
self.ran = data.get('ran')
self.language = data.get('language')
self.version = data.get('version')
self.stdout = data.get('stdout')
self.stderr = data.get('stderr')
self.output = data.get('output')
def __repr__(self) -> str:
return f"<PistonResponse language='{self.language}' version='{self.version}' ran={self.ran}>"
def __str__(self) -> str:
return self.output
def __eq__(self, o) -> bool:
if isinstance(o, PistonResponse):
return self.output == o.output
else:
return self.output == o.output
def __ne__(self, o) -> bool:
return not self.__eq__(o)
|
# 066 - TRATANDO VARIOS VALORES V1.0
# LER VARIOS NUMEROS INTEIROS, PARA QUANDO FOR DIGITADO 999 E SOMAR TODOS DIGITADOS
# DESCONSIDERANDO 999
somar = qtd = 0
while True:
n = int(input('Digite um numero: [Digite 999 para parar[: '))
if n == 999:
break
somar += n
qtd += 1
print(f'Foram digitados {qtd} numeros, com o total de {somar}')
|
somar = qtd = 0
while True:
n = int(input('Digite um numero: [Digite 999 para parar[: '))
if n == 999:
break
somar += n
qtd += 1
print(f'Foram digitados {qtd} numeros, com o total de {somar}')
|
class MissingVenvException(Exception):
def __init__(self, msg=''):
super().__init__(msg)
class CantRunProgramException(Exception):
def __init__(self, msg=''):
super().__init__(msg)
class NoPythonExeFound(Exception):
def __init__(self, msg=''):
super().__init__(msg='')
class NoPluginsSelected(Exception):
def __init__(self, msg=''):
super().__init__(msg)
|
class Missingvenvexception(Exception):
def __init__(self, msg=''):
super().__init__(msg)
class Cantrunprogramexception(Exception):
def __init__(self, msg=''):
super().__init__(msg)
class Nopythonexefound(Exception):
def __init__(self, msg=''):
super().__init__(msg='')
class Nopluginsselected(Exception):
def __init__(self, msg=''):
super().__init__(msg)
|
# Sem else Condicao simples
# Com else Condicao composta
nome = str(input('Qual eh o seu nome: '))
if nome == 'Rafael':
print('Que nome lindo voce tem!')
else:
print('Seu nome eh tao normal!')
print('Bom dia, {}' .format(nome))
|
nome = str(input('Qual eh o seu nome: '))
if nome == 'Rafael':
print('Que nome lindo voce tem!')
else:
print('Seu nome eh tao normal!')
print('Bom dia, {}'.format(nome))
|
class Cliente:
def __init__(self, nome, sexo, data_nascimento, email, profissao, endereco):
self.__nome = nome
self.__sexo = sexo
self.__data_nascimento = data_nascimento
self.__email = email
self.__profissao = profissao
self.__endereco = endereco
@property
def nome(self):
return self.__nome
@nome.setter
def nome(self, nome):
self.__nome = nome
@property
def sexo(self):
return self.__sexo
@sexo.setter
def sexo(self, sexo):
self.__sexo = sexo
@property
def data_nascimento(self):
return self.__data_nascimento
@data_nascimento.setter
def data_nascimento(self, data_nascimento):
self.__data_nascimento = data_nascimento
@property
def email(self):
return self.__email
@email.setter
def email(self, email):
self.__email = email
@property
def profissao(self):
return self.__profissao
@profissao.setter
def profissao(self, profissao):
self.__profissao = profissao
@property
def endereco(self):
return self.__endereco
@endereco.setter
def endereco(self, endereco):
self.__endereco = endereco
|
class Cliente:
def __init__(self, nome, sexo, data_nascimento, email, profissao, endereco):
self.__nome = nome
self.__sexo = sexo
self.__data_nascimento = data_nascimento
self.__email = email
self.__profissao = profissao
self.__endereco = endereco
@property
def nome(self):
return self.__nome
@nome.setter
def nome(self, nome):
self.__nome = nome
@property
def sexo(self):
return self.__sexo
@sexo.setter
def sexo(self, sexo):
self.__sexo = sexo
@property
def data_nascimento(self):
return self.__data_nascimento
@data_nascimento.setter
def data_nascimento(self, data_nascimento):
self.__data_nascimento = data_nascimento
@property
def email(self):
return self.__email
@email.setter
def email(self, email):
self.__email = email
@property
def profissao(self):
return self.__profissao
@profissao.setter
def profissao(self, profissao):
self.__profissao = profissao
@property
def endereco(self):
return self.__endereco
@endereco.setter
def endereco(self, endereco):
self.__endereco = endereco
|
# 3.3 Write a program to prompt for a score between 0.0 and 1.0.
# If the score is out of range, print an error.
# If the score is between 0.0 and 1.0, print a grade using the following table:
# Score Grade
# >= 0.9 A
# >= 0.8 B
# >= 0.7 C
# >= 0.6 D
# < 0.6 F
# If the user enters a value out of range,
# print a suitable error message and exit. For the test, enter a score of 0.85.
score=float(input("Enter the score between 0.0 and 1.0"))
if score >1.0 and score<0.0:
print("Error out of range input.")
elif score >=0.9:
print("A")
elif score >=0.8:
print("B")
elif score >=0.7:
print("C")
elif score >= 0.6:
print("D")
elif score < 0.6:
print("F")
else:
print("Invalid or no input")
k="Hellow zworld"
print(max(k))
|
score = float(input('Enter the score between 0.0 and 1.0'))
if score > 1.0 and score < 0.0:
print('Error out of range input.')
elif score >= 0.9:
print('A')
elif score >= 0.8:
print('B')
elif score >= 0.7:
print('C')
elif score >= 0.6:
print('D')
elif score < 0.6:
print('F')
else:
print('Invalid or no input')
k = 'Hellow zworld'
print(max(k))
|
num_1 = int(input("Enter a number: "))
num_3 = 0
while num_1 > 0:
num_2 = num_1 % 10
print(num_2,end = "")
num_1 = num_1 // 10
num_3 = num_3 + num_2
print(" ",num_2**3)
print(" ")
print(num_3)
|
num_1 = int(input('Enter a number: '))
num_3 = 0
while num_1 > 0:
num_2 = num_1 % 10
print(num_2, end='')
num_1 = num_1 // 10
num_3 = num_3 + num_2
print(' ', num_2 ** 3)
print(' ')
print(num_3)
|
class Solution:
def maximalRectangle(self, matrix):
res, m, n = 0, len(matrix), len(matrix and matrix[0])
for i in range(m):
for j in range(n):
if matrix[i][j] != "0":
if j > 0 and matrix[i][j - 1] != "0":
matrix[i][j] = matrix[i][j - 1] + 1
else:
matrix[i][j] = 1
mn, sm, k = matrix[i][j], 0, i + 1
while k > 0 and matrix[k - 1][j] != "0":
if matrix[k - 1][j] < mn:
sm, mn = (i - k + 2) * matrix[k - 1][j], matrix[k - 1][j]
else:
sm += mn
if sm > res:
res = sm
k -= 1
return res
|
class Solution:
def maximal_rectangle(self, matrix):
(res, m, n) = (0, len(matrix), len(matrix and matrix[0]))
for i in range(m):
for j in range(n):
if matrix[i][j] != '0':
if j > 0 and matrix[i][j - 1] != '0':
matrix[i][j] = matrix[i][j - 1] + 1
else:
matrix[i][j] = 1
(mn, sm, k) = (matrix[i][j], 0, i + 1)
while k > 0 and matrix[k - 1][j] != '0':
if matrix[k - 1][j] < mn:
(sm, mn) = ((i - k + 2) * matrix[k - 1][j], matrix[k - 1][j])
else:
sm += mn
if sm > res:
res = sm
k -= 1
return res
|
database = {
'name': 'splice_auth_db',
'user': 'postgres',
'password': '#100100Borjan',
'host': '127.0.0.1',
'port': 5432,
}
mail = {
'host': 'localhost',
'port': 25,
'user': '',
'password': '#100100Borjan',
'tls': False,
'ssl': False,
}
|
database = {'name': 'splice_auth_db', 'user': 'postgres', 'password': '#100100Borjan', 'host': '127.0.0.1', 'port': 5432}
mail = {'host': 'localhost', 'port': 25, 'user': '', 'password': '#100100Borjan', 'tls': False, 'ssl': False}
|
class State(object):
def __init__(self, data):
self.data = data
pass
def change_data(self, data):
self.data = data
|
class State(object):
def __init__(self, data):
self.data = data
pass
def change_data(self, data):
self.data = data
|
# coding=utf-8
KEYBOARD_URL_MAPS = {
'default': [
[
'Site wide shortcuts', # keyboard category
[
# ('keyboard shortcut', 'keyboard info')
('s', 'Focus search bar'),
('g n', 'Go to Notifications'),
('g h', 'Go to personal page'),
('?', 'Bring up this help dialog'),
],
],
[
'Registration and login',
[
('l r', 'Open register window'),
('l o', 'Open login window'),
('l t', 'Logout'),
('l c', 'Close register/login window'),
],
],
[
'Notifications',
[
('e / I / y', 'Mark as read'),
],
],
[
'Personal page',
[
('g s', 'Go to personal settings page'),
('g t', 'Go to personal topic page'),
]
]
],
'/': [
[
'Topic list shortcuts',
[
('j', 'Move selection down'),
('k', 'Move selection up'),
('o', 'Open selection'),
],
],
[
'Create Topic',
[
('t o', 'Open create topic window'),
('t q', 'Close create topic window'),
('t s', 'Submit create topic'),
],
]
],
'/post': [
[
'Reply Topic',
[
('p o', 'Open reply topic window'),
('p q', 'Close reply topic window'),
('p s', 'Submit reply topic'),
],
],
]
}
# http://clrs.cc/
CATEGORY_COLORS = (
'#001f3f', # Navy
'#0074D9', # Blue
'#7FDBFF', # Aqua
'#39CCCC', # Teal
'#3D9970', # Olive
'#2ECC40', # Green
'#01FF70', # Lime
'#FFDC00', # Yellow
'#FF851B', # Orange
'#FF4136', # Red
'#85144b', # Maroon
'#F012BE', # Fuchsia
'#b10dc9', # Purple
'#111111', # black
'#aaaaaa', # Gray
'#dddddd', # Silver
)
|
keyboard_url_maps = {'default': [['Site wide shortcuts', [('s', 'Focus search bar'), ('g n', 'Go to Notifications'), ('g h', 'Go to personal page'), ('?', 'Bring up this help dialog')]], ['Registration and login', [('l r', 'Open register window'), ('l o', 'Open login window'), ('l t', 'Logout'), ('l c', 'Close register/login window')]], ['Notifications', [('e / I / y', 'Mark as read')]], ['Personal page', [('g s', 'Go to personal settings page'), ('g t', 'Go to personal topic page')]]], '/': [['Topic list shortcuts', [('j', 'Move selection down'), ('k', 'Move selection up'), ('o', 'Open selection')]], ['Create Topic', [('t o', 'Open create topic window'), ('t q', 'Close create topic window'), ('t s', 'Submit create topic')]]], '/post': [['Reply Topic', [('p o', 'Open reply topic window'), ('p q', 'Close reply topic window'), ('p s', 'Submit reply topic')]]]}
category_colors = ('#001f3f', '#0074D9', '#7FDBFF', '#39CCCC', '#3D9970', '#2ECC40', '#01FF70', '#FFDC00', '#FF851B', '#FF4136', '#85144b', '#F012BE', '#b10dc9', '#111111', '#aaaaaa', '#dddddd')
|
class Files:
path = './coordinates/'
qatar = 'qatar.csv'
western_sahara = 'western_sahara.csv'
uruguay = 'uruguay.csv'
djibouti = 'djibouti.csv'
random_10_cities = 'random_10_cities.csv'
random_20_cities = 'random_20_cities.csv'
random_30_cities = 'random_30_cities.csv'
# config
class ENConfig:
read_file = True
file_path = Files.path
city_file = Files.random_20_cities
city_num = 100
class SOMConfig:
read_file = True
file_path = Files.path
city_file = Files.random_20_cities
city_num = 30
class HNConfig:
read_file = True
file_path = Files.path
city_file = Files.random_10_cities
city_num = 30
class GifMakerConfig:
__path = './results/'
__problem_set = 'random_30_cities/'
__en_path = 'elastic_nets/'
__som_path = 'self_organizing_map/'
source_dir = __path + __problem_set + __en_path
|
class Files:
path = './coordinates/'
qatar = 'qatar.csv'
western_sahara = 'western_sahara.csv'
uruguay = 'uruguay.csv'
djibouti = 'djibouti.csv'
random_10_cities = 'random_10_cities.csv'
random_20_cities = 'random_20_cities.csv'
random_30_cities = 'random_30_cities.csv'
class Enconfig:
read_file = True
file_path = Files.path
city_file = Files.random_20_cities
city_num = 100
class Somconfig:
read_file = True
file_path = Files.path
city_file = Files.random_20_cities
city_num = 30
class Hnconfig:
read_file = True
file_path = Files.path
city_file = Files.random_10_cities
city_num = 30
class Gifmakerconfig:
__path = './results/'
__problem_set = 'random_30_cities/'
__en_path = 'elastic_nets/'
__som_path = 'self_organizing_map/'
source_dir = __path + __problem_set + __en_path
|
number = int(input("Which number do you want to check? "))
if number % 2==0:
print("Even")
else:
print("Odd")
|
number = int(input('Which number do you want to check? '))
if number % 2 == 0:
print('Even')
else:
print('Odd')
|
class DataRandomAccess():
def __init__(self, dataset):
self._dataset = dataset
self._scheme = dataset._scheme
def __getitem__(self, slice):
return self._scheme.ra(slice)
|
class Datarandomaccess:
def __init__(self, dataset):
self._dataset = dataset
self._scheme = dataset._scheme
def __getitem__(self, slice):
return self._scheme.ra(slice)
|
num = int(input())
num2 = int(input())
soma = num + num2
print('X = {}'.format(soma))
|
num = int(input())
num2 = int(input())
soma = num + num2
print('X = {}'.format(soma))
|
print('hey its a calculator')
print('select from thr below')
print('select 1 for addtion, 2 for multiplication, 3 for division, 4 for substract')
while True:
try:
opearation = int(input('select 1 or 2 or 3 or 4 : '))
break
except ValueError:
print("pls enter a number")
while True:
try:
num1 = int(input("pls enter the first number : "))
break
except ValueError:
print("pls enter a number")
while True:
try:
num2 = int(input("pls enter the 2nd number : "))
break
except ValueError:
print("enter a number")
if opearation is 1:
print('the sum of this is ', num1+num2)
elif opearation is 2:
print('the multiplication of this is ', num1*num2)
elif opearation is 3:
print('the division of this is ', num1/num2)
elif opearation is 4:
print('the substaction of this is ', num1-num2)
else:
print('pls select a vaild option')
|
print('hey its a calculator')
print('select from thr below')
print('select 1 for addtion, 2 for multiplication, 3 for division, 4 for substract')
while True:
try:
opearation = int(input('select 1 or 2 or 3 or 4 : '))
break
except ValueError:
print('pls enter a number')
while True:
try:
num1 = int(input('pls enter the first number : '))
break
except ValueError:
print('pls enter a number')
while True:
try:
num2 = int(input('pls enter the 2nd number : '))
break
except ValueError:
print('enter a number')
if opearation is 1:
print('the sum of this is ', num1 + num2)
elif opearation is 2:
print('the multiplication of this is ', num1 * num2)
elif opearation is 3:
print('the division of this is ', num1 / num2)
elif opearation is 4:
print('the substaction of this is ', num1 - num2)
else:
print('pls select a vaild option')
|
# Column/Label Types
NULL = 'null'
CATEGORICAL = 'categorical'
TEXT = 'text'
NUMERICAL = 'numerical'
ENTITY = 'entity'
# Feature Types
ARRAY = 'array'
|
null = 'null'
categorical = 'categorical'
text = 'text'
numerical = 'numerical'
entity = 'entity'
array = 'array'
|
class Driver:
def __init__(self, cores: int) -> None:
self._cores = cores
def shield_cpu(self, *cpu):
pass
def unshield_cpu(self, *cpu):
pass
|
class Driver:
def __init__(self, cores: int) -> None:
self._cores = cores
def shield_cpu(self, *cpu):
pass
def unshield_cpu(self, *cpu):
pass
|
i = 40 - 3
for j in range(3, 12, 2):
print(j)
i = i + 1
print(i)
|
i = 40 - 3
for j in range(3, 12, 2):
print(j)
i = i + 1
print(i)
|
#qualquer coisa
c =10
d =2
print(c/d)
a = c + d
e = c + d
|
c = 10
d = 2
print(c / d)
a = c + d
e = c + d
|
# Jim Lawless
# License: https://github.com/jimlawless/AoC2020/LICENSE
x=0
y=0
# treat N,W as -1, S,W as +1.
# NESW
directions=[-1,1,1,-1]
# begin with East
direction=1
infile = open("input.txt","r")
for line in infile:
line=line.rstrip()
cmd=line[0:1]
arg=int(line[1:])
if cmd=="F":
if((direction==0)or(direction==2)):
y=y+directions[direction]*arg
else:
x=x+directions[direction]*arg
if cmd=="N":
y=y+directions[0]*arg
if cmd=="E":
x=x+directions[1]*arg
if cmd=="W":
x=x+directions[3]*arg
if cmd=="S":
y=y+directions[2]*arg
if cmd=="R":
count=arg//90
direction=(direction+count)% len(directions)
if cmd=="L":
count=arg//90
while count>0:
direction=direction-1
if direction<0:
direction = 3
count=count -1
infile.close()
print("{} {}".format(x,y))
if x<0:
x=x*-1
if y<0:
y=y*-1
print(x+y)
|
x = 0
y = 0
directions = [-1, 1, 1, -1]
direction = 1
infile = open('input.txt', 'r')
for line in infile:
line = line.rstrip()
cmd = line[0:1]
arg = int(line[1:])
if cmd == 'F':
if direction == 0 or direction == 2:
y = y + directions[direction] * arg
else:
x = x + directions[direction] * arg
if cmd == 'N':
y = y + directions[0] * arg
if cmd == 'E':
x = x + directions[1] * arg
if cmd == 'W':
x = x + directions[3] * arg
if cmd == 'S':
y = y + directions[2] * arg
if cmd == 'R':
count = arg // 90
direction = (direction + count) % len(directions)
if cmd == 'L':
count = arg // 90
while count > 0:
direction = direction - 1
if direction < 0:
direction = 3
count = count - 1
infile.close()
print('{} {}'.format(x, y))
if x < 0:
x = x * -1
if y < 0:
y = y * -1
print(x + y)
|
print(4 + 4)
print(10 - 2)
print(2 * 4)
print(int(64 / 8))
|
print(4 + 4)
print(10 - 2)
print(2 * 4)
print(int(64 / 8))
|
def next0(A,n,x):
while x<n and A[x]!=0:
x+=1
return x
n=int(input())
A=[int(j) for j in input().split()]
b=0
for i in range(n):
if A[i]==1:
b=next0(A,n,max(b,i))
if b==n:
break
A[i],A[b]=A[b],A[i]
for i in A:
print(i,end=" ")
|
def next0(A, n, x):
while x < n and A[x] != 0:
x += 1
return x
n = int(input())
a = [int(j) for j in input().split()]
b = 0
for i in range(n):
if A[i] == 1:
b = next0(A, n, max(b, i))
if b == n:
break
(A[i], A[b]) = (A[b], A[i])
for i in A:
print(i, end=' ')
|
c = get_config() # get the config object
c.IPKernelApp.pylab = 'inline' # in-line figure when using Matplotlib
c.NotebookApp.ip = '*'
c.NotebookApp.allow_remote_access = True # allow access from outside localhost
c.NotebookApp.open_browser = False # do not open a browser window by default when using notebooks
c.NotebookApp.notebook_dir = '/notebooks'
c.NotebookApp.allow_root = True # Allow to run Jupyter from root user inside Docker container
|
c = get_config()
c.IPKernelApp.pylab = 'inline'
c.NotebookApp.ip = '*'
c.NotebookApp.allow_remote_access = True
c.NotebookApp.open_browser = False
c.NotebookApp.notebook_dir = '/notebooks'
c.NotebookApp.allow_root = True
|
class Solution:
def reverse(self, x: int) -> int:
reverse = ''
num = x
if num < 0:
neg = True
num = -1 * (num)
num = str(num)
for i in range (len(num),0,-1):
reverse += num[i-1]
final = (-1 * int(reverse))
else:
num = str(num)
for i in range (len(num),0,-1):
reverse += num[i-1]
final = (int(reverse))
if(final in range((-2**31),((2**31)-1))):
return final
else:
return 0
|
class Solution:
def reverse(self, x: int) -> int:
reverse = ''
num = x
if num < 0:
neg = True
num = -1 * num
num = str(num)
for i in range(len(num), 0, -1):
reverse += num[i - 1]
final = -1 * int(reverse)
else:
num = str(num)
for i in range(len(num), 0, -1):
reverse += num[i - 1]
final = int(reverse)
if final in range(-2 ** 31, 2 ** 31 - 1):
return final
else:
return 0
|
def groupAnagrams(strs):
x=[[i,tuple(sorted(list(i)))] for i in strs]
# print(x)
d= {}
for i,j in x:
if j not in d:
d[j] = [i]
else:
d[j].append(i)
return(d.values())
|
def group_anagrams(strs):
x = [[i, tuple(sorted(list(i)))] for i in strs]
d = {}
for (i, j) in x:
if j not in d:
d[j] = [i]
else:
d[j].append(i)
return d.values()
|
number = "9,223,372,036,854,775,807"
cleanedNumber = ''
for i in range(0, len(number)):
if number[i] in '0123456789':
cleanedNumber = number[i]
newNumber = int(cleanedNumber)
print("The number is {} ".format(newNumber))
x = 23
x += 1
print(x)
x -= 4
print(x)
x *= 5
print(x)
x /= 4
print(x)
x **=2
print(x)
x %= 60
print(x)
greeting = "Good "
greeting += "morning "
print(greeting)
greeting *= 5
print(greeting)
# += -= *= /= %= **= <<= >>= &= ^= |=
|
number = '9,223,372,036,854,775,807'
cleaned_number = ''
for i in range(0, len(number)):
if number[i] in '0123456789':
cleaned_number = number[i]
new_number = int(cleanedNumber)
print('The number is {} '.format(newNumber))
x = 23
x += 1
print(x)
x -= 4
print(x)
x *= 5
print(x)
x /= 4
print(x)
x **= 2
print(x)
x %= 60
print(x)
greeting = 'Good '
greeting += 'morning '
print(greeting)
greeting *= 5
print(greeting)
|
n, l, r = map(int, input().split())
box = []
for i in range(n):
box += [list(map(int, input().split()))]
total = 0
for i in range(n):
firstX = box[i][0] + box[i][1]
lastX = box[i][2] + box[i][3]
fx, lx = max(firstX, l), min(lastX, r)
uly = min(lx - box[i][2], box[i][3])
dly = max(box[i][3]+(lx - box[i][2]), box[i][1])
ufy = max(box[i][0] - fx, box[i][3])
dfy = min(-(box[i][0] - fx), box[i][1])
print(uly, dly, ufy, dfy)
print(box[i][1], box[i][3])
total += (lx - fx) * (box[i][2] - box[i][0])
print(total)
# uly = min(lx - box[i][2], box[i][3])
# dly = max(-(lx - box[i][2]), box[i][1])
# ufy = max(box[i][0] - fx, box[i][3])
# dfy = min(-(box[i][0] - fx), box[i][1])
# uly = (lx - box[i][2])
# dly = -(lx - box[i][2])
#
# ufy = (box[i][0] - fx)
# dfy = -(box[i][0] - fx)
|
(n, l, r) = map(int, input().split())
box = []
for i in range(n):
box += [list(map(int, input().split()))]
total = 0
for i in range(n):
first_x = box[i][0] + box[i][1]
last_x = box[i][2] + box[i][3]
(fx, lx) = (max(firstX, l), min(lastX, r))
uly = min(lx - box[i][2], box[i][3])
dly = max(box[i][3] + (lx - box[i][2]), box[i][1])
ufy = max(box[i][0] - fx, box[i][3])
dfy = min(-(box[i][0] - fx), box[i][1])
print(uly, dly, ufy, dfy)
print(box[i][1], box[i][3])
total += (lx - fx) * (box[i][2] - box[i][0])
print(total)
|
#
D = {4:5, "apple":6, (4,3):"test"}
print(D)
print('\n')
for key in D:
print(key,D[key])
print('\n')
for item in D.items():
print(item)
print('\n')
for key,value in D.items():
print(key,value)
print('\n')
for value in D.values():
print(value)
print('\n')
L = [4 , 5, 7]
for ind,item in enumerate(L):
print(ind,item)
print('\n')
for i in range(len(L)):
print(i,L[i])
print('\n')
for i in range(5):
print(i,D.get(i,"None"))
print('\n')
|
d = {4: 5, 'apple': 6, (4, 3): 'test'}
print(D)
print('\n')
for key in D:
print(key, D[key])
print('\n')
for item in D.items():
print(item)
print('\n')
for (key, value) in D.items():
print(key, value)
print('\n')
for value in D.values():
print(value)
print('\n')
l = [4, 5, 7]
for (ind, item) in enumerate(L):
print(ind, item)
print('\n')
for i in range(len(L)):
print(i, L[i])
print('\n')
for i in range(5):
print(i, D.get(i, 'None'))
print('\n')
|
# From : https://en.wikipedia.org/wiki/Computation_of_cyclic_redundancy_checks
# Most significant bit first (big-endian)
# x^16+x^12+x^5+1 = (1) 0001 0000 0010 0001 = 0x1021
def crc16(data):
rem = 0
n = 16
# A popular variant complements rem here
for d in data:
rem = rem ^ (d << (n-8)) # n = 16 in this example
for j in range(1,8):
# Assuming 8 bits per byte
if rem & 0x8000:
# if leftmost (most significant) bit is set
rem = (rem << 1) ^ 0x1021
else:
rem = rem << 1
rem = rem & 0xffff # Trim remainder to 16 bits
# A popular variant complements rem here
return rem
|
def crc16(data):
rem = 0
n = 16
for d in data:
rem = rem ^ d << n - 8
for j in range(1, 8):
if rem & 32768:
rem = rem << 1 ^ 4129
else:
rem = rem << 1
rem = rem & 65535
return rem
|
flash_size_table = {}
flash_size_table['4'] = 16
flash_size_table['6'] = 32
flash_size_table['8'] = 64
flash_size_table['B'] = 128
flash_size_table['C'] = 256
flash_size_table['D'] = 384
flash_size_table['E'] = 512
flash_size_table['F'] = 768
flash_size_table['G'] = 1024
flash_size_table['I'] = 2048
flash_size_table['K'] = 3072
def get_size_kb(soc):
flash_size = flash_size_table[soc[-1]]
if flash_size != 0:
return flash_size
else:
return 0
def get_size_byte(soc):
flash_size = flash_size_table[soc[-1]]
if flash_size != 0:
return flash_size * 1024
else:
return 0
def get_startaddr(soc):
return '08000000'
|
flash_size_table = {}
flash_size_table['4'] = 16
flash_size_table['6'] = 32
flash_size_table['8'] = 64
flash_size_table['B'] = 128
flash_size_table['C'] = 256
flash_size_table['D'] = 384
flash_size_table['E'] = 512
flash_size_table['F'] = 768
flash_size_table['G'] = 1024
flash_size_table['I'] = 2048
flash_size_table['K'] = 3072
def get_size_kb(soc):
flash_size = flash_size_table[soc[-1]]
if flash_size != 0:
return flash_size
else:
return 0
def get_size_byte(soc):
flash_size = flash_size_table[soc[-1]]
if flash_size != 0:
return flash_size * 1024
else:
return 0
def get_startaddr(soc):
return '08000000'
|
def test():
assert (
"import Doc, Span" in __solution__ or "import Span, Doc" in __solution__
), "Did you import the Doc and Span correctly?"
assert doc.text == "I like David Bowie", "Did you create the Doc correctly?"
assert span.text == "David Bowie", "Did you create the span correctly?"
assert span.label_ == "PERSON", "Did you add the label PERSON to the span?"
assert "doc.ents =" in __solution__, "Did you overwrite the doc.ents?"
assert len(doc.ents) == 1, "Did you add the span to the doc.ents?"
assert (
list(doc.ents)[0].text == "David Bowie"
), "Did you add the span to the doc.ents?"
__msg__.good(
"Perfect! Creating spaCy's objects manually and modifying the "
"entities will come in handy later when you're writing your own "
"information extraction pipelines."
)
|
def test():
assert 'import Doc, Span' in __solution__ or 'import Span, Doc' in __solution__, 'Did you import the Doc and Span correctly?'
assert doc.text == 'I like David Bowie', 'Did you create the Doc correctly?'
assert span.text == 'David Bowie', 'Did you create the span correctly?'
assert span.label_ == 'PERSON', 'Did you add the label PERSON to the span?'
assert 'doc.ents =' in __solution__, 'Did you overwrite the doc.ents?'
assert len(doc.ents) == 1, 'Did you add the span to the doc.ents?'
assert list(doc.ents)[0].text == 'David Bowie', 'Did you add the span to the doc.ents?'
__msg__.good("Perfect! Creating spaCy's objects manually and modifying the entities will come in handy later when you're writing your own information extraction pipelines.")
|
# mensagens que aparecem no "sistema"
# instructions
INPUT_INST = "Enter info:"
VAL1 = "FIRST VALUE"
VAL2 = "SECOND VALUE"
VAL3 = "THIRD VALUE"
op1 = "1 TO TEST A SAMPLE"
op2 = "2 TO END CONECTION"
# success
CONNECTED = "CONNECTED TO SERVER." # 00
PROCESSING = "10 - Data received, PROCESSING..." # 10 data received and accepted
OK = "20 - OK" # 20 data return success
# error
CONNECTION_ERROR = "53 - Service Unavailable :(" # 53 Service Unavailable
SERVER_ERROR = "50 - Internal Server Error." # 50 Internal Server Error
INPUT_LEN = "40 - Request Entity Too Large." # 40 Request Entity Too Large
INPUT_ERROR = "21 - invalid data type" # 21 invalid data type
NO_CONTENT = "22 - No content to send back" # 22 no content to send back
BAD_REQUEST = "30 - bad request" # 30 bad request
# outher
CONNECTION_ENDED = "Connection ended"
SAMPLE_CLASS = "The sample belongs to class: "
|
input_inst = 'Enter info:'
val1 = 'FIRST VALUE'
val2 = 'SECOND VALUE'
val3 = 'THIRD VALUE'
op1 = '1 TO TEST A SAMPLE'
op2 = '2 TO END CONECTION'
connected = 'CONNECTED TO SERVER.'
processing = '10 - Data received, PROCESSING...'
ok = '20 - OK'
connection_error = '53 - Service Unavailable :('
server_error = '50 - Internal Server Error.'
input_len = '40 - Request Entity Too Large.'
input_error = '21 - invalid data type'
no_content = '22 - No content to send back'
bad_request = '30 - bad request'
connection_ended = 'Connection ended'
sample_class = 'The sample belongs to class: '
|
pos=-1
def binarysearch(lst,num):
'''Function that returns True and index number of element if found else returns False and -1'''
lst.sort()#any sort algorithm can be used
print(lst)
l=0
u=len(lst)-1
while l<= u:
mid=(u+l)//2
if lst[mid] == num:
global pos
pos=mid
return True,pos
else:
if lst[mid] < num:
l=mid+1
else:
u=mid-1
return False,pos
a=[1,3,12,8,34,2]
s,index=binarysearch(a,102)
print(s,'\nIndex:',index)
|
pos = -1
def binarysearch(lst, num):
"""Function that returns True and index number of element if found else returns False and -1"""
lst.sort()
print(lst)
l = 0
u = len(lst) - 1
while l <= u:
mid = (u + l) // 2
if lst[mid] == num:
global pos
pos = mid
return (True, pos)
elif lst[mid] < num:
l = mid + 1
else:
u = mid - 1
return (False, pos)
a = [1, 3, 12, 8, 34, 2]
(s, index) = binarysearch(a, 102)
print(s, '\nIndex:', index)
|
suffix = ['', 'K', 'M', 'B', 'T', 'P']
def human_format(num):
num = float('{:.3g}'.format(num))
magnitude = 0
while abs(num) >= 1000:
magnitude += 1
num /= 1000.0
return '{}{}'.format('{:f}'.format(num).rstrip('0').rstrip('.'), suffix[magnitude])
|
suffix = ['', 'K', 'M', 'B', 'T', 'P']
def human_format(num):
num = float('{:.3g}'.format(num))
magnitude = 0
while abs(num) >= 1000:
magnitude += 1
num /= 1000.0
return '{}{}'.format('{:f}'.format(num).rstrip('0').rstrip('.'), suffix[magnitude])
|
#
# PySNMP MIB module NNCEXTSPVC-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/NNCEXTSPVC-MIB
# Produced by pysmi-0.3.4 at Wed May 1 14:22:57 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, ValueSizeConstraint, ValueRangeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "SingleValueConstraint", "ValueSizeConstraint", "ValueRangeConstraint")
atmVplVpi, atmVclVci, atmVclVpi = mibBuilder.importSymbols("ATM-MIB", "atmVplVpi", "atmVclVci", "atmVclVpi")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
nncExtensions, = mibBuilder.importSymbols("NNCGNI0001-SMI", "nncExtensions")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
Integer32, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, MibIdentifier, TimeTicks, Bits, Counter64, Counter32, IpAddress, iso, NotificationType, ObjectIdentity, Gauge32, Unsigned32 = mibBuilder.importSymbols("SNMPv2-SMI", "Integer32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "MibIdentifier", "TimeTicks", "Bits", "Counter64", "Counter32", "IpAddress", "iso", "NotificationType", "ObjectIdentity", "Gauge32", "Unsigned32")
RowStatus, DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "RowStatus", "DisplayString", "TextualConvention")
nncExtSpvc = ModuleIdentity((1, 3, 6, 1, 4, 1, 123, 3, 82))
if mibBuilder.loadTexts: nncExtSpvc.setLastUpdated('20010215121735Z')
if mibBuilder.loadTexts: nncExtSpvc.setOrganization('Alcatel CID')
if mibBuilder.loadTexts: nncExtSpvc.setContactInfo('Alcatel CID Postal: 600 March Road Kanata, Ontario Canada K2K 2E6 Phone: +1 613 591 3600 Fax: +1 613 591 3680')
if mibBuilder.loadTexts: nncExtSpvc.setDescription("This module contains Alcatel CID's proprietary MIB definition for managing Soft Permanent Virtual Connections (SPVCs). This MIB supports the creation, modification, query, and deletion of SPVCs (Soft Permanent Virtual Connections), on Cell Relay (ATM), Frame Relay, and Circuit Emulation endpoints. For Cell Relay-based endpoints, Permanent Virtual Path Connection (PVPC) and Permanent Virtual Channel Connection (PVCC) are supported, while SPVCCs are supported on Frame Relay and Circuit Emulation endpoints. Cell Relay SPVCs, Frame Relay SPVCs and Circuit Emulation SPVCs are supported in this MIB. SPVCs with any other service types are not supported at this point. For SPVCs interworking across different endpoint types, CR to FR, FR to CR, CR to CE, CE to CR connections are supported. CE to FR or FR to CE are not suppported. Operator directed routing for SPVC connections is not supported at this point. To create an SPVC, the required MIB objects from the destination table must be configured and sent to the destination endpoint. Next, the MIB objects from the source endpoint table (based on the endpoint type and SPVC type - either nncCrSpvpcTable, nncCrSpvccTable, nncFrSpvcTable, or nncCeSpvcTable) are configured and sent to the source endpoint. Assuming a PDU with a RowStatus of 'createAndGo' or 'Active' has been received, if the adminStatus of the SPVC is set to 'enabled', the SPVC will be connected; if the adminStatus of the SPVC is set to 'disabled', the SPVC will be configured but not connected. SPVC creation SET-REQuests can be sent two ways: using a RowStatus value of 'createAndGo', or using multiple SET-REQs using RowStatus values of 'createAndWait' and 'active'. Creating an SPVC using rowStatus=createAndWait(5) In the case of multiple SET-REQs, the RowStatus is set to createAndWait(5) for all but the last SET-REQ, and set to active(1) for the last SET-REQ. The SPVC is configured only after the last PDU (with RowStatus as 'active') is received. Creating an SPVC using rowStatus=createAndGo(4) In the other case, all required MIB objects can fit in one SET-REQ. If using only one SET-REQ, the RowStatus should be set to createAndGo(4). In both cases, default values for MIB objects will be used wherever possible. To delete an SPVC, the correct table objects must be sent to both the destination endpoint and the source endpoint for the given SPVC, using the correct index, and setting the rowStatus to 'destroy'. This will delete the specified SPVC. Some abreviations: abr/ABR/Abr: Available Bit Rate Bwd: Backward. For traffice descriptors from destination endpoint to source endpoint (receiving traffic) cbr/CBR/Cbr: Constant Bit Rate Dst: Destination endpoint Fwd: Forward. For traffic descriptors from source endpoint to destination endpoint (transmitting traffic) nt-vbr/nrtvbr/NRT-VBR: Non-Real-Time Variable Bit Rate Src: Source endpoint Targ: Target. For the destination endpoint info in source endpoint table ubr/UBR/Ubr: Unspecified Bit Rate ")
class AtmFormatDisplay(TextualConvention, OctetString):
description = 'This display is for the ATM address prefix format. The following formats which are supported are displayed: DCC ATM Format ------------------------------------------------------------- |A | | | | | | | | | | | | | | | | | | | S| |F | DCC | HO-DSP | ESI | E| |I | | | | | | | | | | | | | | | | | | | L| ------------------------------------------------------------- |...IDP..|......................DSP.........................| |.IDI.| ICD ATM Format ------------------------------------------------------------- |A | | | | | | | | | | | | | | | | | | | S| |F | ICD | HO-DSP | ESI | E| |I | | | | | | | | | | | | | | | | | | | L| ------------------------------------------------------------- |...IDP..|......................DSP.........................| |.IDI.| For the DCC ATM Format, the following format will be displayed: afi-dcc-hodsp-esi-sel For the ICD ATM Format, the following format will be displayed: afi-icd-hodsp-esi-sel Abbreviations: IDP: Initial Domain Part AFI: Authority and Format Identifier IDI: Initial Domain Part DCC: Data Country Code ICD: International Code Designator DSP: Domain Specific Part HO-DSP: The coding of this field is specified by the authority or the coding scheme identified by the IDP. ESI: End System Identifier SEL: Selector '
status = 'current'
displayHint = '1x-2x-10x-6x-1x'
subtypeSpec = OctetString.subtypeSpec + ValueSizeConstraint(20, 20)
fixedLength = 20
nncExtSpvcObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 1))
nncExtSpvcGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 3))
nncExtSpvcCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 4))
nncCrSpvpcTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1), )
if mibBuilder.loadTexts: nncCrSpvpcTable.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcTable.setDescription('nncCrSpvpcTable contains all the objects sent to a source endpoint that are used to create, modify, query and delete SPVC connections.')
nncCrSpvpcTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ATM-MIB", "atmVplVpi"))
if mibBuilder.loadTexts: nncCrSpvpcTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcTableEntry.setDescription('An entry of nncCrSpvpcTable')
nncCrSpvpcServiceCategory = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 6))).clone(namedValues=NamedValues(("cbr", 1), ("nrtvbr", 2), ("abr", 3), ("ubr", 4), ("rtvbr", 6))).clone('nrtvbr')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcServiceCategory.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcServiceCategory.setDescription('This object is used to set the traffic service category. This object is dependent on the value specified in nncCrSpvpcTrafficDescriptor')
nncCrSpvpcTargEpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 2), AtmFormatDisplay()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcTargEpAddr.setDescription('This object is used to specify the 20 byte AESA address for the target endpoint. The address map is as the following: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | 0 | ------------------------------------------------------------------------ ')
nncCrSpvpcTargVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcTargVpi.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Range: 0 - 4095')
nncCrSpvpcAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcAdminStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCrSpvpcAdminStatus to determine if the connection is successful.')
nncCrSpvpcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(3)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcPriority.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nncCrSpvpcMaxAdminWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647)).clone(-1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nncCrSpvpcOperation = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7))).clone(namedValues=NamedValues(("reRouteDualEp", 7)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcOperation.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nncCrSpvpcCallStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 4, 7))).clone(namedValues=NamedValues(("connected", 2), ("waitingForResources", 4), ("readyToConnect", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCrSpvpcCallStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nncCrSpvpcLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncCrSpvpcFwdAbrDynTrfcIcr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell (Information) Rate for the forward direction. Range: 0 - 2488320 Kb/s")
nncCrSpvpcFwdAbrDynTrfcRif = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the forward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nncCrSpvpcFwdAbrDynTrfcRdf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the forward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nncCrSpvpcBwdAbrDynTrfcIcr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the destination endpoint. Range: 0 - 2488320 Kb/s")
nncCrSpvpcBwdAbrDynTrfcRif = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the backward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nncCrSpvpcBwdAbrDynTrfcRdf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the backward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nncCrSpvpcSrcBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcSrcBillingFlag.setDescription('Billing Configuration for the source endpoint')
nncCrSpvpcFwdTmTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("tagAll", 1), ("p0Plus1", 2), ("p0Plus1SlashS0Plus1", 3), ("p0Plus1SlashS0", 4), ("p0Plus1SlashM0Plus1", 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nncCrSpvpcFwdTmPolicingOption = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("tag", 2), ("discard", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmPolicingOption.setDescription('Policing Option for an SPVPC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nncCrSpvpcFwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nncCrSpvpcFwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvpcFwdTmBucketTwoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nncCrSpvpcFwdTmBucketTwoMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000)).clone(32)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nncCrSpvpcFwdTmCdv = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 10000)).clone(250)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmCdv.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nncCrSpvpcFwdTmClr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcFwdTmClr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcFwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nncCrSpvpcBwdTmTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("tagAll", 1), ("p0Plus1", 2), ("p0Plus1SlashS0Plus1", 3), ("p0Plus1SlashS0", 4), ("p0Plus1SlashM0Plus1", 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nncCrSpvpcBwdTmPolicingOption = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("tag", 2), ("discard", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmPolicingOption.setDescription('Policing Option for an SPVPC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nncCrSpvpcBwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketOneRate.setDescription("This object is for peak information rate (PIR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nncCrSpvpcBwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvpcBwdTmBucketTwoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nncCrSpvpcBwdTmBucketTwoMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000)).clone(32)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nncCrSpvpcBwdTmCdv = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 10000)).clone(250)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nncCrSpvpcBwdTmClr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcBwdTmClr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nncCrSpvpcCreator = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 9))).clone(namedValues=NamedValues(("unknown", 0), ("nmti", 1), ("nm5620", 2), ("snmp", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCrSpvpcCreator.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nncCrSpvpcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 34), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCrSpvpcDstCfgTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2), )
if mibBuilder.loadTexts: nncCrSpvpcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgTable.setDescription('the nncCrSpvpcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nncCrSpvpcDstCfgTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ATM-MIB", "atmVplVpi"))
if mibBuilder.loadTexts: nncCrSpvpcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgTableEntry.setDescription('An entry of nncCrSpvpcDstCfgTable.')
nncCrSpvpcDstCfgCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvpcDstCfgPolicing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("nullPolicing", 0), ("disabled", 1), ("tag", 2), ("discard", 3), ("useSignalled", 4))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcDstCfgPolicing.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgPolicing.setDescription('CR Policing')
nncCrSpvpcDstCfgBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint.')
nncCrSpvpcDstCfgLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncCrSpvpcDstCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 5), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvpcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCrSpvccTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3), )
if mibBuilder.loadTexts: nncCrSpvccTable.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTable.setDescription('nncCrSpvccTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query Cell Relay SPVC connections.')
nncCrSpvccTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ATM-MIB", "atmVclVpi"), (0, "ATM-MIB", "atmVclVci"))
if mibBuilder.loadTexts: nncCrSpvccTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTableEntry.setDescription('An entry of nncCrSpvccTable. It contains the objects required to manage CR SPVCs.')
nncCrSpvccServiceCategory = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 6))).clone(namedValues=NamedValues(("cbr", 1), ("nrtvbr", 2), ("abr", 3), ("ubr", 4), ("rtvbr", 6))).clone('nrtvbr')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccServiceCategory.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccServiceCategory.setDescription('This object is used to set the traffic service category. This object is dependent on the value specified in nncCrSpvccTrafficDescriptor')
nncCrSpvccTargEpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 2), AtmFormatDisplay()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccTargEpAddr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargEpAddr.setDescription('This object is used to specify the AESA address for the target endpoint. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | 0 | ------------------------------------------------------------------------ ')
nncCrSpvccTargVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccTargVpi.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Range: 0 - 4095')
nncCrSpvccTargVci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccTargVci.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the target endpoint. Range: 1 - 65535')
nncCrSpvccTargDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 1023)))
if mibBuilder.loadTexts: nncCrSpvccTargDlci.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the target endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nncCrSpvccTargCeNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(1))
if mibBuilder.loadTexts: nncCrSpvccTargCeNumber.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargCeNumber.setDescription("This object contains circuit number, channel group number or both for the Circuit Emulation endpoint. Used in CR to CE connections when nncCrSpvccTargEpType is configured as circuitEmulation(3). For CE connections on unchannelized DS3_CCE card, it's the circuit number 1-28 for UDT circuit number For CE connections on unchannelized E3_CCE card, it's the circuit number 1-16 for UDT circuit number For CE connections on E1/T1 CES, it's channel group number. 0 for UDT mode, both T1 and E1 1-31 for E1 in SDT mode 1-24 for T1 in SDT mode For CE connections on channelized DS3_CCE-2 card, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 28 for channelized DS3, = 0 for unstructured DS3) channelGroupNum (bits 1-8, = 1 to 24 for SDT mode, = 0 for UDT Mode) For CE connections on channelized E3_CCE-2, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 16) channelGroupNum (bits 1-8, = 1 to 31 for SDT mode, = 0 for UDT Mode) Example: Circuit Number = 7, Channel Group = 3 : nncCrSpvccTargCeNumber = (Circuit Number * 256) + Channel Group = 1795 SPVCs across service types other than circuit emulation do not require this object.")
nncCrSpvccTargEpType = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cellRelay", 1), ("frameRelay", 2), ("circuitEmulation", 3))).clone('cellRelay')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccTargEpType.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) frameRelay (2) circuitEmulation (3) ')
nncCrSpvccAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccAdminStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCrSpvccAdminStatus to determine if the connection is successful.')
nncCrSpvccPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(3)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccPriority.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nncCrSpvccMaxAdminWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647)).clone(-1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nncCrSpvccOperation = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7))).clone(namedValues=NamedValues(("reRouteDualEp", 7)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccOperation.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nncCrSpvccCallStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 4, 7))).clone(namedValues=NamedValues(("connected", 2), ("waitingForResources", 4), ("readyToConnect", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCrSpvccCallStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nncCrSpvccLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncCrSpvccFwdAbrDynTrfcIcr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the forward direction. Range: 0 - 2488320 Kb/s")
nncCrSpvccFwdAbrDynTrfcRif = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the forward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nncCrSpvccFwdAbrDynTrfcRdf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the forward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nncCrSpvccBwdAbrDynTrfcIcr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the destination endpoint. Range: 0 - 2488320 Kb/s")
nncCrSpvccBwdAbrDynTrfcRif = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the backward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nncCrSpvccBwdAbrDynTrfcRdf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 9)).clone(9)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the backward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nncCrSpvccSrcBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccSrcBillingFlag.setDescription('Billing Configuration for the source endpoint')
nncCrSpvccFwdTmTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("tagAll", 1), ("p0Plus1", 2), ("p0Plus1SlashS0Plus1", 3), ("p0Plus1SlashS0", 4), ("p0Plus1SlashM0Plus1", 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nncCrSpvccFwdTmPolicingOption = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("tag", 2), ("discard", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmPolicingOption.setDescription('Policing Option for an SPVCC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nncCrSpvccFwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nncCrSpvccFwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvccFwdTmBucketTwoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nncCrSpvccFwdTmBucketTwoMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000)).clone(32)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nncCrSpvccFwdTmCdv = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 10000)).clone(250)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmCdv.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nncCrSpvccFwdTmClr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmClr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nncCrSpvccFwdTmFrameDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nncCrSpvccBwdTmTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("tagAll", 1), ("p0Plus1", 2), ("p0Plus1SlashS0Plus1", 3), ("p0Plus1SlashS0", 4), ("p0Plus1SlashM0Plus1", 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nncCrSpvccBwdTmPolicingOption = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("tag", 2), ("discard", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmPolicingOption.setDescription('Policing Option for an SPVCC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nncCrSpvccBwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nncCrSpvccBwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvccBwdTmBucketTwoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(1000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nncCrSpvccBwdTmBucketTwoMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000)).clone(32)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrt-VBR and rt-VBR only). Range: 1 - 10000 cells')
nncCrSpvccBwdTmCdv = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 36), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 10000)).clone(250)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nncCrSpvccBwdTmClr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 37), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmClr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nncCrSpvccBwdTmFrameDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccBwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccBwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nncCrSpvccFrBwdTmAr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmAr.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s.')
nncCrSpvccFrBwdTmCir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmCir.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmCir.setDescription('The committed Information Rate, in Kb/s.')
nncCrSpvccFrBwdTmBc = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmBc.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nncCrSpvccFrBwdTmBe = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmBe.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmBe.setDescription('The Excess Burst Size, in Kb.')
nncCrSpvccFrBwdTmIwf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 43), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("networkInterworking", 2), ("serviceInterworking", 3), ("fFwdInterworking", 4))).clone('networkInterworking')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmIwf.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nncCrSpvccFrBwdTmPo = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 44), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 3))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPo.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPo.setDescription('Policing')
nncCrSpvccFrBwdTmPacing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 45), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPacing.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPacing.setDescription('Pacing')
nncCrSpvccFrBwdTmPtclMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 46), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("transparent", 0), ("translated", 1))).clone('transparent')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmSIWProfile. Values: transparent (0), translated (1) (see also nncFrSpvcTmSIWProfile)')
nncCrSpvccFrBwdTmClpMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("cLPEqualsDE", 0), ("cLPEquals0", 1), ("cLPEquals1", 2))).clone('cLPEquals1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmClpMapping.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmClpMapping.setDescription('Cell Loss Priority Mapping. Values: cLPEqualsDE (CLP = DE, 0) cLPEquals0 (CLP = 0, 1 ) cLPEquals1 (CLP = 1, 2 )')
nncCrSpvccFrBwdTmDeMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("dEEqualsCLP", 0), ("dESSCSor0", 1), ("dEEquals1", 2))).clone('dEEqualsCLP')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmDeMapping.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmDeMapping.setDescription('Discard Eligibility Mapping Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nncCrSpvccFrBwdTmEfciMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 49), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("eFCIEqualsFECN", 0), ("eFCIEquals0", 1))).clone('eFCIEqualsFECN')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (EFCI = FECN, 0) eFCIEquals0 (EFCI = 0, 1)')
nncCrSpvccFrBwdTmPvcMgntProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 50), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nncCrSpvccFrBwdTmSIWProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 51), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccFrBwdTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attributes nncFrSpvcTmIwf and nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 = 16.")
nncCrSpvccCreator = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 52), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 9))).clone(namedValues=NamedValues(("unknown", 0), ("nmti", 1), ("nm5620", 2), ("snmp", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCrSpvccCreator.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nncCrSpvccRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 53), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCrSpvccDstCfgTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4), )
if mibBuilder.loadTexts: nncCrSpvccDstCfgTable.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgTable.setDescription('the nncCrSpvccDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nncCrSpvccDstCfgTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "ATM-MIB", "atmVclVpi"), (0, "ATM-MIB", "atmVclVci"))
if mibBuilder.loadTexts: nncCrSpvccDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgTableEntry.setDescription('An entry of nncCrSpvccDstCfgTable.')
nncCrSpvccDstCfgCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCrSpvccDstCfgPolicing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("nullPolicing", 0), ("disabled", 1), ("tag", 2), ("discard", 3), ("useSignalled", 4))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgPolicing.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgPolicing.setDescription('CR Policing')
nncCrSpvccDstCfgBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint')
nncCrSpvccDstCfgFrVsvdCongestionControl = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgFrVsvdCongestionControl.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgFrVsvdCongestionControl.setDescription('Congestion Control for VS/VD endpoints, also known as Closed Loop Congestion Control (CLCC).')
nncCrSpvccDstCfgLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncCrSpvccDstCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 6), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCrSpvccDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncFrSpvcTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5), )
if mibBuilder.loadTexts: nncFrSpvcTable.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTable.setDescription('nncFrSpvcTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query FR SPVCCs.')
nncFrSpvcTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "NNCEXTSPVC-MIB", "nncFrSpvcSrcDlci"))
if mibBuilder.loadTexts: nncFrSpvcTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTableEntry.setDescription('An entry of nncFrSpvcTable.')
nncFrSpvcSrcDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 1023)).clone(17))
if mibBuilder.loadTexts: nncFrSpvcSrcDlci.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcSrcDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the source endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nncFrSpvcTargEpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 2), AtmFormatDisplay()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTargEpAddr.setDescription("This object contains the target endpoint's 20-byte ATM End System Address (AESA) proposed by ATM Forum. An endpoint address is created by appending the switch-wide 13-byte Internal Switch Subscriber Address Prefix with a 6-byte End Station Identifier (ESI) followed by a selector byte. The ESI is in IEEE MAC address format and the exact form depends upon the destination endpoint and the SPVC commissioning method. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag1| Port | Circuit | ------------------------------------------------------------------------ 20th byte |Circuit(continued) | Stream | ------------------------------------------------------------------------ ")
nncFrSpvcTargDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 1023)).clone(17)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTargDlci.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTargDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the target endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nncFrSpvcTargVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTargVpi.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the Cell Relay based target endpoint. Range: 0 - 4095')
nncFrSpvcTargVci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTargVci.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the cell-relay based target endpoint. Range: 1 - 65535')
nncFrSpvcTargEpType = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("cellRelay", 1), ("frameRelay", 2))).clone('frameRelay')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTargEpType.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) frameRelay (2) ')
nncFrSpvcAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcAdminStatus.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncFrSpvcAdminStatus to determine if the connection is successful.')
nncFrSpvcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(3)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcPriority.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nncFrSpvcMaxAdminWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647)).clone(-1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nncFrSpvcOperation = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7))).clone(namedValues=NamedValues(("reRouteDualEp", 7)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcOperation.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nncFrSpvcCallStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 4, 7))).clone(namedValues=NamedValues(("connected", 2), ("waitingForResources", 4), ("readyToConnect", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncFrSpvcCallStatus.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nncFrSpvcLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncFrSpvcSrcBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcSrcBillingFlag.setDescription('Billing Configuration for the source endpoint.')
nncFrSpvcFrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bestEffort", 1), ("committedThroughput", 2), ("lowLatency", 3), ("realTime", 4))).clone('bestEffort')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFrPriority.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFrPriority.setDescription('Frame Relay Priority.')
nncFrSpvcFrVsvdCongestionControl = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFrVsvdCongestionControl.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFrVsvdCongestionControl.setDescription('Congestion Control for VS/VD endpoints, also known as Closed Loop Congestion Control (CLCC).')
nncFrSpvcFwdFrMir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(72)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdFrMir.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdFrMir.setDescription('The FR Src->Dst Minimum Information Rate, used to set the minimum rate on a CLCC FR-FR SPVC connection. If nncFrSpvcFrVsvdCongestionControl is not enabled, this attribute has no effect. Range: 0 - 44210 Kb/s')
nncFrSpvcFwdTmAr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmAr.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nncFrSpvcFwdTmCir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmCir.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmCir.setDescription('The committed Information Rate, in Kb/s')
nncFrSpvcFwdTmBc = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmBc.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nncFrSpvcFwdTmBe = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmBe.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmBe.setDescription('Excess Burst Size, Kb.')
nncFrSpvcTmIwf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("networkInterworking", 2), ("serviceInterworking", 3), ("fFwdInterworking", 4))).clone('networkInterworking')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmIwf.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nncFrSpvcFwdTmPo = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 3))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmPo.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmPo.setDescription('Policing. ')
nncFrSpvcFwdTmPacing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcFwdTmPacing.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcFwdTmPacing.setDescription('Pacing.')
nncFrSpvcTmPtclMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("transparent", 0), ("translated", 1))).clone('transparent')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmSIWProfile. Values: transparent (0), translated (1) (see also nncFrSpvcTmSIWProfile)')
nncFrSpvcTmClpMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("cLPEqualsDE", 0), ("cLPEquals0", 1), ("cLPEquals1", 2))).clone('cLPEquals1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmClpMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmClpMapping.setDescription('Cell Loss Priority Mapping, for use in FR-CR interworking SPVCs. Values: cLPEqualsDE (CLP = DE, 0) cLPEquals0 (CLP = 0, 1 ) cLPEquals1 (CLP = 1, 2 )')
nncFrSpvcTmDeMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("dEEqualsCLP", 0), ("dESSCSor0", 1), ("dEEquals1", 2))).clone('dEEqualsCLP')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmDeMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmDeMapping.setDescription('Discard Eligibility Mapping, for use in FR-CR interworking SPVCs. Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nncFrSpvcTmEfciMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("eFCIEqualsFECN", 0), ("eFCIEquals0", 1))).clone('eFCIEqualsFECN')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (EFCI = FECN, 0) eFCIEquals0 (EFCI = 0, 1)')
nncFrSpvcTmPvcMgntProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nncFrSpvcTmSIWProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attributes nncFrSpvcTmIwf and nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 - 16.")
nncFrSpvcTmRemapDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 1023)).clone(17)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcTmRemapDlci.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcTmRemapDlci.setDescription('The source end-point Data Link Connection Identifier for many-to-one Network Interworking (IWF2) connections.')
nncFrSpvcBwdFrMir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(72)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdFrMir.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdFrMir.setDescription('The FR Dst->Src Minimum Information Rate, used on CLCC-enabled connections. Range: 0 - 44210 Kb/s')
nncFrSpvcBwdTmAr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmAr.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nncFrSpvcBwdTmCir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmCir.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmCir.setDescription('The committed Information Rate, in Kb/s')
nncFrSpvcBwdTmBc = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmBc.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nncFrSpvcBwdTmBe = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmBe.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmBe.setDescription('The Excess Burst Size, Kb.')
nncFrSpvcBwdTmPo = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 3))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmPo.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmPo.setDescription('Policing.')
nncFrSpvcBwdTmPacing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 37), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcBwdTmPacing.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcBwdTmPacing.setDescription('Pacing.')
nncFrSpvcCrTmServiceCategory = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 38), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 6))).clone(namedValues=NamedValues(("nrtvbr", 2), ("abr", 3), ("ubr", 4), ("rtvbr", 6))).clone('ubr')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrTmServiceCategory.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrTmServiceCategory.setDescription('This object is used to set the traffic service category for SPVC Connections. This object is dependent on the value specified in nncFrSpvcCrBwdTmTrafficDescriptor.')
nncFrSpvcCrBwdTmTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 39), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3, 4, 5))).clone(namedValues=NamedValues(("tagAll", 1), ("p0Plus1SlashS0Plus1", 3), ("p0Plus1SlashS0", 4), ("p0Plus1SlashM0Plus1", 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmTrafficDescriptor.setDescription('This object contains the CR traffic descriptor for a FR-CR SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nncFrSpvcCrBwdTmPolicingOption = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 40), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("tag", 2), ("discard", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmPolicingOption.setDescription('Policing Option for a FR SPVC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nncFrSpvcCrBwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(256)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketOneRate.setDescription("Used in FR - CR interworking. This object is for peak cell rate (PCR), the cell rate which the cell endpoint may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nncFrSpvcCrBwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 42), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(500)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for the CR endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncFrSpvcCrBwdTmBucketTwoRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 43), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(72)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketTwoRate.setDescription('Used in FR - CR interworking. The attribute contains the SIR_0, SIR_0+1 or MIR_0+1. This parameter holds the sustained information rate (SIR_0 or SIR_0+1) for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nncFrSpvcCrBwdTmBucketTwoMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 10000)).clone(32)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nncFrSpvcCrBwdTmCdv = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(250, 10000)).clone(250)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) at the CR endpoint. Applicable only when the rt-VBR service category is used. Range: 250-10000 microseconds')
nncFrSpvcCrBwdTmClr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 7)).clone(7)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmClr.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) at the CR endpoint of a FR-CR SPVC. Valid only when using the nrt-VBR service category. Value set as 1.0e-#')
nncFrSpvcCrBwdTmFrameDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 47), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCrBwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nncFrSpvcCreator = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 9))).clone(namedValues=NamedValues(("unknown", 0), ("nmti", 1), ("nm5620", 2), ("snmp", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncFrSpvcCreator.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcCreator.setDescription('The object retrieves the creator of a given SPVC connection.')
nncFrSpvcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 49), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncFrSpvcDstCfgTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6), )
if mibBuilder.loadTexts: nncFrSpvcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTable.setDescription('the nncFrSpvcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nncFrSpvcDstCfgTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"), (0, "NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmRemapDlci"))
if mibBuilder.loadTexts: nncFrSpvcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTableEntry.setDescription('An entry of nncFrSpvcDstCfgTable.')
nncFrSpvcDstCfgTmAr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmAr.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nncFrSpvcDstCfgTmCir = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 44210)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmCir.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmCir.setDescription('The committed Information Rate, Kb/s')
nncFrSpvcDstCfgTmBc = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmBc.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmBc.setDescription('The Committed Burst Size, in Kb.')
nncFrSpvcDstCfgTmBe = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2097151)).clone(64)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmBe.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmBe.setDescription('Excess Burst Size, in Kb.')
nncFrSpvcDstCfgTmIwf = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4))).clone(namedValues=NamedValues(("none", 0), ("networkInterworking", 2), ("serviceInterworking", 3), ("fFwdInterworking", 4))).clone('networkInterworking')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmIwf.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nncFrSpvcDstCfgTmPo = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabled", 3))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPo.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPo.setDescription('Policing.')
nncFrSpvcDstCfgTmPacing = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPacing.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPacing.setDescription('Pacing.')
nncFrSpvcDstCfgTmPtclMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("transparent", 0), ("translated", 1))).clone('transparent')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmPvcMgntProfile.')
nncFrSpvcDstCfgTmClpMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("cLPEqualsDE", 0), ("cLPEquals0", 1), ("cLPEquals1", 2))).clone('cLPEquals1')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmClpMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmClpMapping.setDescription('Cell Loss Priority Mapping. Values: cLPEqualsDE (CLP = DE) cLPEquals0 (CLP = 0 ) cLPEquals1 (CLP = 1 )')
nncFrSpvcDstCfgTmDeMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("dEEqualsCLP", 0), ("dESSCSor0", 1), ("dEEquals1", 2))).clone('dEEqualsCLP')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmDeMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmDeMapping.setDescription('Discard Eligibility Mapping Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nncFrSpvcDstCfgTmEfciMapping = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("eFCIEqualsFECN", 0), ("eFCIEquals0", 1))).clone('eFCIEqualsFECN')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (0) eFCIEquals0 (1)')
nncFrSpvcDstCfgTmPvcMgntProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("enabled", 0), ("disabled", 1))).clone('enabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nncFrSpvcDstCfgTmSIWProfile = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attribute nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 = 16.")
nncFrSpvcDstCfgTmRemapDlci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(16, 1023)).clone(17)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmRemapDlci.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgTmRemapDlci.setDescription('The source end-point Data Link Connection Identifier for many-to-one Network Interworking (IWF2) connections.')
nncFrSpvcDstCfgBillingFlag = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1))).clone(namedValues=NamedValues(("disabled", 0), ("enabled", 1))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint.')
nncFrSpvcDstCfgFrPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bestEffort", 1), ("committedThroughput", 2), ("lowLatency", 3), ("realTime", 4))).clone('bestEffort')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgFrPriority.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgFrPriority.setDescription('Frame Relay Priority.')
nncFrSpvcDstCfgLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledUniSide", 2), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nncFrSpvcDstCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 18), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncFrSpvcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCeSpvcTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7), )
if mibBuilder.loadTexts: nncCeSpvcTable.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTable.setDescription('nncCeSpvcTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query CE SPVCCs. The table is indexed using ifIndex, which includes the circuit number field.')
nncCeSpvcTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: nncCeSpvcTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTableEntry.setDescription('An entry of nncCeSpvcTable.')
nncCeSpvcTargEpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 1), AtmFormatDisplay()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTargEpAddr.setDescription('This object is used to specify the AESA address of the target endpoint. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | Not used, default 0 | ------------------------------------------------------------------------ ')
nncCeSpvcTargVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4095))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcTargVpi.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Used in interworking CE to CR connections when nncCeSpvcTargEpType configured as cellRelay(1). Range: 0 - 4095')
nncCeSpvcTargVci = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 65535))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcTargVci.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the target endpoint. Used in interworking CE to CR connections when nncCeSpvcTargEpType configured as cellRelay(1). Range: 1 - 65535')
nncCeSpvcTargCeNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65535)).clone(1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcTargCeNumber.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTargCeNumber.setDescription("This object contains circuit number, channel group number or both for the Circuit Emulation endpoint. Used in CE to CE connections when nncCrSpvccTargEpType is configured as circuitEmulation(3). For CE connections on unchannelized DS3_CCE card, it's the circuit number 1-28 for UDT circuit number For CE connections on unchannelized E3_CCE card, it's the circuit number 1-16 for UDT circuit number For CE connections on E1/T1 CES, it's channel group number. 0 for UDT mode, both T1 and E1 1-31 for E1 in SDT mode 1-24 for T1 in SDT mode For CE connections on channelized DS3_CCE-2 card, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 28 for channelized DS3, = 0 for unstructured DS3) channelGroupNum (bits 1-8, = 1 to 24 for SDT mode, = 0 for UDT Mode) For CE connections on channelized E3_CCE-2, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 16) channelGroupNum (bits 1-8, = 1 to 31 for SDT mode, = 0 for UDT Mode) Example: Circuit Number = 7, Channel Group = 3 : nncCrSpvccTargCeNumber = (Circuit Number * 256) + Channel Group = 1795 SPVCs across service types other than circuit emulation do not require this object.")
nncCeSpvcTargEpType = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("cellRelay", 1), ("circuitEmulation", 3))).clone('circuitEmulation')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcTargEpType.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) circuitEmulation (3) ')
nncCeSpvcAdminStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("enabled", 1), ("disabled", 2)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcAdminStatus.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCeSpvcAdminStatus to determine if the connection is successful.')
nncCeSpvcPriority = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 16)).clone(3)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcPriority.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nncCeSpvcMaxAdminWeight = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(-1, 2147483647)).clone(-1)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nncCeSpvcOperation = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(7))).clone(namedValues=NamedValues(("reRouteDualEp", 7)))).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcOperation.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nncCeSpvcCallStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 4, 7))).clone(namedValues=NamedValues(("connected", 2), ("waitingForResources", 4), ("readyToConnect", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCeSpvcCallStatus.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nncCeSpvcLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. For circuit emulation UNI side is not supported. It can be configured for either NNI side or disabled.")
nncCeSpvcFwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(73)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s For N x DS0 SDT Basic connections = ((((1 + 1.0 / 128) * 8 * N / K) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 1..47 is the number of data octets per cell. For N x DS0 SDT CAS connections = ((((1 + 1.0 / 128) * 8 * (((Cn * N) + (N % 2)) / (Ck * K))) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 2..47 is the number of data octets per cell. Cn = 49 for T1 Cn = 33 for E1 Ck = 48 for T1 Ck = 32 for E1 = 1755 Kb/s for T1,DS1 UDT connections = 2328 Kb/s for E1 UDT connections = 50842 Kb/s for DS3 UDT connections")
nncCeSpvcFwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(3000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCeSpvcBwdTmBucketOneRate = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2488320)).clone(73)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcBwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s For N x DS0 SDT Basic connections = ((((1 + 1.0 / 128) * 8 * N / K) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 1..47 is the number of data octets per cell. For N x DS0 SDT CAS connections = ((((1 + 1.0 / 128) * 8 * (((Cn * N) + (N % 2)) / (Ck * K))) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 2..47 is the number of data octets per cell. Cn = 49 for T1 Cn = 33 for E1 Ck = 48 for T1 Ck = 32 for E1 = 1755 Kb/s for T1,DS1 UDT connections = 2328 Kb/s for E1 UDT connections = 50842 Kb/s for DS3 UDT connections")
nncCeSpvcBwdTmBucketOneCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(3000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCeSpvcCreator = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 9))).clone(namedValues=NamedValues(("unknown", 0), ("nmti", 1), ("nm5620", 2), ("snmp", 9)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nncCeSpvcCreator.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nncCeSpvcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 17), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCeSpvcDstCfgTable = MibTable((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8), )
if mibBuilder.loadTexts: nncCeSpvcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgTable.setDescription('the nncCeSpvcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nncCeSpvcDstCfgTableEntry = MibTableRow((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: nncCeSpvcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgTableEntry.setDescription('An entry of nncCeSpvcDstCfgTable.')
nncCeSpvcDstCfgCdvt = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 190000)).clone(3000)).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nncCeSpvcDstCfgLocRerouteConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 3))).clone(namedValues=NamedValues(("disabled", 1), ("enabledNniSide", 3))).clone('disabled')).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. For circuit emulation UNI side is not supported. It can be configured for either NNI side or disabled.")
nncCeSpvcDstCfgRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 3), RowStatus()).setMaxAccess("readcreate")
if mibBuilder.loadTexts: nncCeSpvcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nncCrSpvpcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 1)).setObjects(("NNCEXTSPVC-MIB", "nncCrSpvpcServiceCategory"), ("NNCEXTSPVC-MIB", "nncCrSpvpcTargEpAddr"), ("NNCEXTSPVC-MIB", "nncCrSpvpcTargVpi"), ("NNCEXTSPVC-MIB", "nncCrSpvpcAdminStatus"), ("NNCEXTSPVC-MIB", "nncCrSpvpcPriority"), ("NNCEXTSPVC-MIB", "nncCrSpvpcMaxAdminWeight"), ("NNCEXTSPVC-MIB", "nncCrSpvpcOperation"), ("NNCEXTSPVC-MIB", "nncCrSpvpcCallStatus"), ("NNCEXTSPVC-MIB", "nncCrSpvpcLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdAbrDynTrfcIcr"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdAbrDynTrfcRif"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdAbrDynTrfcRdf"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdAbrDynTrfcIcr"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdAbrDynTrfcRif"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdAbrDynTrfcRdf"), ("NNCEXTSPVC-MIB", "nncCrSpvpcSrcBillingFlag"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmTrafficDescriptor"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmPolicingOption"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmBucketTwoRate"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmBucketTwoMbs"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmCdv"), ("NNCEXTSPVC-MIB", "nncCrSpvpcFwdTmClr"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmTrafficDescriptor"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmPolicingOption"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmBucketTwoRate"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmBucketTwoMbs"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmCdv"), ("NNCEXTSPVC-MIB", "nncCrSpvpcBwdTmClr"), ("NNCEXTSPVC-MIB", "nncCrSpvpcCreator"), ("NNCEXTSPVC-MIB", "nncCrSpvpcRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCrSpvpcGroup = nncCrSpvpcGroup.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcGroup.setDescription('Common MIB objects for configuring a CR SPVPC source end-point across all Alcatel CID ATM platforms.')
nncCrSpvpcDstCfgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 2)).setObjects(("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgPolicing"), ("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgBillingFlag"), ("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCrSpvpcDstCfgGroup = nncCrSpvpcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvpcDstCfgGroup.setDescription('Common MIB objects for configuring a Cell Relay SPVPC destination end-point across all Alcatel CID ATM platforms.')
nncCrSpvccGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 3)).setObjects(("NNCEXTSPVC-MIB", "nncCrSpvccServiceCategory"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargEpAddr"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargVpi"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargVci"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargDlci"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargCeNumber"), ("NNCEXTSPVC-MIB", "nncCrSpvccTargEpType"), ("NNCEXTSPVC-MIB", "nncCrSpvccAdminStatus"), ("NNCEXTSPVC-MIB", "nncCrSpvccPriority"), ("NNCEXTSPVC-MIB", "nncCrSpvccMaxAdminWeight"), ("NNCEXTSPVC-MIB", "nncCrSpvccOperation"), ("NNCEXTSPVC-MIB", "nncCrSpvccCallStatus"), ("NNCEXTSPVC-MIB", "nncCrSpvccLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdAbrDynTrfcIcr"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdAbrDynTrfcRif"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdAbrDynTrfcRdf"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdAbrDynTrfcIcr"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdAbrDynTrfcRif"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdAbrDynTrfcRdf"), ("NNCEXTSPVC-MIB", "nncCrSpvccSrcBillingFlag"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmTrafficDescriptor"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmPolicingOption"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmBucketTwoRate"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmBucketTwoMbs"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmCdv"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmClr"), ("NNCEXTSPVC-MIB", "nncCrSpvccFwdTmFrameDiscard"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmTrafficDescriptor"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmPolicingOption"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmBucketTwoRate"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmBucketTwoMbs"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmCdv"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmClr"), ("NNCEXTSPVC-MIB", "nncCrSpvccBwdTmFrameDiscard"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmAr"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmCir"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmBc"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmBe"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmIwf"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmPo"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmPacing"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmPtclMapping"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmClpMapping"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmDeMapping"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmEfciMapping"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmPvcMgntProfile"), ("NNCEXTSPVC-MIB", "nncCrSpvccFrBwdTmSIWProfile"), ("NNCEXTSPVC-MIB", "nncCrSpvccCreator"), ("NNCEXTSPVC-MIB", "nncCrSpvccRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCrSpvccGroup = nncCrSpvccGroup.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccGroup.setDescription('Common MIB objects for configuring a CR SPVC source end-point across all Alcatel CID ATM platforms.')
nncCrSpvccDstCfgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 4)).setObjects(("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgCdvt"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgPolicing"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgBillingFlag"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgFrVsvdCongestionControl"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCrSpvccDstCfgGroup = nncCrSpvccDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts: nncCrSpvccDstCfgGroup.setDescription('Common MIB objects for configuring a Cell Relay SPVC destination end-point across all Alcatel CID ATM platforms.')
nncFrSpvcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 5)).setObjects(("NNCEXTSPVC-MIB", "nncFrSpvcSrcDlci"), ("NNCEXTSPVC-MIB", "nncFrSpvcTargEpAddr"), ("NNCEXTSPVC-MIB", "nncFrSpvcTargDlci"), ("NNCEXTSPVC-MIB", "nncFrSpvcTargVpi"), ("NNCEXTSPVC-MIB", "nncFrSpvcTargVci"), ("NNCEXTSPVC-MIB", "nncFrSpvcTargEpType"), ("NNCEXTSPVC-MIB", "nncFrSpvcAdminStatus"), ("NNCEXTSPVC-MIB", "nncFrSpvcPriority"), ("NNCEXTSPVC-MIB", "nncFrSpvcMaxAdminWeight"), ("NNCEXTSPVC-MIB", "nncFrSpvcOperation"), ("NNCEXTSPVC-MIB", "nncFrSpvcCallStatus"), ("NNCEXTSPVC-MIB", "nncFrSpvcLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncFrSpvcSrcBillingFlag"), ("NNCEXTSPVC-MIB", "nncFrSpvcFrPriority"), ("NNCEXTSPVC-MIB", "nncFrSpvcFrVsvdCongestionControl"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdFrMir"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmAr"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmCir"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmBc"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmBe"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmIwf"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmPo"), ("NNCEXTSPVC-MIB", "nncFrSpvcFwdTmPacing"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmPtclMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmClpMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmDeMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmEfciMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmPvcMgntProfile"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmSIWProfile"), ("NNCEXTSPVC-MIB", "nncFrSpvcTmRemapDlci"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmAr"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmCir"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmBc"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmBe"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmPo"), ("NNCEXTSPVC-MIB", "nncFrSpvcBwdTmPacing"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrTmServiceCategory"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmTrafficDescriptor"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmPolicingOption"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmBucketTwoRate"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmBucketTwoMbs"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmCdv"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmClr"), ("NNCEXTSPVC-MIB", "nncFrSpvcCrBwdTmFrameDiscard"), ("NNCEXTSPVC-MIB", "nncFrSpvcCreator"), ("NNCEXTSPVC-MIB", "nncFrSpvcRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncFrSpvcGroup = nncFrSpvcGroup.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcGroup.setDescription('Common MIB objects for configuring an SPVC using a Frame Relay source end-point across all Alcatel CID ATM platforms.')
nncFrSpvcDstCfgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 6)).setObjects(("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmAr"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmCir"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmBc"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmBe"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmIwf"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmPo"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmPacing"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmPtclMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmClpMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmDeMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmEfciMapping"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmPvcMgntProfile"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmSIWProfile"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgTmRemapDlci"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgBillingFlag"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgFrPriority"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncFrSpvcDstCfgGroup = nncFrSpvcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts: nncFrSpvcDstCfgGroup.setDescription('Common MIB objects for configuring a Frame-Relay SPVC destination end-point across all Alcatel CID ATM platforms.')
nncCeSpvcGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 7)).setObjects(("NNCEXTSPVC-MIB", "nncCeSpvcTargEpAddr"), ("NNCEXTSPVC-MIB", "nncCeSpvcTargVpi"), ("NNCEXTSPVC-MIB", "nncCeSpvcTargVci"), ("NNCEXTSPVC-MIB", "nncCeSpvcTargCeNumber"), ("NNCEXTSPVC-MIB", "nncCeSpvcTargEpType"), ("NNCEXTSPVC-MIB", "nncCeSpvcAdminStatus"), ("NNCEXTSPVC-MIB", "nncCeSpvcPriority"), ("NNCEXTSPVC-MIB", "nncCeSpvcMaxAdminWeight"), ("NNCEXTSPVC-MIB", "nncCeSpvcOperation"), ("NNCEXTSPVC-MIB", "nncCeSpvcCallStatus"), ("NNCEXTSPVC-MIB", "nncCeSpvcLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCeSpvcFwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCeSpvcFwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCeSpvcBwdTmBucketOneRate"), ("NNCEXTSPVC-MIB", "nncCeSpvcBwdTmBucketOneCdvt"), ("NNCEXTSPVC-MIB", "nncCeSpvcCreator"), ("NNCEXTSPVC-MIB", "nncCeSpvcRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCeSpvcGroup = nncCeSpvcGroup.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcGroup.setDescription('Common MIB objects for configuring a Circuit Emulation-based SPVC source end-point across all Alcatel CID ATM platforms.')
nncCeSpvcDstCfgGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 8)).setObjects(("NNCEXTSPVC-MIB", "nncCeSpvcDstCfgCdvt"), ("NNCEXTSPVC-MIB", "nncCeSpvcDstCfgLocRerouteConfig"), ("NNCEXTSPVC-MIB", "nncCeSpvcDstCfgRowStatus"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncCeSpvcDstCfgGroup = nncCeSpvcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts: nncCeSpvcDstCfgGroup.setDescription('Common MIB objects for configuring a Circuit Emulation SPVC destination end-point across all Alcatel CID ATM platforms.')
nncSpvcCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 123, 3, 82, 4, 1)).setObjects(("NNCEXTSPVC-MIB", "nncCrSpvpcGroup"), ("NNCEXTSPVC-MIB", "nncCrSpvpcDstCfgGroup"), ("NNCEXTSPVC-MIB", "nncCrSpvccGroup"), ("NNCEXTSPVC-MIB", "nncCrSpvccDstCfgGroup"), ("NNCEXTSPVC-MIB", "nncFrSpvcGroup"), ("NNCEXTSPVC-MIB", "nncFrSpvcDstCfgGroup"), ("NNCEXTSPVC-MIB", "nncCeSpvcGroup"), ("NNCEXTSPVC-MIB", "nncCeSpvcDstCfgGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nncSpvcCompliance = nncSpvcCompliance.setStatus('current')
if mibBuilder.loadTexts: nncSpvcCompliance.setDescription('The compliance statement for Alcatel CID SPVC MIB implementation.')
mibBuilder.exportSymbols("NNCEXTSPVC-MIB", nncCrSpvpcTableEntry=nncCrSpvpcTableEntry, nncCeSpvcOperation=nncCeSpvcOperation, nncCrSpvpcBwdTmBucketOneRate=nncCrSpvpcBwdTmBucketOneRate, nncCrSpvccBwdTmPolicingOption=nncCrSpvccBwdTmPolicingOption, nncFrSpvcTargDlci=nncFrSpvcTargDlci, nncCrSpvccFwdTmTrafficDescriptor=nncCrSpvccFwdTmTrafficDescriptor, nncFrSpvcDstCfgTmAr=nncFrSpvcDstCfgTmAr, nncCrSpvpcDstCfgTable=nncCrSpvpcDstCfgTable, nncCrSpvccBwdAbrDynTrfcRdf=nncCrSpvccBwdAbrDynTrfcRdf, nncFrSpvcDstCfgTmCir=nncFrSpvcDstCfgTmCir, nncFrSpvcDstCfgTmDeMapping=nncFrSpvcDstCfgTmDeMapping, nncCrSpvpcDstCfgPolicing=nncCrSpvpcDstCfgPolicing, nncFrSpvcFwdTmAr=nncFrSpvcFwdTmAr, nncFrSpvcFwdTmPo=nncFrSpvcFwdTmPo, nncCrSpvccFwdTmClr=nncCrSpvccFwdTmClr, nncFrSpvcCrBwdTmClr=nncFrSpvcCrBwdTmClr, nncFrSpvcFwdTmPacing=nncFrSpvcFwdTmPacing, nncCrSpvccBwdTmBucketOneCdvt=nncCrSpvccBwdTmBucketOneCdvt, nncFrSpvcDstCfgTmClpMapping=nncFrSpvcDstCfgTmClpMapping, nncCrSpvpcFwdTmPolicingOption=nncCrSpvpcFwdTmPolicingOption, nncFrSpvcBwdTmBc=nncFrSpvcBwdTmBc, nncCrSpvpcAdminStatus=nncCrSpvpcAdminStatus, nncCrSpvpcFwdTmClr=nncCrSpvpcFwdTmClr, nncCrSpvccFwdTmBucketTwoRate=nncCrSpvccFwdTmBucketTwoRate, nncFrSpvcFrVsvdCongestionControl=nncFrSpvcFrVsvdCongestionControl, nncFrSpvcDstCfgTmBe=nncFrSpvcDstCfgTmBe, nncFrSpvcDstCfgTmPacing=nncFrSpvcDstCfgTmPacing, nncCeSpvcCreator=nncCeSpvcCreator, nncCrSpvccTargEpAddr=nncCrSpvccTargEpAddr, nncCrSpvpcBwdTmPolicingOption=nncCrSpvpcBwdTmPolicingOption, nncFrSpvcDstCfgGroup=nncFrSpvcDstCfgGroup, nncFrSpvcTmSIWProfile=nncFrSpvcTmSIWProfile, nncCeSpvcCallStatus=nncCeSpvcCallStatus, nncSpvcCompliance=nncSpvcCompliance, nncCrSpvccFrBwdTmEfciMapping=nncCrSpvccFrBwdTmEfciMapping, nncCrSpvccDstCfgTableEntry=nncCrSpvccDstCfgTableEntry, nncCeSpvcDstCfgLocRerouteConfig=nncCeSpvcDstCfgLocRerouteConfig, nncCrSpvpcBwdAbrDynTrfcRdf=nncCrSpvpcBwdAbrDynTrfcRdf, nncFrSpvcTmRemapDlci=nncFrSpvcTmRemapDlci, nncFrSpvcCrBwdTmCdv=nncFrSpvcCrBwdTmCdv, nncCrSpvccFwdTmBucketOneCdvt=nncCrSpvccFwdTmBucketOneCdvt, nncCrSpvccBwdTmBucketOneRate=nncCrSpvccBwdTmBucketOneRate, nncCeSpvcFwdTmBucketOneCdvt=nncCeSpvcFwdTmBucketOneCdvt, nncCrSpvccFrBwdTmPo=nncCrSpvccFrBwdTmPo, nncCeSpvcTargEpType=nncCeSpvcTargEpType, nncCrSpvpcBwdTmBucketTwoMbs=nncCrSpvpcBwdTmBucketTwoMbs, nncCeSpvcBwdTmBucketOneCdvt=nncCeSpvcBwdTmBucketOneCdvt, nncCrSpvccFrBwdTmClpMapping=nncCrSpvccFrBwdTmClpMapping, nncExtSpvcObjects=nncExtSpvcObjects, nncCrSpvpcDstCfgBillingFlag=nncCrSpvpcDstCfgBillingFlag, nncCrSpvccFrBwdTmPvcMgntProfile=nncCrSpvccFrBwdTmPvcMgntProfile, nncCrSpvccFrBwdTmSIWProfile=nncCrSpvccFrBwdTmSIWProfile, nncCrSpvccCreator=nncCrSpvccCreator, nncFrSpvcCallStatus=nncFrSpvcCallStatus, nncCrSpvccPriority=nncCrSpvccPriority, nncCrSpvccBwdTmBucketTwoRate=nncCrSpvccBwdTmBucketTwoRate, nncCrSpvccBwdTmCdv=nncCrSpvccBwdTmCdv, nncCrSpvccTargVci=nncCrSpvccTargVci, nncCrSpvpcBwdAbrDynTrfcRif=nncCrSpvpcBwdAbrDynTrfcRif, nncFrSpvcCrBwdTmBucketTwoRate=nncFrSpvcCrBwdTmBucketTwoRate, nncCeSpvcFwdTmBucketOneRate=nncCeSpvcFwdTmBucketOneRate, nncCrSpvccFrBwdTmDeMapping=nncCrSpvccFrBwdTmDeMapping, nncCrSpvccTargEpType=nncCrSpvccTargEpType, nncCrSpvccFwdTmBucketOneRate=nncCrSpvccFwdTmBucketOneRate, nncCeSpvcLocRerouteConfig=nncCeSpvcLocRerouteConfig, nncCrSpvccFwdTmBucketTwoMbs=nncCrSpvccFwdTmBucketTwoMbs, nncFrSpvcSrcBillingFlag=nncFrSpvcSrcBillingFlag, nncCrSpvpcFwdTmTrafficDescriptor=nncCrSpvpcFwdTmTrafficDescriptor, nncFrSpvcSrcDlci=nncFrSpvcSrcDlci, nncCrSpvpcCreator=nncCrSpvpcCreator, nncCrSpvccCallStatus=nncCrSpvccCallStatus, nncCrSpvccFwdAbrDynTrfcIcr=nncCrSpvccFwdAbrDynTrfcIcr, nncCeSpvcTargVpi=nncCeSpvcTargVpi, nncCrSpvpcRowStatus=nncCrSpvpcRowStatus, nncCrSpvccBwdTmClr=nncCrSpvccBwdTmClr, nncCrSpvccFrBwdTmPtclMapping=nncCrSpvccFrBwdTmPtclMapping, nncFrSpvcDstCfgLocRerouteConfig=nncFrSpvcDstCfgLocRerouteConfig, nncCeSpvcRowStatus=nncCeSpvcRowStatus, nncCrSpvccFwdTmPolicingOption=nncCrSpvccFwdTmPolicingOption, nncCrSpvpcFwdTmBucketTwoMbs=nncCrSpvpcFwdTmBucketTwoMbs, nncCrSpvccFwdAbrDynTrfcRif=nncCrSpvccFwdAbrDynTrfcRif, nncCeSpvcDstCfgCdvt=nncCeSpvcDstCfgCdvt, nncCrSpvccBwdTmBucketTwoMbs=nncCrSpvccBwdTmBucketTwoMbs, nncCrSpvpcTargEpAddr=nncCrSpvpcTargEpAddr, nncFrSpvcCrTmServiceCategory=nncFrSpvcCrTmServiceCategory, nncCrSpvccGroup=nncCrSpvccGroup, nncFrSpvcCrBwdTmBucketOneCdvt=nncFrSpvcCrBwdTmBucketOneCdvt, nncFrSpvcBwdTmBe=nncFrSpvcBwdTmBe, nncFrSpvcPriority=nncFrSpvcPriority, nncCrSpvpcTable=nncCrSpvpcTable, nncCrSpvccServiceCategory=nncCrSpvccServiceCategory, nncCrSpvccDstCfgPolicing=nncCrSpvccDstCfgPolicing, nncCrSpvpcPriority=nncCrSpvpcPriority, nncCrSpvccTable=nncCrSpvccTable, nncCrSpvpcFwdAbrDynTrfcIcr=nncCrSpvpcFwdAbrDynTrfcIcr, nncCrSpvpcFwdTmBucketTwoRate=nncCrSpvpcFwdTmBucketTwoRate, nncCrSpvpcBwdTmBucketOneCdvt=nncCrSpvpcBwdTmBucketOneCdvt, nncFrSpvcBwdFrMir=nncFrSpvcBwdFrMir, nncCeSpvcTargEpAddr=nncCeSpvcTargEpAddr, nncFrSpvcDstCfgBillingFlag=nncFrSpvcDstCfgBillingFlag, nncFrSpvcDstCfgTmBc=nncFrSpvcDstCfgTmBc, nncFrSpvcCreator=nncFrSpvcCreator, nncCrSpvccFwdTmCdv=nncCrSpvccFwdTmCdv, nncCrSpvpcBwdTmCdv=nncCrSpvpcBwdTmCdv, nncCrSpvpcDstCfgGroup=nncCrSpvpcDstCfgGroup, nncCrSpvccTargVpi=nncCrSpvccTargVpi, nncCrSpvpcDstCfgTableEntry=nncCrSpvpcDstCfgTableEntry, nncCrSpvccTargDlci=nncCrSpvccTargDlci, nncFrSpvcTargEpType=nncFrSpvcTargEpType, nncFrSpvcTmClpMapping=nncFrSpvcTmClpMapping, nncCrSpvccTableEntry=nncCrSpvccTableEntry, nncFrSpvcGroup=nncFrSpvcGroup, nncCrSpvccRowStatus=nncCrSpvccRowStatus, nncFrSpvcCrBwdTmPolicingOption=nncFrSpvcCrBwdTmPolicingOption, nncCrSpvpcBwdTmBucketTwoRate=nncCrSpvpcBwdTmBucketTwoRate, nncExtSpvcCompliances=nncExtSpvcCompliances, nncCrSpvpcMaxAdminWeight=nncCrSpvpcMaxAdminWeight, nncFrSpvcDstCfgTable=nncFrSpvcDstCfgTable, nncCrSpvccDstCfgLocRerouteConfig=nncCrSpvccDstCfgLocRerouteConfig, nncCeSpvcDstCfgRowStatus=nncCeSpvcDstCfgRowStatus, nncFrSpvcDstCfgFrPriority=nncFrSpvcDstCfgFrPriority, nncFrSpvcDstCfgTmPvcMgntProfile=nncFrSpvcDstCfgTmPvcMgntProfile, nncCrSpvccFrBwdTmBe=nncCrSpvccFrBwdTmBe, nncCrSpvccBwdTmTrafficDescriptor=nncCrSpvccBwdTmTrafficDescriptor, nncCrSpvccOperation=nncCrSpvccOperation, nncFrSpvcDstCfgTmPtclMapping=nncFrSpvcDstCfgTmPtclMapping, nncFrSpvcFwdTmBc=nncFrSpvcFwdTmBc, nncCrSpvpcBwdAbrDynTrfcIcr=nncCrSpvpcBwdAbrDynTrfcIcr, nncCeSpvcAdminStatus=nncCeSpvcAdminStatus, nncCrSpvpcDstCfgLocRerouteConfig=nncCrSpvpcDstCfgLocRerouteConfig, nncCrSpvpcTargVpi=nncCrSpvpcTargVpi, nncCrSpvpcFwdTmCdv=nncCrSpvpcFwdTmCdv, nncCrSpvccBwdAbrDynTrfcRif=nncCrSpvccBwdAbrDynTrfcRif, nncCeSpvcBwdTmBucketOneRate=nncCeSpvcBwdTmBucketOneRate, nncFrSpvcBwdTmPo=nncFrSpvcBwdTmPo, nncCeSpvcDstCfgGroup=nncCeSpvcDstCfgGroup, nncExtSpvc=nncExtSpvc, nncFrSpvcTargEpAddr=nncFrSpvcTargEpAddr, nncCrSpvccTargCeNumber=nncCrSpvccTargCeNumber, nncCrSpvccFrBwdTmBc=nncCrSpvccFrBwdTmBc, nncCrSpvpcBwdTmTrafficDescriptor=nncCrSpvpcBwdTmTrafficDescriptor, nncFrSpvcTargVci=nncFrSpvcTargVci, nncCeSpvcTableEntry=nncCeSpvcTableEntry, nncCeSpvcTargVci=nncCeSpvcTargVci, nncCeSpvcTable=nncCeSpvcTable, nncCeSpvcPriority=nncCeSpvcPriority, nncFrSpvcRowStatus=nncFrSpvcRowStatus, nncCrSpvccFrBwdTmAr=nncCrSpvccFrBwdTmAr, nncCrSpvpcLocRerouteConfig=nncCrSpvpcLocRerouteConfig, nncFrSpvcTable=nncFrSpvcTable, nncCrSpvpcDstCfgCdvt=nncCrSpvpcDstCfgCdvt, nncFrSpvcBwdTmPacing=nncFrSpvcBwdTmPacing, nncCrSpvpcFwdTmBucketOneRate=nncCrSpvpcFwdTmBucketOneRate, nncFrSpvcTargVpi=nncFrSpvcTargVpi, PYSNMP_MODULE_ID=nncExtSpvc, nncCrSpvccDstCfgCdvt=nncCrSpvccDstCfgCdvt, nncCrSpvpcBwdTmClr=nncCrSpvpcBwdTmClr, AtmFormatDisplay=AtmFormatDisplay, nncFrSpvcFwdTmBe=nncFrSpvcFwdTmBe, nncCrSpvpcCallStatus=nncCrSpvpcCallStatus, nncFrSpvcCrBwdTmBucketTwoMbs=nncFrSpvcCrBwdTmBucketTwoMbs, nncCrSpvpcDstCfgRowStatus=nncCrSpvpcDstCfgRowStatus, nncCrSpvccFrBwdTmPacing=nncCrSpvccFrBwdTmPacing, nncCrSpvccFrBwdTmCir=nncCrSpvccFrBwdTmCir, nncFrSpvcCrBwdTmTrafficDescriptor=nncFrSpvcCrBwdTmTrafficDescriptor, nncCeSpvcDstCfgTableEntry=nncCeSpvcDstCfgTableEntry, nncFrSpvcTmDeMapping=nncFrSpvcTmDeMapping, nncFrSpvcDstCfgTmSIWProfile=nncFrSpvcDstCfgTmSIWProfile, nncCrSpvccMaxAdminWeight=nncCrSpvccMaxAdminWeight, nncFrSpvcFrPriority=nncFrSpvcFrPriority, nncCrSpvccLocRerouteConfig=nncCrSpvccLocRerouteConfig, nncFrSpvcDstCfgTmPo=nncFrSpvcDstCfgTmPo, nncCrSpvccFrBwdTmIwf=nncCrSpvccFrBwdTmIwf, nncCrSpvccDstCfgBillingFlag=nncCrSpvccDstCfgBillingFlag, nncFrSpvcMaxAdminWeight=nncFrSpvcMaxAdminWeight, nncCrSpvccFwdAbrDynTrfcRdf=nncCrSpvccFwdAbrDynTrfcRdf, nncFrSpvcAdminStatus=nncFrSpvcAdminStatus, nncExtSpvcGroups=nncExtSpvcGroups, nncFrSpvcTmEfciMapping=nncFrSpvcTmEfciMapping, nncFrSpvcDstCfgTmEfciMapping=nncFrSpvcDstCfgTmEfciMapping, nncCrSpvccBwdAbrDynTrfcIcr=nncCrSpvccBwdAbrDynTrfcIcr, nncCrSpvccFwdTmFrameDiscard=nncCrSpvccFwdTmFrameDiscard, nncCeSpvcTargCeNumber=nncCeSpvcTargCeNumber, nncCrSpvccDstCfgRowStatus=nncCrSpvccDstCfgRowStatus, nncFrSpvcFwdTmCir=nncFrSpvcFwdTmCir, nncFrSpvcBwdTmCir=nncFrSpvcBwdTmCir, nncCrSpvccDstCfgTable=nncCrSpvccDstCfgTable, nncFrSpvcTmPtclMapping=nncFrSpvcTmPtclMapping, nncCrSpvpcFwdAbrDynTrfcRdf=nncCrSpvpcFwdAbrDynTrfcRdf, nncFrSpvcTmIwf=nncFrSpvcTmIwf, nncCrSpvccAdminStatus=nncCrSpvccAdminStatus, nncFrSpvcDstCfgTableEntry=nncFrSpvcDstCfgTableEntry, nncFrSpvcTableEntry=nncFrSpvcTableEntry, nncFrSpvcBwdTmAr=nncFrSpvcBwdTmAr, nncFrSpvcDstCfgTmRemapDlci=nncFrSpvcDstCfgTmRemapDlci, nncCrSpvccDstCfgGroup=nncCrSpvccDstCfgGroup, nncCrSpvpcFwdTmBucketOneCdvt=nncCrSpvpcFwdTmBucketOneCdvt, nncCeSpvcGroup=nncCeSpvcGroup, nncFrSpvcFwdFrMir=nncFrSpvcFwdFrMir, nncCrSpvpcSrcBillingFlag=nncCrSpvpcSrcBillingFlag, nncCeSpvcDstCfgTable=nncCeSpvcDstCfgTable, nncFrSpvcLocRerouteConfig=nncFrSpvcLocRerouteConfig, nncCrSpvpcOperation=nncCrSpvpcOperation, nncCrSpvccSrcBillingFlag=nncCrSpvccSrcBillingFlag, nncCrSpvccBwdTmFrameDiscard=nncCrSpvccBwdTmFrameDiscard, nncFrSpvcCrBwdTmBucketOneRate=nncFrSpvcCrBwdTmBucketOneRate, nncCrSpvpcGroup=nncCrSpvpcGroup, nncFrSpvcDstCfgTmIwf=nncFrSpvcDstCfgTmIwf, nncCrSpvpcServiceCategory=nncCrSpvpcServiceCategory, nncFrSpvcOperation=nncFrSpvcOperation, nncCeSpvcMaxAdminWeight=nncCeSpvcMaxAdminWeight, nncFrSpvcCrBwdTmFrameDiscard=nncFrSpvcCrBwdTmFrameDiscard, nncFrSpvcDstCfgRowStatus=nncFrSpvcDstCfgRowStatus, nncFrSpvcTmPvcMgntProfile=nncFrSpvcTmPvcMgntProfile, nncCrSpvccDstCfgFrVsvdCongestionControl=nncCrSpvccDstCfgFrVsvdCongestionControl, nncCrSpvpcFwdAbrDynTrfcRif=nncCrSpvpcFwdAbrDynTrfcRif)
|
(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_size_constraint, value_range_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'SingleValueConstraint', 'ValueSizeConstraint', 'ValueRangeConstraint')
(atm_vpl_vpi, atm_vcl_vci, atm_vcl_vpi) = mibBuilder.importSymbols('ATM-MIB', 'atmVplVpi', 'atmVclVci', 'atmVclVpi')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(nnc_extensions,) = mibBuilder.importSymbols('NNCGNI0001-SMI', 'nncExtensions')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(integer32, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, mib_identifier, time_ticks, bits, counter64, counter32, ip_address, iso, notification_type, object_identity, gauge32, unsigned32) = mibBuilder.importSymbols('SNMPv2-SMI', 'Integer32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'MibIdentifier', 'TimeTicks', 'Bits', 'Counter64', 'Counter32', 'IpAddress', 'iso', 'NotificationType', 'ObjectIdentity', 'Gauge32', 'Unsigned32')
(row_status, display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'RowStatus', 'DisplayString', 'TextualConvention')
nnc_ext_spvc = module_identity((1, 3, 6, 1, 4, 1, 123, 3, 82))
if mibBuilder.loadTexts:
nncExtSpvc.setLastUpdated('20010215121735Z')
if mibBuilder.loadTexts:
nncExtSpvc.setOrganization('Alcatel CID')
if mibBuilder.loadTexts:
nncExtSpvc.setContactInfo('Alcatel CID Postal: 600 March Road Kanata, Ontario Canada K2K 2E6 Phone: +1 613 591 3600 Fax: +1 613 591 3680')
if mibBuilder.loadTexts:
nncExtSpvc.setDescription("This module contains Alcatel CID's proprietary MIB definition for managing Soft Permanent Virtual Connections (SPVCs). This MIB supports the creation, modification, query, and deletion of SPVCs (Soft Permanent Virtual Connections), on Cell Relay (ATM), Frame Relay, and Circuit Emulation endpoints. For Cell Relay-based endpoints, Permanent Virtual Path Connection (PVPC) and Permanent Virtual Channel Connection (PVCC) are supported, while SPVCCs are supported on Frame Relay and Circuit Emulation endpoints. Cell Relay SPVCs, Frame Relay SPVCs and Circuit Emulation SPVCs are supported in this MIB. SPVCs with any other service types are not supported at this point. For SPVCs interworking across different endpoint types, CR to FR, FR to CR, CR to CE, CE to CR connections are supported. CE to FR or FR to CE are not suppported. Operator directed routing for SPVC connections is not supported at this point. To create an SPVC, the required MIB objects from the destination table must be configured and sent to the destination endpoint. Next, the MIB objects from the source endpoint table (based on the endpoint type and SPVC type - either nncCrSpvpcTable, nncCrSpvccTable, nncFrSpvcTable, or nncCeSpvcTable) are configured and sent to the source endpoint. Assuming a PDU with a RowStatus of 'createAndGo' or 'Active' has been received, if the adminStatus of the SPVC is set to 'enabled', the SPVC will be connected; if the adminStatus of the SPVC is set to 'disabled', the SPVC will be configured but not connected. SPVC creation SET-REQuests can be sent two ways: using a RowStatus value of 'createAndGo', or using multiple SET-REQs using RowStatus values of 'createAndWait' and 'active'. Creating an SPVC using rowStatus=createAndWait(5) In the case of multiple SET-REQs, the RowStatus is set to createAndWait(5) for all but the last SET-REQ, and set to active(1) for the last SET-REQ. The SPVC is configured only after the last PDU (with RowStatus as 'active') is received. Creating an SPVC using rowStatus=createAndGo(4) In the other case, all required MIB objects can fit in one SET-REQ. If using only one SET-REQ, the RowStatus should be set to createAndGo(4). In both cases, default values for MIB objects will be used wherever possible. To delete an SPVC, the correct table objects must be sent to both the destination endpoint and the source endpoint for the given SPVC, using the correct index, and setting the rowStatus to 'destroy'. This will delete the specified SPVC. Some abreviations: abr/ABR/Abr: Available Bit Rate Bwd: Backward. For traffice descriptors from destination endpoint to source endpoint (receiving traffic) cbr/CBR/Cbr: Constant Bit Rate Dst: Destination endpoint Fwd: Forward. For traffic descriptors from source endpoint to destination endpoint (transmitting traffic) nt-vbr/nrtvbr/NRT-VBR: Non-Real-Time Variable Bit Rate Src: Source endpoint Targ: Target. For the destination endpoint info in source endpoint table ubr/UBR/Ubr: Unspecified Bit Rate ")
class Atmformatdisplay(TextualConvention, OctetString):
description = 'This display is for the ATM address prefix format. The following formats which are supported are displayed: DCC ATM Format ------------------------------------------------------------- |A | | | | | | | | | | | | | | | | | | | S| |F | DCC | HO-DSP | ESI | E| |I | | | | | | | | | | | | | | | | | | | L| ------------------------------------------------------------- |...IDP..|......................DSP.........................| |.IDI.| ICD ATM Format ------------------------------------------------------------- |A | | | | | | | | | | | | | | | | | | | S| |F | ICD | HO-DSP | ESI | E| |I | | | | | | | | | | | | | | | | | | | L| ------------------------------------------------------------- |...IDP..|......................DSP.........................| |.IDI.| For the DCC ATM Format, the following format will be displayed: afi-dcc-hodsp-esi-sel For the ICD ATM Format, the following format will be displayed: afi-icd-hodsp-esi-sel Abbreviations: IDP: Initial Domain Part AFI: Authority and Format Identifier IDI: Initial Domain Part DCC: Data Country Code ICD: International Code Designator DSP: Domain Specific Part HO-DSP: The coding of this field is specified by the authority or the coding scheme identified by the IDP. ESI: End System Identifier SEL: Selector '
status = 'current'
display_hint = '1x-2x-10x-6x-1x'
subtype_spec = OctetString.subtypeSpec + value_size_constraint(20, 20)
fixed_length = 20
nnc_ext_spvc_objects = mib_identifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 1))
nnc_ext_spvc_groups = mib_identifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 3))
nnc_ext_spvc_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 123, 3, 82, 4))
nnc_cr_spvpc_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1))
if mibBuilder.loadTexts:
nncCrSpvpcTable.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcTable.setDescription('nncCrSpvpcTable contains all the objects sent to a source endpoint that are used to create, modify, query and delete SPVC connections.')
nnc_cr_spvpc_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ATM-MIB', 'atmVplVpi'))
if mibBuilder.loadTexts:
nncCrSpvpcTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcTableEntry.setDescription('An entry of nncCrSpvpcTable')
nnc_cr_spvpc_service_category = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 6))).clone(namedValues=named_values(('cbr', 1), ('nrtvbr', 2), ('abr', 3), ('ubr', 4), ('rtvbr', 6))).clone('nrtvbr')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcServiceCategory.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcServiceCategory.setDescription('This object is used to set the traffic service category. This object is dependent on the value specified in nncCrSpvpcTrafficDescriptor')
nnc_cr_spvpc_targ_ep_addr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 2), atm_format_display()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcTargEpAddr.setDescription('This object is used to specify the 20 byte AESA address for the target endpoint. The address map is as the following: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | 0 | ------------------------------------------------------------------------ ')
nnc_cr_spvpc_targ_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcTargVpi.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Range: 0 - 4095')
nnc_cr_spvpc_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 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:
nncCrSpvpcAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCrSpvpcAdminStatus to determine if the connection is successful.')
nnc_cr_spvpc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(3)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcPriority.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nnc_cr_spvpc_max_admin_weight = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647)).clone(-1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nnc_cr_spvpc_operation = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7))).clone(namedValues=named_values(('reRouteDualEp', 7)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcOperation.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nnc_cr_spvpc_call_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 4, 7))).clone(namedValues=named_values(('connected', 2), ('waitingForResources', 4), ('readyToConnect', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCrSpvpcCallStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nnc_cr_spvpc_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_cr_spvpc_fwd_abr_dyn_trfc_icr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell (Information) Rate for the forward direction. Range: 0 - 2488320 Kb/s")
nnc_cr_spvpc_fwd_abr_dyn_trfc_rif = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the forward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nnc_cr_spvpc_fwd_abr_dyn_trfc_rdf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the forward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nnc_cr_spvpc_bwd_abr_dyn_trfc_icr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the destination endpoint. Range: 0 - 2488320 Kb/s")
nnc_cr_spvpc_bwd_abr_dyn_trfc_rif = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the backward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nnc_cr_spvpc_bwd_abr_dyn_trfc_rdf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the backward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nnc_cr_spvpc_src_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcSrcBillingFlag.setDescription('Billing Configuration for the source endpoint')
nnc_cr_spvpc_fwd_tm_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('tagAll', 1), ('p0Plus1', 2), ('p0Plus1SlashS0Plus1', 3), ('p0Plus1SlashS0', 4), ('p0Plus1SlashM0Plus1', 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nnc_cr_spvpc_fwd_tm_policing_option = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('tag', 2), ('discard', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmPolicingOption.setDescription('Policing Option for an SPVPC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nnc_cr_spvpc_fwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nnc_cr_spvpc_fwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvpc_fwd_tm_bucket_two_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nnc_cr_spvpc_fwd_tm_bucket_two_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000)).clone(32)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nnc_cr_spvpc_fwd_tm_cdv = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(250, 10000)).clone(250)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmCdv.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nnc_cr_spvpc_fwd_tm_clr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmClr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcFwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nnc_cr_spvpc_bwd_tm_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('tagAll', 1), ('p0Plus1', 2), ('p0Plus1SlashS0Plus1', 3), ('p0Plus1SlashS0', 4), ('p0Plus1SlashM0Plus1', 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nnc_cr_spvpc_bwd_tm_policing_option = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('tag', 2), ('discard', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmPolicingOption.setDescription('Policing Option for an SPVPC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nnc_cr_spvpc_bwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketOneRate.setDescription("This object is for peak information rate (PIR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nnc_cr_spvpc_bwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvpc_bwd_tm_bucket_two_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nnc_cr_spvpc_bwd_tm_bucket_two_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000)).clone(32)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nnc_cr_spvpc_bwd_tm_cdv = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(250, 10000)).clone(250)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nnc_cr_spvpc_bwd_tm_clr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmClr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nnc_cr_spvpc_creator = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 9))).clone(namedValues=named_values(('unknown', 0), ('nmti', 1), ('nm5620', 2), ('snmp', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCrSpvpcCreator.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nnc_cr_spvpc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 1, 1, 34), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_cr_spvpc_dst_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2))
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgTable.setDescription('the nncCrSpvpcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nnc_cr_spvpc_dst_cfg_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ATM-MIB', 'atmVplVpi'))
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgTableEntry.setDescription('An entry of nncCrSpvpcDstCfgTable.')
nnc_cr_spvpc_dst_cfg_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvpc_dst_cfg_policing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('nullPolicing', 0), ('disabled', 1), ('tag', 2), ('discard', 3), ('useSignalled', 4))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgPolicing.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgPolicing.setDescription('CR Policing')
nnc_cr_spvpc_dst_cfg_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint.')
nnc_cr_spvpc_dst_cfg_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_cr_spvpc_dst_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 2, 1, 5), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_cr_spvcc_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3))
if mibBuilder.loadTexts:
nncCrSpvccTable.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTable.setDescription('nncCrSpvccTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query Cell Relay SPVC connections.')
nnc_cr_spvcc_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ATM-MIB', 'atmVclVpi'), (0, 'ATM-MIB', 'atmVclVci'))
if mibBuilder.loadTexts:
nncCrSpvccTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTableEntry.setDescription('An entry of nncCrSpvccTable. It contains the objects required to manage CR SPVCs.')
nnc_cr_spvcc_service_category = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 6))).clone(namedValues=named_values(('cbr', 1), ('nrtvbr', 2), ('abr', 3), ('ubr', 4), ('rtvbr', 6))).clone('nrtvbr')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccServiceCategory.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccServiceCategory.setDescription('This object is used to set the traffic service category. This object is dependent on the value specified in nncCrSpvccTrafficDescriptor')
nnc_cr_spvcc_targ_ep_addr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 2), atm_format_display()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccTargEpAddr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargEpAddr.setDescription('This object is used to specify the AESA address for the target endpoint. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | 0 | ------------------------------------------------------------------------ ')
nnc_cr_spvcc_targ_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccTargVpi.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Range: 0 - 4095')
nnc_cr_spvcc_targ_vci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccTargVci.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the target endpoint. Range: 1 - 65535')
nnc_cr_spvcc_targ_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(16, 1023)))
if mibBuilder.loadTexts:
nncCrSpvccTargDlci.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the target endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nnc_cr_spvcc_targ_ce_number = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1))
if mibBuilder.loadTexts:
nncCrSpvccTargCeNumber.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargCeNumber.setDescription("This object contains circuit number, channel group number or both for the Circuit Emulation endpoint. Used in CR to CE connections when nncCrSpvccTargEpType is configured as circuitEmulation(3). For CE connections on unchannelized DS3_CCE card, it's the circuit number 1-28 for UDT circuit number For CE connections on unchannelized E3_CCE card, it's the circuit number 1-16 for UDT circuit number For CE connections on E1/T1 CES, it's channel group number. 0 for UDT mode, both T1 and E1 1-31 for E1 in SDT mode 1-24 for T1 in SDT mode For CE connections on channelized DS3_CCE-2 card, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 28 for channelized DS3, = 0 for unstructured DS3) channelGroupNum (bits 1-8, = 1 to 24 for SDT mode, = 0 for UDT Mode) For CE connections on channelized E3_CCE-2, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 16) channelGroupNum (bits 1-8, = 1 to 31 for SDT mode, = 0 for UDT Mode) Example: Circuit Number = 7, Channel Group = 3 : nncCrSpvccTargCeNumber = (Circuit Number * 256) + Channel Group = 1795 SPVCs across service types other than circuit emulation do not require this object.")
nnc_cr_spvcc_targ_ep_type = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('cellRelay', 1), ('frameRelay', 2), ('circuitEmulation', 3))).clone('cellRelay')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccTargEpType.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) frameRelay (2) circuitEmulation (3) ')
nnc_cr_spvcc_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 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:
nncCrSpvccAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCrSpvccAdminStatus to determine if the connection is successful.')
nnc_cr_spvcc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(3)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccPriority.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nnc_cr_spvcc_max_admin_weight = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647)).clone(-1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nnc_cr_spvcc_operation = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7))).clone(namedValues=named_values(('reRouteDualEp', 7)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccOperation.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nnc_cr_spvcc_call_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 4, 7))).clone(namedValues=named_values(('connected', 2), ('waitingForResources', 4), ('readyToConnect', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCrSpvccCallStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nnc_cr_spvcc_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_cr_spvcc_fwd_abr_dyn_trfc_icr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the forward direction. Range: 0 - 2488320 Kb/s")
nnc_cr_spvcc_fwd_abr_dyn_trfc_rif = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the forward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nnc_cr_spvcc_fwd_abr_dyn_trfc_rdf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the forward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nnc_cr_spvcc_bwd_abr_dyn_trfc_icr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcIcr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcIcr.setDescription("ABR dynamic traffic descriptor's Initial Cell Rate for the destination endpoint. Range: 0 - 2488320 Kb/s")
nnc_cr_spvcc_bwd_abr_dyn_trfc_rif = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcRif.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcRif.setDescription('ABR traffic Rate Increase Factor for the backward direction. Value is expressed as the -power of 2. Range: 0 - 9')
nnc_cr_spvcc_bwd_abr_dyn_trfc_rdf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 9)).clone(9)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcRdf.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdAbrDynTrfcRdf.setDescription('ABR traffic Rate Decrease Factor descriptor for the backward direction. Value is expressed as the -power of 2 Range: 0 - 9')
nnc_cr_spvcc_src_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccSrcBillingFlag.setDescription('Billing Configuration for the source endpoint')
nnc_cr_spvcc_fwd_tm_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('tagAll', 1), ('p0Plus1', 2), ('p0Plus1SlashS0Plus1', 3), ('p0Plus1SlashS0', 4), ('p0Plus1SlashM0Plus1', 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nnc_cr_spvcc_fwd_tm_policing_option = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('tag', 2), ('discard', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmPolicingOption.setDescription('Policing Option for an SPVCC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nnc_cr_spvcc_fwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nnc_cr_spvcc_fwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvcc_fwd_tm_bucket_two_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nnc_cr_spvcc_fwd_tm_bucket_two_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000)).clone(32)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nnc_cr_spvcc_fwd_tm_cdv = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(250, 10000)).clone(250)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmCdv.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nnc_cr_spvcc_fwd_tm_clr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmClr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nnc_cr_spvcc_fwd_tm_frame_discard = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nnc_cr_spvcc_bwd_tm_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('tagAll', 1), ('p0Plus1', 2), ('p0Plus1SlashS0Plus1', 3), ('p0Plus1SlashS0', 4), ('p0Plus1SlashM0Plus1', 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmTrafficDescriptor.setDescription('This object contains the traffic descriptor for the SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1 (2) (CBR only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nnc_cr_spvcc_bwd_tm_policing_option = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('tag', 2), ('discard', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmPolicingOption.setDescription('Policing Option for an SPVCC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nnc_cr_spvcc_bwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nnc_cr_spvcc_bwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvcc_bwd_tm_bucket_two_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(1000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketTwoRate.setDescription('SIR_0p, SIR_0+1p or MIR_0+1p. This parameter holds the sustained information rate for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nnc_cr_spvcc_bwd_tm_bucket_two_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000)).clone(32)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrt-VBR and rt-VBR only). Range: 1 - 10000 cells')
nnc_cr_spvcc_bwd_tm_cdv = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 36), integer32().subtype(subtypeSpec=value_range_constraint(250, 10000)).clone(250)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) between two endpoints to support the rt-VBR service category. Range: 250-10000 microseconds')
nnc_cr_spvcc_bwd_tm_clr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 37), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmClr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) between two SPVC endpoints when using the nrt-VBR service category. Value set as 1.0e-#')
nnc_cr_spvcc_bwd_tm_frame_discard = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccBwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nnc_cr_spvcc_fr_bwd_tm_ar = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmAr.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s.')
nnc_cr_spvcc_fr_bwd_tm_cir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmCir.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmCir.setDescription('The committed Information Rate, in Kb/s.')
nnc_cr_spvcc_fr_bwd_tm_bc = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmBc.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nnc_cr_spvcc_fr_bwd_tm_be = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmBe.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmBe.setDescription('The Excess Burst Size, in Kb.')
nnc_cr_spvcc_fr_bwd_tm_iwf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 43), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('networkInterworking', 2), ('serviceInterworking', 3), ('fFwdInterworking', 4))).clone('networkInterworking')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmIwf.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nnc_cr_spvcc_fr_bwd_tm_po = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 44), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabled', 3))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPo.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPo.setDescription('Policing')
nnc_cr_spvcc_fr_bwd_tm_pacing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 45), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPacing.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPacing.setDescription('Pacing')
nnc_cr_spvcc_fr_bwd_tm_ptcl_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 46), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('transparent', 0), ('translated', 1))).clone('transparent')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmSIWProfile. Values: transparent (0), translated (1) (see also nncFrSpvcTmSIWProfile)')
nnc_cr_spvcc_fr_bwd_tm_clp_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('cLPEqualsDE', 0), ('cLPEquals0', 1), ('cLPEquals1', 2))).clone('cLPEquals1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmClpMapping.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmClpMapping.setDescription('Cell Loss Priority Mapping. Values: cLPEqualsDE (CLP = DE, 0) cLPEquals0 (CLP = 0, 1 ) cLPEquals1 (CLP = 1, 2 )')
nnc_cr_spvcc_fr_bwd_tm_de_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('dEEqualsCLP', 0), ('dESSCSor0', 1), ('dEEquals1', 2))).clone('dEEqualsCLP')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmDeMapping.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmDeMapping.setDescription('Discard Eligibility Mapping Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nnc_cr_spvcc_fr_bwd_tm_efci_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 49), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('eFCIEqualsFECN', 0), ('eFCIEquals0', 1))).clone('eFCIEqualsFECN')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (EFCI = FECN, 0) eFCIEquals0 (EFCI = 0, 1)')
nnc_cr_spvcc_fr_bwd_tm_pvc_mgnt_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 50), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nnc_cr_spvcc_fr_bwd_tm_siw_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 51), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccFrBwdTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attributes nncFrSpvcTmIwf and nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 = 16.")
nnc_cr_spvcc_creator = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 52), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 9))).clone(namedValues=named_values(('unknown', 0), ('nmti', 1), ('nm5620', 2), ('snmp', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCrSpvccCreator.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nnc_cr_spvcc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 3, 1, 53), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_cr_spvcc_dst_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4))
if mibBuilder.loadTexts:
nncCrSpvccDstCfgTable.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgTable.setDescription('the nncCrSpvccDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nnc_cr_spvcc_dst_cfg_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'ATM-MIB', 'atmVclVpi'), (0, 'ATM-MIB', 'atmVclVci'))
if mibBuilder.loadTexts:
nncCrSpvccDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgTableEntry.setDescription('An entry of nncCrSpvccDstCfgTable.')
nnc_cr_spvcc_dst_cfg_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_cr_spvcc_dst_cfg_policing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('nullPolicing', 0), ('disabled', 1), ('tag', 2), ('discard', 3), ('useSignalled', 4))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgPolicing.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgPolicing.setDescription('CR Policing')
nnc_cr_spvcc_dst_cfg_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint')
nnc_cr_spvcc_dst_cfg_fr_vsvd_congestion_control = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgFrVsvdCongestionControl.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgFrVsvdCongestionControl.setDescription('Congestion Control for VS/VD endpoints, also known as Closed Loop Congestion Control (CLCC).')
nnc_cr_spvcc_dst_cfg_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_cr_spvcc_dst_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 4, 1, 6), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_fr_spvc_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5))
if mibBuilder.loadTexts:
nncFrSpvcTable.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTable.setDescription('nncFrSpvcTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query FR SPVCCs.')
nnc_fr_spvc_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'NNCEXTSPVC-MIB', 'nncFrSpvcSrcDlci'))
if mibBuilder.loadTexts:
nncFrSpvcTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTableEntry.setDescription('An entry of nncFrSpvcTable.')
nnc_fr_spvc_src_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(16, 1023)).clone(17))
if mibBuilder.loadTexts:
nncFrSpvcSrcDlci.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcSrcDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the source endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nnc_fr_spvc_targ_ep_addr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 2), atm_format_display()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTargEpAddr.setDescription("This object contains the target endpoint's 20-byte ATM End System Address (AESA) proposed by ATM Forum. An endpoint address is created by appending the switch-wide 13-byte Internal Switch Subscriber Address Prefix with a 6-byte End Station Identifier (ESI) followed by a selector byte. The ESI is in IEEE MAC address format and the exact form depends upon the destination endpoint and the SPVC commissioning method. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag1| Port | Circuit | ------------------------------------------------------------------------ 20th byte |Circuit(continued) | Stream | ------------------------------------------------------------------------ ")
nnc_fr_spvc_targ_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(16, 1023)).clone(17)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTargDlci.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTargDlci.setDescription('This object contains the data link connection identifier for a frame relay endpoint. This number is used to identify the target endpoint, and has only local significance to the specified link. Range: 16 - 1023')
nnc_fr_spvc_targ_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTargVpi.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the Cell Relay based target endpoint. Range: 0 - 4095')
nnc_fr_spvc_targ_vci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTargVci.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the cell-relay based target endpoint. Range: 1 - 65535')
nnc_fr_spvc_targ_ep_type = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('cellRelay', 1), ('frameRelay', 2))).clone('frameRelay')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTargEpType.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) frameRelay (2) ')
nnc_fr_spvc_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 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:
nncFrSpvcAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncFrSpvcAdminStatus to determine if the connection is successful.')
nnc_fr_spvc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(3)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcPriority.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nnc_fr_spvc_max_admin_weight = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647)).clone(-1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nnc_fr_spvc_operation = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7))).clone(namedValues=named_values(('reRouteDualEp', 7)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcOperation.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nnc_fr_spvc_call_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 4, 7))).clone(namedValues=named_values(('connected', 2), ('waitingForResources', 4), ('readyToConnect', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncFrSpvcCallStatus.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nnc_fr_spvc_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_fr_spvc_src_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcSrcBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcSrcBillingFlag.setDescription('Billing Configuration for the source endpoint.')
nnc_fr_spvc_fr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bestEffort', 1), ('committedThroughput', 2), ('lowLatency', 3), ('realTime', 4))).clone('bestEffort')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFrPriority.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFrPriority.setDescription('Frame Relay Priority.')
nnc_fr_spvc_fr_vsvd_congestion_control = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFrVsvdCongestionControl.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFrVsvdCongestionControl.setDescription('Congestion Control for VS/VD endpoints, also known as Closed Loop Congestion Control (CLCC).')
nnc_fr_spvc_fwd_fr_mir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(72)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdFrMir.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdFrMir.setDescription('The FR Src->Dst Minimum Information Rate, used to set the minimum rate on a CLCC FR-FR SPVC connection. If nncFrSpvcFrVsvdCongestionControl is not enabled, this attribute has no effect. Range: 0 - 44210 Kb/s')
nnc_fr_spvc_fwd_tm_ar = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmAr.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nnc_fr_spvc_fwd_tm_cir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmCir.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmCir.setDescription('The committed Information Rate, in Kb/s')
nnc_fr_spvc_fwd_tm_bc = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmBc.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nnc_fr_spvc_fwd_tm_be = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmBe.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmBe.setDescription('Excess Burst Size, Kb.')
nnc_fr_spvc_tm_iwf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('networkInterworking', 2), ('serviceInterworking', 3), ('fFwdInterworking', 4))).clone('networkInterworking')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmIwf.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nnc_fr_spvc_fwd_tm_po = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabled', 3))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmPo.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmPo.setDescription('Policing. ')
nnc_fr_spvc_fwd_tm_pacing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmPacing.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcFwdTmPacing.setDescription('Pacing.')
nnc_fr_spvc_tm_ptcl_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('transparent', 0), ('translated', 1))).clone('transparent')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmSIWProfile. Values: transparent (0), translated (1) (see also nncFrSpvcTmSIWProfile)')
nnc_fr_spvc_tm_clp_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('cLPEqualsDE', 0), ('cLPEquals0', 1), ('cLPEquals1', 2))).clone('cLPEquals1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmClpMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmClpMapping.setDescription('Cell Loss Priority Mapping, for use in FR-CR interworking SPVCs. Values: cLPEqualsDE (CLP = DE, 0) cLPEquals0 (CLP = 0, 1 ) cLPEquals1 (CLP = 1, 2 )')
nnc_fr_spvc_tm_de_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('dEEqualsCLP', 0), ('dESSCSor0', 1), ('dEEquals1', 2))).clone('dEEqualsCLP')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmDeMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmDeMapping.setDescription('Discard Eligibility Mapping, for use in FR-CR interworking SPVCs. Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nnc_fr_spvc_tm_efci_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('eFCIEqualsFECN', 0), ('eFCIEquals0', 1))).clone('eFCIEqualsFECN')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (EFCI = FECN, 0) eFCIEquals0 (EFCI = 0, 1)')
nnc_fr_spvc_tm_pvc_mgnt_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nnc_fr_spvc_tm_siw_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attributes nncFrSpvcTmIwf and nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 - 16.")
nnc_fr_spvc_tm_remap_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(16, 1023)).clone(17)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcTmRemapDlci.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcTmRemapDlci.setDescription('The source end-point Data Link Connection Identifier for many-to-one Network Interworking (IWF2) connections.')
nnc_fr_spvc_bwd_fr_mir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(72)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdFrMir.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdFrMir.setDescription('The FR Dst->Src Minimum Information Rate, used on CLCC-enabled connections. Range: 0 - 44210 Kb/s')
nnc_fr_spvc_bwd_tm_ar = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmAr.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nnc_fr_spvc_bwd_tm_cir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmCir.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmCir.setDescription('The committed Information Rate, in Kb/s')
nnc_fr_spvc_bwd_tm_bc = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmBc.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmBc.setDescription('The Committed Burst Size, in Kb.')
nnc_fr_spvc_bwd_tm_be = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmBe.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmBe.setDescription('The Excess Burst Size, Kb.')
nnc_fr_spvc_bwd_tm_po = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabled', 3))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmPo.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmPo.setDescription('Policing.')
nnc_fr_spvc_bwd_tm_pacing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 37), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmPacing.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcBwdTmPacing.setDescription('Pacing.')
nnc_fr_spvc_cr_tm_service_category = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 38), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 6))).clone(namedValues=named_values(('nrtvbr', 2), ('abr', 3), ('ubr', 4), ('rtvbr', 6))).clone('ubr')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrTmServiceCategory.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrTmServiceCategory.setDescription('This object is used to set the traffic service category for SPVC Connections. This object is dependent on the value specified in nncFrSpvcCrBwdTmTrafficDescriptor.')
nnc_fr_spvc_cr_bwd_tm_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 39), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3, 4, 5))).clone(namedValues=named_values(('tagAll', 1), ('p0Plus1SlashS0Plus1', 3), ('p0Plus1SlashS0', 4), ('p0Plus1SlashM0Plus1', 5))).clone('p0Plus1SlashS0Plus1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmTrafficDescriptor.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmTrafficDescriptor.setDescription('This object contains the CR traffic descriptor for a FR-CR SPVC. Tag All (1) (UBR using 2k/12k fabric only) P_0+1/S_0+1 (3) (NRT/RT-VBR only) P_0+1/S_0 (4) (NRT/RT-VBR only) P_0+1/M_0+1 (5) (ABR and UBR only)')
nnc_fr_spvc_cr_bwd_tm_policing_option = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 40), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('tag', 2), ('discard', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmPolicingOption.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmPolicingOption.setDescription('Policing Option for a FR SPVC. tag is supported only on rt-VBR/nrt-VBR connections that use the P_0+1/S_0 traffic descriptor')
nnc_fr_spvc_cr_bwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(256)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketOneRate.setDescription("Used in FR - CR interworking. This object is for peak cell rate (PCR), the cell rate which the cell endpoint may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s")
nnc_fr_spvc_cr_bwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 42), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(500)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for the CR endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_fr_spvc_cr_bwd_tm_bucket_two_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 43), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(72)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketTwoRate.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketTwoRate.setDescription('Used in FR - CR interworking. The attribute contains the SIR_0, SIR_0+1 or MIR_0+1. This parameter holds the sustained information rate (SIR_0 or SIR_0+1) for VBR traffic, and the minimum information rate for ABR/UBR traffic. Range: 0 - 2488320 Kb/s')
nnc_fr_spvc_cr_bwd_tm_bucket_two_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(1, 10000)).clone(32)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketTwoMbs.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmBucketTwoMbs.setDescription('This object is for the maximum burst size, in cells, for SIR_0p or SIR_0+1p (nrtVbr and rtVbr only). Range: 1 - 10000 cells')
nnc_fr_spvc_cr_bwd_tm_cdv = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(250, 10000)).clone(250)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmCdv.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmCdv.setDescription('This value is to set the cell delay variation (CDV) at the CR endpoint. Applicable only when the rt-VBR service category is used. Range: 250-10000 microseconds')
nnc_fr_spvc_cr_bwd_tm_clr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(1, 7)).clone(7)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmClr.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmClr.setDescription('The object is to set the cell loss ratio (CLR) at the CR endpoint of a FR-CR SPVC. Valid only when using the nrt-VBR service category. Value set as 1.0e-#')
nnc_fr_spvc_cr_bwd_tm_frame_discard = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 47), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmFrameDiscard.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCrBwdTmFrameDiscard.setDescription('The Frame (AAL protocol data unit) Discard option. When enabled, cells are discarded at the frame level by examining the SDU-type in the payload type field of the ATM cell header.')
nnc_fr_spvc_creator = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 9))).clone(namedValues=named_values(('unknown', 0), ('nmti', 1), ('nm5620', 2), ('snmp', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncFrSpvcCreator.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcCreator.setDescription('The object retrieves the creator of a given SPVC connection.')
nnc_fr_spvc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 5, 1, 49), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_fr_spvc_dst_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6))
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTable.setDescription('the nncFrSpvcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nnc_fr_spvc_dst_cfg_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'), (0, 'NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmRemapDlci'))
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTableEntry.setDescription('An entry of nncFrSpvcDstCfgTable.')
nnc_fr_spvc_dst_cfg_tm_ar = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmAr.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmAr.setDescription('This object is used to specify the Access Rate, in Kb/s')
nnc_fr_spvc_dst_cfg_tm_cir = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 44210)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmCir.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmCir.setDescription('The committed Information Rate, Kb/s')
nnc_fr_spvc_dst_cfg_tm_bc = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmBc.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmBc.setDescription('The Committed Burst Size, in Kb.')
nnc_fr_spvc_dst_cfg_tm_be = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 2097151)).clone(64)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmBe.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmBe.setDescription('Excess Burst Size, in Kb.')
nnc_fr_spvc_dst_cfg_tm_iwf = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4))).clone(namedValues=named_values(('none', 0), ('networkInterworking', 2), ('serviceInterworking', 3), ('fFwdInterworking', 4))).clone('networkInterworking')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmIwf.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmIwf.setDescription('Interworking Function. Values: none (None (FR Switching) = 0) networkInterworking (Network Interworking = 2) serviceInterworking (Service Interworking = 3) FFwd Interworking (FFwd Interworking = 4)')
nnc_fr_spvc_dst_cfg_tm_po = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabled', 3))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPo.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPo.setDescription('Policing.')
nnc_fr_spvc_dst_cfg_tm_pacing = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPacing.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPacing.setDescription('Pacing.')
nnc_fr_spvc_dst_cfg_tm_ptcl_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('transparent', 0), ('translated', 1))).clone('transparent')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPtclMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPtclMapping.setDescription('Protocol Mapping for Service Interworking SPVCs. If Translated Service Interworking is selected, the a profile must be set using the attribute nncFrSpvcTmPvcMgntProfile.')
nnc_fr_spvc_dst_cfg_tm_clp_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('cLPEqualsDE', 0), ('cLPEquals0', 1), ('cLPEquals1', 2))).clone('cLPEquals1')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmClpMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmClpMapping.setDescription('Cell Loss Priority Mapping. Values: cLPEqualsDE (CLP = DE) cLPEquals0 (CLP = 0 ) cLPEquals1 (CLP = 1 )')
nnc_fr_spvc_dst_cfg_tm_de_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('dEEqualsCLP', 0), ('dESSCSor0', 1), ('dEEquals1', 2))).clone('dEEqualsCLP')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmDeMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmDeMapping.setDescription('Discard Eligibility Mapping Values: dEEqualsCLP (DE = CLP, 0) dESSCSor0 (Network Interworking: DE=FR_SSCS Service Interworking: DE=0, 1) dEEquals1 (Service Interworking: DE = 1, 2) Only the first two values are valid when using Network Interworking.')
nnc_fr_spvc_dst_cfg_tm_efci_mapping = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('eFCIEqualsFECN', 0), ('eFCIEquals0', 1))).clone('eFCIEqualsFECN')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmEfciMapping.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmEfciMapping.setDescription('Explicit Forward Congestion Indication Mapping (Applies only to Service Interworking (IWF3), FR to ATM) Values: eFCIEqualsFECN (0) eFCIEquals0 (1)')
nnc_fr_spvc_dst_cfg_tm_pvc_mgnt_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('enabled', 0), ('disabled', 1))).clone('enabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPvcMgntProfile.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmPvcMgntProfile.setDescription('Enables or disables the PVC Management Profile. When enabled, LMI is enabled on the network-side of the connection. Used only with FR-CR network interworking selected.')
nnc_fr_spvc_dst_cfg_tm_siw_profile = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmSIWProfile.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmSIWProfile.setDescription("The FR-CR profile index for service interworking connections. This attribute is used to define the translation profile to use when a FR to CR SPVC is configured for Translated Service Interworking (using the attribute nncFrSpvcTmPtclMapping). If the profile selected isn't defined on the remote node then the connection will be rejected. Range: 1 = 16.")
nnc_fr_spvc_dst_cfg_tm_remap_dlci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(16, 1023)).clone(17)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmRemapDlci.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgTmRemapDlci.setDescription('The source end-point Data Link Connection Identifier for many-to-one Network Interworking (IWF2) connections.')
nnc_fr_spvc_dst_cfg_billing_flag = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1))).clone(namedValues=named_values(('disabled', 0), ('enabled', 1))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgBillingFlag.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgBillingFlag.setDescription('Billing Configuration for the destination endpoint.')
nnc_fr_spvc_dst_cfg_fr_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bestEffort', 1), ('committedThroughput', 2), ('lowLatency', 3), ('realTime', 4))).clone('bestEffort')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgFrPriority.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgFrPriority.setDescription('Frame Relay Priority.')
nnc_fr_spvc_dst_cfg_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledUniSide', 2), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. It can be configured for either the UNI side or the NNI side, or disabled.")
nnc_fr_spvc_dst_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 6, 1, 18), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_ce_spvc_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7))
if mibBuilder.loadTexts:
nncCeSpvcTable.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTable.setDescription('nncCeSpvcTable contains all the objects sent to a source endpoint that are used to create, modify, delete and query CE SPVCCs. The table is indexed using ifIndex, which includes the circuit number field.')
nnc_ce_spvc_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
nncCeSpvcTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTableEntry.setDescription('An entry of nncCeSpvcTable.')
nnc_ce_spvc_targ_ep_addr = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 1), atm_format_display()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcTargEpAddr.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTargEpAddr.setDescription('This object is used to specify the AESA address of the target endpoint. The mapping scheme is as follows: Byte\\Bit 8 7 6 5 4 3 2 1 ------------------------------------------------------------------------ 1-13 byte | 13-byte Internal Subscriber Prefix | ------------------------------------------------------------------------ 14th byte | I/G | U/L | OUI(most significant 6 bits) | ------------------------------------------------------------------------ 15th byte | OUI(2nd most significant 8 bits | ------------------------------------------------------------------------ 16th byte | OUI(3rd most significant 8 bits | ------------------------------------------------------------------------ 17th byte | Shelf/Slot(1st most significant 8 bits | ------------------------------------------------------------------------ 18th byte | Shelf/Slot(2nd most significant 8 bits | ------------------------------------------------------------------------ 19th byte |Flag0| Port | ------------------------------------------------------------------------ 20th byte | Not used, default 0 | ------------------------------------------------------------------------ ')
nnc_ce_spvc_targ_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(0, 4095))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcTargVpi.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTargVpi.setDescription('This object contains the virtual path identifier (VPI) value for the target endpoint. Used in interworking CE to CR connections when nncCeSpvcTargEpType configured as cellRelay(1). Range: 0 - 4095')
nnc_ce_spvc_targ_vci = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 65535))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcTargVci.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTargVci.setDescription('This object contains the virtual channel identifier (VCI) value for the target endpoint. Used in interworking CE to CR connections when nncCeSpvcTargEpType configured as cellRelay(1). Range: 1 - 65535')
nnc_ce_spvc_targ_ce_number = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 65535)).clone(1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcTargCeNumber.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTargCeNumber.setDescription("This object contains circuit number, channel group number or both for the Circuit Emulation endpoint. Used in CE to CE connections when nncCrSpvccTargEpType is configured as circuitEmulation(3). For CE connections on unchannelized DS3_CCE card, it's the circuit number 1-28 for UDT circuit number For CE connections on unchannelized E3_CCE card, it's the circuit number 1-16 for UDT circuit number For CE connections on E1/T1 CES, it's channel group number. 0 for UDT mode, both T1 and E1 1-31 for E1 in SDT mode 1-24 for T1 in SDT mode For CE connections on channelized DS3_CCE-2 card, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 28 for channelized DS3, = 0 for unstructured DS3) channelGroupNum (bits 1-8, = 1 to 24 for SDT mode, = 0 for UDT Mode) For CE connections on channelized E3_CCE-2, it's circuit number and channel group number combined in the upper and lower byte. circuitNum (bits 9-16, = 1 to 16) channelGroupNum (bits 1-8, = 1 to 31 for SDT mode, = 0 for UDT Mode) Example: Circuit Number = 7, Channel Group = 3 : nncCrSpvccTargCeNumber = (Circuit Number * 256) + Channel Group = 1795 SPVCs across service types other than circuit emulation do not require this object.")
nnc_ce_spvc_targ_ep_type = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('cellRelay', 1), ('circuitEmulation', 3))).clone('circuitEmulation')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcTargEpType.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcTargEpType.setDescription('This object specifies a target endpoint as one of the following types: cellRelay (1) circuitEmulation (3) ')
nnc_ce_spvc_admin_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 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:
nncCeSpvcAdminStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcAdminStatus.setDescription('This object accepts two values, enabled (1), and disabled (2). When the value is disabled, the SPVC is not connected. When enabled, the SPVC is connected when possible. Use nncCeSpvcAdminStatus to determine if the connection is successful.')
nnc_ce_spvc_priority = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 16)).clone(3)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcPriority.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcPriority.setDescription('This object is used to set the priority for a SPVC connection request. It ranges between 1-16, with the following values: Best Priority = 1 Default Priority = 3 Worst Priority = 16')
nnc_ce_spvc_max_admin_weight = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(-1, 2147483647)).clone(-1)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcMaxAdminWeight.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcMaxAdminWeight.setDescription('This object is used to set a cost threshold for an SPVC connection. If the total cost of all VPCs exceeds this weight value for a given path, this SPVC will choose an alternative path or give up. Infinite = -1 Min Admin Weight = 0 Max Admin Weight = 2147483647')
nnc_ce_spvc_operation = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(7))).clone(namedValues=named_values(('reRouteDualEp', 7)))).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcOperation.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcOperation.setDescription('This object is used to request a reroute operation. Querying this object will not provide any useful information.')
nnc_ce_spvc_call_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 4, 7))).clone(namedValues=named_values(('connected', 2), ('waitingForResources', 4), ('readyToConnect', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCeSpvcCallStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcCallStatus.setDescription("This read-only object is used to query the state of a particular SPVC. SPVCs that are connected and operational will return a value of 'connected', while those that are incomplete or otherwise unable to be connected will return 'waitingForResources'. SPVCs that are configured but not yet connected will contain a value of 'readyForConnect'.")
nnc_ce_spvc_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. For circuit emulation UNI side is not supported. It can be configured for either NNI side or disabled.")
nnc_ce_spvc_fwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(73)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcFwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcFwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s For N x DS0 SDT Basic connections = ((((1 + 1.0 / 128) * 8 * N / K) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 1..47 is the number of data octets per cell. For N x DS0 SDT CAS connections = ((((1 + 1.0 / 128) * 8 * (((Cn * N) + (N % 2)) / (Ck * K))) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 2..47 is the number of data octets per cell. Cn = 49 for T1 Cn = 33 for E1 Ck = 48 for T1 Ck = 32 for E1 = 1755 Kb/s for T1,DS1 UDT connections = 2328 Kb/s for E1 UDT connections = 50842 Kb/s for DS3 UDT connections")
nnc_ce_spvc_fwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(3000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcFwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcFwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_ce_spvc_bwd_tm_bucket_one_rate = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 2488320)).clone(73)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcBwdTmBucketOneRate.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcBwdTmBucketOneRate.setDescription("This object is for peak cell rate (PCR), the cell rate which the source may never exceed. It is used to determine which cells are 'excess'. Measured in Kb/s. Range: 0 - 2488320 Kb/s For N x DS0 SDT Basic connections = ((((1 + 1.0 / 128) * 8 * N / K) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 1..47 is the number of data octets per cell. For N x DS0 SDT CAS connections = ((((1 + 1.0 / 128) * 8 * (((Cn * N) + (N % 2)) / (Ck * K))) + (1.0/1000)) * 53.0 * 8.0) where N = 1..24 for T1 N = 1..31 for E1 K = 2..47 is the number of data octets per cell. Cn = 49 for T1 Cn = 33 for E1 Ck = 48 for T1 Ck = 32 for E1 = 1755 Kb/s for T1,DS1 UDT connections = 2328 Kb/s for E1 UDT connections = 50842 Kb/s for DS3 UDT connections")
nnc_ce_spvc_bwd_tm_bucket_one_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(3000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcBwdTmBucketOneCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcBwdTmBucketOneCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_ce_spvc_creator = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 9))).clone(namedValues=named_values(('unknown', 0), ('nmti', 1), ('nm5620', 2), ('snmp', 9)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nncCeSpvcCreator.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcCreator.setDescription('The object retrieves the creator of a SPVC connection.')
nnc_ce_spvc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 7, 1, 17), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_ce_spvc_dst_cfg_table = mib_table((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8))
if mibBuilder.loadTexts:
nncCeSpvcDstCfgTable.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgTable.setDescription('the nncCeSpvcDstCfg table contains common objects used to configure, delete, modify and query the destination end point of an SPVC across different Alcatel CID platforms.')
nnc_ce_spvc_dst_cfg_table_entry = mib_table_row((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
nncCeSpvcDstCfgTableEntry.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgTableEntry.setDescription('An entry of nncCeSpvcDstCfgTable.')
nnc_ce_spvc_dst_cfg_cdvt = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 190000)).clone(3000)).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgCdvt.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgCdvt.setDescription('This object is used to set cell delay variation tolerance (CDVT) for one endpoint, measured in microseconds. Range: 1 - 190,000 microseconds')
nnc_ce_spvc_dst_cfg_loc_reroute_config = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 3))).clone(namedValues=named_values(('disabled', 1), ('enabledNniSide', 3))).clone('disabled')).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgLocRerouteConfig.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgLocRerouteConfig.setDescription("This object is used to configure the 'reroute on loss of continuity' feature using OAM-CC cells. For circuit emulation UNI side is not supported. It can be configured for either NNI side or disabled.")
nnc_ce_spvc_dst_cfg_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 123, 3, 82, 1, 8, 1, 3), row_status()).setMaxAccess('readcreate')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgRowStatus.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgRowStatus.setDescription("This object is used to control the status of a PDU and to query the status of an SPVC. When the RowStatus value is 'createAndWait', information for a row is cached in memory; when RowStatus is set to 'createAndGo' or 'active', it indicates that all information is to be written to permanent storage, and the SPVC to be enabled (AdminStatus must also be set to 'enabled'). When querying the object, 'active' indicates a configured SPVC with its AdminStatus enabled, while a status of 'notInService' indicates either a disabled AdminStatus or an inability to connect the SPVC. If a query returns 'notInService', use the CallStatus object to further determine the state of the SPVC. If the value 'notReady' is returned, it indicates that the SNMP agent is awaiting further information before activating the connection. When deleting a connection, use this object with the value 'destroy'")
nnc_cr_spvpc_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 1)).setObjects(('NNCEXTSPVC-MIB', 'nncCrSpvpcServiceCategory'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcTargEpAddr'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcTargVpi'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcAdminStatus'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcPriority'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcMaxAdminWeight'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcOperation'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcCallStatus'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdAbrDynTrfcIcr'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdAbrDynTrfcRif'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdAbrDynTrfcRdf'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdAbrDynTrfcIcr'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdAbrDynTrfcRif'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdAbrDynTrfcRdf'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcSrcBillingFlag'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmTrafficDescriptor'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmPolicingOption'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmBucketTwoRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmBucketTwoMbs'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmCdv'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcFwdTmClr'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmTrafficDescriptor'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmPolicingOption'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmBucketTwoRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmBucketTwoMbs'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmCdv'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcBwdTmClr'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcCreator'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_cr_spvpc_group = nncCrSpvpcGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcGroup.setDescription('Common MIB objects for configuring a CR SPVPC source end-point across all Alcatel CID ATM platforms.')
nnc_cr_spvpc_dst_cfg_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 2)).setObjects(('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgPolicing'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgBillingFlag'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_cr_spvpc_dst_cfg_group = nncCrSpvpcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvpcDstCfgGroup.setDescription('Common MIB objects for configuring a Cell Relay SPVPC destination end-point across all Alcatel CID ATM platforms.')
nnc_cr_spvcc_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 3)).setObjects(('NNCEXTSPVC-MIB', 'nncCrSpvccServiceCategory'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargEpAddr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargVpi'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargVci'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargDlci'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargCeNumber'), ('NNCEXTSPVC-MIB', 'nncCrSpvccTargEpType'), ('NNCEXTSPVC-MIB', 'nncCrSpvccAdminStatus'), ('NNCEXTSPVC-MIB', 'nncCrSpvccPriority'), ('NNCEXTSPVC-MIB', 'nncCrSpvccMaxAdminWeight'), ('NNCEXTSPVC-MIB', 'nncCrSpvccOperation'), ('NNCEXTSPVC-MIB', 'nncCrSpvccCallStatus'), ('NNCEXTSPVC-MIB', 'nncCrSpvccLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdAbrDynTrfcIcr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdAbrDynTrfcRif'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdAbrDynTrfcRdf'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdAbrDynTrfcIcr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdAbrDynTrfcRif'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdAbrDynTrfcRdf'), ('NNCEXTSPVC-MIB', 'nncCrSpvccSrcBillingFlag'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmTrafficDescriptor'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmPolicingOption'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmBucketTwoRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmBucketTwoMbs'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmCdv'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmClr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFwdTmFrameDiscard'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmTrafficDescriptor'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmPolicingOption'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmBucketTwoRate'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmBucketTwoMbs'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmCdv'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmClr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccBwdTmFrameDiscard'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmAr'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmCir'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmBc'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmBe'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmIwf'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmPo'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmPacing'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmPtclMapping'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmClpMapping'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmDeMapping'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmEfciMapping'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmPvcMgntProfile'), ('NNCEXTSPVC-MIB', 'nncCrSpvccFrBwdTmSIWProfile'), ('NNCEXTSPVC-MIB', 'nncCrSpvccCreator'), ('NNCEXTSPVC-MIB', 'nncCrSpvccRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_cr_spvcc_group = nncCrSpvccGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccGroup.setDescription('Common MIB objects for configuring a CR SPVC source end-point across all Alcatel CID ATM platforms.')
nnc_cr_spvcc_dst_cfg_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 4)).setObjects(('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgCdvt'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgPolicing'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgBillingFlag'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgFrVsvdCongestionControl'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_cr_spvcc_dst_cfg_group = nncCrSpvccDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCrSpvccDstCfgGroup.setDescription('Common MIB objects for configuring a Cell Relay SPVC destination end-point across all Alcatel CID ATM platforms.')
nnc_fr_spvc_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 5)).setObjects(('NNCEXTSPVC-MIB', 'nncFrSpvcSrcDlci'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTargEpAddr'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTargDlci'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTargVpi'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTargVci'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTargEpType'), ('NNCEXTSPVC-MIB', 'nncFrSpvcAdminStatus'), ('NNCEXTSPVC-MIB', 'nncFrSpvcPriority'), ('NNCEXTSPVC-MIB', 'nncFrSpvcMaxAdminWeight'), ('NNCEXTSPVC-MIB', 'nncFrSpvcOperation'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCallStatus'), ('NNCEXTSPVC-MIB', 'nncFrSpvcLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncFrSpvcSrcBillingFlag'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFrPriority'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFrVsvdCongestionControl'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdFrMir'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmAr'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmCir'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmBc'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmBe'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmIwf'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmPo'), ('NNCEXTSPVC-MIB', 'nncFrSpvcFwdTmPacing'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmPtclMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmClpMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmDeMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmEfciMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmPvcMgntProfile'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmSIWProfile'), ('NNCEXTSPVC-MIB', 'nncFrSpvcTmRemapDlci'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmAr'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmCir'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmBc'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmBe'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmPo'), ('NNCEXTSPVC-MIB', 'nncFrSpvcBwdTmPacing'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrTmServiceCategory'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmTrafficDescriptor'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmPolicingOption'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmBucketTwoRate'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmBucketTwoMbs'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmCdv'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmClr'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCrBwdTmFrameDiscard'), ('NNCEXTSPVC-MIB', 'nncFrSpvcCreator'), ('NNCEXTSPVC-MIB', 'nncFrSpvcRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_fr_spvc_group = nncFrSpvcGroup.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcGroup.setDescription('Common MIB objects for configuring an SPVC using a Frame Relay source end-point across all Alcatel CID ATM platforms.')
nnc_fr_spvc_dst_cfg_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 6)).setObjects(('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmAr'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmCir'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmBc'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmBe'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmIwf'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmPo'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmPacing'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmPtclMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmClpMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmDeMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmEfciMapping'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmPvcMgntProfile'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmSIWProfile'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgTmRemapDlci'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgBillingFlag'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgFrPriority'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_fr_spvc_dst_cfg_group = nncFrSpvcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts:
nncFrSpvcDstCfgGroup.setDescription('Common MIB objects for configuring a Frame-Relay SPVC destination end-point across all Alcatel CID ATM platforms.')
nnc_ce_spvc_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 7)).setObjects(('NNCEXTSPVC-MIB', 'nncCeSpvcTargEpAddr'), ('NNCEXTSPVC-MIB', 'nncCeSpvcTargVpi'), ('NNCEXTSPVC-MIB', 'nncCeSpvcTargVci'), ('NNCEXTSPVC-MIB', 'nncCeSpvcTargCeNumber'), ('NNCEXTSPVC-MIB', 'nncCeSpvcTargEpType'), ('NNCEXTSPVC-MIB', 'nncCeSpvcAdminStatus'), ('NNCEXTSPVC-MIB', 'nncCeSpvcPriority'), ('NNCEXTSPVC-MIB', 'nncCeSpvcMaxAdminWeight'), ('NNCEXTSPVC-MIB', 'nncCeSpvcOperation'), ('NNCEXTSPVC-MIB', 'nncCeSpvcCallStatus'), ('NNCEXTSPVC-MIB', 'nncCeSpvcLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCeSpvcFwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCeSpvcFwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCeSpvcBwdTmBucketOneRate'), ('NNCEXTSPVC-MIB', 'nncCeSpvcBwdTmBucketOneCdvt'), ('NNCEXTSPVC-MIB', 'nncCeSpvcCreator'), ('NNCEXTSPVC-MIB', 'nncCeSpvcRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_ce_spvc_group = nncCeSpvcGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcGroup.setDescription('Common MIB objects for configuring a Circuit Emulation-based SPVC source end-point across all Alcatel CID ATM platforms.')
nnc_ce_spvc_dst_cfg_group = object_group((1, 3, 6, 1, 4, 1, 123, 3, 82, 3, 8)).setObjects(('NNCEXTSPVC-MIB', 'nncCeSpvcDstCfgCdvt'), ('NNCEXTSPVC-MIB', 'nncCeSpvcDstCfgLocRerouteConfig'), ('NNCEXTSPVC-MIB', 'nncCeSpvcDstCfgRowStatus'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_ce_spvc_dst_cfg_group = nncCeSpvcDstCfgGroup.setStatus('current')
if mibBuilder.loadTexts:
nncCeSpvcDstCfgGroup.setDescription('Common MIB objects for configuring a Circuit Emulation SPVC destination end-point across all Alcatel CID ATM platforms.')
nnc_spvc_compliance = module_compliance((1, 3, 6, 1, 4, 1, 123, 3, 82, 4, 1)).setObjects(('NNCEXTSPVC-MIB', 'nncCrSpvpcGroup'), ('NNCEXTSPVC-MIB', 'nncCrSpvpcDstCfgGroup'), ('NNCEXTSPVC-MIB', 'nncCrSpvccGroup'), ('NNCEXTSPVC-MIB', 'nncCrSpvccDstCfgGroup'), ('NNCEXTSPVC-MIB', 'nncFrSpvcGroup'), ('NNCEXTSPVC-MIB', 'nncFrSpvcDstCfgGroup'), ('NNCEXTSPVC-MIB', 'nncCeSpvcGroup'), ('NNCEXTSPVC-MIB', 'nncCeSpvcDstCfgGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
nnc_spvc_compliance = nncSpvcCompliance.setStatus('current')
if mibBuilder.loadTexts:
nncSpvcCompliance.setDescription('The compliance statement for Alcatel CID SPVC MIB implementation.')
mibBuilder.exportSymbols('NNCEXTSPVC-MIB', nncCrSpvpcTableEntry=nncCrSpvpcTableEntry, nncCeSpvcOperation=nncCeSpvcOperation, nncCrSpvpcBwdTmBucketOneRate=nncCrSpvpcBwdTmBucketOneRate, nncCrSpvccBwdTmPolicingOption=nncCrSpvccBwdTmPolicingOption, nncFrSpvcTargDlci=nncFrSpvcTargDlci, nncCrSpvccFwdTmTrafficDescriptor=nncCrSpvccFwdTmTrafficDescriptor, nncFrSpvcDstCfgTmAr=nncFrSpvcDstCfgTmAr, nncCrSpvpcDstCfgTable=nncCrSpvpcDstCfgTable, nncCrSpvccBwdAbrDynTrfcRdf=nncCrSpvccBwdAbrDynTrfcRdf, nncFrSpvcDstCfgTmCir=nncFrSpvcDstCfgTmCir, nncFrSpvcDstCfgTmDeMapping=nncFrSpvcDstCfgTmDeMapping, nncCrSpvpcDstCfgPolicing=nncCrSpvpcDstCfgPolicing, nncFrSpvcFwdTmAr=nncFrSpvcFwdTmAr, nncFrSpvcFwdTmPo=nncFrSpvcFwdTmPo, nncCrSpvccFwdTmClr=nncCrSpvccFwdTmClr, nncFrSpvcCrBwdTmClr=nncFrSpvcCrBwdTmClr, nncFrSpvcFwdTmPacing=nncFrSpvcFwdTmPacing, nncCrSpvccBwdTmBucketOneCdvt=nncCrSpvccBwdTmBucketOneCdvt, nncFrSpvcDstCfgTmClpMapping=nncFrSpvcDstCfgTmClpMapping, nncCrSpvpcFwdTmPolicingOption=nncCrSpvpcFwdTmPolicingOption, nncFrSpvcBwdTmBc=nncFrSpvcBwdTmBc, nncCrSpvpcAdminStatus=nncCrSpvpcAdminStatus, nncCrSpvpcFwdTmClr=nncCrSpvpcFwdTmClr, nncCrSpvccFwdTmBucketTwoRate=nncCrSpvccFwdTmBucketTwoRate, nncFrSpvcFrVsvdCongestionControl=nncFrSpvcFrVsvdCongestionControl, nncFrSpvcDstCfgTmBe=nncFrSpvcDstCfgTmBe, nncFrSpvcDstCfgTmPacing=nncFrSpvcDstCfgTmPacing, nncCeSpvcCreator=nncCeSpvcCreator, nncCrSpvccTargEpAddr=nncCrSpvccTargEpAddr, nncCrSpvpcBwdTmPolicingOption=nncCrSpvpcBwdTmPolicingOption, nncFrSpvcDstCfgGroup=nncFrSpvcDstCfgGroup, nncFrSpvcTmSIWProfile=nncFrSpvcTmSIWProfile, nncCeSpvcCallStatus=nncCeSpvcCallStatus, nncSpvcCompliance=nncSpvcCompliance, nncCrSpvccFrBwdTmEfciMapping=nncCrSpvccFrBwdTmEfciMapping, nncCrSpvccDstCfgTableEntry=nncCrSpvccDstCfgTableEntry, nncCeSpvcDstCfgLocRerouteConfig=nncCeSpvcDstCfgLocRerouteConfig, nncCrSpvpcBwdAbrDynTrfcRdf=nncCrSpvpcBwdAbrDynTrfcRdf, nncFrSpvcTmRemapDlci=nncFrSpvcTmRemapDlci, nncFrSpvcCrBwdTmCdv=nncFrSpvcCrBwdTmCdv, nncCrSpvccFwdTmBucketOneCdvt=nncCrSpvccFwdTmBucketOneCdvt, nncCrSpvccBwdTmBucketOneRate=nncCrSpvccBwdTmBucketOneRate, nncCeSpvcFwdTmBucketOneCdvt=nncCeSpvcFwdTmBucketOneCdvt, nncCrSpvccFrBwdTmPo=nncCrSpvccFrBwdTmPo, nncCeSpvcTargEpType=nncCeSpvcTargEpType, nncCrSpvpcBwdTmBucketTwoMbs=nncCrSpvpcBwdTmBucketTwoMbs, nncCeSpvcBwdTmBucketOneCdvt=nncCeSpvcBwdTmBucketOneCdvt, nncCrSpvccFrBwdTmClpMapping=nncCrSpvccFrBwdTmClpMapping, nncExtSpvcObjects=nncExtSpvcObjects, nncCrSpvpcDstCfgBillingFlag=nncCrSpvpcDstCfgBillingFlag, nncCrSpvccFrBwdTmPvcMgntProfile=nncCrSpvccFrBwdTmPvcMgntProfile, nncCrSpvccFrBwdTmSIWProfile=nncCrSpvccFrBwdTmSIWProfile, nncCrSpvccCreator=nncCrSpvccCreator, nncFrSpvcCallStatus=nncFrSpvcCallStatus, nncCrSpvccPriority=nncCrSpvccPriority, nncCrSpvccBwdTmBucketTwoRate=nncCrSpvccBwdTmBucketTwoRate, nncCrSpvccBwdTmCdv=nncCrSpvccBwdTmCdv, nncCrSpvccTargVci=nncCrSpvccTargVci, nncCrSpvpcBwdAbrDynTrfcRif=nncCrSpvpcBwdAbrDynTrfcRif, nncFrSpvcCrBwdTmBucketTwoRate=nncFrSpvcCrBwdTmBucketTwoRate, nncCeSpvcFwdTmBucketOneRate=nncCeSpvcFwdTmBucketOneRate, nncCrSpvccFrBwdTmDeMapping=nncCrSpvccFrBwdTmDeMapping, nncCrSpvccTargEpType=nncCrSpvccTargEpType, nncCrSpvccFwdTmBucketOneRate=nncCrSpvccFwdTmBucketOneRate, nncCeSpvcLocRerouteConfig=nncCeSpvcLocRerouteConfig, nncCrSpvccFwdTmBucketTwoMbs=nncCrSpvccFwdTmBucketTwoMbs, nncFrSpvcSrcBillingFlag=nncFrSpvcSrcBillingFlag, nncCrSpvpcFwdTmTrafficDescriptor=nncCrSpvpcFwdTmTrafficDescriptor, nncFrSpvcSrcDlci=nncFrSpvcSrcDlci, nncCrSpvpcCreator=nncCrSpvpcCreator, nncCrSpvccCallStatus=nncCrSpvccCallStatus, nncCrSpvccFwdAbrDynTrfcIcr=nncCrSpvccFwdAbrDynTrfcIcr, nncCeSpvcTargVpi=nncCeSpvcTargVpi, nncCrSpvpcRowStatus=nncCrSpvpcRowStatus, nncCrSpvccBwdTmClr=nncCrSpvccBwdTmClr, nncCrSpvccFrBwdTmPtclMapping=nncCrSpvccFrBwdTmPtclMapping, nncFrSpvcDstCfgLocRerouteConfig=nncFrSpvcDstCfgLocRerouteConfig, nncCeSpvcRowStatus=nncCeSpvcRowStatus, nncCrSpvccFwdTmPolicingOption=nncCrSpvccFwdTmPolicingOption, nncCrSpvpcFwdTmBucketTwoMbs=nncCrSpvpcFwdTmBucketTwoMbs, nncCrSpvccFwdAbrDynTrfcRif=nncCrSpvccFwdAbrDynTrfcRif, nncCeSpvcDstCfgCdvt=nncCeSpvcDstCfgCdvt, nncCrSpvccBwdTmBucketTwoMbs=nncCrSpvccBwdTmBucketTwoMbs, nncCrSpvpcTargEpAddr=nncCrSpvpcTargEpAddr, nncFrSpvcCrTmServiceCategory=nncFrSpvcCrTmServiceCategory, nncCrSpvccGroup=nncCrSpvccGroup, nncFrSpvcCrBwdTmBucketOneCdvt=nncFrSpvcCrBwdTmBucketOneCdvt, nncFrSpvcBwdTmBe=nncFrSpvcBwdTmBe, nncFrSpvcPriority=nncFrSpvcPriority, nncCrSpvpcTable=nncCrSpvpcTable, nncCrSpvccServiceCategory=nncCrSpvccServiceCategory, nncCrSpvccDstCfgPolicing=nncCrSpvccDstCfgPolicing, nncCrSpvpcPriority=nncCrSpvpcPriority, nncCrSpvccTable=nncCrSpvccTable, nncCrSpvpcFwdAbrDynTrfcIcr=nncCrSpvpcFwdAbrDynTrfcIcr, nncCrSpvpcFwdTmBucketTwoRate=nncCrSpvpcFwdTmBucketTwoRate, nncCrSpvpcBwdTmBucketOneCdvt=nncCrSpvpcBwdTmBucketOneCdvt, nncFrSpvcBwdFrMir=nncFrSpvcBwdFrMir, nncCeSpvcTargEpAddr=nncCeSpvcTargEpAddr, nncFrSpvcDstCfgBillingFlag=nncFrSpvcDstCfgBillingFlag, nncFrSpvcDstCfgTmBc=nncFrSpvcDstCfgTmBc, nncFrSpvcCreator=nncFrSpvcCreator, nncCrSpvccFwdTmCdv=nncCrSpvccFwdTmCdv, nncCrSpvpcBwdTmCdv=nncCrSpvpcBwdTmCdv, nncCrSpvpcDstCfgGroup=nncCrSpvpcDstCfgGroup, nncCrSpvccTargVpi=nncCrSpvccTargVpi, nncCrSpvpcDstCfgTableEntry=nncCrSpvpcDstCfgTableEntry, nncCrSpvccTargDlci=nncCrSpvccTargDlci, nncFrSpvcTargEpType=nncFrSpvcTargEpType, nncFrSpvcTmClpMapping=nncFrSpvcTmClpMapping, nncCrSpvccTableEntry=nncCrSpvccTableEntry, nncFrSpvcGroup=nncFrSpvcGroup, nncCrSpvccRowStatus=nncCrSpvccRowStatus, nncFrSpvcCrBwdTmPolicingOption=nncFrSpvcCrBwdTmPolicingOption, nncCrSpvpcBwdTmBucketTwoRate=nncCrSpvpcBwdTmBucketTwoRate, nncExtSpvcCompliances=nncExtSpvcCompliances, nncCrSpvpcMaxAdminWeight=nncCrSpvpcMaxAdminWeight, nncFrSpvcDstCfgTable=nncFrSpvcDstCfgTable, nncCrSpvccDstCfgLocRerouteConfig=nncCrSpvccDstCfgLocRerouteConfig, nncCeSpvcDstCfgRowStatus=nncCeSpvcDstCfgRowStatus, nncFrSpvcDstCfgFrPriority=nncFrSpvcDstCfgFrPriority, nncFrSpvcDstCfgTmPvcMgntProfile=nncFrSpvcDstCfgTmPvcMgntProfile, nncCrSpvccFrBwdTmBe=nncCrSpvccFrBwdTmBe, nncCrSpvccBwdTmTrafficDescriptor=nncCrSpvccBwdTmTrafficDescriptor, nncCrSpvccOperation=nncCrSpvccOperation, nncFrSpvcDstCfgTmPtclMapping=nncFrSpvcDstCfgTmPtclMapping, nncFrSpvcFwdTmBc=nncFrSpvcFwdTmBc, nncCrSpvpcBwdAbrDynTrfcIcr=nncCrSpvpcBwdAbrDynTrfcIcr, nncCeSpvcAdminStatus=nncCeSpvcAdminStatus, nncCrSpvpcDstCfgLocRerouteConfig=nncCrSpvpcDstCfgLocRerouteConfig, nncCrSpvpcTargVpi=nncCrSpvpcTargVpi, nncCrSpvpcFwdTmCdv=nncCrSpvpcFwdTmCdv, nncCrSpvccBwdAbrDynTrfcRif=nncCrSpvccBwdAbrDynTrfcRif, nncCeSpvcBwdTmBucketOneRate=nncCeSpvcBwdTmBucketOneRate, nncFrSpvcBwdTmPo=nncFrSpvcBwdTmPo, nncCeSpvcDstCfgGroup=nncCeSpvcDstCfgGroup, nncExtSpvc=nncExtSpvc, nncFrSpvcTargEpAddr=nncFrSpvcTargEpAddr, nncCrSpvccTargCeNumber=nncCrSpvccTargCeNumber, nncCrSpvccFrBwdTmBc=nncCrSpvccFrBwdTmBc, nncCrSpvpcBwdTmTrafficDescriptor=nncCrSpvpcBwdTmTrafficDescriptor, nncFrSpvcTargVci=nncFrSpvcTargVci, nncCeSpvcTableEntry=nncCeSpvcTableEntry, nncCeSpvcTargVci=nncCeSpvcTargVci, nncCeSpvcTable=nncCeSpvcTable, nncCeSpvcPriority=nncCeSpvcPriority, nncFrSpvcRowStatus=nncFrSpvcRowStatus, nncCrSpvccFrBwdTmAr=nncCrSpvccFrBwdTmAr, nncCrSpvpcLocRerouteConfig=nncCrSpvpcLocRerouteConfig, nncFrSpvcTable=nncFrSpvcTable, nncCrSpvpcDstCfgCdvt=nncCrSpvpcDstCfgCdvt, nncFrSpvcBwdTmPacing=nncFrSpvcBwdTmPacing, nncCrSpvpcFwdTmBucketOneRate=nncCrSpvpcFwdTmBucketOneRate, nncFrSpvcTargVpi=nncFrSpvcTargVpi, PYSNMP_MODULE_ID=nncExtSpvc, nncCrSpvccDstCfgCdvt=nncCrSpvccDstCfgCdvt, nncCrSpvpcBwdTmClr=nncCrSpvpcBwdTmClr, AtmFormatDisplay=AtmFormatDisplay, nncFrSpvcFwdTmBe=nncFrSpvcFwdTmBe, nncCrSpvpcCallStatus=nncCrSpvpcCallStatus, nncFrSpvcCrBwdTmBucketTwoMbs=nncFrSpvcCrBwdTmBucketTwoMbs, nncCrSpvpcDstCfgRowStatus=nncCrSpvpcDstCfgRowStatus, nncCrSpvccFrBwdTmPacing=nncCrSpvccFrBwdTmPacing, nncCrSpvccFrBwdTmCir=nncCrSpvccFrBwdTmCir, nncFrSpvcCrBwdTmTrafficDescriptor=nncFrSpvcCrBwdTmTrafficDescriptor, nncCeSpvcDstCfgTableEntry=nncCeSpvcDstCfgTableEntry, nncFrSpvcTmDeMapping=nncFrSpvcTmDeMapping, nncFrSpvcDstCfgTmSIWProfile=nncFrSpvcDstCfgTmSIWProfile, nncCrSpvccMaxAdminWeight=nncCrSpvccMaxAdminWeight, nncFrSpvcFrPriority=nncFrSpvcFrPriority, nncCrSpvccLocRerouteConfig=nncCrSpvccLocRerouteConfig, nncFrSpvcDstCfgTmPo=nncFrSpvcDstCfgTmPo, nncCrSpvccFrBwdTmIwf=nncCrSpvccFrBwdTmIwf, nncCrSpvccDstCfgBillingFlag=nncCrSpvccDstCfgBillingFlag, nncFrSpvcMaxAdminWeight=nncFrSpvcMaxAdminWeight, nncCrSpvccFwdAbrDynTrfcRdf=nncCrSpvccFwdAbrDynTrfcRdf, nncFrSpvcAdminStatus=nncFrSpvcAdminStatus, nncExtSpvcGroups=nncExtSpvcGroups, nncFrSpvcTmEfciMapping=nncFrSpvcTmEfciMapping, nncFrSpvcDstCfgTmEfciMapping=nncFrSpvcDstCfgTmEfciMapping, nncCrSpvccBwdAbrDynTrfcIcr=nncCrSpvccBwdAbrDynTrfcIcr, nncCrSpvccFwdTmFrameDiscard=nncCrSpvccFwdTmFrameDiscard, nncCeSpvcTargCeNumber=nncCeSpvcTargCeNumber, nncCrSpvccDstCfgRowStatus=nncCrSpvccDstCfgRowStatus, nncFrSpvcFwdTmCir=nncFrSpvcFwdTmCir, nncFrSpvcBwdTmCir=nncFrSpvcBwdTmCir, nncCrSpvccDstCfgTable=nncCrSpvccDstCfgTable, nncFrSpvcTmPtclMapping=nncFrSpvcTmPtclMapping, nncCrSpvpcFwdAbrDynTrfcRdf=nncCrSpvpcFwdAbrDynTrfcRdf, nncFrSpvcTmIwf=nncFrSpvcTmIwf, nncCrSpvccAdminStatus=nncCrSpvccAdminStatus, nncFrSpvcDstCfgTableEntry=nncFrSpvcDstCfgTableEntry, nncFrSpvcTableEntry=nncFrSpvcTableEntry, nncFrSpvcBwdTmAr=nncFrSpvcBwdTmAr, nncFrSpvcDstCfgTmRemapDlci=nncFrSpvcDstCfgTmRemapDlci, nncCrSpvccDstCfgGroup=nncCrSpvccDstCfgGroup, nncCrSpvpcFwdTmBucketOneCdvt=nncCrSpvpcFwdTmBucketOneCdvt, nncCeSpvcGroup=nncCeSpvcGroup, nncFrSpvcFwdFrMir=nncFrSpvcFwdFrMir, nncCrSpvpcSrcBillingFlag=nncCrSpvpcSrcBillingFlag, nncCeSpvcDstCfgTable=nncCeSpvcDstCfgTable, nncFrSpvcLocRerouteConfig=nncFrSpvcLocRerouteConfig, nncCrSpvpcOperation=nncCrSpvpcOperation, nncCrSpvccSrcBillingFlag=nncCrSpvccSrcBillingFlag, nncCrSpvccBwdTmFrameDiscard=nncCrSpvccBwdTmFrameDiscard, nncFrSpvcCrBwdTmBucketOneRate=nncFrSpvcCrBwdTmBucketOneRate, nncCrSpvpcGroup=nncCrSpvpcGroup, nncFrSpvcDstCfgTmIwf=nncFrSpvcDstCfgTmIwf, nncCrSpvpcServiceCategory=nncCrSpvpcServiceCategory, nncFrSpvcOperation=nncFrSpvcOperation, nncCeSpvcMaxAdminWeight=nncCeSpvcMaxAdminWeight, nncFrSpvcCrBwdTmFrameDiscard=nncFrSpvcCrBwdTmFrameDiscard, nncFrSpvcDstCfgRowStatus=nncFrSpvcDstCfgRowStatus, nncFrSpvcTmPvcMgntProfile=nncFrSpvcTmPvcMgntProfile, nncCrSpvccDstCfgFrVsvdCongestionControl=nncCrSpvccDstCfgFrVsvdCongestionControl, nncCrSpvpcFwdAbrDynTrfcRif=nncCrSpvpcFwdAbrDynTrfcRif)
|
# Client Messages
disconnectServer = "[x] Server disconnected."
keysUnpacked = "[+] Symmetric keys unpacked."
keysUnpackFail = "[x] Keys not unpacked. Try again."
welcome = "@Yo: You're in. Welcome to the underground."
# Default Commands
bootNoUser = "[!] Which user do you want to boot? Eg: /boot <user>"
bootUserNotFound = "[x] No one here by that name. Try again."
bootMsg = "[x_x] You've been kicked sucka! [x_x]"
bootSelf = "[x] Whoops! Can't boot yourself bub"
bootSuccess = "[!] You successfully booted"
# Handshake
getNick = "[+] What is your name? @"
getNickAgain = "[x] User already exists. Try something else: @"
getNickErr = "[x] Handle needs at least one character. Try again"
keysNewPub = "[+] New NACL keys generated."
keysNewSign = "[+] New NACL signing keys generated."
# Server Messages
connectAttempt = "[/] Client trying to connect..."
connectFailed = "[x] Connection failed. Check server address or port."
connectListening = "[*] Listening for connections..."
disconnectClient = "[x] Client disconnected."
sendStatus = "[*] ===> Send status to client."
|
disconnect_server = '[x] Server disconnected.'
keys_unpacked = '[+] Symmetric keys unpacked.'
keys_unpack_fail = '[x] Keys not unpacked. Try again.'
welcome = "@Yo: You're in. Welcome to the underground."
boot_no_user = '[!] Which user do you want to boot? Eg: /boot <user>'
boot_user_not_found = '[x] No one here by that name. Try again.'
boot_msg = "[x_x] You've been kicked sucka! [x_x]"
boot_self = "[x] Whoops! Can't boot yourself bub"
boot_success = '[!] You successfully booted'
get_nick = '[+] What is your name? @'
get_nick_again = '[x] User already exists. Try something else: @'
get_nick_err = '[x] Handle needs at least one character. Try again'
keys_new_pub = '[+] New NACL keys generated.'
keys_new_sign = '[+] New NACL signing keys generated.'
connect_attempt = '[/] Client trying to connect...'
connect_failed = '[x] Connection failed. Check server address or port.'
connect_listening = '[*] Listening for connections...'
disconnect_client = '[x] Client disconnected.'
send_status = '[*] ===> Send status to client.'
|
# name: csc_devices.py
# desc: lists all devices with devicename, IP, username, password, secret
router_013 = {'device_name': 'router_013', 'device_type': 'cisco_nxos', 'ip': '1.1.1.10', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
router_023 = {'device_name': 'router_023', 'device_type': 'cisco_nxos', 'ip': '1.1.1.11', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
router_014 = {'device_name': 'router_014', 'device_type': 'cisco_nxos', 'ip': '1.1.1.26', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
router_024 = {'device_name': 'router_024', 'device_type': 'cisco_nxos', 'ip': '1.1.1.27', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_013 = {'device_name': 'switch_013', 'device_type': 'cisco_nxos', 'ip': '1.1.1.3', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_023 = {'device_name': 'switch_023', 'device_type': 'cisco_nxos', 'ip': '1.1.1.4', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_033 = {'device_name': 'switch_033', 'device_type': 'cisco_nxos', 'ip': '1.1.1.5', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_043 = {'device_name': 'switch_043', 'device_type': 'cisco_nxos', 'ip': '1.1.1.6', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_053 = {'device_name': 'switch_053', 'device_type': 'cisco_nxos', 'ip': '1.1.1.7', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_063 = {'device_name': 'switch_063', 'device_type': 'cisco_nxos', 'ip': '1.1.1.8', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_014 = {'device_name': 'switch_014', 'device_type': 'cisco_nxos', 'ip': '1.1.1.19', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_024 = {'device_name': 'switch_024', 'device_type': 'cisco_nxos', 'ip': '1.1.1.20', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_034 = {'device_name': 'switch_034', 'device_type': 'cisco_nxos', 'ip': '1.1.1.21', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_044 = {'device_name': 'switch_044', 'device_type': 'cisco_nxos', 'ip': '1.1.1.22', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_054 = {'device_name': 'switch_054', 'device_type': 'cisco_nxos', 'ip': '1.1.1.23', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
switch_064 = {'device_name': 'switch_064', 'device_type': 'cisco_nxos', 'ip': '1.1.1.24', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret', }
|
router_013 = {'device_name': 'router_013', 'device_type': 'cisco_nxos', 'ip': '1.1.1.10', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
router_023 = {'device_name': 'router_023', 'device_type': 'cisco_nxos', 'ip': '1.1.1.11', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
router_014 = {'device_name': 'router_014', 'device_type': 'cisco_nxos', 'ip': '1.1.1.26', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
router_024 = {'device_name': 'router_024', 'device_type': 'cisco_nxos', 'ip': '1.1.1.27', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_013 = {'device_name': 'switch_013', 'device_type': 'cisco_nxos', 'ip': '1.1.1.3', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_023 = {'device_name': 'switch_023', 'device_type': 'cisco_nxos', 'ip': '1.1.1.4', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_033 = {'device_name': 'switch_033', 'device_type': 'cisco_nxos', 'ip': '1.1.1.5', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_043 = {'device_name': 'switch_043', 'device_type': 'cisco_nxos', 'ip': '1.1.1.6', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_053 = {'device_name': 'switch_053', 'device_type': 'cisco_nxos', 'ip': '1.1.1.7', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_063 = {'device_name': 'switch_063', 'device_type': 'cisco_nxos', 'ip': '1.1.1.8', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_014 = {'device_name': 'switch_014', 'device_type': 'cisco_nxos', 'ip': '1.1.1.19', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_024 = {'device_name': 'switch_024', 'device_type': 'cisco_nxos', 'ip': '1.1.1.20', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_034 = {'device_name': 'switch_034', 'device_type': 'cisco_nxos', 'ip': '1.1.1.21', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_044 = {'device_name': 'switch_044', 'device_type': 'cisco_nxos', 'ip': '1.1.1.22', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_054 = {'device_name': 'switch_054', 'device_type': 'cisco_nxos', 'ip': '1.1.1.23', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
switch_064 = {'device_name': 'switch_064', 'device_type': 'cisco_nxos', 'ip': '1.1.1.24', 'username': 'dummy_username', 'password': 'dummy_password', 'port': 22, 'verbose': False, 'secret': 'dummy_secret'}
|
# class Persona:
# #def __init__(self):
# def __init__(self,nombre,apellido,edad):
# self.nombre = nombre
# self.apellido = apellido
# self.edad = edad
# persona1 = Persona('Juan','Castellanos',21)
# print(f'Objeto Persona 1: {persona1.nombre} {persona1.apellido} {persona1.edad}')
# #Modificar atributos directamente
# persona1.nombre = 'Juan Manuel'
# persona1.apellido = 'Juarez'
# persona1.edad = 34
# print(f'Objeto Persona 1: {persona1.nombre} {persona1.apellido} {persona1.edad}')
# persona2 = Persona('Gabriela','Rodriguez', 20)
# print(f'Objeto Persona 2: {persona2.nombre} {persona2.apellido} {persona2.edad}')
class Person:
# self puede llamarse this, pero en python se recomienda el uso de self
def __init__(self, name:str, last_name:str, age:int):
self.name = name
self.last_name = last_name
self.age = age
def show_details(self):
print(f'Person: {self.name} {self.last_name} {self.age}')
persona1 = Person('Juan', 'Castellanos',21)
persona1.show_details()
print('-------------')
#Otra forma de llamar metodos, pero requieren por parametro un objeto
Person.show_details(persona1)
persona1.telefono = '3223432343'
print(f'Telefono de persona1 :{persona1.telefono}')
persona2 = Person('Gabriela', 'Rodriguez', 20)
persona2.show_details()
|
class Person:
def __init__(self, name: str, last_name: str, age: int):
self.name = name
self.last_name = last_name
self.age = age
def show_details(self):
print(f'Person: {self.name} {self.last_name} {self.age}')
persona1 = person('Juan', 'Castellanos', 21)
persona1.show_details()
print('-------------')
Person.show_details(persona1)
persona1.telefono = '3223432343'
print(f'Telefono de persona1 :{persona1.telefono}')
persona2 = person('Gabriela', 'Rodriguez', 20)
persona2.show_details()
|
#
# PySNMP MIB module XEDIA-DRIVER-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/XEDIA-DRIVER-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:42:41 2019
# On host DAVWANG4-M-1475 platform Darwin version 18.5.0 by user davwang4
# Using Python version 3.7.3 (default, Mar 27 2019, 09:23:15)
#
ObjectIdentifier, Integer, OctetString = mibBuilder.importSymbols("ASN1", "ObjectIdentifier", "Integer", "OctetString")
NamedValues, = mibBuilder.importSymbols("ASN1-ENUMERATION", "NamedValues")
ConstraintsUnion, ConstraintsIntersection, ValueRangeConstraint, SingleValueConstraint, ValueSizeConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsUnion", "ConstraintsIntersection", "ValueRangeConstraint", "SingleValueConstraint", "ValueSizeConstraint")
ifIndex, = mibBuilder.importSymbols("IF-MIB", "ifIndex")
ObjectGroup, NotificationGroup, ModuleCompliance = mibBuilder.importSymbols("SNMPv2-CONF", "ObjectGroup", "NotificationGroup", "ModuleCompliance")
Counter32, MibIdentifier, NotificationType, TimeTicks, Bits, ObjectIdentity, Gauge32, MibScalar, MibTable, MibTableRow, MibTableColumn, Integer32, Unsigned32, Counter64, ModuleIdentity, IpAddress, iso = mibBuilder.importSymbols("SNMPv2-SMI", "Counter32", "MibIdentifier", "NotificationType", "TimeTicks", "Bits", "ObjectIdentity", "Gauge32", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "Integer32", "Unsigned32", "Counter64", "ModuleIdentity", "IpAddress", "iso")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
xediaMibs, = mibBuilder.importSymbols("XEDIA-REG", "xediaMibs")
xediaDriverMIB = ModuleIdentity((1, 3, 6, 1, 4, 1, 838, 3, 6))
if mibBuilder.loadTexts: xediaDriverMIB.setLastUpdated('9703252155Z')
if mibBuilder.loadTexts: xediaDriverMIB.setOrganization('Xedia Corp.')
if mibBuilder.loadTexts: xediaDriverMIB.setContactInfo('[email protected]')
if mibBuilder.loadTexts: xediaDriverMIB.setDescription('This module defines proprietary objects that extend those in the driver type MIBs.')
xdriverObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 1))
xdriverConformance = MibIdentifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2))
xdriverStatsTable = MibTable((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1), )
if mibBuilder.loadTexts: xdriverStatsTable.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsTable.setDescription('Xedia proprietary statistics for drivers.')
xdriverStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1), ).setIndexNames((0, "IF-MIB", "ifIndex"))
if mibBuilder.loadTexts: xdriverStatsEntry.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsEntry.setDescription('Xedia proprietary statistics for single driver interface.')
xdriverStatsInternalQOverflows = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInternalQOverflows.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInternalQOverflows.setDescription("A count of the number of times the driver software failed to drain the hardware's statistics queue fast enough (and therefore may not have incremented some statistics properly).")
xdriverStatsOutGoodFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsOutGoodFrames.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsOutGoodFrames.setDescription('The total number of frames that were transmitted without error. This is the sum of ifOutUcastPkts, ifOutMulticastPkts, and ifOutBroadcastPkts.')
xdriverStatsOutPercentGood = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 3), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('%').setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsOutPercentGood.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsOutPercentGood.setDescription('The percentage of the total frames that were transmitted without error. (This is the throughput of the interface.)')
xdriverStatsOutPercentBad = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('%').setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsOutPercentBad.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsOutPercentBad.setDescription('The percentage of the total frames that the higher layers requested to be transmitted that could not be due to errors.')
xdriverStatsOutAvgFrameLen = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 5), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsOutAvgFrameLen.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsOutAvgFrameLen.setDescription('The average length of the frames transmitted out this interface.')
xdriverStatsInCRCErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 6), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInCRCErrors.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInCRCErrors.setDescription('The number of frames that had CRC errors on this interface.')
xdriverStatsInGoodFrames = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInGoodFrames.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInGoodFrames.setDescription('The number of frames that were received on this interface that did not have errors.')
xdriverStatsInNoResources = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInNoResources.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInNoResources.setDescription('The number of times the driver was suspended because of a lack of resources.')
xdriverStatsInPercentGood = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 9), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('%').setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInPercentGood.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInPercentGood.setDescription('The percentage of incoming frames that did not have any error.')
xdriverStatsInPercentBad = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 10), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(0, 100))).setUnits('%').setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInPercentBad.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInPercentBad.setDescription('The percentage of incoming frames that had errors.')
xdriverStatsInAvgFrameLen = MibTableColumn((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 11), Gauge32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xdriverStatsInAvgFrameLen.setStatus('current')
if mibBuilder.loadTexts: xdriverStatsInAvgFrameLen.setDescription('The average length of a frame received on the interface.')
xdriverCompliances = MibIdentifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 1))
xdriverGroups = MibIdentifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 2))
xdriverCompliance = ModuleCompliance((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 1, 1)).setObjects(("XEDIA-DRIVER-MIB", "xdriverGroup"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
xdriverCompliance = xdriverCompliance.setStatus('current')
if mibBuilder.loadTexts: xdriverCompliance.setDescription('The compliance statement for all agents that support this MIB. A compliant agent implements all objects defined in this MIB.')
xdriverGroup = ObjectGroup((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 2, 1)).setObjects(("XEDIA-DRIVER-MIB", "xdriverStatsInternalQOverflows"), ("XEDIA-DRIVER-MIB", "xdriverStatsOutGoodFrames"), ("XEDIA-DRIVER-MIB", "xdriverStatsOutPercentGood"), ("XEDIA-DRIVER-MIB", "xdriverStatsOutPercentBad"), ("XEDIA-DRIVER-MIB", "xdriverStatsOutAvgFrameLen"), ("XEDIA-DRIVER-MIB", "xdriverStatsInCRCErrors"), ("XEDIA-DRIVER-MIB", "xdriverStatsInGoodFrames"), ("XEDIA-DRIVER-MIB", "xdriverStatsInNoResources"), ("XEDIA-DRIVER-MIB", "xdriverStatsInPercentGood"), ("XEDIA-DRIVER-MIB", "xdriverStatsInPercentBad"), ("XEDIA-DRIVER-MIB", "xdriverStatsInAvgFrameLen"))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
xdriverGroup = xdriverGroup.setStatus('current')
if mibBuilder.loadTexts: xdriverGroup.setDescription('The set of all accessible objects in this MIB.')
mibBuilder.exportSymbols("XEDIA-DRIVER-MIB", xdriverStatsInNoResources=xdriverStatsInNoResources, xdriverStatsInPercentBad=xdriverStatsInPercentBad, xdriverConformance=xdriverConformance, xdriverStatsOutAvgFrameLen=xdriverStatsOutAvgFrameLen, xdriverObjects=xdriverObjects, xdriverStatsInGoodFrames=xdriverStatsInGoodFrames, xdriverStatsInCRCErrors=xdriverStatsInCRCErrors, xdriverStatsInPercentGood=xdriverStatsInPercentGood, xdriverStatsOutGoodFrames=xdriverStatsOutGoodFrames, xdriverStatsOutPercentGood=xdriverStatsOutPercentGood, xdriverStatsInAvgFrameLen=xdriverStatsInAvgFrameLen, xdriverCompliances=xdriverCompliances, xdriverGroup=xdriverGroup, xdriverCompliance=xdriverCompliance, xdriverStatsInternalQOverflows=xdriverStatsInternalQOverflows, xdriverStatsOutPercentBad=xdriverStatsOutPercentBad, xdriverStatsTable=xdriverStatsTable, xdriverGroups=xdriverGroups, PYSNMP_MODULE_ID=xediaDriverMIB, xdriverStatsEntry=xdriverStatsEntry, xediaDriverMIB=xediaDriverMIB)
|
(object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_union, constraints_intersection, value_range_constraint, single_value_constraint, value_size_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsUnion', 'ConstraintsIntersection', 'ValueRangeConstraint', 'SingleValueConstraint', 'ValueSizeConstraint')
(if_index,) = mibBuilder.importSymbols('IF-MIB', 'ifIndex')
(object_group, notification_group, module_compliance) = mibBuilder.importSymbols('SNMPv2-CONF', 'ObjectGroup', 'NotificationGroup', 'ModuleCompliance')
(counter32, mib_identifier, notification_type, time_ticks, bits, object_identity, gauge32, mib_scalar, mib_table, mib_table_row, mib_table_column, integer32, unsigned32, counter64, module_identity, ip_address, iso) = mibBuilder.importSymbols('SNMPv2-SMI', 'Counter32', 'MibIdentifier', 'NotificationType', 'TimeTicks', 'Bits', 'ObjectIdentity', 'Gauge32', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'Integer32', 'Unsigned32', 'Counter64', 'ModuleIdentity', 'IpAddress', 'iso')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
(xedia_mibs,) = mibBuilder.importSymbols('XEDIA-REG', 'xediaMibs')
xedia_driver_mib = module_identity((1, 3, 6, 1, 4, 1, 838, 3, 6))
if mibBuilder.loadTexts:
xediaDriverMIB.setLastUpdated('9703252155Z')
if mibBuilder.loadTexts:
xediaDriverMIB.setOrganization('Xedia Corp.')
if mibBuilder.loadTexts:
xediaDriverMIB.setContactInfo('[email protected]')
if mibBuilder.loadTexts:
xediaDriverMIB.setDescription('This module defines proprietary objects that extend those in the driver type MIBs.')
xdriver_objects = mib_identifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 1))
xdriver_conformance = mib_identifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2))
xdriver_stats_table = mib_table((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1))
if mibBuilder.loadTexts:
xdriverStatsTable.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsTable.setDescription('Xedia proprietary statistics for drivers.')
xdriver_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1)).setIndexNames((0, 'IF-MIB', 'ifIndex'))
if mibBuilder.loadTexts:
xdriverStatsEntry.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsEntry.setDescription('Xedia proprietary statistics for single driver interface.')
xdriver_stats_internal_q_overflows = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInternalQOverflows.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInternalQOverflows.setDescription("A count of the number of times the driver software failed to drain the hardware's statistics queue fast enough (and therefore may not have incremented some statistics properly).")
xdriver_stats_out_good_frames = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsOutGoodFrames.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsOutGoodFrames.setDescription('The total number of frames that were transmitted without error. This is the sum of ifOutUcastPkts, ifOutMulticastPkts, and ifOutBroadcastPkts.')
xdriver_stats_out_percent_good = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 3), gauge32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('%').setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsOutPercentGood.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsOutPercentGood.setDescription('The percentage of the total frames that were transmitted without error. (This is the throughput of the interface.)')
xdriver_stats_out_percent_bad = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('%').setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsOutPercentBad.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsOutPercentBad.setDescription('The percentage of the total frames that the higher layers requested to be transmitted that could not be due to errors.')
xdriver_stats_out_avg_frame_len = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 5), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsOutAvgFrameLen.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsOutAvgFrameLen.setDescription('The average length of the frames transmitted out this interface.')
xdriver_stats_in_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 6), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInCRCErrors.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInCRCErrors.setDescription('The number of frames that had CRC errors on this interface.')
xdriver_stats_in_good_frames = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInGoodFrames.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInGoodFrames.setDescription('The number of frames that were received on this interface that did not have errors.')
xdriver_stats_in_no_resources = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInNoResources.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInNoResources.setDescription('The number of times the driver was suspended because of a lack of resources.')
xdriver_stats_in_percent_good = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 9), gauge32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('%').setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInPercentGood.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInPercentGood.setDescription('The percentage of incoming frames that did not have any error.')
xdriver_stats_in_percent_bad = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 10), gauge32().subtype(subtypeSpec=value_range_constraint(0, 100))).setUnits('%').setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInPercentBad.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInPercentBad.setDescription('The percentage of incoming frames that had errors.')
xdriver_stats_in_avg_frame_len = mib_table_column((1, 3, 6, 1, 4, 1, 838, 3, 6, 1, 1, 1, 11), gauge32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xdriverStatsInAvgFrameLen.setStatus('current')
if mibBuilder.loadTexts:
xdriverStatsInAvgFrameLen.setDescription('The average length of a frame received on the interface.')
xdriver_compliances = mib_identifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 1))
xdriver_groups = mib_identifier((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 2))
xdriver_compliance = module_compliance((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 1, 1)).setObjects(('XEDIA-DRIVER-MIB', 'xdriverGroup'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
xdriver_compliance = xdriverCompliance.setStatus('current')
if mibBuilder.loadTexts:
xdriverCompliance.setDescription('The compliance statement for all agents that support this MIB. A compliant agent implements all objects defined in this MIB.')
xdriver_group = object_group((1, 3, 6, 1, 4, 1, 838, 3, 6, 2, 2, 1)).setObjects(('XEDIA-DRIVER-MIB', 'xdriverStatsInternalQOverflows'), ('XEDIA-DRIVER-MIB', 'xdriverStatsOutGoodFrames'), ('XEDIA-DRIVER-MIB', 'xdriverStatsOutPercentGood'), ('XEDIA-DRIVER-MIB', 'xdriverStatsOutPercentBad'), ('XEDIA-DRIVER-MIB', 'xdriverStatsOutAvgFrameLen'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInCRCErrors'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInGoodFrames'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInNoResources'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInPercentGood'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInPercentBad'), ('XEDIA-DRIVER-MIB', 'xdriverStatsInAvgFrameLen'))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
xdriver_group = xdriverGroup.setStatus('current')
if mibBuilder.loadTexts:
xdriverGroup.setDescription('The set of all accessible objects in this MIB.')
mibBuilder.exportSymbols('XEDIA-DRIVER-MIB', xdriverStatsInNoResources=xdriverStatsInNoResources, xdriverStatsInPercentBad=xdriverStatsInPercentBad, xdriverConformance=xdriverConformance, xdriverStatsOutAvgFrameLen=xdriverStatsOutAvgFrameLen, xdriverObjects=xdriverObjects, xdriverStatsInGoodFrames=xdriverStatsInGoodFrames, xdriverStatsInCRCErrors=xdriverStatsInCRCErrors, xdriverStatsInPercentGood=xdriverStatsInPercentGood, xdriverStatsOutGoodFrames=xdriverStatsOutGoodFrames, xdriverStatsOutPercentGood=xdriverStatsOutPercentGood, xdriverStatsInAvgFrameLen=xdriverStatsInAvgFrameLen, xdriverCompliances=xdriverCompliances, xdriverGroup=xdriverGroup, xdriverCompliance=xdriverCompliance, xdriverStatsInternalQOverflows=xdriverStatsInternalQOverflows, xdriverStatsOutPercentBad=xdriverStatsOutPercentBad, xdriverStatsTable=xdriverStatsTable, xdriverGroups=xdriverGroups, PYSNMP_MODULE_ID=xediaDriverMIB, xdriverStatsEntry=xdriverStatsEntry, xediaDriverMIB=xediaDriverMIB)
|
DEFAULT_FILENAME = "output_test_file.txt"
DEFAULT_CONTENT = [
"Obi-Wan Kenobi: Hello there.",
"General Grievous: General Kenobi. You are a bold one."
]
def main():
filename = DEFAULT_FILENAME
content = DEFAULT_CONTENT;
with open(filename, "w") as text_file:
for line in content:
text_file.write(line + "\n")
if __name__ == "__main__":
main()
|
default_filename = 'output_test_file.txt'
default_content = ['Obi-Wan Kenobi: Hello there.', 'General Grievous: General Kenobi. You are a bold one.']
def main():
filename = DEFAULT_FILENAME
content = DEFAULT_CONTENT
with open(filename, 'w') as text_file:
for line in content:
text_file.write(line + '\n')
if __name__ == '__main__':
main()
|
#
# PySNMP MIB module XYLAN-ATM-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/XYLAN-ATM-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:44:48 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, ValueRangeConstraint, ValueSizeConstraint, ConstraintsUnion, SingleValueConstraint = mibBuilder.importSymbols("ASN1-REFINEMENT", "ConstraintsIntersection", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsUnion", "SingleValueConstraint")
MacAddress, = mibBuilder.importSymbols("BRIDGE-MIB", "MacAddress")
LecDataFrameSize, lecIndex = mibBuilder.importSymbols("LAN-EMULATION-CLIENT-MIB", "LecDataFrameSize", "lecIndex")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
ObjectIdentity, MibScalar, MibTable, MibTableRow, MibTableColumn, ModuleIdentity, IpAddress, MibIdentifier, Bits, Counter64, Gauge32, Counter32, Integer32, iso, NotificationType, Unsigned32, TimeTicks = mibBuilder.importSymbols("SNMPv2-SMI", "ObjectIdentity", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "ModuleIdentity", "IpAddress", "MibIdentifier", "Bits", "Counter64", "Gauge32", "Counter32", "Integer32", "iso", "NotificationType", "Unsigned32", "TimeTicks")
TextualConvention, DisplayString = mibBuilder.importSymbols("SNMPv2-TC", "TextualConvention", "DisplayString")
xylanAtmArch, = mibBuilder.importSymbols("XYLAN-BASE-MIB", "xylanAtmArch")
class AtmAdminStatCodes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("disable", 1), ("enable", 2), ("delete", 3), ("create", 4))
class AtmOperStatCodes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("other", 1), ("inService", 2), ("outOfService", 3), ("loopBack", 4))
class AtmServiceOperStatCodes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))
namedValues = NamedValues(("disable", 1), ("enabling", 2), ("enabled", 3), ("unknown", 4))
class AtmConnectionOperStatCodes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("unknown", 1), ("end2EndUp", 2), ("end2EndDown", 3), ("localUpEnd2EndUnknown", 4), ("localDown", 5))
class AtmTransmissionTypes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))
namedValues = NamedValues(("unknown", 1), ("sonetSTS3c", 2), ("ds3", 3), ("atm4b5b", 4), ("atm8b10b", 5), ("e3", 6), ("sonetSTS12c", 7))
class AtmMediaTypes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6))
namedValues = NamedValues(("unknown", 1), ("coaxCable", 2), ("singleMode", 3), ("multiMode", 4), ("stp", 5), ("utp", 6))
class AtmTrafficDescrTypes(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8))
namedValues = NamedValues(("none", 1), ("peakrate", 2), ("noClpNoScr", 3), ("clpNoTaggingNoScr", 4), ("clpTaggingNoScr", 5), ("noClpScr", 6), ("clpNoTaggingScr", 7), ("clpTaggingScr", 8))
class XylanAtmLaneAddress(DisplayString):
pass
class VpiInteger(Integer32):
pass
class VciInteger(Integer32):
pass
class LecState(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))
namedValues = NamedValues(("initialState", 1), ("lecsConnect", 2), ("configure", 3), ("join", 4), ("initialRegistration", 5), ("busConnect", 6), ("operational", 7))
class LecDataFrameFormat(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("unspecified", 1), ("aflane8023", 2), ("aflane8025", 3))
class LeArpTableEntryType(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))
namedValues = NamedValues(("other", 1), ("learnedViaControl", 2), ("learnedViaData", 3), ("staticVolatile", 4), ("staticNonVolatile", 5))
class LeArpType(Integer32):
subtypeSpec = Integer32.subtypeSpec + ConstraintsUnion(SingleValueConstraint(1, 2, 3))
namedValues = NamedValues(("other", 1), ("arpRdType", 2), ("arpEsiType", 3))
atmxPortGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 1))
atmxServiceGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 2))
atmxLayerStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 3))
atmxVccStatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 4))
atmxVccGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 5))
atmxAddressGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 6))
atmxArpGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 7))
atmxLaneGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 8))
atmxCIPstatsGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 9))
atmxSahiBWGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 11))
atmxLsmGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 13))
atmx1483ScaleGroup = MibIdentifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 12))
atmxPortTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1), )
if mibBuilder.loadTexts: atmxPortTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortTable.setDescription("A table of port layer status and parameter information for the UNI's physical interface.")
atmxPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxPortSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxPortPortIndex"))
if mibBuilder.loadTexts: atmxPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortEntry.setDescription('An entry in the table, containing information about the physical layer of a UNI interface.')
atmxPortSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxPortPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxPortDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortDescription.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortDescription.setDescription('A description for this atm port.')
atmxPortConnectionType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pvc", 1), ("svc", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortConnectionType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortConnectionType.setDescription('The connection type of this board.')
atmxPortTransmissionType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 5), AtmTransmissionTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortTransmissionType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortTransmissionType.setDescription('The transmission type of this port. For example, for a port using the Sonet STS-3c physical layer at 155.52 Mbs, this object would have the Object Identifier value: atmxSonetSTS3c.')
atmxPortMediaType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 6), AtmMediaTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortMediaType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortMediaType.setDescription('The type of media being used on this port. For example for a port using coaxial cable, the object would have the Object Identifier value: atmxMediaCoaxCable.')
atmxPortOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 7), AtmOperStatCodes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortOperStatus.setDescription('The operational state (i.e., actual) of this port. The ILMI should not alarm on a physical interface for when the value of this object is outOfService(3). This capability is useful if the equipment is to be disconnected, or for troubleshooting purposes. A value of loopBack(4) indicates that a local loopback is in place.')
atmxPortUniType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("public", 1), ("private", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortUniType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortUniType.setDescription('The type of the ATM UNI, either public or private.')
atmxPortMaxVCCs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortMaxVCCs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortMaxVCCs.setDescription('The maximum number of VCCs supported on this UNI.')
atmxPortMaxVciBits = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortMaxVciBits.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortMaxVciBits.setDescription('The number of active VCI bits on this interface.')
atmxPortTxSegmentSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2048, 131072))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortTxSegmentSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortTxSegmentSize.setDescription('The transmit segment size on this UNI. The nearest power of two less than or equal to this value will be used internally. The max memory is 512K, therefore the maximum number of channels will be 512K/internal tx seg size.')
atmxPortRxSegmentSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(2048, 131072))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortRxSegmentSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortRxSegmentSize.setDescription('The receive segment size on this UNI. The nearest power of two less than or equal to this value will be used internally. The max memory is 512K, therefore the maximum number of channels will be 512K/internal rx seg size.')
atmxPortTxBufferSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1800, 131072))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortTxBufferSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortTxBufferSize.setDescription('The transmit buffer size on this UNI. The buffer size must be less than or equal to the segment size and should be greater than or equal to the maximum frame size.')
atmxPortRxBufferSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1800, 131072))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortRxBufferSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortRxBufferSize.setDescription('The receive buffer size on this UNI. The buffer size must be less than or equal to the segment size and should be greater than or equal to the maximum frame size.')
atmxPortUniPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2147483647))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortUniPortIndex.setStatus('deprecated')
if mibBuilder.loadTexts: atmxPortUniPortIndex.setDescription('This object should not be implemented except as required for backward compatibility with version 2.0 of the UNI specification. This object provide a port index link to the UNI MIB')
atmxPortAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 16), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortAddress.setDescription('This object should not be implemented except as required for backward compatibility with version 2.0 of the UNI specification. The Address Group, as defined as part of the separate Address Registration MIB should be used instead.')
atmxPortSignalingVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("ver30", 1), ("ver31", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortSignalingVersion.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortSignalingVersion.setDescription('Version of the ATM forum UNI Signaling.')
atmxPortSignalingVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortSignalingVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortSignalingVci.setDescription('Signaling Vci.')
atmxPortILMIVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 1023))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortILMIVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortILMIVci.setDescription('ILMI Vci.')
atmxPortEnableILMI = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortEnableILMI.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortEnableILMI.setDescription('ILMI Enable.')
atmxPortPlScramble = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortPlScramble.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortPlScramble.setDescription('Payload Scrambling Enable.')
atmxPortTimingMode = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("loop", 1), ("local", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortTimingMode.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortTimingMode.setDescription('Timing mode to use. Use local timing or loop timing. ')
atmxPortProtocolType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("sonet", 1), ("sdh", 2), ("notApplicable", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortProtocolType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortProtocolType.setDescription('Physical layer protocol type. ')
atmxPortLoopbackConfig = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 5))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxPortLoopbackConfig.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortLoopbackConfig.setDescription('Loopback config. for this physical layer. 1 = NoLoop, 2 = DiagLoop, 3 = LineLoop, 4 = CellLoop, 5 = PayloadLoop ')
atmxPortSSCOPstatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortSSCOPstatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortSSCOPstatus.setDescription('SSCOP status of this physical layer. ')
atmxPortILMIstatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("up", 1), ("down", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxPortILMIstatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxPortILMIstatus.setDescription('ILMI status of this physical layer. ')
atmxServiceTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1), )
if mibBuilder.loadTexts: atmxServiceTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceTable.setDescription('A table of ATM services status and parameter information.')
atmxServiceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxServiceSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxServicePortIndex"), (0, "XYLAN-ATM-MIB", "atmxServiceNumber"))
if mibBuilder.loadTexts: atmxServiceEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceEntry.setDescription('An entry in the table, containing information about the ATM services.')
atmxServiceSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxServicePortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServicePortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServicePortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxServiceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 256))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceNumber.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceNumber.setDescription('The unique service number for this particular slot/port.')
atmxServiceDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 4), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceDescription.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceDescription.setDescription('A description for this atm service.')
atmxServiceType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("lanEmulation", 1), ("scaling1483", 2), ("trunking", 4), ("classicalIP", 5), ("ptopBridging", 6), ("vlanCluster", 7), ("laneServiceModule", 8), ("mpoaClient", 9)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceType.setDescription('The service type. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmxServiceConnectionType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pvc", 1), ("svc", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceConnectionType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceConnectionType.setDescription('The connection type of this board.')
atmxServiceOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 7), AtmServiceOperStatCodes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxServiceOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceOperStatus.setDescription('The service operational status.')
atmxServiceAdmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 8), AtmAdminStatCodes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceAdmStatus.setDescription('The service adminstration status.')
atmxServiceEncapsType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("private", 1), ("rfc1483", 2), ("none", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceEncapsType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceEncapsType.setDescription('The service encapsulation type. This object is applicable only to PTOP service.')
atmxServiceArpRequestServer = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceArpRequestServer.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceArpRequestServer.setDescription('The Arp request server. 0 = not applicable, 1 = Non arp server, 2 = arp server.')
atmxServiceConnections = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 11), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 512))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceConnections.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceConnections.setDescription('The connections for this service. Interpret this as a 16 bit field per connection: Trunking 1, PTOP Bridging 1, Classical IP 1..255. For Vlan cluster, this object is interpreted as a 32 bit field where each 32 bit represent the vci value of the Data Direct vcc and the Multicast In vcc. Each vcc take up 16 bits. There can be up to 32 pairs of Data Direct vcc and Mulitcast In vcc. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmxServiceAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 12), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceAddress.setDescription('The unique service address.')
atmxServiceAddresses = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 13), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 512))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceAddresses.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceAddresses.setDescription('The addresses for this service. Interpret this as a 16 bit field per address: Trunking 1, PTOP Bridging 1, Classical IP 1..255.')
atmxServiceVlan = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 14), OctetString().subtype(subtypeSpec=ValueSizeConstraint(0, 64))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceVlan.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceVlan.setDescription('The Vlans for this service. Interpret this as a 16 bit field per vlan: Trunking 1-32, PTOP Bridging 1, Classical IP 1. For Vlan Cluster, it will depend on the encapsulation type selected. If RFC 1483, only 1 vlan while Xylan ATM trunking up to 32 vlans are allowed. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmxServiceSEL = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceSEL.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceSEL.setDescription('The SEL for the ATM address of this service.')
atmxServiceLaneCfgTblIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 255))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceLaneCfgTblIdx.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceLaneCfgTblIdx.setDescription('Index to the LAN Emulation Configuration Table. This index is only used when the Service type is ATM LAN Emulation. For other service type this should be set to zero (0).')
atmxServiceMulticastOutVcc = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceMulticastOutVcc.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceMulticastOutVcc.setDescription('The Multicast Out VCC for this Vlan Cluster (X-LANE) service. This is only applicable to service type Vlan Cluster. For other ATM services, this object will return a zero (0). For Vlan Cluster service if a zero (0) is returned means no Multicast out is specified.')
atmxServiceNumVclMembers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceNumVclMembers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceNumVclMembers.setDescription('The number of other Vlan cluster members defined and have a data direct VCC associated with the connection. This object is valid only for Vlan cluster services. Zero (0) will be returned for other ATM services.')
atmxServiceVclEncapType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 3))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceVclEncapType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceVclEncapType.setDescription('The Encapsulation type for the Vlan Cluster service. 1 = RFC 1483 encapsulation. 2 = Xylan ATM trunking. 3 = not applicable. This object is only valid for Vlan cluster services. All other ATM services will return a value of 3. If the encapsulation type is RFC 1483, only one (1) vlan as defined in atmxServiceVlan can be associated with this service. If encapsulation type is Xylan ATM trunking more than 1 vlan can be assocated with this service.')
atmxServiceSahiBwgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxServiceSahiBwgNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxServiceSahiBwgNum.setDescription("The bwg num for sahi based hsm's. The user can set the pcr, scr, mbs using the bwg table and chose the desired bwg num for this service ensuring that this service obtains the desired bandwidth")
atmxLayerStatsTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1), )
if mibBuilder.loadTexts: atmxLayerStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTable.setDescription('A table of ATM layer statistics information.')
atmxLayerStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLayerStatsSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxLayerStatsPortIndex"))
if mibBuilder.loadTexts: atmxLayerStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsEntry.setDescription('An entry in the table, containing information about the ATM layer statistics.')
atmxLayerStatsSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxLayerStatsPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxLayerStatsTxSDUs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxSDUs.setDescription("The total number of successfully transmitted SDU's on the physical port.")
atmxLayerStatsTxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxCells.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxCells.setDescription('The total number of successfully transmitted cells.')
atmxLayerStatsTxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxOctets.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxOctets.setDescription('The total number of successfully transmitted octets.')
atmxLayerStatsRxSDUs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUs.setDescription("The total number of successfully received SDU's.")
atmxLayerStatsRxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCells.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCells.setDescription('The total number of successfully received cells.')
atmxLayerStatsRxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxOctets.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxOctets.setDescription('The total number of successfully received octets.')
atmxLayerStatsTxSDUDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxSDUDiscards.setDescription('The total number of transmit SDUs that are discarded.')
atmxLayerStatsTxSDUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxSDUErrors.setDescription('The total number of transmit SDU with errors.')
atmxLayerStatsTxSDUNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxSDUNoBuffers.setDescription("The number of transmitted SDU's with no buffers available on the physical port.")
atmxLayerStatsTxCellDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxCellDiscards.setDescription('The total number of transmit cells that are dicscarded.')
atmxLayerStatsTxCellErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxCellErrors.setDescription('The total number of transmit cell with errors.')
atmxLayerStatsTxCellNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsTxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsTxCellNoBuffers.setDescription('The total number of transmit cell with no buffers available.')
atmxLayerStatsRxSDUDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUDiscards.setDescription("The total number of receive SDU's that are discarded.")
atmxLayerStatsRxSDUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUErrors.setDescription("The total number of receive SDU's with errors.")
atmxLayerStatsRxSDUInvalidSz = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUInvalidSz.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUInvalidSz.setDescription("The total number of receive SDU's with invalid size")
atmxLayerStatsRxSDUNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUNoBuffers.setDescription("The total number of receive SDU's with no buffers")
atmxLayerStatsRxSDUTrash = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUTrash.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUTrash.setDescription("The total number of receive trash SDU's")
atmxLayerStatsRxSDUCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxSDUCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxSDUCrcErrors.setDescription("The total number of receive SDU's with crc errors")
atmxLayerStatsRxCellDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCellDiscards.setDescription('The total number of receive cells that are discarded.')
atmxLayerStatsRxCellErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCellErrors.setDescription('The total number of recieve cell with errors')
atmxLayerStatsRxCellNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCellNoBuffers.setDescription('The total number of receive cell with no buffers')
atmxLayerStatsRxCellTrash = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCellTrash.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCellTrash.setDescription('The total number of recieve trash cells.')
atmxLayerStatsRxCellCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLayerStatsRxCellCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLayerStatsRxCellCrcErrors.setDescription('The total number of receive cells with crc errors.')
atmxVccStatsTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1), )
if mibBuilder.loadTexts: atmxVccStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTable.setDescription('A table of ATM virtual channel connection statistics information.')
atmxVccStatsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxVccStatsSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxVccStatsPortIndex"), (0, "XYLAN-ATM-MIB", "atmxVccStatsVci"))
if mibBuilder.loadTexts: atmxVccStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsEntry.setDescription('An entry in the table, containing information about the ATM virtual channel connection statistics.')
atmxVccStatsSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxVccStatsPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxVccStatsVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1024))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsVci.setDescription('A unique value which identifies this atm port.')
atmxVccStatsTxSDUs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxSDUs.setDescription("The total number of transmitted SDU's on this virtual channel.")
atmxVccStatsTxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxCells.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxCells.setDescription('The total number of transmitted cells on this virtual channel.')
atmxVccStatsTxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxOctets.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxOctets.setDescription('The total number of transmitted octets on this virtual channel.')
atmxVccStatsRxSDUs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUs.setDescription("The total number of received SDU's on this virtual channel.")
atmxVccStatsRxCells = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCells.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCells.setDescription('The total number of received cells on this virtual channel.')
atmxVccStatsRxOctets = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxOctets.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxOctets.setDescription('The total number of received octets on this virtual channel.')
atmxVccStatsTxSDUDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxSDUDiscards.setDescription('The total number of transmit SDU discards on this virtual channel.')
atmxVccStatsTxSDUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxSDUErrors.setDescription('The total number of transmit SDU errors on this virtual channel.')
atmxVccStatsTxSDUNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxSDUNoBuffers.setDescription("The number of transmit SDU's with no buffers on this virtual channel.")
atmxVccStatsTxCellDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxCellDiscards.setDescription('The total number of transmit cells that are dicscarded on this virtual channel.')
atmxVccStatsTxCellErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxCellErrors.setDescription('The total number of transmit cell with errors on this virtual channel.')
atmxVccStatsTxCellNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsTxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsTxCellNoBuffers.setDescription('The total number of transmit cell with no buffers on this virtual channel.')
atmxVccStatsRxSDUDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUDiscards.setDescription("The total number of receive SDU's discarded on this virtual channel.")
atmxVccStatsRxSDUErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUErrors.setDescription("The total number of receive SDU's with errors on this virtual channel.")
atmxVccStatsRxSDUInvalidSz = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUInvalidSz.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUInvalidSz.setDescription("The total number of received SDU's with invalid size on this virtual channel.")
atmxVccStatsRxSDUNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUNoBuffers.setDescription("The total number of receive SDU's with no buffers on this virtual channel.")
atmxVccStatsRxSDUTrash = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUTrash.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUTrash.setDescription("The total number of receive trash SDU's on this virtual channel.")
atmxVccStatsRxSDUCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxSDUCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxSDUCrcErrors.setDescription("The total number of receive SDU's crc errors on this virtual channel.")
atmxVccStatsRxCellDiscards = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 22), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCellDiscards.setDescription('The total number of receive cells discarded on this virtual channel.')
atmxVccStatsRxCellErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 23), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCellErrors.setDescription('The total number of recieve cell with errors on this virtual channel.')
atmxVccStatsRxCellNoBuffers = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 24), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCellNoBuffers.setDescription('The total number of receive cells with no buffers on this virtual channel.')
atmxVccStatsRxCellTrash = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 25), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCellTrash.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCellTrash.setDescription('The total number of recieve trash cells on this virtual channel.')
atmxVccStatsRxCellCrcErrors = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 26), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccStatsRxCellCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccStatsRxCellCrcErrors.setDescription('The total number of receive cells with crc errors on this virtual channel.')
atmxVccTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1), )
if mibBuilder.loadTexts: atmxVccTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccTable.setDescription('A table of ATM virtual channel connections status and parameter information.')
atmxVccEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxVccSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxVccPortIndex"), (0, "XYLAN-ATM-MIB", "atmxVccVci"))
if mibBuilder.loadTexts: atmxVccEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccEntry.setDescription('An entry in the table, containing information about the ATM virtual channel connections.')
atmxVccSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxVccPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxVccVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 0))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccVpi.setDescription('The virtual path identifier associated with this virtual connection.')
atmxVccVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccVci.setDescription('The virtual channel identifier associated with the virtual connection.')
atmxVccDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 5), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccDescription.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccDescription.setDescription('A description for this virtual connection.')
atmxVccConnType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("vcc", 1), ("vpc", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccConnType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccConnType.setDescription('The virtual connection type.')
atmxVccCircuitType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("pvc", 1), ("svc", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccCircuitType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccCircuitType.setDescription('The virtual connection circuit type.')
atmxVccOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 8), AtmConnectionOperStatCodes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccOperStatus.setDescription('The actual operational status of the VCC A value of end2endUp(2) or end2endDown(3) would be used if end-to-end status is known. If only local status information is available, a value of localUpEnd2endUnknown(4) or localDown(5) would be used.')
atmxVccUpTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccUpTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccUpTime.setDescription('The virtual channel connection up time for this connection.')
atmxVccDownTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 10), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccDownTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccDownTime.setDescription('The virtual channel connection down time for this connection.')
atmxVccTransmitMaxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccTransmitMaxFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccTransmitMaxFrameSize.setDescription('The virtual channel connection maximum transmit frame size for this connection.')
atmxVccReceiveMaxFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(64, 32678))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccReceiveMaxFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccReceiveMaxFrameSize.setDescription('The virtual channel connection maximum receive frame size for this connection.')
atmxVccRequestedTransmitTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 13), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccRequestedTransmitTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 14), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccRequestedTransmitTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccRequestedTransmitTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccRequestedTransmitTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmxVccRequestedTransmitTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccRequestedReceiveTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 19), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccRequestedReceiveTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccRequestedReceiveTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccRequestedReceiveTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccRequestedReceiveTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmxVccRequestedReceiveTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccRequestedReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccAcceptableTransmitTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 25), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccAcceptableTransmitTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 26), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccAcceptableTransmitTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 27), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccAcceptableTransmitTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccAcceptableTransmitTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmxVccAcceptableTransmitTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccAcceptableReceiveTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 31), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccAcceptableReceiveTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 32), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccAcceptableReceiveTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 33), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccAcceptableReceiveTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 34), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccAcceptableReceiveTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 35), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmxVccAcceptableReceiveTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 36), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAcceptableReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccActualTransmitTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 37), AtmTrafficDescrTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccActualTransmitTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 38), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccActualTransmitTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 39), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccActualTransmitTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 40), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccActualTransmitTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 41), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmxVccActualTransmitTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 42), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccActualReceiveTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 43), AtmTrafficDescrTypes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmxVccActualReceiveTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 44), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmxVccActualReceiveTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 45), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmxVccActualReceiveTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 46), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmxVccActualReceiveTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 47), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmxVccActualReceiveTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 48), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccActualReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmxVccAdmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 49), AtmAdminStatCodes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxVccAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccAdmStatus.setDescription('The vcc adminstration status - used to delete a vcc.')
atmxVccServiceUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 50), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccServiceUsed.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccServiceUsed.setDescription('The service number in which this vcc connection is used.')
atmxVccConnectionUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 51), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxVccConnectionUsed.setStatus('mandatory')
if mibBuilder.loadTexts: atmxVccConnectionUsed.setDescription('Connection being used or not being used, currently not implemented.')
atmxAddressTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1), )
if mibBuilder.loadTexts: atmxAddressTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressTable.setDescription('A table of ATM virtual address status and parameter information.')
atmxAddressEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxAddressIndex"))
if mibBuilder.loadTexts: atmxAddressEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressEntry.setDescription('An entry in the table, containing information about the ATM virtual address.')
atmxAddressIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxAddressIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressIndex.setDescription('A unique value which identifies this address index.')
atmxAddressAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 2), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAtmAddress.setDescription('A unique value which identifies this address.')
atmxAddressType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("arpServer", 1), ("nonArpServer", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressType.setDescription('The address type.')
atmxAddressVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 0))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxAddressVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressVpi.setDescription('The virtual path identifier associated with this address.')
atmxAddressVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressVci.setDescription('The virtual channel identifier associated with this address.')
atmxAddressDescription = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 6), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 31))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressDescription.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressDescription.setDescription('A description for this address.')
atmxAddressTransmitMaxSDU = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8, 32678))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressTransmitMaxSDU.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressTransmitMaxSDU.setDescription('The address maximum transmit SDU size in bytes for this SVC.')
atmxAddressReceiveMaxSDU = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(8, 32678))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressReceiveMaxSDU.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressReceiveMaxSDU.setDescription('The address maximun receive SDU size in bytes for this SVC.')
atmxAddressRequestedTransmitTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 9), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptor.setDescription('The address traffic descriptor for this SVC.')
atmxAddressRequestedTransmitTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam1.setDescription('The address transmit parameter 1 cell rate in cells/second for this SVC.')
atmxAddressRequestedTransmitTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam2.setDescription('The address transmit parameter 2 cell rate in cells/second for this SVC.')
atmxAddressRequestedTransmitTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficDescriptorParam3.setDescription('The address transmit parameter 3 cell rate in cells for this SVC.')
atmxAddressRequestedTransmitTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficQoSClass.setDescription('The address transmit traffic QOS Class for this SVC.')
atmxAddressRequestedTransmitTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedTransmitTrafficBestEffort.setDescription('The address transmit traffic best effort value for this SVC.')
atmxAddressRequestedReceiveTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 15), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptor.setDescription('The address receive traffic descriptor for this SVC.')
atmxAddressRequestedReceiveTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam1.setDescription('The address receive parameter 1 cell rate in cells/second for this SVC.')
atmxAddressRequestedReceiveTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam2.setDescription('The address receive parameter 2 cell rate in cells/second for this SVC.')
atmxAddressRequestedReceiveTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficDescriptorParam3.setDescription('The address receive parameter 2 cell rate in cells for this SVC.')
atmxAddressRequestedReceiveTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficQoSClass.setDescription('The address receive traffic QOS Class for this SVC.')
atmxAddressRequestedReceiveTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressRequestedReceiveTrafficBestEffort.setDescription('The address receive traffic best effort value for this SVC.')
atmxAddressAcceptableTransmitTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 21), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptor.setDescription('The address traffic descriptor for this SVC.')
atmxAddressAcceptableTransmitTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 22), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam1.setDescription('The address transmit parameter 1 cell rate in cells/second for this SVC.')
atmxAddressAcceptableTransmitTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam2.setDescription('The address transmit parameter 2 cell rate in cells/second for this SVC.')
atmxAddressAcceptableTransmitTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficDescriptorParam3.setDescription('The address transmit parameter 3 cell rate in cells for this SVC.')
atmxAddressAcceptableTransmitTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficQoSClass.setDescription('The address transmit traffic QOS Class for this SVC.')
atmxAddressAcceptableTransmitTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableTransmitTrafficBestEffort.setDescription('The address transmit traffic best effort value for this SVC.')
atmxAddressAcceptableReceiveTrafficDescriptor = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 27), AtmTrafficDescrTypes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptor.setDescription('The address receive traffic descriptor for this SVC.')
atmxAddressAcceptableReceiveTrafficDescriptorParam1 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 28), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam1.setDescription('The address receive parameter 1 cell rate in cells/second for this SVC.')
atmxAddressAcceptableReceiveTrafficDescriptorParam2 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 29), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam2.setDescription('The address receive parameter 2 cell rate in cells/second for this SVC.')
atmxAddressAcceptableReceiveTrafficDescriptorParam3 = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 30), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 353208))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficDescriptorParam3.setDescription('The address receive parameter 2 cell rate in cells for this SVC.')
atmxAddressAcceptableReceiveTrafficQoSClass = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 31), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 4))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficQoSClass.setDescription('The address receive traffic QOS Class for this SVC.')
atmxAddressAcceptableReceiveTrafficBestEffort = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("false", 1), ("true", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAcceptableReceiveTrafficBestEffort.setDescription('The address receive traffic best effort value for this SVC.')
atmxAddressAdmStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 33), AtmAdminStatCodes()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxAddressAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAdmStatus.setDescription('The address adminstration status - used to delete an address.')
atmxAddressServiceUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 34), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxAddressServiceUsed.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressServiceUsed.setDescription('The service number in which this address is used.')
atmxAddressAddrUsed = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 35), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxAddressAddrUsed.setStatus('mandatory')
if mibBuilder.loadTexts: atmxAddressAddrUsed.setDescription('Address being used or not being used, currently not implemented.')
atmxArpTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1), )
if mibBuilder.loadTexts: atmxArpTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpTable.setDescription('A table of ATM address to IP address information.')
atmxArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxArpIndex"))
if mibBuilder.loadTexts: atmxArpEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpEntry.setDescription('An entry in the table, containing information about the ATM address.')
atmxArpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 128))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpIndex.setDescription('A unique value which identifies this arp entry.')
atmxArpIPAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpIPAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpIPAddress.setDescription('The IP address for this atm address.')
atmxArpAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 3), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 40))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpAtmAddress.setDescription('A unique value which identifies this address.')
atmxArpVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 4), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 1023))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpVci.setDescription('The virtual channel identifier associated with this address.')
atmxArpTimeToLive = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpTimeToLive.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpTimeToLive.setDescription('The address time to live.')
atmxArpType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("static", 1), ("dynamic", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxArpType.setStatus('mandatory')
if mibBuilder.loadTexts: atmxArpType.setDescription('The address type, statically or dynamically created.')
atmLecConfigTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1), )
if mibBuilder.loadTexts: atmLecConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigTable.setDescription('This table contains all the configuration parameters for a LAN Emulation client. ')
atmLecConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLecConfigIndex"))
if mibBuilder.loadTexts: atmLecConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigEntry.setDescription('Each table entry contains configuration information for one LAN Emulation Client. Most of the objects are derived from Initial State Parameters in the LAN Emulation specification.')
atmxLecConfigIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecConfigIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecConfigIndex.setDescription('Index to identify an instance of this table.')
atmLecConfigLecsAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 2), XylanAtmLaneAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigLecsAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigLecsAtmAddress.setDescription('The LAN Emulation Configuration Server which this client can use if the Well Known LECS address is not used.')
atmLecConfigUseDefaultLecsAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigUseDefaultLecsAddr.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigUseDefaultLecsAddr.setDescription('This is to specify if this client is to use the Well Know LECS address or user supplied address. This object alone with atmLecConfigLecsAtmAddress is meaningless if the atmLecConfigMode is setted to manual(2) mode. 1 = TRUE 2 = FALSE ')
atmLecRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecRowStatus.setDescription('This object lets network managers create and delete an instance for this table. 1 = Create, 2 = Delete, 3 = Modify.')
atmLecRowInUse = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecRowInUse.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecRowInUse.setDescription('This object returns a value to indicate if this instance is used by an ATM service. 1 = In use 2 = Free. ')
atmLecConfigMode = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("automatic", 1), ("manual", 2))).clone('automatic')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigMode.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Sections 3.4.1.1 and 5.3')
if mibBuilder.loadTexts: atmLecConfigMode.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigMode.setDescription('Indicates whether this LAN Emulation Client should auto-configure the next time it is (re)started. In automatic(1) mode, a client uses a LAN Emulation Configuration Server to learn the ATM address of its LAN Emulation Server, and to obtain other parameters. atmLecConfig{ LanType, MaxDataFrameSize, LanName } are used in the Configure request. atmLecConfigLesAtmAddress is ignored. In manual(2) mode, management tells the client the ATM address of its LAN Emulation Server and the values of other parameters. atmLecConfig{ LanType, MaxDataFrameSize, LanName } are used in the Join request. atmLecConfigLesAtmAddress tells the client which LES to call.')
atmLecConfigLanType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 7), LecDataFrameFormat().clone('aflane8023')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigLanType.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecConfigLanType.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigLanType.setDescription('C2 LAN Type. The data frame format which this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualLanType will be.')
atmLecConfigMaxDataFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 8), LecDataFrameSize().clone('max4544')).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigMaxDataFrameSize.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecConfigMaxDataFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigMaxDataFrameSize.setDescription('C3 Maximum Data Frame Size. The maximum data frame size which this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualMaxDataFrameSize will be.')
atmLecConfigLanName = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 9), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigLanName.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecConfigLanName.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigLanName.setDescription('C5 ELAN Name. The ELAN Name this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualLanName will be.')
atmLecConfigLesAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 10), XylanAtmLaneAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecConfigLesAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecConfigLesAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigLesAtmAddress.setDescription("C9 LE Server ATM Address. The LAN Emulation Server which this client will use the next time it is started in manual configuration mode. When atmLecConfigMode is 'automatic', there is no need to set this address, and no advantage to doing so. The client will use the LECS to find a LES, putting the auto-configured address in atmLecActualLesAtmAddress while leaving atmLecConfigLesAtmAddress alone.")
atmLecControlTimeout = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 11), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 300)).clone(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecControlTimeout.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecControlTimeout.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlTimeout.setDescription('C7 Control Time-out. Time out period used for timing out most request/response control frame interactions, as specified elsewhere [in the LAN Emulation specification]. This time value is expressed in seconds.')
atmLecMaxUnknownFrameCount = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 12), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 10)).clone(10)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecMaxUnknownFrameCount.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecMaxUnknownFrameCount.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMaxUnknownFrameCount.setDescription('C10 Maximum Unknown Frame Count. See the description of atmLecMaxUnknownFrameTime below.')
atmLecMaxUnknownFrameTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 13), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 60)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecMaxUnknownFrameTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecMaxUnknownFrameTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMaxUnknownFrameTime.setDescription('C11 Maximum Unknown Frame Time. Within the period of time defined by the Maximum Unknown Frame Time, a LE Client will send no more than Maximum Unknown Frame Count frames to the BUS for a given unicast LAN Destination, and it must also initiate the address resolution protocol to resolve that LAN Destination. This time value is expressed in seconds.')
atmLecVccTimeoutPeriod = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 14), Integer32().clone(1200)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecVccTimeoutPeriod.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecVccTimeoutPeriod.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecVccTimeoutPeriod.setDescription('C12 VCC Time-out Period. A LE Client SHOULD release any Data Direct VCC that it has not used to transmit or receive any data frames for the length of the VCC Time-out Period. This parameter is only meaningful for SVC Data Direct VCCs. This time value is expressed in seconds. The default value is 20 minutes. A value of 0 seconds means that the timeout period is infinite. Negative values will be rejected by the agent.')
atmLecMaxRetryCount = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 15), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 2)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecMaxRetryCount.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecMaxRetryCount.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMaxRetryCount.setDescription("C13 Maximum Retry Count. A LE CLient MUST not retry a LE_ARP_REQUEST for a given frame's LAN destination more than Maximum Retry Count times, after the first LE_ARP_REQUEST for that same frame's LAN destination.")
atmLecAgingTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 16), Integer32().subtype(subtypeSpec=ValueRangeConstraint(10, 300)).clone(300)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecAgingTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecAgingTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecAgingTime.setDescription('C17 Aging Time. The maximum time that a LE Client will maintain an entry in its LE_ARP cache in the absence of a verification of that relationship. This time value is expressed in seconds.')
atmLecForwardDelayTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 17), Integer32().subtype(subtypeSpec=ValueRangeConstraint(4, 30)).clone(15)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecForwardDelayTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecForwardDelayTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecForwardDelayTime.setDescription('C18 Forward Delay Time. The maximum time that a LE Client will maintain an entry for a non-local MAC address in its LE_ARP cache in the absence of a verification of that relationship, as long as the Topology Change flag C19 is true. atmLecForwardDelayTime SHOULD BE less than atmLecAgingTime. When it is not, atmLecAgingTime governs LE_ARP aging. This time value is expressed in seconds.')
atmLecExpectedArpResponseTime = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 18), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 30)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecExpectedArpResponseTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecExpectedArpResponseTime.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecExpectedArpResponseTime.setDescription('C20 Expected LE_ARP Reponse Time. The maximum time that the LEC expects an LE_ARP_REQUEST/ LE_ARP_RESPONSE cycle to take. Used for retries and verifies. This time value is expressed in seconds.')
atmLecFlushTimeOut = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 19), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4)).clone(4)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecFlushTimeOut.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecFlushTimeOut.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecFlushTimeOut.setDescription('C21 Flush Time-out. Time limit to wait to receive a LE_FLUSH_RESPONSE after the LE_FLUSH_REQUEST has been sent before taking recovery action. This time value is expressed in seconds.')
atmLecPathSwitchingDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 20), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8)).clone(6)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecPathSwitchingDelay.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecPathSwitchingDelay.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecPathSwitchingDelay.setDescription('C22 Path Switching Delay. The time since sending a frame to the BUS after which the LE Client may assume that the frame has been either discarded or delivered to the recipient. May be used to bypass the Flush protocol. This time value is expressed in seconds.')
atmLecUseForwardDelay = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 21), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)).clone(1)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecUseForwardDelay.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecUseForwardDelay.setDescription(' This is specify whether to use Forward delay or arp cache aging time 1 = No, 2 = Yes.')
atmLecUseTranslation = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 23), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2)).clone(2)).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecUseTranslation.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecUseTranslation.setDescription(' Use translation option or not. If set to yes, user must set the translation options by the swch command in UI or the vportSwitchTable to set the translation option other than the default defined for LANE. 1 = no, 2 = yes.')
atmLecSrBridgeNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 24), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 15))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecSrBridgeNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecSrBridgeNum.setDescription(' SR bridge number for the LEC')
atmLecSrRingNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 25), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4095))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmLecSrRingNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecSrRingNum.setDescription(' SR Ring number for the LEC')
atmLecStatusTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2), )
if mibBuilder.loadTexts: atmLecStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecStatusTable.setDescription('A read-only table containing identification, status, and operational information about the LAN Emulation Clients this agent manages.')
atmLecStatusEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLecStatusSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxLecStatusPortIndex"), (0, "XYLAN-ATM-MIB", "atmxLecStatusServiceNum"))
if mibBuilder.loadTexts: atmLecStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecStatusEntry.setDescription('Each table entry contains information about one LAN Emulation Client.')
atmxLecStatusSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatusSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatusSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmxLecStatusPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatusPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatusPortIndex.setDescription('Port index to identify an instance of this table.')
atmxLecStatusServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatusServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatusServiceNum.setDescription('Service number index to identify an instance of this table.')
atmLecPrimaryAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 4), XylanAtmLaneAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecPrimaryAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecPrimaryAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecPrimaryAtmAddress.setDescription("C1 LE Client's ATM Addresses. The primary ATM address of this LAN Emulation Client. This address is used to establish the Control Direct and Multicast Send VCCs, and may also be used to set up Data Direct VCCs. A client may have additional ATM addresses for use with Data Direct VCCs. These addresses are readable via the atmLecAtmAddressTable.")
atmLecID = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 65279))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecID.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecID.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecID.setDescription("C14 LE Client Identifier. Each LE Client requires a LE Client Identifier (LECID) assigned by the LE Server during the Join phase. The LECID is placed in control requests by the LE Client and MAY be used for echo suppression on multicast data frames sent by that LE Client. This value MUST NOT change without terminating the LE Client and returning to the Initial state. A valid LECID MUST be in the range X'0001' through X'FEFF'. The value of this object is only meaningful for a LEC that is connected to a LES. For a LEC which does not belong to an emulated LAN, the value of this object is defined to be 0.")
atmLecInterfaceState = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 6), LecState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecInterfaceState.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.3.1')
if mibBuilder.loadTexts: atmLecInterfaceState.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecInterfaceState.setDescription("The mandatory state of the LAN Emulation Client. Note that 'ifOperStatus' is defined to be 'up' when, and only when, 'atmLecInterfaceState' is 'operational'.")
atmLecLastFailureRespCode = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=NamedValues(("none", 1), ("timeout", 2), ("undefinedError", 3), ("versionNotSupported", 4), ("invalidRequestParameters", 5), ("duplicateLanDestination", 6), ("duplicateAtmAddress", 7), ("insufficientResources", 8), ("accessDenied", 9), ("invalidRequesterId", 10), ("invalidLanDestination", 11), ("invalidAtmAddress", 12), ("noConfiguration", 13), ("leConfigureError", 14), ("insufficientInformation", 15)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecLastFailureRespCode.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2, Table 13')
if mibBuilder.loadTexts: atmLecLastFailureRespCode.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecLastFailureRespCode.setDescription("Status code from the last failed Configure response or Join response. Failed responses are those for which the LE_CONFIGURE_RESPONSE / LE_JOIN_RESPONSE frame contains a non-zero code, or fails to arrive within a timeout period. If none of this client's requests have failed, this object has the value 'none'. If the failed response contained a STATUS code that is not defined in the LAN Emulation specification, this object has the value 'undefinedError'. The value 'timeout' is self-explanatory. Other failure codes correspond to those defined in the specification, although they may have different numeric values.")
atmLecLastFailureState = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 8), LecState()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecLastFailureState.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.3.1')
if mibBuilder.loadTexts: atmLecLastFailureState.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecLastFailureState.setDescription("The state this client was in when it updated the 'atmLecLastFailureRespCode'. If 'atmLecLastFailureRespCode' is 'none', this object has the value initialState(1).")
atmLecProtocol = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecProtocol.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2')
if mibBuilder.loadTexts: atmLecProtocol.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecProtocol.setDescription('The LAN Emulation protocol which this client supports, and specifies in its LE_JOIN_REQUESTs.')
atmLecVersion = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 10), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 255))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecVersion.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2')
if mibBuilder.loadTexts: atmLecVersion.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecVersion.setDescription('The LAN Emulation protocol version which this client supports, and specifies in its LE_JOIN_REQUESTs.')
atmLecTopologyChange = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecTopologyChange.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecTopologyChange.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecTopologyChange.setDescription("C19 Topology Change. Boolean indication that the LE Client is using the Forward Delay Time C18, instead of the Aging Time C17, to age non-local entries in its LE_ARP cache C16. For a client which is not connected to the LES, this object is defined to have the value 'false'.")
atmLecConfigServerAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 12), XylanAtmLaneAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecConfigServerAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigServerAtmAddress.setDescription('The ATM address of the LAN Emulation Configuration Server (if known) or the empty string (otherwise).')
atmLecConfigSource = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("gotAddressViaIlmi", 1), ("usedWellKnownAddress", 2), ("usedLecsPvc", 3), ("didNotUseLecs", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecConfigSource.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.2')
if mibBuilder.loadTexts: atmLecConfigSource.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigSource.setDescription('Indicates whether this LAN Emulation Client used the LAN Emulation Configuration Server, and, if so, what method it used to establish the Configuration Direct VCC.')
atmLecActualLanType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 14), LecDataFrameFormat()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecActualLanType.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecActualLanType.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecActualLanType.setDescription("C2 LAN Type. The data frame format that this LAN Emulation Client is using right now. This may come from * atmLecConfigLanType, * the LAN Emulation Configuration Server, or * the LAN Emulation Server This value is related to 'ifMtu' and 'ifType'. See the LEC management specification for more details.")
atmLecActualMaxDataFrameSize = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 15), LecDataFrameSize()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecActualMaxDataFrameSize.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecActualMaxDataFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecActualMaxDataFrameSize.setDescription('C3 Maximum Data Frame Size. The maximum data frame size that this LAN Emulation client is using right now. This may come from * atmLecConfigMaxDataFrameSize, * the LAN Emulation Configuration Server, or * the LAN Emulation Server ')
atmLecActualLanName = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 16), DisplayString().subtype(subtypeSpec=ValueSizeConstraint(0, 32))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecActualLanName.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecActualLanName.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecActualLanName.setDescription('C5 ELAN Name. The identity of the emulated LAN which this client last joined, or wishes to join. This may come from * atmLecConfigLanName, * the LAN Emulation Configuration Server, or * the LAN Emulation Server ')
atmLecActualLesAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 17), XylanAtmLaneAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecActualLesAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecActualLesAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecActualLesAtmAddress.setDescription("C9 LE Server ATM Address. The LAN Emulation Server address currently in use or most recently attempted. If no LAN Emulation Server attachment has been tried, this object's value is the zero-length string.")
atmLecProxyClient = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 18), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecProxyClient.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts: atmLecProxyClient.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecProxyClient.setDescription('C4 Proxy. Indicates whether this client is acting as a proxy. Proxy clients are allowed to represent unregistered MAC addresses, and receive copies of LE_ARP_REQUEST frames for such addresses.')
atmLecStatisticsTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3), )
if mibBuilder.loadTexts: atmLecStatisticsTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecStatisticsTable.setDescription('An extension table containing traffic statistics for all the LAN Emulation Clients this host implements.')
atmLecStatisticsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLecStatsSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxLecStatsPortIndex"), (0, "XYLAN-ATM-MIB", "atmxLecStatsServiceNum"))
if mibBuilder.loadTexts: atmLecStatisticsEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecStatisticsEntry.setDescription('Each row in this table contains traffic statistics for one LAN Emulation client.')
atmxLecStatsSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatsSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmxLecStatsPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatsPortIndex.setDescription('Port index to identify an instance of this table.')
atmxLecStatsServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecStatsServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecStatsServiceNum.setDescription('Service number index to identify an instance of this table.')
atmLecArpRequestsOut = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecArpRequestsOut.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecArpRequestsOut.setDescription('The number of LE_ARP_REQUESTs sent over the LUNI by this LAN Emulation Client.')
atmLecArpRequestsIn = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecArpRequestsIn.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecArpRequestsIn.setDescription('The number of LE_ARP_REQUESTs received over the LUNI by this LAN Emulation Client. Requests may arrive on the Control Direct VCC or on the Control Distribute VCC, depending upon how the LES is implemented and the chances it has had for learning. This counter covers both VCCs.')
atmLecArpRepliesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecArpRepliesOut.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecArpRepliesOut.setDescription('The number of LE_ARP_RESPONSEs sent over the LUNI by this LAN Emulation Client.')
atmLecArpRepliesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecArpRepliesIn.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecArpRepliesIn.setDescription('The number of LE_ARP_RESPONSEs received over the LUNI by this LAN Emulation Client. This count includes all such replies, whether solicited or not. Replies may arrive on the Control Direct VCC or on the Control Distribute VCC, depending upon how the LES is implemented. This counter covers both VCCs.')
atmLecControlFramesOut = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlFramesOut.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlFramesOut.setDescription('The total number of control packets sent by this LAN Emulation Client over the LUNI.')
atmLecControlFramesIn = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlFramesIn.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlFramesIn.setDescription('The total number of control packets received by this LAN Emulation Client over the LUNI.')
atmLecSvcFailures = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecSvcFailures.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecSvcFailures.setDescription('The total number of * outgoing LAN Emulation SVCs which this client tried, but failed, to open; * incoming LAN Emulation SVCs which this client tried, but failed to establish; and * incoming LAN Emulation SVCs which this client rejected for protocol or security reasons. ')
atmLecServerVccTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4), )
if mibBuilder.loadTexts: atmLecServerVccTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecServerVccTable.setDescription('A table identifying the Control and Multicast VCCs for each LAN Emulation Client this host implements.')
atmLecServerVccEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLecSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxLecPortIndex"), (0, "XYLAN-ATM-MIB", "atmxLecServiceNum"))
if mibBuilder.loadTexts: atmLecServerVccEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecServerVccEntry.setDescription('Each row in this table describes the Control VCCs and Multicast VCCs for one LAN Emulation client.')
atmxLecSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecSlotIndex.setDescription('index that uniquely identify an instance of the atmLecServerVccTable.')
atmxLecPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecPortIndex.setDescription('index that uniquely identify an instance of the atmLecServerVccTable.')
atmxLecServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLecServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLecServiceNum.setDescription('Index that uniquely identify an instance of the atmLecServerVccTable.')
atmLecConfigDirectVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 4), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecConfigDirectVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.1')
if mibBuilder.loadTexts: atmLecConfigDirectVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigDirectVpi.setDescription('If the Configuration Direct VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecConfigDirectVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 5), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecConfigDirectVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.1')
if mibBuilder.loadTexts: atmLecConfigDirectVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecConfigDirectVci.setDescription('If the Configuration Direct VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecControlDirectVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 6), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlDirectVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.2')
if mibBuilder.loadTexts: atmLecControlDirectVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlDirectVpi.setDescription('If the Control Direct VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecControlDirectVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 7), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlDirectVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.2')
if mibBuilder.loadTexts: atmLecControlDirectVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlDirectVci.setDescription('If the Control Direct VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecControlDistributeVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 8), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlDistributeVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.3')
if mibBuilder.loadTexts: atmLecControlDistributeVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlDistributeVpi.setDescription('If the Control Distribute VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecControlDistributeVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 9), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecControlDistributeVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.3')
if mibBuilder.loadTexts: atmLecControlDistributeVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecControlDistributeVci.setDescription('If the Control Distribute VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object contains the value 0.')
atmLecMulticastSendVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 10), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecMulticastSendVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.2')
if mibBuilder.loadTexts: atmLecMulticastSendVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMulticastSendVpi.setDescription('If the Multicast Send VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecMulticastSendVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 11), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecMulticastSendVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.2')
if mibBuilder.loadTexts: atmLecMulticastSendVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMulticastSendVci.setDescription('If the Multicast Send VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecMulticastForwardVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 12), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecMulticastForwardVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.3')
if mibBuilder.loadTexts: atmLecMulticastForwardVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMulticastForwardVpi.setDescription('If the Multicast Forward VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLecMulticastForwardVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 13), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLecMulticastForwardVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.3')
if mibBuilder.loadTexts: atmLecMulticastForwardVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLecMulticastForwardVci.setDescription('If the Multicast Forward VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atmLeArpTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5), )
if mibBuilder.loadTexts: atmLeArpTable.setReference('ATM Forum LAN Emulation Over ATM Specification, Section 5.1.1')
if mibBuilder.loadTexts: atmLeArpTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpTable.setDescription("This table provides access to an ATM LAN Emulation Client's MAC-to-ATM ARP cache. It contains entries for unicast addresses and for the broadcast address, but not for multicast MAC addresses. C16 LE_ARP Cache. A table of entries, each of which establishes a relationship between a LAN Destination external to the LE Client and the ATM address to which data frames for that LAN Destination will be sent.")
atmLeArpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxLeArpSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxLeArpPortIndex"), (0, "XYLAN-ATM-MIB", "atmxLeArpServiceNum"), (0, "XYLAN-ATM-MIB", "atmLeArpIndex"))
if mibBuilder.loadTexts: atmLeArpEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpEntry.setDescription('An ATM LAN Emulation ARP cache entry containing information about the binding of one MAC address to one ATM address.')
atmxLeArpSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLeArpSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLeArpSlotIndex.setDescription('Slot index that uniquely identify an instance of the LeArp Table.')
atmxLeArpPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLeArpPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLeArpPortIndex.setDescription('Port index that uniquely identify an instance of the LeArp Table.')
atmxLeArpServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxLeArpServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxLeArpServiceNum.setDescription('Service number index that uniquely identify an instance of the LeArp Table.')
atmLeArpIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpIndex.setDescription('Index that uniquely identify an instance of the LeArp Table.')
atmLeArpMacAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 5), MacAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpMacAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpMacAddress.setDescription("The MAC address for which this cache entry provides a translation. Since ATM LAN Emulation uses an ARP protocol to locate the Broadcast and Unknown Server, the value of this object could be the broadcast MAC address. MAC addresses should be unique within any given ATM Emulated LAN. However, there's no requirement that they be unique across disjoint emulated LANs.")
atmLeArpAtmAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 6), XylanAtmLaneAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpAtmAddress.setDescription("The ATM address of the Broadcast & Unknown Server or LAN Emulation Client whose MAC address is stored in 'atmLeArpMacAddress'. This value may be determined through the use of the LE_ARP procedure, through source address learning, or through other mechanisms. Some agents may provide write access to this object, as part of their support for 'static' LE_ARP entries. The effect of attempting to write an ATM address to a 'learned' row is explicitly undefined. Agents may disallow the write, accept the write and change the row's type, or even accept the write as-is.")
atmLeArpIsRemoteAddress = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpIsRemoteAddress.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpIsRemoteAddress.setDescription("Indicates whether this entry is for a local or remote MAC address. In this context, 'local' means 'a MAC address that is local to the remote client', as opposed to 'one of my addresses'. true(1) The address is believed to be remote - or its local/remote status is unknown. For an entry created via the LE_ARP mechanism, this corresponds to the 'Remote address' flag being set in the LE_ARP_RESPONSE. During Topology Change periods, remote LE_ARP entries generally age out faster than others. Specifically, they are subject to the Forward Delay Time as well as to the Aging Time. false(2) The address is believed to be local - that is to say, registered with the LES by the client whose ATM address is atmLeArpAtmAddress. For an entry created via the LE_ARP mechanism, this corresponds to the 'Remote address' flag being cleared in the LE_ARP_RESPONSE.")
atmLeArpEntryType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 8), LeArpTableEntryType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpEntryType.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpEntryType.setDescription('Indicates how this LE_ARP table entry was created and whether it is aged.')
atmLeArpVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 9), VpiInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpVpi.setDescription('Indicates the vpi that this MAC is used to for it Data Direct VCC.')
atmLeArpVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 10), VciInteger()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpVci.setDescription('Indicates the vci that this MAC is used to for it Data Direct VCC.')
atmLeArpAge = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpAge.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpAge.setDescription('Indicates the time in second that this entry is being verified.')
atmLeArpType = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 12), LeArpType()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmLeArpType.setStatus('mandatory')
if mibBuilder.loadTexts: atmLeArpType.setDescription('Indicates if this entry represents a SR RD or a ESI.')
xylanLecConfigTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6), )
if mibBuilder.loadTexts: xylanLecConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecConfigTable.setDescription('A supplementary table of the lecConfigTable in ATM Forum MIB providing additional information for creating and starting LEC service. This table is indexed by the lecIndex. Each row corresponding to the row with the same lecIndex in the lecConfigTable.')
xylanLecConfigEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1), ).setIndexNames((0, "LAN-EMULATION-CLIENT-MIB", "lecIndex"))
if mibBuilder.loadTexts: xylanLecConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecConfigEntry.setDescription('Each row contains a slot number, a port number, a service number and a group number for the LEC service.')
xylanLecSlotNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 1), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanLecSlotNumber.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecSlotNumber.setDescription('The slot on which the ASM/FCSM module is located. The LEC service is to be created on that module. When a row has just been created, the first slot which has the ASM/FCSM module is assigned to this instance. If this number is not changed. The service will be created based on this assigned slot number.')
xylanLecPortNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 2), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanLecPortNumber.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecPortNumber.setDescription('The port of the ASM/FCSM module on which The LEC service is to be created. When a row has just been created, the first available port of the ASM/FCSM module is assigned to this instance. If this number is not changed. The service will be created based on this assigned port number.')
xylanLecServiceNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: xylanLecServiceNumber.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecServiceNumber.setDescription('The service number which is assigned by the system.')
xylanLecGroupNumber = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 4), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xylanLecGroupNumber.setStatus('mandatory')
if mibBuilder.loadTexts: xylanLecGroupNumber.setDescription('The group to which the LEC service belong. When a row has just been created, the default group number is assigned to this instance. If this number is not changed. The service will be created based on this assigned group number.')
atmCIPStatisticsTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1), )
if mibBuilder.loadTexts: atmCIPStatisticsTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPStatisticsTable.setDescription('An extension table containing traffic statistics for all the Classical IP this host implements.')
atmCIPStatisticsEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxCIPSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxCIPPortIndex"), (0, "XYLAN-ATM-MIB", "atmxCIPServiceNum"))
if mibBuilder.loadTexts: atmCIPStatisticsEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPStatisticsEntry.setDescription('Each row in this table contains traffic statistics for one Classical IP Service.')
atmxCIPSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxCIPSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxCIPSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmxCIPPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxCIPPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxCIPPortIndex.setDescription('Port index to identify an instance of this table.')
atmxCIPServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxCIPServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxCIPServiceNum.setDescription('Service number index to identify an instance of this table.')
atmCIPpktsFromIP = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPpktsFromIP.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPpktsFromIP.setDescription('The number of packets received form IP.')
atmCIPBroadcastPktFromIP = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 5), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPBroadcastPktFromIP.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPBroadcastPktFromIP.setDescription('The number of Broadcast packets received form IP.')
atmCIPPktsFromIPDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 6), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsFromIPDiscard.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsFromIPDiscard.setDescription('The number of packets received form IP discarded.')
atmCIPPktsToIP = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 7), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsToIP.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsToIP.setDescription('The number of packets sent to IP.')
atmCIPPktsFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 8), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsFromNet.setDescription('The number of packets received from the Network.')
atmCIPPktsFromNetDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 9), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsFromNetDiscard.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsFromNetDiscard.setDescription('The number of packets sent to IP discarded.')
atmCIPArpRespFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 10), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPArpRespFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPArpRespFromNet.setDescription('The number of Arp response packet received form the network.')
atmCIPArpReqFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 11), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPArpReqFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPArpReqFromNet.setDescription('The number of Arp request packet received form the network.')
atmCIPInvArpRespFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 12), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpRespFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpRespFromNet.setDescription('The number of Inverse Arp response packet received form the network.')
atmCIPInvArpReqFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 13), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpReqFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpReqFromNet.setDescription('The number of Inverse Arp request packet received form the network.')
atmCIPInvArpNakFromNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 14), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpNakFromNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpNakFromNet.setDescription('The number of Inverse Arp negative acknowledgement packet received form the network.')
atmCIPPktsToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 15), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsToNet.setDescription('The number of packets sent to the network.')
atmCIPPktsToNetDiscard = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 16), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPPktsToNetDiscard.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPPktsToNetDiscard.setDescription('The number of packets sent to the network.')
atmCIPArpRespToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 17), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPArpRespToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPArpRespToNet.setDescription('The number of Arp response packet sent to the network.')
atmCIPArpReqToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 18), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPArpReqToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPArpReqToNet.setDescription('The number of Arp request packet sent to the network.')
atmCIPInvArpRespToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 19), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpRespToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpRespToNet.setDescription('The number of Inverse Arp response packet sent to the network.')
atmCIPInvArpReqToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 20), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpReqToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpReqToNet.setDescription('The number of Inverse Arp request packet sent to the network.')
atmCIPInvArpNakToNet = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 21), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmCIPInvArpNakToNet.setStatus('mandatory')
if mibBuilder.loadTexts: atmCIPInvArpNakToNet.setDescription('The number of Inverse Arp negative acknowledge packet sent to the network.')
atmGpToVcMappingTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1), )
if mibBuilder.loadTexts: atmGpToVcMappingTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmGpToVcMappingTable.setDescription('An extension table containing mapping info for all group to VCI (and VPI) mapping for 1 Scaling service. This table is for create, delete 1 mapping entry. Utilize atmxServiceGroup to create or delete a 1483 Scaling Service. Create 1483 Scaling Service only with 1 group and 1 vc thru the atmxServiceGroup. Adding or removing other group-to-vc mapping should then use this atmx1483ScaleGroup.')
atmGpToVcMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxGpToVcSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxGpToVcPortIndex"), (0, "XYLAN-ATM-MIB", "atmxGpToVcServiceNum"), (0, "XYLAN-ATM-MIB", "atmxGpToVcGroupId"))
if mibBuilder.loadTexts: atmGpToVcMappingEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmGpToVcMappingEntry.setDescription('Each row in this table contains mapping info for 1 group to 1 VCI (and 1 VPI) entry. The value for VPI must be zero (0).')
atmxGpToVcSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmxGpToVcPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcPortIndex.setDescription('Port index to identify an instance of this table.')
atmxGpToVcServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcServiceNum.setDescription('Service number index to identify an instance of this table.')
atmxGpToVcGroupId = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcGroupId.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcGroupId.setDescription('Group number index to identify an instance of this table.')
atmxGpToVcVpi = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 5), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxGpToVcVpi.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcVpi.setDescription('The VPI for 1 Scaling Service. VPI can only be zero .')
atmxGpToVcVci = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxGpToVcVci.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcVci.setDescription('The VCI for 1 Scaling Service. The range for VCI is from 1 to 1000.')
atmxGpToVcRowStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("create", 1), ("delete", 2), ("active", 3), ("inactive", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxGpToVcRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcRowStatus.setDescription('Row Status indicates the state of a entry of this mapping table. For a Get-operation, the value to be returned values can be ACTIVE or INACTIVE. This RowStatus will return ACTIVE, if the atmxServiceAdminStatus (an object in atmxSerivceGroup) is set to ENABLE. RowStatus will be INACTIVE if atmxServiceAdminStatus is set to a value other than ENABLE. RowStatus can only set to CREATE or DELETE. The values ACTIVE and INACTIVE are read only. For a Set-operation, values to be set can be CREATE or DELETE. Utilize atmxServiceGroup to create or delete a 1483 Scaling Service. Create 1483 Scaling Service only with 1 group and 1 vc thru the atmxServiceGroup. Adding or removing other group-to-vc mapping should then use this atmx1483ScaleGroup.')
atmGpToVcBulkMappingTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2), )
if mibBuilder.loadTexts: atmGpToVcBulkMappingTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmGpToVcBulkMappingTable.setDescription('An extension table containing mapping (bulk) info for all group to VCI (and VPI) mapping for 1 Scaling service. This table can only have 1 row. This table is for updating the whole mapping list (ie. all mapping entries ) at one time. ')
atmGpToVcBulkMappingEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxGpToVcBulkSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxGpToVcBulkPortIndex"), (0, "XYLAN-ATM-MIB", "atmxGpToVcBulkServiceNum"))
if mibBuilder.loadTexts: atmGpToVcBulkMappingEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmGpToVcBulkMappingEntry.setDescription('There is only 1 row in this table. This row contains all group to VCI (and VPI) mapping for 1 Scaling service. There are 3 indices for this table. The value for VPI must be zero (0).')
atmxGpToVcBulkSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcBulkSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcBulkSlotIndex.setDescription('Slot index to identify a Scaling service.')
atmxGpToVcBulkPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcBulkPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcBulkPortIndex.setDescription('Port index to identify a Scaling service.')
atmxGpToVcBulkServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcBulkServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcBulkServiceNum.setDescription('Service number index to identify a Scaling service.')
atmxGpToVcBulkNumOfNodes = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxGpToVcBulkNumOfNodes.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcBulkNumOfNodes.setDescription('Number of group to VCI (and VPI) mapping inside the bulk mapping list. ')
atmxGpToVcBulkMappingList = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 5), OctetString().subtype(subtypeSpec=ValueSizeConstraint(8, 8000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxGpToVcBulkMappingList.setStatus('mandatory')
if mibBuilder.loadTexts: atmxGpToVcBulkMappingList.setDescription('A list containing all group to VCI (and VPI) mapping entries. Each mapping entry has the following fields having the exact order : a) Group Number (4 bytes) b) VPI (2 bytes) c) VCI (2 bytes) A total of 8 bytes for each mapping structure. There is no separator in between matching structures, nor is a end-of-string in this whole matching list. The size of this whole mapping list must be a multiple of 8 bytes. For Set-Operations, if a user wants to update the mapping list, he must send the whole mapping list buffer. ')
atmxBwgTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1), )
if mibBuilder.loadTexts: atmxBwgTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgTable.setDescription('A table of Bandwidth group parameters for Traffic Shaping')
atmxBwgEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxBwgSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxBwgPortIndex"), (0, "XYLAN-ATM-MIB", "atmxBwgNum"))
if mibBuilder.loadTexts: atmxBwgEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgEntry.setDescription('An entry in the table, containing information about the Traffic parameters for each of the 8 bandwidth groups')
atmxBwgSlotIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 9))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxBwgSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmxBwgPortIndex = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 2), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 2))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxBwgPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmxBwgNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 3), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 8))).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxBwgNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgNum.setDescription('A unique value that identifies the bwg')
atmxBwgBE = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("true", 1), ("false", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxBwgBE.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgBE.setDescription('Whether to use Best Effort for tx data.')
atmxBwgPcr = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(535, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxBwgPcr.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgPcr.setDescription('The value of the Peak Cell Rate(Kbps) as defined in the Traffic Management Specification Version 4.0. atmxBwgPcr has no meaning when atmxBwgBE is equal to true.')
atmxBwgScr = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 6), Integer32().subtype(subtypeSpec=ValueRangeConstraint(35, 150000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxBwgScr.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgScr.setDescription('The value of the Sustained Cell Rate(Kbps) as defined in the Traffic Management Specification Version 4.0. atmxBwgScr must be less or equal to atmxBwgPcr. atmxBwgScr has no meaning when atmxBwgBE is equal to true.')
atmxBwgMbs = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 7), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 124))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: atmxBwgMbs.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgMbs.setDescription('The value of the max burst size when interleaving traffic from multiple sources as defined in the 4.0 Traffic Management specification. atmxBwgMbs has no meaning when atmxBwgBE is equal to true.')
atmxBwgOperStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 8), AtmOperStatCodes()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxBwgOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgOperStatus.setDescription('If the bwg is being used by any service we return inService(2) , or we return outOfService(3).')
atmxBwgServiceTable = MibTable((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2), )
if mibBuilder.loadTexts: atmxBwgServiceTable.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgServiceTable.setDescription('A table of Service group parameters for Traffic Shaping')
atmxBwgServiceEntry = MibTableRow((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2, 1), ).setIndexNames((0, "XYLAN-ATM-MIB", "atmxBwgSlotIndex"), (0, "XYLAN-ATM-MIB", "atmxBwgPortIndex"), (0, "XYLAN-ATM-MIB", "atmxBwgNum"), (0, "XYLAN-ATM-MIB", "atmxBwgServiceNum"))
if mibBuilder.loadTexts: atmxBwgServiceEntry.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgServiceEntry.setDescription('Each entry represents an BandWidthGroup to Service mapping.')
atmxBwgServiceNum = MibTableColumn((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: atmxBwgServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts: atmxBwgServiceNum.setDescription('A unique value which identifies a service.')
mibBuilder.exportSymbols("XYLAN-ATM-MIB", atmxVccRequestedTransmitTrafficDescriptorParam3=atmxVccRequestedTransmitTrafficDescriptorParam3, atmxAddressReceiveMaxSDU=atmxAddressReceiveMaxSDU, atmLeArpIndex=atmLeArpIndex, LecDataFrameFormat=LecDataFrameFormat, atmCIPStatisticsTable=atmCIPStatisticsTable, atmxVccStatsRxCellCrcErrors=atmxVccStatsRxCellCrcErrors, atmxAddressAcceptableTransmitTrafficDescriptorParam1=atmxAddressAcceptableTransmitTrafficDescriptorParam1, atmCIPPktsToNetDiscard=atmCIPPktsToNetDiscard, atmLecInterfaceState=atmLecInterfaceState, atmxServiceEntry=atmxServiceEntry, atmxAddressAddrUsed=atmxAddressAddrUsed, atmxLayerStatsTxSDUErrors=atmxLayerStatsTxSDUErrors, atmLecConfigLecsAtmAddress=atmLecConfigLecsAtmAddress, atmxVccAcceptableTransmitTrafficDescriptorParam3=atmxVccAcceptableTransmitTrafficDescriptorParam3, atmLeArpAge=atmLeArpAge, atmxVccConnectionUsed=atmxVccConnectionUsed, AtmConnectionOperStatCodes=AtmConnectionOperStatCodes, atmLeArpTable=atmLeArpTable, atmxVccActualReceiveTrafficDescriptor=atmxVccActualReceiveTrafficDescriptor, xylanLecPortNumber=xylanLecPortNumber, atmxAddressAcceptableTransmitTrafficDescriptorParam2=atmxAddressAcceptableTransmitTrafficDescriptorParam2, atmLecServerVccTable=atmLecServerVccTable, atmxAddressRequestedReceiveTrafficDescriptor=atmxAddressRequestedReceiveTrafficDescriptor, atmxPortPortIndex=atmxPortPortIndex, atmxAddressAdmStatus=atmxAddressAdmStatus, atmxAddressRequestedReceiveTrafficDescriptorParam2=atmxAddressRequestedReceiveTrafficDescriptorParam2, atmxLayerStatsTxOctets=atmxLayerStatsTxOctets, atmxLayerStatsRxSDUs=atmxLayerStatsRxSDUs, LecState=LecState, atmCIPPktsToNet=atmCIPPktsToNet, atmxVccServiceUsed=atmxVccServiceUsed, atmxAddressAcceptableReceiveTrafficDescriptorParam2=atmxAddressAcceptableReceiveTrafficDescriptorParam2, atmxLecStatsServiceNum=atmxLecStatsServiceNum, atmLeArpVpi=atmLeArpVpi, atmxPortGroup=atmxPortGroup, atmxBwgTable=atmxBwgTable, atmLecProxyClient=atmLecProxyClient, atmxVccStatsTable=atmxVccStatsTable, atmxBwgNum=atmxBwgNum, xylanLecGroupNumber=xylanLecGroupNumber, atmxAddressRequestedTransmitTrafficDescriptorParam2=atmxAddressRequestedTransmitTrafficDescriptorParam2, atmLecVccTimeoutPeriod=atmLecVccTimeoutPeriod, xylanLecConfigEntry=xylanLecConfigEntry, atmxCIPstatsGroup=atmxCIPstatsGroup, atmGpToVcBulkMappingEntry=atmGpToVcBulkMappingEntry, atmxAddressVpi=atmxAddressVpi, atmLecSrBridgeNum=atmLecSrBridgeNum, atmxPortSignalingVersion=atmxPortSignalingVersion, atmLecAgingTime=atmLecAgingTime, atmxPortRxSegmentSize=atmxPortRxSegmentSize, atmLecArpRequestsOut=atmLecArpRequestsOut, atmCIPInvArpReqFromNet=atmCIPInvArpReqFromNet, atmxLayerStatsRxCellNoBuffers=atmxLayerStatsRxCellNoBuffers, atmLecConfigDirectVpi=atmLecConfigDirectVpi, atmxServiceMulticastOutVcc=atmxServiceMulticastOutVcc, atmxLecStatusServiceNum=atmxLecStatusServiceNum, atmxLecPortIndex=atmxLecPortIndex, atmxVccAcceptableTransmitTrafficDescriptor=atmxVccAcceptableTransmitTrafficDescriptor, atmLecConfigMode=atmLecConfigMode, atmxVccStatsRxCellTrash=atmxVccStatsRxCellTrash, atmxAddressAcceptableReceiveTrafficBestEffort=atmxAddressAcceptableReceiveTrafficBestEffort, atmxVccStatsTxSDUDiscards=atmxVccStatsTxSDUDiscards, atmxVccActualReceiveTrafficQoSClass=atmxVccActualReceiveTrafficQoSClass, atmLecProtocol=atmLecProtocol, atmLecActualLanName=atmLecActualLanName, atmxVccStatsRxSDUErrors=atmxVccStatsRxSDUErrors, atmxArpTimeToLive=atmxArpTimeToLive, atmxAddressRequestedTransmitTrafficBestEffort=atmxAddressRequestedTransmitTrafficBestEffort, atmxGpToVcBulkNumOfNodes=atmxGpToVcBulkNumOfNodes, atmxPortEntry=atmxPortEntry, atmxPortProtocolType=atmxPortProtocolType, atmxVccOperStatus=atmxVccOperStatus, atmLecSvcFailures=atmLecSvcFailures, atmxGpToVcBulkServiceNum=atmxGpToVcBulkServiceNum, atmxVccActualTransmitTrafficDescriptorParam3=atmxVccActualTransmitTrafficDescriptorParam3, atmxLayerStatsRxCellErrors=atmxLayerStatsRxCellErrors, atmLecMaxUnknownFrameTime=atmLecMaxUnknownFrameTime, atmxLecStatusSlotIndex=atmxLecStatusSlotIndex, atmCIPInvArpNakFromNet=atmCIPInvArpNakFromNet, atmxArpEntry=atmxArpEntry, atmxVccRequestedReceiveTrafficQoSClass=atmxVccRequestedReceiveTrafficQoSClass, atmxBwgBE=atmxBwgBE, atmLecID=atmLecID, atmLecControlDistributeVpi=atmLecControlDistributeVpi, atmxAddressAcceptableTransmitTrafficBestEffort=atmxAddressAcceptableTransmitTrafficBestEffort, atmLecConfigSource=atmLecConfigSource, atmCIPArpRespToNet=atmCIPArpRespToNet, atmxVccRequestedTransmitTrafficDescriptorParam2=atmxVccRequestedTransmitTrafficDescriptorParam2, atmxServiceArpRequestServer=atmxServiceArpRequestServer, atmxCIPPortIndex=atmxCIPPortIndex, atmxServiceVclEncapType=atmxServiceVclEncapType, atmLeArpVci=atmLeArpVci, atmxLeArpPortIndex=atmxLeArpPortIndex, atmLecVersion=atmLecVersion, atmxVccActualReceiveTrafficBestEffort=atmxVccActualReceiveTrafficBestEffort, atmLecActualLanType=atmLecActualLanType, atmxVccRequestedTransmitTrafficQoSClass=atmxVccRequestedTransmitTrafficQoSClass, atmxVccStatsRxSDUNoBuffers=atmxVccStatsRxSDUNoBuffers, atmxServiceConnections=atmxServiceConnections, atmxVccStatsPortIndex=atmxVccStatsPortIndex, atmLecMulticastForwardVpi=atmLecMulticastForwardVpi, atmxLayerStatsTable=atmxLayerStatsTable, atmLecPrimaryAtmAddress=atmLecPrimaryAtmAddress, atmLeArpType=atmLeArpType, atmxGpToVcRowStatus=atmxGpToVcRowStatus, atmxBwgScr=atmxBwgScr, atmxLayerStatsTxCellErrors=atmxLayerStatsTxCellErrors, atmLecControlTimeout=atmLecControlTimeout, atmxAddressAcceptableReceiveTrafficDescriptor=atmxAddressAcceptableReceiveTrafficDescriptor, atmxVccAcceptableReceiveTrafficDescriptorParam2=atmxVccAcceptableReceiveTrafficDescriptorParam2, atmxPortUniType=atmxPortUniType, atmxLecConfigIndex=atmxLecConfigIndex, atmLecMaxRetryCount=atmLecMaxRetryCount, atmxVccRequestedReceiveTrafficDescriptorParam2=atmxVccRequestedReceiveTrafficDescriptorParam2, atmLecMaxUnknownFrameCount=atmLecMaxUnknownFrameCount, atmxBwgMbs=atmxBwgMbs, atmxAddressTransmitMaxSDU=atmxAddressTransmitMaxSDU, atmxVccStatsTxCellNoBuffers=atmxVccStatsTxCellNoBuffers, atmCIPArpReqToNet=atmCIPArpReqToNet, atmxLayerStatsTxSDUs=atmxLayerStatsTxSDUs, atmxPortConnectionType=atmxPortConnectionType, atmLeArpIsRemoteAddress=atmLeArpIsRemoteAddress, atmxPortMediaType=atmxPortMediaType, atmxAddressRequestedTransmitTrafficDescriptorParam3=atmxAddressRequestedTransmitTrafficDescriptorParam3, atmxVccRequestedTransmitTrafficDescriptorParam1=atmxVccRequestedTransmitTrafficDescriptorParam1, atmLecForwardDelayTime=atmLecForwardDelayTime, atmxVccStatsRxCellNoBuffers=atmxVccStatsRxCellNoBuffers, atmxLayerStatsRxSDUErrors=atmxLayerStatsRxSDUErrors, atmxPortTxSegmentSize=atmxPortTxSegmentSize, atmxArpAtmAddress=atmxArpAtmAddress, atmCIPInvArpRespFromNet=atmCIPInvArpRespFromNet, atmxVccAcceptableTransmitTrafficQoSClass=atmxVccAcceptableTransmitTrafficQoSClass, atmLecSrRingNum=atmLecSrRingNum, atmxArpTable=atmxArpTable, atmxLayerStatsTxCellDiscards=atmxLayerStatsTxCellDiscards, atmxServicePortIndex=atmxServicePortIndex, atmxLayerStatsRxSDUNoBuffers=atmxLayerStatsRxSDUNoBuffers, atmLecRowStatus=atmLecRowStatus, atmxVccGroup=atmxVccGroup, atmxPortDescription=atmxPortDescription, atmxVccTransmitMaxFrameSize=atmxVccTransmitMaxFrameSize, atmxVccStatsTxOctets=atmxVccStatsTxOctets, atmxAddressRequestedReceiveTrafficDescriptorParam3=atmxAddressRequestedReceiveTrafficDescriptorParam3, atmGpToVcBulkMappingTable=atmGpToVcBulkMappingTable, atmxBwgServiceEntry=atmxBwgServiceEntry, atmLecUseTranslation=atmLecUseTranslation, atmLecTopologyChange=atmLecTopologyChange, atmGpToVcMappingTable=atmGpToVcMappingTable, atmxVccPortIndex=atmxVccPortIndex, atmxVccRequestedReceiveTrafficDescriptorParam3=atmxVccRequestedReceiveTrafficDescriptorParam3, VciInteger=VciInteger, atmxVccRequestedTransmitTrafficDescriptor=atmxVccRequestedTransmitTrafficDescriptor, atmxGpToVcSlotIndex=atmxGpToVcSlotIndex, atmxVccStatsTxCells=atmxVccStatsTxCells, atmxServiceType=atmxServiceType, atmxVccStatsVci=atmxVccStatsVci, atmxPortMaxVCCs=atmxPortMaxVCCs, atmxAddressAcceptableTransmitTrafficDescriptorParam3=atmxAddressAcceptableTransmitTrafficDescriptorParam3, atmLecExpectedArpResponseTime=atmLecExpectedArpResponseTime, atmxVccDownTime=atmxVccDownTime, atmxVccActualTransmitTrafficDescriptorParam1=atmxVccActualTransmitTrafficDescriptorParam1, atmxCIPServiceNum=atmxCIPServiceNum, atmxPortILMIstatus=atmxPortILMIstatus, atmxAddressAtmAddress=atmxAddressAtmAddress, atmxLecSlotIndex=atmxLecSlotIndex, atmLeArpEntryType=atmLeArpEntryType, atmxAddressGroup=atmxAddressGroup, atmxVccStatsRxSDUCrcErrors=atmxVccStatsRxSDUCrcErrors, atmxLeArpServiceNum=atmxLeArpServiceNum, atmLecStatusTable=atmLecStatusTable, atmLecControlDirectVci=atmLecControlDirectVci, atmxLayerStatsEntry=atmxLayerStatsEntry, atmxVccStatsEntry=atmxVccStatsEntry, atmxVccStatsRxCellDiscards=atmxVccStatsRxCellDiscards, atmxVccStatsRxSDUDiscards=atmxVccStatsRxSDUDiscards, atmxGpToVcVci=atmxGpToVcVci, atmxVccStatsGroup=atmxVccStatsGroup, atmxAddressTable=atmxAddressTable, atmxLayerStatsTxCellNoBuffers=atmxLayerStatsTxCellNoBuffers, atmxPortTable=atmxPortTable, atmxVccReceiveMaxFrameSize=atmxVccReceiveMaxFrameSize, atmLecConfigServerAtmAddress=atmLecConfigServerAtmAddress, atmLecPathSwitchingDelay=atmLecPathSwitchingDelay, atmxPortTimingMode=atmxPortTimingMode, atmxVccRequestedReceiveTrafficDescriptor=atmxVccRequestedReceiveTrafficDescriptor, atmxArpGroup=atmxArpGroup, atmxLayerStatsRxCellDiscards=atmxLayerStatsRxCellDiscards, atmxAddressVci=atmxAddressVci, atmxBwgEntry=atmxBwgEntry, atmxLayerStatsRxSDUDiscards=atmxLayerStatsRxSDUDiscards, atmxVccStatsTxCellErrors=atmxVccStatsTxCellErrors, atmxPortSignalingVci=atmxPortSignalingVci, atmxPortILMIVci=atmxPortILMIVci, atmxLayerStatsTxSDUDiscards=atmxLayerStatsTxSDUDiscards, atmxVccAcceptableTransmitTrafficDescriptorParam2=atmxVccAcceptableTransmitTrafficDescriptorParam2, atmLecStatisticsTable=atmLecStatisticsTable, atmLecControlFramesOut=atmLecControlFramesOut, atmCIPBroadcastPktFromIP=atmCIPBroadcastPktFromIP, atmLeArpMacAddress=atmLeArpMacAddress, atmxArpType=atmxArpType, atmxAddressIndex=atmxAddressIndex, atmxArpIPAddress=atmxArpIPAddress, atmxVccAcceptableTransmitTrafficDescriptorParam1=atmxVccAcceptableTransmitTrafficDescriptorParam1, atmxVccAcceptableReceiveTrafficDescriptorParam1=atmxVccAcceptableReceiveTrafficDescriptorParam1, atmxLayerStatsTxCells=atmxLayerStatsTxCells, atmxPortLoopbackConfig=atmxPortLoopbackConfig, atmxAddressRequestedTransmitTrafficQoSClass=atmxAddressRequestedTransmitTrafficQoSClass, atmxPortTxBufferSize=atmxPortTxBufferSize, xylanLecConfigTable=xylanLecConfigTable, atmxAddressRequestedReceiveTrafficQoSClass=atmxAddressRequestedReceiveTrafficQoSClass, atmxVccAcceptableTransmitTrafficBestEffort=atmxVccAcceptableTransmitTrafficBestEffort, atmLecLastFailureRespCode=atmLecLastFailureRespCode, atmxServiceGroup=atmxServiceGroup, atmxAddressDescription=atmxAddressDescription, atmxPortSSCOPstatus=atmxPortSSCOPstatus, atmxBwgPcr=atmxBwgPcr, atmLecMulticastSendVci=atmLecMulticastSendVci, atmxLayerStatsTxSDUNoBuffers=atmxLayerStatsTxSDUNoBuffers, atmxLayerStatsRxSDUCrcErrors=atmxLayerStatsRxSDUCrcErrors, atmxLeArpSlotIndex=atmxLeArpSlotIndex, atmLecControlDistributeVci=atmLecControlDistributeVci, atmxLecStatusPortIndex=atmxLecStatusPortIndex, atmLeArpEntry=atmLeArpEntry, atmxGpToVcBulkMappingList=atmxGpToVcBulkMappingList, atmxServiceAddress=atmxServiceAddress, atmxPortPlScramble=atmxPortPlScramble, atmx1483ScaleGroup=atmx1483ScaleGroup, atmLecRowInUse=atmLecRowInUse, atmxLayerStatsRxSDUTrash=atmxLayerStatsRxSDUTrash, atmLecConfigUseDefaultLecsAddr=atmLecConfigUseDefaultLecsAddr, atmxVccCircuitType=atmxVccCircuitType, atmCIPpktsFromIP=atmCIPpktsFromIP, atmCIPStatisticsEntry=atmCIPStatisticsEntry, atmxVccRequestedReceiveTrafficBestEffort=atmxVccRequestedReceiveTrafficBestEffort, atmxVccEntry=atmxVccEntry, atmxVccDescription=atmxVccDescription, atmxVccStatsRxCellErrors=atmxVccStatsRxCellErrors, atmxLsmGroup=atmxLsmGroup, atmxPortAddress=atmxPortAddress, atmxLecServiceNum=atmxLecServiceNum, atmxVccStatsTxCellDiscards=atmxVccStatsTxCellDiscards, atmxCIPSlotIndex=atmxCIPSlotIndex, atmxServiceConnectionType=atmxServiceConnectionType, atmLecArpRepliesOut=atmLecArpRepliesOut, atmxLayerStatsRxSDUInvalidSz=atmxLayerStatsRxSDUInvalidSz, atmLecConfigMaxDataFrameSize=atmLecConfigMaxDataFrameSize, atmLecConfigLesAtmAddress=atmLecConfigLesAtmAddress, atmxVccAcceptableReceiveTrafficDescriptor=atmxVccAcceptableReceiveTrafficDescriptor, atmxVccSlotIndex=atmxVccSlotIndex, atmxGpToVcBulkSlotIndex=atmxGpToVcBulkSlotIndex, LeArpType=LeArpType, atmxServiceOperStatus=atmxServiceOperStatus, atmLecLastFailureState=atmLecLastFailureState, atmGpToVcMappingEntry=atmGpToVcMappingEntry)
mibBuilder.exportSymbols("XYLAN-ATM-MIB", atmxGpToVcGroupId=atmxGpToVcGroupId, atmxVccStatsRxOctets=atmxVccStatsRxOctets, atmxVccAdmStatus=atmxVccAdmStatus, XylanAtmLaneAddress=XylanAtmLaneAddress, LeArpTableEntryType=LeArpTableEntryType, atmLecControlDirectVpi=atmLecControlDirectVpi, atmCIPInvArpRespToNet=atmCIPInvArpRespToNet, atmxServiceEncapsType=atmxServiceEncapsType, atmxServiceAddresses=atmxServiceAddresses, atmCIPPktsFromNet=atmCIPPktsFromNet, atmxArpIndex=atmxArpIndex, atmCIPInvArpReqToNet=atmCIPInvArpReqToNet, atmxServiceDescription=atmxServiceDescription, atmxVccStatsTxSDUNoBuffers=atmxVccStatsTxSDUNoBuffers, atmCIPPktsToIP=atmCIPPktsToIP, atmxVccAcceptableReceiveTrafficDescriptorParam3=atmxVccAcceptableReceiveTrafficDescriptorParam3, atmxVccTable=atmxVccTable, atmxLayerStatsGroup=atmxLayerStatsGroup, atmLecConfigLanName=atmLecConfigLanName, atmLecArpRequestsIn=atmLecArpRequestsIn, atmxServiceNumVclMembers=atmxServiceNumVclMembers, atmxGpToVcPortIndex=atmxGpToVcPortIndex, atmxAddressAcceptableReceiveTrafficDescriptorParam3=atmxAddressAcceptableReceiveTrafficDescriptorParam3, AtmServiceOperStatCodes=AtmServiceOperStatCodes, atmxVccConnType=atmxVccConnType, atmxAddressAcceptableTransmitTrafficQoSClass=atmxAddressAcceptableTransmitTrafficQoSClass, atmxServiceNumber=atmxServiceNumber, AtmOperStatCodes=AtmOperStatCodes, atmxAddressRequestedReceiveTrafficDescriptorParam1=atmxAddressRequestedReceiveTrafficDescriptorParam1, xylanLecSlotNumber=xylanLecSlotNumber, atmxAddressType=atmxAddressType, atmLecConfigDirectVci=atmLecConfigDirectVci, atmCIPArpReqFromNet=atmCIPArpReqFromNet, atmxSahiBWGroup=atmxSahiBWGroup, atmxVccStatsRxSDUs=atmxVccStatsRxSDUs, atmxServiceSEL=atmxServiceSEL, atmLecMulticastForwardVci=atmLecMulticastForwardVci, atmxVccActualTransmitTrafficDescriptorParam2=atmxVccActualTransmitTrafficDescriptorParam2, atmxVccRequestedReceiveTrafficDescriptorParam1=atmxVccRequestedReceiveTrafficDescriptorParam1, atmxLayerStatsRxOctets=atmxLayerStatsRxOctets, atmxVccStatsRxSDUInvalidSz=atmxVccStatsRxSDUInvalidSz, atmLecActualMaxDataFrameSize=atmLecActualMaxDataFrameSize, atmLecActualLesAtmAddress=atmLecActualLesAtmAddress, atmLecConfigTable=atmLecConfigTable, atmxAddressAcceptableTransmitTrafficDescriptor=atmxAddressAcceptableTransmitTrafficDescriptor, atmxPortUniPortIndex=atmxPortUniPortIndex, AtmAdminStatCodes=AtmAdminStatCodes, atmxServiceLaneCfgTblIdx=atmxServiceLaneCfgTblIdx, atmxBwgServiceTable=atmxBwgServiceTable, atmxVccStatsTxSDUs=atmxVccStatsTxSDUs, atmLecConfigEntry=atmLecConfigEntry, atmxLaneGroup=atmxLaneGroup, VpiInteger=VpiInteger, atmLecUseForwardDelay=atmLecUseForwardDelay, atmxPortOperStatus=atmxPortOperStatus, atmxLayerStatsSlotIndex=atmxLayerStatsSlotIndex, atmCIPInvArpNakToNet=atmCIPInvArpNakToNet, atmxVccRequestedTransmitTrafficBestEffort=atmxVccRequestedTransmitTrafficBestEffort, atmxVccActualTransmitTrafficBestEffort=atmxVccActualTransmitTrafficBestEffort, atmxAddressAcceptableReceiveTrafficQoSClass=atmxAddressAcceptableReceiveTrafficQoSClass, atmxVccActualReceiveTrafficDescriptorParam3=atmxVccActualReceiveTrafficDescriptorParam3, atmxAddressServiceUsed=atmxAddressServiceUsed, AtmTransmissionTypes=AtmTransmissionTypes, atmxVccAcceptableReceiveTrafficQoSClass=atmxVccAcceptableReceiveTrafficQoSClass, atmxBwgSlotIndex=atmxBwgSlotIndex, atmxVccStatsRxSDUTrash=atmxVccStatsRxSDUTrash, atmxArpVci=atmxArpVci, atmxVccStatsTxSDUErrors=atmxVccStatsTxSDUErrors, atmxServiceSahiBwgNum=atmxServiceSahiBwgNum, atmLecArpRepliesIn=atmLecArpRepliesIn, atmLecStatisticsEntry=atmLecStatisticsEntry, atmCIPPktsFromNetDiscard=atmCIPPktsFromNetDiscard, atmxServiceTable=atmxServiceTable, atmxAddressRequestedReceiveTrafficBestEffort=atmxAddressRequestedReceiveTrafficBestEffort, atmxVccActualTransmitTrafficQoSClass=atmxVccActualTransmitTrafficQoSClass, atmxVccActualReceiveTrafficDescriptorParam1=atmxVccActualReceiveTrafficDescriptorParam1, atmxVccStatsRxCells=atmxVccStatsRxCells, atmLecControlFramesIn=atmLecControlFramesIn, atmxAddressRequestedTransmitTrafficDescriptorParam1=atmxAddressRequestedTransmitTrafficDescriptorParam1, atmLecStatusEntry=atmLecStatusEntry, atmxGpToVcBulkPortIndex=atmxGpToVcBulkPortIndex, atmxVccVpi=atmxVccVpi, atmxPortMaxVciBits=atmxPortMaxVciBits, atmxBwgOperStatus=atmxBwgOperStatus, atmxServiceAdmStatus=atmxServiceAdmStatus, atmxServiceVlan=atmxServiceVlan, atmxLayerStatsRxCells=atmxLayerStatsRxCells, atmxAddressRequestedTransmitTrafficDescriptor=atmxAddressRequestedTransmitTrafficDescriptor, atmxVccUpTime=atmxVccUpTime, atmxServiceSlotIndex=atmxServiceSlotIndex, atmxVccStatsSlotIndex=atmxVccStatsSlotIndex, atmxLecStatsPortIndex=atmxLecStatsPortIndex, atmLecServerVccEntry=atmLecServerVccEntry, atmCIPArpRespFromNet=atmCIPArpRespFromNet, atmxAddressAcceptableReceiveTrafficDescriptorParam1=atmxAddressAcceptableReceiveTrafficDescriptorParam1, atmxPortTransmissionType=atmxPortTransmissionType, atmxPortSlotIndex=atmxPortSlotIndex, atmxLecStatsSlotIndex=atmxLecStatsSlotIndex, atmxPortEnableILMI=atmxPortEnableILMI, atmxGpToVcServiceNum=atmxGpToVcServiceNum, xylanLecServiceNumber=xylanLecServiceNumber, atmxLayerStatsPortIndex=atmxLayerStatsPortIndex, atmxPortRxBufferSize=atmxPortRxBufferSize, AtmTrafficDescrTypes=AtmTrafficDescrTypes, atmxGpToVcVpi=atmxGpToVcVpi, atmxAddressEntry=atmxAddressEntry, atmCIPPktsFromIPDiscard=atmCIPPktsFromIPDiscard, atmxVccVci=atmxVccVci, atmLecConfigLanType=atmLecConfigLanType, atmxLayerStatsRxCellTrash=atmxLayerStatsRxCellTrash, atmxVccActualReceiveTrafficDescriptorParam2=atmxVccActualReceiveTrafficDescriptorParam2, atmxBwgServiceNum=atmxBwgServiceNum, atmLecMulticastSendVpi=atmLecMulticastSendVpi, atmxBwgPortIndex=atmxBwgPortIndex, atmxVccAcceptableReceiveTrafficBestEffort=atmxVccAcceptableReceiveTrafficBestEffort, atmLeArpAtmAddress=atmLeArpAtmAddress, AtmMediaTypes=AtmMediaTypes, atmxLayerStatsRxCellCrcErrors=atmxLayerStatsRxCellCrcErrors, atmxVccActualTransmitTrafficDescriptor=atmxVccActualTransmitTrafficDescriptor, atmLecFlushTimeOut=atmLecFlushTimeOut)
|
(integer, object_identifier, octet_string) = mibBuilder.importSymbols('ASN1', 'Integer', 'ObjectIdentifier', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(constraints_intersection, value_range_constraint, value_size_constraint, constraints_union, single_value_constraint) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'ConstraintsIntersection', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsUnion', 'SingleValueConstraint')
(mac_address,) = mibBuilder.importSymbols('BRIDGE-MIB', 'MacAddress')
(lec_data_frame_size, lec_index) = mibBuilder.importSymbols('LAN-EMULATION-CLIENT-MIB', 'LecDataFrameSize', 'lecIndex')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(object_identity, mib_scalar, mib_table, mib_table_row, mib_table_column, module_identity, ip_address, mib_identifier, bits, counter64, gauge32, counter32, integer32, iso, notification_type, unsigned32, time_ticks) = mibBuilder.importSymbols('SNMPv2-SMI', 'ObjectIdentity', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'ModuleIdentity', 'IpAddress', 'MibIdentifier', 'Bits', 'Counter64', 'Gauge32', 'Counter32', 'Integer32', 'iso', 'NotificationType', 'Unsigned32', 'TimeTicks')
(textual_convention, display_string) = mibBuilder.importSymbols('SNMPv2-TC', 'TextualConvention', 'DisplayString')
(xylan_atm_arch,) = mibBuilder.importSymbols('XYLAN-BASE-MIB', 'xylanAtmArch')
class Atmadminstatcodes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('disable', 1), ('enable', 2), ('delete', 3), ('create', 4))
class Atmoperstatcodes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('other', 1), ('inService', 2), ('outOfService', 3), ('loopBack', 4))
class Atmserviceoperstatcodes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4))
named_values = named_values(('disable', 1), ('enabling', 2), ('enabled', 3), ('unknown', 4))
class Atmconnectionoperstatcodes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('unknown', 1), ('end2EndUp', 2), ('end2EndDown', 3), ('localUpEnd2EndUnknown', 4), ('localDown', 5))
class Atmtransmissiontypes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))
named_values = named_values(('unknown', 1), ('sonetSTS3c', 2), ('ds3', 3), ('atm4b5b', 4), ('atm8b10b', 5), ('e3', 6), ('sonetSTS12c', 7))
class Atmmediatypes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6))
named_values = named_values(('unknown', 1), ('coaxCable', 2), ('singleMode', 3), ('multiMode', 4), ('stp', 5), ('utp', 6))
class Atmtrafficdescrtypes(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8))
named_values = named_values(('none', 1), ('peakrate', 2), ('noClpNoScr', 3), ('clpNoTaggingNoScr', 4), ('clpTaggingNoScr', 5), ('noClpScr', 6), ('clpNoTaggingScr', 7), ('clpTaggingScr', 8))
class Xylanatmlaneaddress(DisplayString):
pass
class Vpiinteger(Integer32):
pass
class Vciinteger(Integer32):
pass
class Lecstate(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))
named_values = named_values(('initialState', 1), ('lecsConnect', 2), ('configure', 3), ('join', 4), ('initialRegistration', 5), ('busConnect', 6), ('operational', 7))
class Lecdataframeformat(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('unspecified', 1), ('aflane8023', 2), ('aflane8025', 3))
class Learptableentrytype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3, 4, 5))
named_values = named_values(('other', 1), ('learnedViaControl', 2), ('learnedViaData', 3), ('staticVolatile', 4), ('staticNonVolatile', 5))
class Learptype(Integer32):
subtype_spec = Integer32.subtypeSpec + constraints_union(single_value_constraint(1, 2, 3))
named_values = named_values(('other', 1), ('arpRdType', 2), ('arpEsiType', 3))
atmx_port_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 1))
atmx_service_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 2))
atmx_layer_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 3))
atmx_vcc_stats_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 4))
atmx_vcc_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 5))
atmx_address_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 6))
atmx_arp_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 7))
atmx_lane_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 8))
atmx_ci_pstats_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 9))
atmx_sahi_bw_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 11))
atmx_lsm_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 13))
atmx1483_scale_group = mib_identifier((1, 3, 6, 1, 4, 1, 800, 2, 4, 12))
atmx_port_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1))
if mibBuilder.loadTexts:
atmxPortTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortTable.setDescription("A table of port layer status and parameter information for the UNI's physical interface.")
atmx_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxPortSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxPortPortIndex'))
if mibBuilder.loadTexts:
atmxPortEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortEntry.setDescription('An entry in the table, containing information about the physical layer of a UNI interface.')
atmx_port_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_port_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_port_description = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortDescription.setDescription('A description for this atm port.')
atmx_port_connection_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pvc', 1), ('svc', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortConnectionType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortConnectionType.setDescription('The connection type of this board.')
atmx_port_transmission_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 5), atm_transmission_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortTransmissionType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortTransmissionType.setDescription('The transmission type of this port. For example, for a port using the Sonet STS-3c physical layer at 155.52 Mbs, this object would have the Object Identifier value: atmxSonetSTS3c.')
atmx_port_media_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 6), atm_media_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortMediaType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortMediaType.setDescription('The type of media being used on this port. For example for a port using coaxial cable, the object would have the Object Identifier value: atmxMediaCoaxCable.')
atmx_port_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 7), atm_oper_stat_codes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortOperStatus.setDescription('The operational state (i.e., actual) of this port. The ILMI should not alarm on a physical interface for when the value of this object is outOfService(3). This capability is useful if the equipment is to be disconnected, or for troubleshooting purposes. A value of loopBack(4) indicates that a local loopback is in place.')
atmx_port_uni_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('public', 1), ('private', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortUniType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortUniType.setDescription('The type of the ATM UNI, either public or private.')
atmx_port_max_vc_cs = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortMaxVCCs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortMaxVCCs.setDescription('The maximum number of VCCs supported on this UNI.')
atmx_port_max_vci_bits = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 10))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortMaxVciBits.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortMaxVciBits.setDescription('The number of active VCI bits on this interface.')
atmx_port_tx_segment_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(2048, 131072))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortTxSegmentSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortTxSegmentSize.setDescription('The transmit segment size on this UNI. The nearest power of two less than or equal to this value will be used internally. The max memory is 512K, therefore the maximum number of channels will be 512K/internal tx seg size.')
atmx_port_rx_segment_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(2048, 131072))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortRxSegmentSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortRxSegmentSize.setDescription('The receive segment size on this UNI. The nearest power of two less than or equal to this value will be used internally. The max memory is 512K, therefore the maximum number of channels will be 512K/internal rx seg size.')
atmx_port_tx_buffer_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1800, 131072))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortTxBufferSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortTxBufferSize.setDescription('The transmit buffer size on this UNI. The buffer size must be less than or equal to the segment size and should be greater than or equal to the maximum frame size.')
atmx_port_rx_buffer_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(1800, 131072))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortRxBufferSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortRxBufferSize.setDescription('The receive buffer size on this UNI. The buffer size must be less than or equal to the segment size and should be greater than or equal to the maximum frame size.')
atmx_port_uni_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 2147483647))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortUniPortIndex.setStatus('deprecated')
if mibBuilder.loadTexts:
atmxPortUniPortIndex.setDescription('This object should not be implemented except as required for backward compatibility with version 2.0 of the UNI specification. This object provide a port index link to the UNI MIB')
atmx_port_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 16), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortAddress.setDescription('This object should not be implemented except as required for backward compatibility with version 2.0 of the UNI specification. The Address Group, as defined as part of the separate Address Registration MIB should be used instead.')
atmx_port_signaling_version = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('ver30', 1), ('ver31', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortSignalingVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortSignalingVersion.setDescription('Version of the ATM forum UNI Signaling.')
atmx_port_signaling_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortSignalingVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortSignalingVci.setDescription('Signaling Vci.')
atmx_port_ilmi_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 1023))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortILMIVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortILMIVci.setDescription('ILMI Vci.')
atmx_port_enable_ilmi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortEnableILMI.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortEnableILMI.setDescription('ILMI Enable.')
atmx_port_pl_scramble = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortPlScramble.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortPlScramble.setDescription('Payload Scrambling Enable.')
atmx_port_timing_mode = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('loop', 1), ('local', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortTimingMode.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortTimingMode.setDescription('Timing mode to use. Use local timing or loop timing. ')
atmx_port_protocol_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('sonet', 1), ('sdh', 2), ('notApplicable', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortProtocolType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortProtocolType.setDescription('Physical layer protocol type. ')
atmx_port_loopback_config = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 5))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxPortLoopbackConfig.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortLoopbackConfig.setDescription('Loopback config. for this physical layer. 1 = NoLoop, 2 = DiagLoop, 3 = LineLoop, 4 = CellLoop, 5 = PayloadLoop ')
atmx_port_ssco_pstatus = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortSSCOPstatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortSSCOPstatus.setDescription('SSCOP status of this physical layer. ')
atmx_port_ilm_istatus = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 1, 1, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('up', 1), ('down', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxPortILMIstatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxPortILMIstatus.setDescription('ILMI status of this physical layer. ')
atmx_service_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1))
if mibBuilder.loadTexts:
atmxServiceTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceTable.setDescription('A table of ATM services status and parameter information.')
atmx_service_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxServiceSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxServicePortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxServiceNumber'))
if mibBuilder.loadTexts:
atmxServiceEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceEntry.setDescription('An entry in the table, containing information about the ATM services.')
atmx_service_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_service_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServicePortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServicePortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_service_number = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 256))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceNumber.setDescription('The unique service number for this particular slot/port.')
atmx_service_description = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 4), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceDescription.setDescription('A description for this atm service.')
atmx_service_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('lanEmulation', 1), ('scaling1483', 2), ('trunking', 4), ('classicalIP', 5), ('ptopBridging', 6), ('vlanCluster', 7), ('laneServiceModule', 8), ('mpoaClient', 9)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceType.setDescription('The service type. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmx_service_connection_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pvc', 1), ('svc', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceConnectionType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceConnectionType.setDescription('The connection type of this board.')
atmx_service_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 7), atm_service_oper_stat_codes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxServiceOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceOperStatus.setDescription('The service operational status.')
atmx_service_adm_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 8), atm_admin_stat_codes()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceAdmStatus.setDescription('The service adminstration status.')
atmx_service_encaps_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('private', 1), ('rfc1483', 2), ('none', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceEncapsType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceEncapsType.setDescription('The service encapsulation type. This object is applicable only to PTOP service.')
atmx_service_arp_request_server = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceArpRequestServer.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceArpRequestServer.setDescription('The Arp request server. 0 = not applicable, 1 = Non arp server, 2 = arp server.')
atmx_service_connections = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 11), octet_string().subtype(subtypeSpec=value_size_constraint(0, 512))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceConnections.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceConnections.setDescription('The connections for this service. Interpret this as a 16 bit field per connection: Trunking 1, PTOP Bridging 1, Classical IP 1..255. For Vlan cluster, this object is interpreted as a 32 bit field where each 32 bit represent the vci value of the Data Direct vcc and the Multicast In vcc. Each vcc take up 16 bits. There can be up to 32 pairs of Data Direct vcc and Mulitcast In vcc. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmx_service_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 12), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceAddress.setDescription('The unique service address.')
atmx_service_addresses = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 13), octet_string().subtype(subtypeSpec=value_size_constraint(0, 512))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceAddresses.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceAddresses.setDescription('The addresses for this service. Interpret this as a 16 bit field per address: Trunking 1, PTOP Bridging 1, Classical IP 1..255.')
atmx_service_vlan = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 14), octet_string().subtype(subtypeSpec=value_size_constraint(0, 64))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceVlan.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceVlan.setDescription('The Vlans for this service. Interpret this as a 16 bit field per vlan: Trunking 1-32, PTOP Bridging 1, Classical IP 1. For Vlan Cluster, it will depend on the encapsulation type selected. If RFC 1483, only 1 vlan while Xylan ATM trunking up to 32 vlans are allowed. For 1483 Scaling Service, create it only with 1 group and 1 vc thru this atmxServiceGroup. Adding Other group-to-vc mapping should utilize the atmx1483ScaleGroup.')
atmx_service_sel = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceSEL.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceSEL.setDescription('The SEL for the ATM address of this service.')
atmx_service_lane_cfg_tbl_idx = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 255))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceLaneCfgTblIdx.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceLaneCfgTblIdx.setDescription('Index to the LAN Emulation Configuration Table. This index is only used when the Service type is ATM LAN Emulation. For other service type this should be set to zero (0).')
atmx_service_multicast_out_vcc = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceMulticastOutVcc.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceMulticastOutVcc.setDescription('The Multicast Out VCC for this Vlan Cluster (X-LANE) service. This is only applicable to service type Vlan Cluster. For other ATM services, this object will return a zero (0). For Vlan Cluster service if a zero (0) is returned means no Multicast out is specified.')
atmx_service_num_vcl_members = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceNumVclMembers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceNumVclMembers.setDescription('The number of other Vlan cluster members defined and have a data direct VCC associated with the connection. This object is valid only for Vlan cluster services. Zero (0) will be returned for other ATM services.')
atmx_service_vcl_encap_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 3))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceVclEncapType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceVclEncapType.setDescription('The Encapsulation type for the Vlan Cluster service. 1 = RFC 1483 encapsulation. 2 = Xylan ATM trunking. 3 = not applicable. This object is only valid for Vlan cluster services. All other ATM services will return a value of 3. If the encapsulation type is RFC 1483, only one (1) vlan as defined in atmxServiceVlan can be associated with this service. If encapsulation type is Xylan ATM trunking more than 1 vlan can be assocated with this service.')
atmx_service_sahi_bwg_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 2, 1, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxServiceSahiBwgNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxServiceSahiBwgNum.setDescription("The bwg num for sahi based hsm's. The user can set the pcr, scr, mbs using the bwg table and chose the desired bwg num for this service ensuring that this service obtains the desired bandwidth")
atmx_layer_stats_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1))
if mibBuilder.loadTexts:
atmxLayerStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTable.setDescription('A table of ATM layer statistics information.')
atmx_layer_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLayerStatsSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLayerStatsPortIndex'))
if mibBuilder.loadTexts:
atmxLayerStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsEntry.setDescription('An entry in the table, containing information about the ATM layer statistics.')
atmx_layer_stats_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_layer_stats_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_layer_stats_tx_sd_us = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUs.setDescription("The total number of successfully transmitted SDU's on the physical port.")
atmx_layer_stats_tx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxCells.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxCells.setDescription('The total number of successfully transmitted cells.')
atmx_layer_stats_tx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxOctets.setDescription('The total number of successfully transmitted octets.')
atmx_layer_stats_rx_sd_us = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUs.setDescription("The total number of successfully received SDU's.")
atmx_layer_stats_rx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCells.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCells.setDescription('The total number of successfully received cells.')
atmx_layer_stats_rx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxOctets.setDescription('The total number of successfully received octets.')
atmx_layer_stats_tx_sdu_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUDiscards.setDescription('The total number of transmit SDUs that are discarded.')
atmx_layer_stats_tx_sdu_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUErrors.setDescription('The total number of transmit SDU with errors.')
atmx_layer_stats_tx_sdu_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxSDUNoBuffers.setDescription("The number of transmitted SDU's with no buffers available on the physical port.")
atmx_layer_stats_tx_cell_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellDiscards.setDescription('The total number of transmit cells that are dicscarded.')
atmx_layer_stats_tx_cell_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellErrors.setDescription('The total number of transmit cell with errors.')
atmx_layer_stats_tx_cell_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsTxCellNoBuffers.setDescription('The total number of transmit cell with no buffers available.')
atmx_layer_stats_rx_sdu_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUDiscards.setDescription("The total number of receive SDU's that are discarded.")
atmx_layer_stats_rx_sdu_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUErrors.setDescription("The total number of receive SDU's with errors.")
atmx_layer_stats_rx_sdu_invalid_sz = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUInvalidSz.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUInvalidSz.setDescription("The total number of receive SDU's with invalid size")
atmx_layer_stats_rx_sdu_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUNoBuffers.setDescription("The total number of receive SDU's with no buffers")
atmx_layer_stats_rx_sdu_trash = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUTrash.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUTrash.setDescription("The total number of receive trash SDU's")
atmx_layer_stats_rx_sdu_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxSDUCrcErrors.setDescription("The total number of receive SDU's with crc errors")
atmx_layer_stats_rx_cell_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellDiscards.setDescription('The total number of receive cells that are discarded.')
atmx_layer_stats_rx_cell_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellErrors.setDescription('The total number of recieve cell with errors')
atmx_layer_stats_rx_cell_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellNoBuffers.setDescription('The total number of receive cell with no buffers')
atmx_layer_stats_rx_cell_trash = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellTrash.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellTrash.setDescription('The total number of recieve trash cells.')
atmx_layer_stats_rx_cell_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 3, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLayerStatsRxCellCrcErrors.setDescription('The total number of receive cells with crc errors.')
atmx_vcc_stats_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1))
if mibBuilder.loadTexts:
atmxVccStatsTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTable.setDescription('A table of ATM virtual channel connection statistics information.')
atmx_vcc_stats_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxVccStatsSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxVccStatsPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxVccStatsVci'))
if mibBuilder.loadTexts:
atmxVccStatsEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsEntry.setDescription('An entry in the table, containing information about the ATM virtual channel connection statistics.')
atmx_vcc_stats_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_vcc_stats_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_vcc_stats_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 1024))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsVci.setDescription('A unique value which identifies this atm port.')
atmx_vcc_stats_tx_sd_us = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUs.setDescription("The total number of transmitted SDU's on this virtual channel.")
atmx_vcc_stats_tx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxCells.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxCells.setDescription('The total number of transmitted cells on this virtual channel.')
atmx_vcc_stats_tx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxOctets.setDescription('The total number of transmitted octets on this virtual channel.')
atmx_vcc_stats_rx_sd_us = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUs.setDescription("The total number of received SDU's on this virtual channel.")
atmx_vcc_stats_rx_cells = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCells.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCells.setDescription('The total number of received cells on this virtual channel.')
atmx_vcc_stats_rx_octets = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxOctets.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxOctets.setDescription('The total number of received octets on this virtual channel.')
atmx_vcc_stats_tx_sdu_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUDiscards.setDescription('The total number of transmit SDU discards on this virtual channel.')
atmx_vcc_stats_tx_sdu_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUErrors.setDescription('The total number of transmit SDU errors on this virtual channel.')
atmx_vcc_stats_tx_sdu_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxSDUNoBuffers.setDescription("The number of transmit SDU's with no buffers on this virtual channel.")
atmx_vcc_stats_tx_cell_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxCellDiscards.setDescription('The total number of transmit cells that are dicscarded on this virtual channel.')
atmx_vcc_stats_tx_cell_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxCellErrors.setDescription('The total number of transmit cell with errors on this virtual channel.')
atmx_vcc_stats_tx_cell_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsTxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsTxCellNoBuffers.setDescription('The total number of transmit cell with no buffers on this virtual channel.')
atmx_vcc_stats_rx_sdu_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUDiscards.setDescription("The total number of receive SDU's discarded on this virtual channel.")
atmx_vcc_stats_rx_sdu_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUErrors.setDescription("The total number of receive SDU's with errors on this virtual channel.")
atmx_vcc_stats_rx_sdu_invalid_sz = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUInvalidSz.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUInvalidSz.setDescription("The total number of received SDU's with invalid size on this virtual channel.")
atmx_vcc_stats_rx_sdu_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUNoBuffers.setDescription("The total number of receive SDU's with no buffers on this virtual channel.")
atmx_vcc_stats_rx_sdu_trash = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUTrash.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUTrash.setDescription("The total number of receive trash SDU's on this virtual channel.")
atmx_vcc_stats_rx_sdu_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxSDUCrcErrors.setDescription("The total number of receive SDU's crc errors on this virtual channel.")
atmx_vcc_stats_rx_cell_discards = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 22), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCellDiscards.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCellDiscards.setDescription('The total number of receive cells discarded on this virtual channel.')
atmx_vcc_stats_rx_cell_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 23), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCellErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCellErrors.setDescription('The total number of recieve cell with errors on this virtual channel.')
atmx_vcc_stats_rx_cell_no_buffers = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 24), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCellNoBuffers.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCellNoBuffers.setDescription('The total number of receive cells with no buffers on this virtual channel.')
atmx_vcc_stats_rx_cell_trash = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 25), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCellTrash.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCellTrash.setDescription('The total number of recieve trash cells on this virtual channel.')
atmx_vcc_stats_rx_cell_crc_errors = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 4, 1, 1, 26), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccStatsRxCellCrcErrors.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccStatsRxCellCrcErrors.setDescription('The total number of receive cells with crc errors on this virtual channel.')
atmx_vcc_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1))
if mibBuilder.loadTexts:
atmxVccTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccTable.setDescription('A table of ATM virtual channel connections status and parameter information.')
atmx_vcc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxVccSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxVccPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxVccVci'))
if mibBuilder.loadTexts:
atmxVccEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccEntry.setDescription('An entry in the table, containing information about the ATM virtual channel connections.')
atmx_vcc_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_vcc_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_vcc_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(0, 0))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccVpi.setDescription('The virtual path identifier associated with this virtual connection.')
atmx_vcc_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccVci.setDescription('The virtual channel identifier associated with the virtual connection.')
atmx_vcc_description = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 5), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccDescription.setDescription('A description for this virtual connection.')
atmx_vcc_conn_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('vcc', 1), ('vpc', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccConnType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccConnType.setDescription('The virtual connection type.')
atmx_vcc_circuit_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('pvc', 1), ('svc', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccCircuitType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccCircuitType.setDescription('The virtual connection circuit type.')
atmx_vcc_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 8), atm_connection_oper_stat_codes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccOperStatus.setDescription('The actual operational status of the VCC A value of end2endUp(2) or end2endDown(3) would be used if end-to-end status is known. If only local status information is available, a value of localUpEnd2endUnknown(4) or localDown(5) would be used.')
atmx_vcc_up_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccUpTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccUpTime.setDescription('The virtual channel connection up time for this connection.')
atmx_vcc_down_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 10), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccDownTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccDownTime.setDescription('The virtual channel connection down time for this connection.')
atmx_vcc_transmit_max_frame_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccTransmitMaxFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccTransmitMaxFrameSize.setDescription('The virtual channel connection maximum transmit frame size for this connection.')
atmx_vcc_receive_max_frame_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(64, 32678))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccReceiveMaxFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccReceiveMaxFrameSize.setDescription('The virtual channel connection maximum receive frame size for this connection.')
atmx_vcc_requested_transmit_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 13), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_requested_transmit_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 14), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_requested_transmit_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_requested_transmit_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_requested_transmit_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmx_vcc_requested_transmit_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_requested_receive_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 19), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_requested_receive_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_requested_receive_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_requested_receive_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_requested_receive_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmx_vcc_requested_receive_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccRequestedReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_acceptable_transmit_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 25), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_acceptable_transmit_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 26), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_acceptable_transmit_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 27), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_acceptable_transmit_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_acceptable_transmit_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmx_vcc_acceptable_transmit_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_acceptable_receive_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 31), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_acceptable_receive_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 32), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_acceptable_receive_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 33), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_acceptable_receive_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 34), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_acceptable_receive_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 35), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmx_vcc_acceptable_receive_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 36), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAcceptableReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_actual_transmit_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 37), atm_traffic_descr_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_actual_transmit_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 38), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_actual_transmit_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 39), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_actual_transmit_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 40), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_actual_transmit_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 41), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficQoSClass.setDescription('The virtual channel connection QOS Class for this connection.')
atmx_vcc_actual_transmit_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 42), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualTransmitTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_actual_receive_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 43), atm_traffic_descr_types()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptor.setDescription('The virtual channel connection traffic descriptor for this connection.')
atmx_vcc_actual_receive_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 44), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam1.setDescription('The virtual channel connection traffic parameter 1 for this connection.')
atmx_vcc_actual_receive_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 45), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam2.setDescription('The virtual channel connection traffic parameter 2 for this connection.')
atmx_vcc_actual_receive_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 46), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficDescriptorParam3.setDescription('The virtual channel connection traffic parameter 3 for this connection.')
atmx_vcc_actual_receive_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 47), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficQoSClass.setDescription('The virtual channel connection traffic QOS Class for this connection.')
atmx_vcc_actual_receive_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 48), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccActualReceiveTrafficBestEffort.setDescription('The virtual channel connection best effort value for this connection.')
atmx_vcc_adm_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 49), atm_admin_stat_codes()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxVccAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccAdmStatus.setDescription('The vcc adminstration status - used to delete a vcc.')
atmx_vcc_service_used = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 50), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccServiceUsed.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccServiceUsed.setDescription('The service number in which this vcc connection is used.')
atmx_vcc_connection_used = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 5, 1, 1, 51), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxVccConnectionUsed.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxVccConnectionUsed.setDescription('Connection being used or not being used, currently not implemented.')
atmx_address_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1))
if mibBuilder.loadTexts:
atmxAddressTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressTable.setDescription('A table of ATM virtual address status and parameter information.')
atmx_address_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxAddressIndex'))
if mibBuilder.loadTexts:
atmxAddressEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressEntry.setDescription('An entry in the table, containing information about the ATM virtual address.')
atmx_address_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxAddressIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressIndex.setDescription('A unique value which identifies this address index.')
atmx_address_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 2), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAtmAddress.setDescription('A unique value which identifies this address.')
atmx_address_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('arpServer', 1), ('nonArpServer', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressType.setDescription('The address type.')
atmx_address_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(0, 0))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxAddressVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressVpi.setDescription('The virtual path identifier associated with this address.')
atmx_address_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressVci.setDescription('The virtual channel identifier associated with this address.')
atmx_address_description = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 6), display_string().subtype(subtypeSpec=value_size_constraint(0, 31))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressDescription.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressDescription.setDescription('A description for this address.')
atmx_address_transmit_max_sdu = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(8, 32678))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressTransmitMaxSDU.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressTransmitMaxSDU.setDescription('The address maximum transmit SDU size in bytes for this SVC.')
atmx_address_receive_max_sdu = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(8, 32678))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressReceiveMaxSDU.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressReceiveMaxSDU.setDescription('The address maximun receive SDU size in bytes for this SVC.')
atmx_address_requested_transmit_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 9), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptor.setDescription('The address traffic descriptor for this SVC.')
atmx_address_requested_transmit_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam1.setDescription('The address transmit parameter 1 cell rate in cells/second for this SVC.')
atmx_address_requested_transmit_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam2.setDescription('The address transmit parameter 2 cell rate in cells/second for this SVC.')
atmx_address_requested_transmit_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficDescriptorParam3.setDescription('The address transmit parameter 3 cell rate in cells for this SVC.')
atmx_address_requested_transmit_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficQoSClass.setDescription('The address transmit traffic QOS Class for this SVC.')
atmx_address_requested_transmit_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedTransmitTrafficBestEffort.setDescription('The address transmit traffic best effort value for this SVC.')
atmx_address_requested_receive_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 15), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptor.setDescription('The address receive traffic descriptor for this SVC.')
atmx_address_requested_receive_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam1.setDescription('The address receive parameter 1 cell rate in cells/second for this SVC.')
atmx_address_requested_receive_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam2.setDescription('The address receive parameter 2 cell rate in cells/second for this SVC.')
atmx_address_requested_receive_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficDescriptorParam3.setDescription('The address receive parameter 2 cell rate in cells for this SVC.')
atmx_address_requested_receive_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficQoSClass.setDescription('The address receive traffic QOS Class for this SVC.')
atmx_address_requested_receive_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressRequestedReceiveTrafficBestEffort.setDescription('The address receive traffic best effort value for this SVC.')
atmx_address_acceptable_transmit_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 21), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptor.setDescription('The address traffic descriptor for this SVC.')
atmx_address_acceptable_transmit_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 22), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam1.setDescription('The address transmit parameter 1 cell rate in cells/second for this SVC.')
atmx_address_acceptable_transmit_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam2.setDescription('The address transmit parameter 2 cell rate in cells/second for this SVC.')
atmx_address_acceptable_transmit_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficDescriptorParam3.setDescription('The address transmit parameter 3 cell rate in cells for this SVC.')
atmx_address_acceptable_transmit_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficQoSClass.setDescription('The address transmit traffic QOS Class for this SVC.')
atmx_address_acceptable_transmit_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableTransmitTrafficBestEffort.setDescription('The address transmit traffic best effort value for this SVC.')
atmx_address_acceptable_receive_traffic_descriptor = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 27), atm_traffic_descr_types()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptor.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptor.setDescription('The address receive traffic descriptor for this SVC.')
atmx_address_acceptable_receive_traffic_descriptor_param1 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 28), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam1.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam1.setDescription('The address receive parameter 1 cell rate in cells/second for this SVC.')
atmx_address_acceptable_receive_traffic_descriptor_param2 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 29), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam2.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam2.setDescription('The address receive parameter 2 cell rate in cells/second for this SVC.')
atmx_address_acceptable_receive_traffic_descriptor_param3 = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 30), integer32().subtype(subtypeSpec=value_range_constraint(0, 353208))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam3.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficDescriptorParam3.setDescription('The address receive parameter 2 cell rate in cells for this SVC.')
atmx_address_acceptable_receive_traffic_qo_s_class = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 31), integer32().subtype(subtypeSpec=value_range_constraint(0, 4))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficQoSClass.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficQoSClass.setDescription('The address receive traffic QOS Class for this SVC.')
atmx_address_acceptable_receive_traffic_best_effort = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('false', 1), ('true', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficBestEffort.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAcceptableReceiveTrafficBestEffort.setDescription('The address receive traffic best effort value for this SVC.')
atmx_address_adm_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 33), atm_admin_stat_codes()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxAddressAdmStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAdmStatus.setDescription('The address adminstration status - used to delete an address.')
atmx_address_service_used = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 34), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxAddressServiceUsed.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressServiceUsed.setDescription('The service number in which this address is used.')
atmx_address_addr_used = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 6, 1, 1, 35), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxAddressAddrUsed.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxAddressAddrUsed.setDescription('Address being used or not being used, currently not implemented.')
atmx_arp_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1))
if mibBuilder.loadTexts:
atmxArpTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpTable.setDescription('A table of ATM address to IP address information.')
atmx_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxArpIndex'))
if mibBuilder.loadTexts:
atmxArpEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpEntry.setDescription('An entry in the table, containing information about the ATM address.')
atmx_arp_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 128))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpIndex.setDescription('A unique value which identifies this arp entry.')
atmx_arp_ip_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpIPAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpIPAddress.setDescription('The IP address for this atm address.')
atmx_arp_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 3), display_string().subtype(subtypeSpec=value_size_constraint(0, 40))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpAtmAddress.setDescription('A unique value which identifies this address.')
atmx_arp_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 4), integer32().subtype(subtypeSpec=value_range_constraint(1, 1023))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpVci.setDescription('The virtual channel identifier associated with this address.')
atmx_arp_time_to_live = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpTimeToLive.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpTimeToLive.setDescription('The address time to live.')
atmx_arp_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 7, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('static', 1), ('dynamic', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxArpType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxArpType.setDescription('The address type, statically or dynamically created.')
atm_lec_config_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1))
if mibBuilder.loadTexts:
atmLecConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigTable.setDescription('This table contains all the configuration parameters for a LAN Emulation client. ')
atm_lec_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLecConfigIndex'))
if mibBuilder.loadTexts:
atmLecConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigEntry.setDescription('Each table entry contains configuration information for one LAN Emulation Client. Most of the objects are derived from Initial State Parameters in the LAN Emulation specification.')
atmx_lec_config_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecConfigIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecConfigIndex.setDescription('Index to identify an instance of this table.')
atm_lec_config_lecs_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 2), xylan_atm_lane_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigLecsAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigLecsAtmAddress.setDescription('The LAN Emulation Configuration Server which this client can use if the Well Known LECS address is not used.')
atm_lec_config_use_default_lecs_addr = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigUseDefaultLecsAddr.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigUseDefaultLecsAddr.setDescription('This is to specify if this client is to use the Well Know LECS address or user supplied address. This object alone with atmLecConfigLecsAtmAddress is meaningless if the atmLecConfigMode is setted to manual(2) mode. 1 = TRUE 2 = FALSE ')
atm_lec_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecRowStatus.setDescription('This object lets network managers create and delete an instance for this table. 1 = Create, 2 = Delete, 3 = Modify.')
atm_lec_row_in_use = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecRowInUse.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecRowInUse.setDescription('This object returns a value to indicate if this instance is used by an ATM service. 1 = In use 2 = Free. ')
atm_lec_config_mode = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('automatic', 1), ('manual', 2))).clone('automatic')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigMode.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Sections 3.4.1.1 and 5.3')
if mibBuilder.loadTexts:
atmLecConfigMode.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigMode.setDescription('Indicates whether this LAN Emulation Client should auto-configure the next time it is (re)started. In automatic(1) mode, a client uses a LAN Emulation Configuration Server to learn the ATM address of its LAN Emulation Server, and to obtain other parameters. atmLecConfig{ LanType, MaxDataFrameSize, LanName } are used in the Configure request. atmLecConfigLesAtmAddress is ignored. In manual(2) mode, management tells the client the ATM address of its LAN Emulation Server and the values of other parameters. atmLecConfig{ LanType, MaxDataFrameSize, LanName } are used in the Join request. atmLecConfigLesAtmAddress tells the client which LES to call.')
atm_lec_config_lan_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 7), lec_data_frame_format().clone('aflane8023')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigLanType.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecConfigLanType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigLanType.setDescription('C2 LAN Type. The data frame format which this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualLanType will be.')
atm_lec_config_max_data_frame_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 8), lec_data_frame_size().clone('max4544')).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigMaxDataFrameSize.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecConfigMaxDataFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigMaxDataFrameSize.setDescription('C3 Maximum Data Frame Size. The maximum data frame size which this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualMaxDataFrameSize will be.')
atm_lec_config_lan_name = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 9), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigLanName.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecConfigLanName.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigLanName.setDescription('C5 ELAN Name. The ELAN Name this client will use the next time it returns to the Initial State. Auto-configuring clients use this parameter in their Configure requests. Manually-configured clients use it in their Join requests. This MIB object will not be overwritten with the new value from a LE_{JOIN,CONFIGURE}_RESPONSE. Instead, atmLecActualLanName will be.')
atm_lec_config_les_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 10), xylan_atm_lane_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecConfigLesAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecConfigLesAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigLesAtmAddress.setDescription("C9 LE Server ATM Address. The LAN Emulation Server which this client will use the next time it is started in manual configuration mode. When atmLecConfigMode is 'automatic', there is no need to set this address, and no advantage to doing so. The client will use the LECS to find a LES, putting the auto-configured address in atmLecActualLesAtmAddress while leaving atmLecConfigLesAtmAddress alone.")
atm_lec_control_timeout = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 11), integer32().subtype(subtypeSpec=value_range_constraint(10, 300)).clone(10)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecControlTimeout.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecControlTimeout.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlTimeout.setDescription('C7 Control Time-out. Time out period used for timing out most request/response control frame interactions, as specified elsewhere [in the LAN Emulation specification]. This time value is expressed in seconds.')
atm_lec_max_unknown_frame_count = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 12), integer32().subtype(subtypeSpec=value_range_constraint(0, 10)).clone(10)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameCount.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameCount.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameCount.setDescription('C10 Maximum Unknown Frame Count. See the description of atmLecMaxUnknownFrameTime below.')
atm_lec_max_unknown_frame_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 13), integer32().subtype(subtypeSpec=value_range_constraint(1, 60)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMaxUnknownFrameTime.setDescription('C11 Maximum Unknown Frame Time. Within the period of time defined by the Maximum Unknown Frame Time, a LE Client will send no more than Maximum Unknown Frame Count frames to the BUS for a given unicast LAN Destination, and it must also initiate the address resolution protocol to resolve that LAN Destination. This time value is expressed in seconds.')
atm_lec_vcc_timeout_period = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 14), integer32().clone(1200)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecVccTimeoutPeriod.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecVccTimeoutPeriod.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecVccTimeoutPeriod.setDescription('C12 VCC Time-out Period. A LE Client SHOULD release any Data Direct VCC that it has not used to transmit or receive any data frames for the length of the VCC Time-out Period. This parameter is only meaningful for SVC Data Direct VCCs. This time value is expressed in seconds. The default value is 20 minutes. A value of 0 seconds means that the timeout period is infinite. Negative values will be rejected by the agent.')
atm_lec_max_retry_count = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 15), integer32().subtype(subtypeSpec=value_range_constraint(0, 2)).clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecMaxRetryCount.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecMaxRetryCount.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMaxRetryCount.setDescription("C13 Maximum Retry Count. A LE CLient MUST not retry a LE_ARP_REQUEST for a given frame's LAN destination more than Maximum Retry Count times, after the first LE_ARP_REQUEST for that same frame's LAN destination.")
atm_lec_aging_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 16), integer32().subtype(subtypeSpec=value_range_constraint(10, 300)).clone(300)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecAgingTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecAgingTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecAgingTime.setDescription('C17 Aging Time. The maximum time that a LE Client will maintain an entry in its LE_ARP cache in the absence of a verification of that relationship. This time value is expressed in seconds.')
atm_lec_forward_delay_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 17), integer32().subtype(subtypeSpec=value_range_constraint(4, 30)).clone(15)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecForwardDelayTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecForwardDelayTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecForwardDelayTime.setDescription('C18 Forward Delay Time. The maximum time that a LE Client will maintain an entry for a non-local MAC address in its LE_ARP cache in the absence of a verification of that relationship, as long as the Topology Change flag C19 is true. atmLecForwardDelayTime SHOULD BE less than atmLecAgingTime. When it is not, atmLecAgingTime governs LE_ARP aging. This time value is expressed in seconds.')
atm_lec_expected_arp_response_time = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 18), integer32().subtype(subtypeSpec=value_range_constraint(1, 30)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecExpectedArpResponseTime.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecExpectedArpResponseTime.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecExpectedArpResponseTime.setDescription('C20 Expected LE_ARP Reponse Time. The maximum time that the LEC expects an LE_ARP_REQUEST/ LE_ARP_RESPONSE cycle to take. Used for retries and verifies. This time value is expressed in seconds.')
atm_lec_flush_time_out = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 19), integer32().subtype(subtypeSpec=value_range_constraint(1, 4)).clone(4)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecFlushTimeOut.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecFlushTimeOut.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecFlushTimeOut.setDescription('C21 Flush Time-out. Time limit to wait to receive a LE_FLUSH_RESPONSE after the LE_FLUSH_REQUEST has been sent before taking recovery action. This time value is expressed in seconds.')
atm_lec_path_switching_delay = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 20), integer32().subtype(subtypeSpec=value_range_constraint(1, 8)).clone(6)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecPathSwitchingDelay.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecPathSwitchingDelay.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecPathSwitchingDelay.setDescription('C22 Path Switching Delay. The time since sending a frame to the BUS after which the LE Client may assume that the frame has been either discarded or delivered to the recipient. May be used to bypass the Flush protocol. This time value is expressed in seconds.')
atm_lec_use_forward_delay = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 21), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)).clone(1)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecUseForwardDelay.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecUseForwardDelay.setDescription(' This is specify whether to use Forward delay or arp cache aging time 1 = No, 2 = Yes.')
atm_lec_use_translation = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 23), integer32().subtype(subtypeSpec=value_range_constraint(1, 2)).clone(2)).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecUseTranslation.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecUseTranslation.setDescription(' Use translation option or not. If set to yes, user must set the translation options by the swch command in UI or the vportSwitchTable to set the translation option other than the default defined for LANE. 1 = no, 2 = yes.')
atm_lec_sr_bridge_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 24), integer32().subtype(subtypeSpec=value_range_constraint(1, 15))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecSrBridgeNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecSrBridgeNum.setDescription(' SR bridge number for the LEC')
atm_lec_sr_ring_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 1, 1, 25), integer32().subtype(subtypeSpec=value_range_constraint(1, 4095))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmLecSrRingNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecSrRingNum.setDescription(' SR Ring number for the LEC')
atm_lec_status_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2))
if mibBuilder.loadTexts:
atmLecStatusTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecStatusTable.setDescription('A read-only table containing identification, status, and operational information about the LAN Emulation Clients this agent manages.')
atm_lec_status_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLecStatusSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecStatusPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecStatusServiceNum'))
if mibBuilder.loadTexts:
atmLecStatusEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecStatusEntry.setDescription('Each table entry contains information about one LAN Emulation Client.')
atmx_lec_status_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatusSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatusSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmx_lec_status_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatusPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatusPortIndex.setDescription('Port index to identify an instance of this table.')
atmx_lec_status_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatusServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatusServiceNum.setDescription('Service number index to identify an instance of this table.')
atm_lec_primary_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 4), xylan_atm_lane_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecPrimaryAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecPrimaryAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecPrimaryAtmAddress.setDescription("C1 LE Client's ATM Addresses. The primary ATM address of this LAN Emulation Client. This address is used to establish the Control Direct and Multicast Send VCCs, and may also be used to set up Data Direct VCCs. A client may have additional ATM addresses for use with Data Direct VCCs. These addresses are readable via the atmLecAtmAddressTable.")
atm_lec_id = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(0, 65279))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecID.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecID.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecID.setDescription("C14 LE Client Identifier. Each LE Client requires a LE Client Identifier (LECID) assigned by the LE Server during the Join phase. The LECID is placed in control requests by the LE Client and MAY be used for echo suppression on multicast data frames sent by that LE Client. This value MUST NOT change without terminating the LE Client and returning to the Initial state. A valid LECID MUST be in the range X'0001' through X'FEFF'. The value of this object is only meaningful for a LEC that is connected to a LES. For a LEC which does not belong to an emulated LAN, the value of this object is defined to be 0.")
atm_lec_interface_state = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 6), lec_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecInterfaceState.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.3.1')
if mibBuilder.loadTexts:
atmLecInterfaceState.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecInterfaceState.setDescription("The mandatory state of the LAN Emulation Client. Note that 'ifOperStatus' is defined to be 'up' when, and only when, 'atmLecInterfaceState' is 'operational'.")
atm_lec_last_failure_resp_code = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15))).clone(namedValues=named_values(('none', 1), ('timeout', 2), ('undefinedError', 3), ('versionNotSupported', 4), ('invalidRequestParameters', 5), ('duplicateLanDestination', 6), ('duplicateAtmAddress', 7), ('insufficientResources', 8), ('accessDenied', 9), ('invalidRequesterId', 10), ('invalidLanDestination', 11), ('invalidAtmAddress', 12), ('noConfiguration', 13), ('leConfigureError', 14), ('insufficientInformation', 15)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecLastFailureRespCode.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2, Table 13')
if mibBuilder.loadTexts:
atmLecLastFailureRespCode.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecLastFailureRespCode.setDescription("Status code from the last failed Configure response or Join response. Failed responses are those for which the LE_CONFIGURE_RESPONSE / LE_JOIN_RESPONSE frame contains a non-zero code, or fails to arrive within a timeout period. If none of this client's requests have failed, this object has the value 'none'. If the failed response contained a STATUS code that is not defined in the LAN Emulation specification, this object has the value 'undefinedError'. The value 'timeout' is self-explanatory. Other failure codes correspond to those defined in the specification, although they may have different numeric values.")
atm_lec_last_failure_state = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 8), lec_state()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecLastFailureState.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.3.1')
if mibBuilder.loadTexts:
atmLecLastFailureState.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecLastFailureState.setDescription("The state this client was in when it updated the 'atmLecLastFailureRespCode'. If 'atmLecLastFailureRespCode' is 'none', this object has the value initialState(1).")
atm_lec_protocol = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecProtocol.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2')
if mibBuilder.loadTexts:
atmLecProtocol.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecProtocol.setDescription('The LAN Emulation protocol which this client supports, and specifies in its LE_JOIN_REQUESTs.')
atm_lec_version = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 10), integer32().subtype(subtypeSpec=value_range_constraint(1, 255))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecVersion.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 4.2')
if mibBuilder.loadTexts:
atmLecVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecVersion.setDescription('The LAN Emulation protocol version which this client supports, and specifies in its LE_JOIN_REQUESTs.')
atm_lec_topology_change = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecTopologyChange.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecTopologyChange.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecTopologyChange.setDescription("C19 Topology Change. Boolean indication that the LE Client is using the Forward Delay Time C18, instead of the Aging Time C17, to age non-local entries in its LE_ARP cache C16. For a client which is not connected to the LES, this object is defined to have the value 'false'.")
atm_lec_config_server_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 12), xylan_atm_lane_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecConfigServerAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigServerAtmAddress.setDescription('The ATM address of the LAN Emulation Configuration Server (if known) or the empty string (otherwise).')
atm_lec_config_source = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('gotAddressViaIlmi', 1), ('usedWellKnownAddress', 2), ('usedLecsPvc', 3), ('didNotUseLecs', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecConfigSource.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.2')
if mibBuilder.loadTexts:
atmLecConfigSource.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigSource.setDescription('Indicates whether this LAN Emulation Client used the LAN Emulation Configuration Server, and, if so, what method it used to establish the Configuration Direct VCC.')
atm_lec_actual_lan_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 14), lec_data_frame_format()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecActualLanType.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecActualLanType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecActualLanType.setDescription("C2 LAN Type. The data frame format that this LAN Emulation Client is using right now. This may come from * atmLecConfigLanType, * the LAN Emulation Configuration Server, or * the LAN Emulation Server This value is related to 'ifMtu' and 'ifType'. See the LEC management specification for more details.")
atm_lec_actual_max_data_frame_size = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 15), lec_data_frame_size()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecActualMaxDataFrameSize.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecActualMaxDataFrameSize.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecActualMaxDataFrameSize.setDescription('C3 Maximum Data Frame Size. The maximum data frame size that this LAN Emulation client is using right now. This may come from * atmLecConfigMaxDataFrameSize, * the LAN Emulation Configuration Server, or * the LAN Emulation Server ')
atm_lec_actual_lan_name = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 16), display_string().subtype(subtypeSpec=value_size_constraint(0, 32))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecActualLanName.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecActualLanName.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecActualLanName.setDescription('C5 ELAN Name. The identity of the emulated LAN which this client last joined, or wishes to join. This may come from * atmLecConfigLanName, * the LAN Emulation Configuration Server, or * the LAN Emulation Server ')
atm_lec_actual_les_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 17), xylan_atm_lane_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecActualLesAtmAddress.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecActualLesAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecActualLesAtmAddress.setDescription("C9 LE Server ATM Address. The LAN Emulation Server address currently in use or most recently attempted. If no LAN Emulation Server attachment has been tried, this object's value is the zero-length string.")
atm_lec_proxy_client = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 2, 1, 18), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecProxyClient.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 5.1.1')
if mibBuilder.loadTexts:
atmLecProxyClient.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecProxyClient.setDescription('C4 Proxy. Indicates whether this client is acting as a proxy. Proxy clients are allowed to represent unregistered MAC addresses, and receive copies of LE_ARP_REQUEST frames for such addresses.')
atm_lec_statistics_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3))
if mibBuilder.loadTexts:
atmLecStatisticsTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecStatisticsTable.setDescription('An extension table containing traffic statistics for all the LAN Emulation Clients this host implements.')
atm_lec_statistics_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLecStatsSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecStatsPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecStatsServiceNum'))
if mibBuilder.loadTexts:
atmLecStatisticsEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecStatisticsEntry.setDescription('Each row in this table contains traffic statistics for one LAN Emulation client.')
atmx_lec_stats_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatsSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatsSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmx_lec_stats_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatsPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatsPortIndex.setDescription('Port index to identify an instance of this table.')
atmx_lec_stats_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecStatsServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecStatsServiceNum.setDescription('Service number index to identify an instance of this table.')
atm_lec_arp_requests_out = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecArpRequestsOut.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecArpRequestsOut.setDescription('The number of LE_ARP_REQUESTs sent over the LUNI by this LAN Emulation Client.')
atm_lec_arp_requests_in = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecArpRequestsIn.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecArpRequestsIn.setDescription('The number of LE_ARP_REQUESTs received over the LUNI by this LAN Emulation Client. Requests may arrive on the Control Direct VCC or on the Control Distribute VCC, depending upon how the LES is implemented and the chances it has had for learning. This counter covers both VCCs.')
atm_lec_arp_replies_out = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecArpRepliesOut.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecArpRepliesOut.setDescription('The number of LE_ARP_RESPONSEs sent over the LUNI by this LAN Emulation Client.')
atm_lec_arp_replies_in = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecArpRepliesIn.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecArpRepliesIn.setDescription('The number of LE_ARP_RESPONSEs received over the LUNI by this LAN Emulation Client. This count includes all such replies, whether solicited or not. Replies may arrive on the Control Direct VCC or on the Control Distribute VCC, depending upon how the LES is implemented. This counter covers both VCCs.')
atm_lec_control_frames_out = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlFramesOut.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlFramesOut.setDescription('The total number of control packets sent by this LAN Emulation Client over the LUNI.')
atm_lec_control_frames_in = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlFramesIn.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlFramesIn.setDescription('The total number of control packets received by this LAN Emulation Client over the LUNI.')
atm_lec_svc_failures = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 3, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecSvcFailures.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecSvcFailures.setDescription('The total number of * outgoing LAN Emulation SVCs which this client tried, but failed, to open; * incoming LAN Emulation SVCs which this client tried, but failed to establish; and * incoming LAN Emulation SVCs which this client rejected for protocol or security reasons. ')
atm_lec_server_vcc_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4))
if mibBuilder.loadTexts:
atmLecServerVccTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecServerVccTable.setDescription('A table identifying the Control and Multicast VCCs for each LAN Emulation Client this host implements.')
atm_lec_server_vcc_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLecSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLecServiceNum'))
if mibBuilder.loadTexts:
atmLecServerVccEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecServerVccEntry.setDescription('Each row in this table describes the Control VCCs and Multicast VCCs for one LAN Emulation client.')
atmx_lec_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecSlotIndex.setDescription('index that uniquely identify an instance of the atmLecServerVccTable.')
atmx_lec_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecPortIndex.setDescription('index that uniquely identify an instance of the atmLecServerVccTable.')
atmx_lec_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLecServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLecServiceNum.setDescription('Index that uniquely identify an instance of the atmLecServerVccTable.')
atm_lec_config_direct_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 4), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecConfigDirectVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.1')
if mibBuilder.loadTexts:
atmLecConfigDirectVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigDirectVpi.setDescription('If the Configuration Direct VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_config_direct_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 5), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecConfigDirectVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.1')
if mibBuilder.loadTexts:
atmLecConfigDirectVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecConfigDirectVci.setDescription('If the Configuration Direct VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_control_direct_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 6), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlDirectVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.2')
if mibBuilder.loadTexts:
atmLecControlDirectVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlDirectVpi.setDescription('If the Control Direct VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_control_direct_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 7), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlDirectVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.2')
if mibBuilder.loadTexts:
atmLecControlDirectVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlDirectVci.setDescription('If the Control Direct VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_control_distribute_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 8), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlDistributeVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.3')
if mibBuilder.loadTexts:
atmLecControlDistributeVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlDistributeVpi.setDescription('If the Control Distribute VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_control_distribute_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 9), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecControlDistributeVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.1.3')
if mibBuilder.loadTexts:
atmLecControlDistributeVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecControlDistributeVci.setDescription('If the Control Distribute VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object contains the value 0.')
atm_lec_multicast_send_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 10), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecMulticastSendVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.2')
if mibBuilder.loadTexts:
atmLecMulticastSendVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMulticastSendVpi.setDescription('If the Multicast Send VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_multicast_send_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 11), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecMulticastSendVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.2')
if mibBuilder.loadTexts:
atmLecMulticastSendVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMulticastSendVci.setDescription('If the Multicast Send VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_multicast_forward_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 12), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecMulticastForwardVpi.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.3')
if mibBuilder.loadTexts:
atmLecMulticastForwardVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMulticastForwardVpi.setDescription('If the Multicast Forward VCC exists, this object contains the VPI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_lec_multicast_forward_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 4, 1, 13), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLecMulticastForwardVci.setReference('ATM Forum LAN Emulation Over ATM Specification, V1.0, Section 2.2.2.2.3')
if mibBuilder.loadTexts:
atmLecMulticastForwardVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLecMulticastForwardVci.setDescription('If the Multicast Forward VCC exists, this object contains the VCI which identifies that VCC at the point where it connects to this LE client. Otherwise, this object has the value 0.')
atm_le_arp_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5))
if mibBuilder.loadTexts:
atmLeArpTable.setReference('ATM Forum LAN Emulation Over ATM Specification, Section 5.1.1')
if mibBuilder.loadTexts:
atmLeArpTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpTable.setDescription("This table provides access to an ATM LAN Emulation Client's MAC-to-ATM ARP cache. It contains entries for unicast addresses and for the broadcast address, but not for multicast MAC addresses. C16 LE_ARP Cache. A table of entries, each of which establishes a relationship between a LAN Destination external to the LE Client and the ATM address to which data frames for that LAN Destination will be sent.")
atm_le_arp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxLeArpSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLeArpPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxLeArpServiceNum'), (0, 'XYLAN-ATM-MIB', 'atmLeArpIndex'))
if mibBuilder.loadTexts:
atmLeArpEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpEntry.setDescription('An ATM LAN Emulation ARP cache entry containing information about the binding of one MAC address to one ATM address.')
atmx_le_arp_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLeArpSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLeArpSlotIndex.setDescription('Slot index that uniquely identify an instance of the LeArp Table.')
atmx_le_arp_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLeArpPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLeArpPortIndex.setDescription('Port index that uniquely identify an instance of the LeArp Table.')
atmx_le_arp_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxLeArpServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxLeArpServiceNum.setDescription('Service number index that uniquely identify an instance of the LeArp Table.')
atm_le_arp_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpIndex.setDescription('Index that uniquely identify an instance of the LeArp Table.')
atm_le_arp_mac_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 5), mac_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpMacAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpMacAddress.setDescription("The MAC address for which this cache entry provides a translation. Since ATM LAN Emulation uses an ARP protocol to locate the Broadcast and Unknown Server, the value of this object could be the broadcast MAC address. MAC addresses should be unique within any given ATM Emulated LAN. However, there's no requirement that they be unique across disjoint emulated LANs.")
atm_le_arp_atm_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 6), xylan_atm_lane_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpAtmAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpAtmAddress.setDescription("The ATM address of the Broadcast & Unknown Server or LAN Emulation Client whose MAC address is stored in 'atmLeArpMacAddress'. This value may be determined through the use of the LE_ARP procedure, through source address learning, or through other mechanisms. Some agents may provide write access to this object, as part of their support for 'static' LE_ARP entries. The effect of attempting to write an ATM address to a 'learned' row is explicitly undefined. Agents may disallow the write, accept the write and change the row's type, or even accept the write as-is.")
atm_le_arp_is_remote_address = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpIsRemoteAddress.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpIsRemoteAddress.setDescription("Indicates whether this entry is for a local or remote MAC address. In this context, 'local' means 'a MAC address that is local to the remote client', as opposed to 'one of my addresses'. true(1) The address is believed to be remote - or its local/remote status is unknown. For an entry created via the LE_ARP mechanism, this corresponds to the 'Remote address' flag being set in the LE_ARP_RESPONSE. During Topology Change periods, remote LE_ARP entries generally age out faster than others. Specifically, they are subject to the Forward Delay Time as well as to the Aging Time. false(2) The address is believed to be local - that is to say, registered with the LES by the client whose ATM address is atmLeArpAtmAddress. For an entry created via the LE_ARP mechanism, this corresponds to the 'Remote address' flag being cleared in the LE_ARP_RESPONSE.")
atm_le_arp_entry_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 8), le_arp_table_entry_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpEntryType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpEntryType.setDescription('Indicates how this LE_ARP table entry was created and whether it is aged.')
atm_le_arp_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 9), vpi_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpVpi.setDescription('Indicates the vpi that this MAC is used to for it Data Direct VCC.')
atm_le_arp_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 10), vci_integer()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpVci.setDescription('Indicates the vci that this MAC is used to for it Data Direct VCC.')
atm_le_arp_age = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpAge.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpAge.setDescription('Indicates the time in second that this entry is being verified.')
atm_le_arp_type = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 5, 1, 12), le_arp_type()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmLeArpType.setStatus('mandatory')
if mibBuilder.loadTexts:
atmLeArpType.setDescription('Indicates if this entry represents a SR RD or a ESI.')
xylan_lec_config_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6))
if mibBuilder.loadTexts:
xylanLecConfigTable.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecConfigTable.setDescription('A supplementary table of the lecConfigTable in ATM Forum MIB providing additional information for creating and starting LEC service. This table is indexed by the lecIndex. Each row corresponding to the row with the same lecIndex in the lecConfigTable.')
xylan_lec_config_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1)).setIndexNames((0, 'LAN-EMULATION-CLIENT-MIB', 'lecIndex'))
if mibBuilder.loadTexts:
xylanLecConfigEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecConfigEntry.setDescription('Each row contains a slot number, a port number, a service number and a group number for the LEC service.')
xylan_lec_slot_number = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 1), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanLecSlotNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecSlotNumber.setDescription('The slot on which the ASM/FCSM module is located. The LEC service is to be created on that module. When a row has just been created, the first slot which has the ASM/FCSM module is assigned to this instance. If this number is not changed. The service will be created based on this assigned slot number.')
xylan_lec_port_number = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 2), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanLecPortNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecPortNumber.setDescription('The port of the ASM/FCSM module on which The LEC service is to be created. When a row has just been created, the first available port of the ASM/FCSM module is assigned to this instance. If this number is not changed. The service will be created based on this assigned port number.')
xylan_lec_service_number = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xylanLecServiceNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecServiceNumber.setDescription('The service number which is assigned by the system.')
xylan_lec_group_number = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 8, 6, 1, 4), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xylanLecGroupNumber.setStatus('mandatory')
if mibBuilder.loadTexts:
xylanLecGroupNumber.setDescription('The group to which the LEC service belong. When a row has just been created, the default group number is assigned to this instance. If this number is not changed. The service will be created based on this assigned group number.')
atm_cip_statistics_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1))
if mibBuilder.loadTexts:
atmCIPStatisticsTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPStatisticsTable.setDescription('An extension table containing traffic statistics for all the Classical IP this host implements.')
atm_cip_statistics_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxCIPSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxCIPPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxCIPServiceNum'))
if mibBuilder.loadTexts:
atmCIPStatisticsEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPStatisticsEntry.setDescription('Each row in this table contains traffic statistics for one Classical IP Service.')
atmx_cip_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxCIPSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxCIPSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmx_cip_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxCIPPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxCIPPortIndex.setDescription('Port index to identify an instance of this table.')
atmx_cip_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxCIPServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxCIPServiceNum.setDescription('Service number index to identify an instance of this table.')
atm_ci_ppkts_from_ip = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPpktsFromIP.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPpktsFromIP.setDescription('The number of packets received form IP.')
atm_cip_broadcast_pkt_from_ip = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 5), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPBroadcastPktFromIP.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPBroadcastPktFromIP.setDescription('The number of Broadcast packets received form IP.')
atm_cip_pkts_from_ip_discard = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 6), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsFromIPDiscard.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsFromIPDiscard.setDescription('The number of packets received form IP discarded.')
atm_cip_pkts_to_ip = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 7), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsToIP.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsToIP.setDescription('The number of packets sent to IP.')
atm_cip_pkts_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 8), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsFromNet.setDescription('The number of packets received from the Network.')
atm_cip_pkts_from_net_discard = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 9), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsFromNetDiscard.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsFromNetDiscard.setDescription('The number of packets sent to IP discarded.')
atm_cip_arp_resp_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 10), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPArpRespFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPArpRespFromNet.setDescription('The number of Arp response packet received form the network.')
atm_cip_arp_req_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 11), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPArpReqFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPArpReqFromNet.setDescription('The number of Arp request packet received form the network.')
atm_cip_inv_arp_resp_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 12), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpRespFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpRespFromNet.setDescription('The number of Inverse Arp response packet received form the network.')
atm_cip_inv_arp_req_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 13), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpReqFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpReqFromNet.setDescription('The number of Inverse Arp request packet received form the network.')
atm_cip_inv_arp_nak_from_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 14), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpNakFromNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpNakFromNet.setDescription('The number of Inverse Arp negative acknowledgement packet received form the network.')
atm_cip_pkts_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 15), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsToNet.setDescription('The number of packets sent to the network.')
atm_cip_pkts_to_net_discard = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 16), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPPktsToNetDiscard.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPPktsToNetDiscard.setDescription('The number of packets sent to the network.')
atm_cip_arp_resp_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 17), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPArpRespToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPArpRespToNet.setDescription('The number of Arp response packet sent to the network.')
atm_cip_arp_req_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 18), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPArpReqToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPArpReqToNet.setDescription('The number of Arp request packet sent to the network.')
atm_cip_inv_arp_resp_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 19), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpRespToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpRespToNet.setDescription('The number of Inverse Arp response packet sent to the network.')
atm_cip_inv_arp_req_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 20), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpReqToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpReqToNet.setDescription('The number of Inverse Arp request packet sent to the network.')
atm_cip_inv_arp_nak_to_net = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 9, 1, 1, 21), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmCIPInvArpNakToNet.setStatus('mandatory')
if mibBuilder.loadTexts:
atmCIPInvArpNakToNet.setDescription('The number of Inverse Arp negative acknowledge packet sent to the network.')
atm_gp_to_vc_mapping_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1))
if mibBuilder.loadTexts:
atmGpToVcMappingTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmGpToVcMappingTable.setDescription('An extension table containing mapping info for all group to VCI (and VPI) mapping for 1 Scaling service. This table is for create, delete 1 mapping entry. Utilize atmxServiceGroup to create or delete a 1483 Scaling Service. Create 1483 Scaling Service only with 1 group and 1 vc thru the atmxServiceGroup. Adding or removing other group-to-vc mapping should then use this atmx1483ScaleGroup.')
atm_gp_to_vc_mapping_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxGpToVcSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxGpToVcPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxGpToVcServiceNum'), (0, 'XYLAN-ATM-MIB', 'atmxGpToVcGroupId'))
if mibBuilder.loadTexts:
atmGpToVcMappingEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmGpToVcMappingEntry.setDescription('Each row in this table contains mapping info for 1 group to 1 VCI (and 1 VPI) entry. The value for VPI must be zero (0).')
atmx_gp_to_vc_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcSlotIndex.setDescription('Slot index to identify an instance of this table.')
atmx_gp_to_vc_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcPortIndex.setDescription('Port index to identify an instance of this table.')
atmx_gp_to_vc_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcServiceNum.setDescription('Service number index to identify an instance of this table.')
atmx_gp_to_vc_group_id = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcGroupId.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcGroupId.setDescription('Group number index to identify an instance of this table.')
atmx_gp_to_vc_vpi = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 5), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxGpToVcVpi.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcVpi.setDescription('The VPI for 1 Scaling Service. VPI can only be zero .')
atmx_gp_to_vc_vci = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxGpToVcVci.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcVci.setDescription('The VCI for 1 Scaling Service. The range for VCI is from 1 to 1000.')
atmx_gp_to_vc_row_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('create', 1), ('delete', 2), ('active', 3), ('inactive', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxGpToVcRowStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcRowStatus.setDescription('Row Status indicates the state of a entry of this mapping table. For a Get-operation, the value to be returned values can be ACTIVE or INACTIVE. This RowStatus will return ACTIVE, if the atmxServiceAdminStatus (an object in atmxSerivceGroup) is set to ENABLE. RowStatus will be INACTIVE if atmxServiceAdminStatus is set to a value other than ENABLE. RowStatus can only set to CREATE or DELETE. The values ACTIVE and INACTIVE are read only. For a Set-operation, values to be set can be CREATE or DELETE. Utilize atmxServiceGroup to create or delete a 1483 Scaling Service. Create 1483 Scaling Service only with 1 group and 1 vc thru the atmxServiceGroup. Adding or removing other group-to-vc mapping should then use this atmx1483ScaleGroup.')
atm_gp_to_vc_bulk_mapping_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2))
if mibBuilder.loadTexts:
atmGpToVcBulkMappingTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmGpToVcBulkMappingTable.setDescription('An extension table containing mapping (bulk) info for all group to VCI (and VPI) mapping for 1 Scaling service. This table can only have 1 row. This table is for updating the whole mapping list (ie. all mapping entries ) at one time. ')
atm_gp_to_vc_bulk_mapping_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxGpToVcBulkSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxGpToVcBulkPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxGpToVcBulkServiceNum'))
if mibBuilder.loadTexts:
atmGpToVcBulkMappingEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmGpToVcBulkMappingEntry.setDescription('There is only 1 row in this table. This row contains all group to VCI (and VPI) mapping for 1 Scaling service. There are 3 indices for this table. The value for VPI must be zero (0).')
atmx_gp_to_vc_bulk_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcBulkSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcBulkSlotIndex.setDescription('Slot index to identify a Scaling service.')
atmx_gp_to_vc_bulk_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcBulkPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcBulkPortIndex.setDescription('Port index to identify a Scaling service.')
atmx_gp_to_vc_bulk_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcBulkServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcBulkServiceNum.setDescription('Service number index to identify a Scaling service.')
atmx_gp_to_vc_bulk_num_of_nodes = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxGpToVcBulkNumOfNodes.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcBulkNumOfNodes.setDescription('Number of group to VCI (and VPI) mapping inside the bulk mapping list. ')
atmx_gp_to_vc_bulk_mapping_list = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 12, 2, 1, 5), octet_string().subtype(subtypeSpec=value_size_constraint(8, 8000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxGpToVcBulkMappingList.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxGpToVcBulkMappingList.setDescription('A list containing all group to VCI (and VPI) mapping entries. Each mapping entry has the following fields having the exact order : a) Group Number (4 bytes) b) VPI (2 bytes) c) VCI (2 bytes) A total of 8 bytes for each mapping structure. There is no separator in between matching structures, nor is a end-of-string in this whole matching list. The size of this whole mapping list must be a multiple of 8 bytes. For Set-Operations, if a user wants to update the mapping list, he must send the whole mapping list buffer. ')
atmx_bwg_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1))
if mibBuilder.loadTexts:
atmxBwgTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgTable.setDescription('A table of Bandwidth group parameters for Traffic Shaping')
atmx_bwg_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxBwgSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxBwgPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxBwgNum'))
if mibBuilder.loadTexts:
atmxBwgEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgEntry.setDescription('An entry in the table, containing information about the Traffic parameters for each of the 8 bandwidth groups')
atmx_bwg_slot_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 9))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxBwgSlotIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgSlotIndex.setDescription('A unique value which identifies this hsm board slot.')
atmx_bwg_port_index = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 2), integer32().subtype(subtypeSpec=value_range_constraint(1, 2))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxBwgPortIndex.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgPortIndex.setDescription('A unique value which identifies this atm submodule port.')
atmx_bwg_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 3), integer32().subtype(subtypeSpec=value_range_constraint(1, 8))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxBwgNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgNum.setDescription('A unique value that identifies the bwg')
atmx_bwg_be = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('true', 1), ('false', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxBwgBE.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgBE.setDescription('Whether to use Best Effort for tx data.')
atmx_bwg_pcr = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(535, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxBwgPcr.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgPcr.setDescription('The value of the Peak Cell Rate(Kbps) as defined in the Traffic Management Specification Version 4.0. atmxBwgPcr has no meaning when atmxBwgBE is equal to true.')
atmx_bwg_scr = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 6), integer32().subtype(subtypeSpec=value_range_constraint(35, 150000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxBwgScr.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgScr.setDescription('The value of the Sustained Cell Rate(Kbps) as defined in the Traffic Management Specification Version 4.0. atmxBwgScr must be less or equal to atmxBwgPcr. atmxBwgScr has no meaning when atmxBwgBE is equal to true.')
atmx_bwg_mbs = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 7), integer32().subtype(subtypeSpec=value_range_constraint(1, 124))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
atmxBwgMbs.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgMbs.setDescription('The value of the max burst size when interleaving traffic from multiple sources as defined in the 4.0 Traffic Management specification. atmxBwgMbs has no meaning when atmxBwgBE is equal to true.')
atmx_bwg_oper_status = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 1, 1, 8), atm_oper_stat_codes()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxBwgOperStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgOperStatus.setDescription('If the bwg is being used by any service we return inService(2) , or we return outOfService(3).')
atmx_bwg_service_table = mib_table((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2))
if mibBuilder.loadTexts:
atmxBwgServiceTable.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgServiceTable.setDescription('A table of Service group parameters for Traffic Shaping')
atmx_bwg_service_entry = mib_table_row((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2, 1)).setIndexNames((0, 'XYLAN-ATM-MIB', 'atmxBwgSlotIndex'), (0, 'XYLAN-ATM-MIB', 'atmxBwgPortIndex'), (0, 'XYLAN-ATM-MIB', 'atmxBwgNum'), (0, 'XYLAN-ATM-MIB', 'atmxBwgServiceNum'))
if mibBuilder.loadTexts:
atmxBwgServiceEntry.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgServiceEntry.setDescription('Each entry represents an BandWidthGroup to Service mapping.')
atmx_bwg_service_num = mib_table_column((1, 3, 6, 1, 4, 1, 800, 2, 4, 11, 2, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
atmxBwgServiceNum.setStatus('mandatory')
if mibBuilder.loadTexts:
atmxBwgServiceNum.setDescription('A unique value which identifies a service.')
mibBuilder.exportSymbols('XYLAN-ATM-MIB', atmxVccRequestedTransmitTrafficDescriptorParam3=atmxVccRequestedTransmitTrafficDescriptorParam3, atmxAddressReceiveMaxSDU=atmxAddressReceiveMaxSDU, atmLeArpIndex=atmLeArpIndex, LecDataFrameFormat=LecDataFrameFormat, atmCIPStatisticsTable=atmCIPStatisticsTable, atmxVccStatsRxCellCrcErrors=atmxVccStatsRxCellCrcErrors, atmxAddressAcceptableTransmitTrafficDescriptorParam1=atmxAddressAcceptableTransmitTrafficDescriptorParam1, atmCIPPktsToNetDiscard=atmCIPPktsToNetDiscard, atmLecInterfaceState=atmLecInterfaceState, atmxServiceEntry=atmxServiceEntry, atmxAddressAddrUsed=atmxAddressAddrUsed, atmxLayerStatsTxSDUErrors=atmxLayerStatsTxSDUErrors, atmLecConfigLecsAtmAddress=atmLecConfigLecsAtmAddress, atmxVccAcceptableTransmitTrafficDescriptorParam3=atmxVccAcceptableTransmitTrafficDescriptorParam3, atmLeArpAge=atmLeArpAge, atmxVccConnectionUsed=atmxVccConnectionUsed, AtmConnectionOperStatCodes=AtmConnectionOperStatCodes, atmLeArpTable=atmLeArpTable, atmxVccActualReceiveTrafficDescriptor=atmxVccActualReceiveTrafficDescriptor, xylanLecPortNumber=xylanLecPortNumber, atmxAddressAcceptableTransmitTrafficDescriptorParam2=atmxAddressAcceptableTransmitTrafficDescriptorParam2, atmLecServerVccTable=atmLecServerVccTable, atmxAddressRequestedReceiveTrafficDescriptor=atmxAddressRequestedReceiveTrafficDescriptor, atmxPortPortIndex=atmxPortPortIndex, atmxAddressAdmStatus=atmxAddressAdmStatus, atmxAddressRequestedReceiveTrafficDescriptorParam2=atmxAddressRequestedReceiveTrafficDescriptorParam2, atmxLayerStatsTxOctets=atmxLayerStatsTxOctets, atmxLayerStatsRxSDUs=atmxLayerStatsRxSDUs, LecState=LecState, atmCIPPktsToNet=atmCIPPktsToNet, atmxVccServiceUsed=atmxVccServiceUsed, atmxAddressAcceptableReceiveTrafficDescriptorParam2=atmxAddressAcceptableReceiveTrafficDescriptorParam2, atmxLecStatsServiceNum=atmxLecStatsServiceNum, atmLeArpVpi=atmLeArpVpi, atmxPortGroup=atmxPortGroup, atmxBwgTable=atmxBwgTable, atmLecProxyClient=atmLecProxyClient, atmxVccStatsTable=atmxVccStatsTable, atmxBwgNum=atmxBwgNum, xylanLecGroupNumber=xylanLecGroupNumber, atmxAddressRequestedTransmitTrafficDescriptorParam2=atmxAddressRequestedTransmitTrafficDescriptorParam2, atmLecVccTimeoutPeriod=atmLecVccTimeoutPeriod, xylanLecConfigEntry=xylanLecConfigEntry, atmxCIPstatsGroup=atmxCIPstatsGroup, atmGpToVcBulkMappingEntry=atmGpToVcBulkMappingEntry, atmxAddressVpi=atmxAddressVpi, atmLecSrBridgeNum=atmLecSrBridgeNum, atmxPortSignalingVersion=atmxPortSignalingVersion, atmLecAgingTime=atmLecAgingTime, atmxPortRxSegmentSize=atmxPortRxSegmentSize, atmLecArpRequestsOut=atmLecArpRequestsOut, atmCIPInvArpReqFromNet=atmCIPInvArpReqFromNet, atmxLayerStatsRxCellNoBuffers=atmxLayerStatsRxCellNoBuffers, atmLecConfigDirectVpi=atmLecConfigDirectVpi, atmxServiceMulticastOutVcc=atmxServiceMulticastOutVcc, atmxLecStatusServiceNum=atmxLecStatusServiceNum, atmxLecPortIndex=atmxLecPortIndex, atmxVccAcceptableTransmitTrafficDescriptor=atmxVccAcceptableTransmitTrafficDescriptor, atmLecConfigMode=atmLecConfigMode, atmxVccStatsRxCellTrash=atmxVccStatsRxCellTrash, atmxAddressAcceptableReceiveTrafficBestEffort=atmxAddressAcceptableReceiveTrafficBestEffort, atmxVccStatsTxSDUDiscards=atmxVccStatsTxSDUDiscards, atmxVccActualReceiveTrafficQoSClass=atmxVccActualReceiveTrafficQoSClass, atmLecProtocol=atmLecProtocol, atmLecActualLanName=atmLecActualLanName, atmxVccStatsRxSDUErrors=atmxVccStatsRxSDUErrors, atmxArpTimeToLive=atmxArpTimeToLive, atmxAddressRequestedTransmitTrafficBestEffort=atmxAddressRequestedTransmitTrafficBestEffort, atmxGpToVcBulkNumOfNodes=atmxGpToVcBulkNumOfNodes, atmxPortEntry=atmxPortEntry, atmxPortProtocolType=atmxPortProtocolType, atmxVccOperStatus=atmxVccOperStatus, atmLecSvcFailures=atmLecSvcFailures, atmxGpToVcBulkServiceNum=atmxGpToVcBulkServiceNum, atmxVccActualTransmitTrafficDescriptorParam3=atmxVccActualTransmitTrafficDescriptorParam3, atmxLayerStatsRxCellErrors=atmxLayerStatsRxCellErrors, atmLecMaxUnknownFrameTime=atmLecMaxUnknownFrameTime, atmxLecStatusSlotIndex=atmxLecStatusSlotIndex, atmCIPInvArpNakFromNet=atmCIPInvArpNakFromNet, atmxArpEntry=atmxArpEntry, atmxVccRequestedReceiveTrafficQoSClass=atmxVccRequestedReceiveTrafficQoSClass, atmxBwgBE=atmxBwgBE, atmLecID=atmLecID, atmLecControlDistributeVpi=atmLecControlDistributeVpi, atmxAddressAcceptableTransmitTrafficBestEffort=atmxAddressAcceptableTransmitTrafficBestEffort, atmLecConfigSource=atmLecConfigSource, atmCIPArpRespToNet=atmCIPArpRespToNet, atmxVccRequestedTransmitTrafficDescriptorParam2=atmxVccRequestedTransmitTrafficDescriptorParam2, atmxServiceArpRequestServer=atmxServiceArpRequestServer, atmxCIPPortIndex=atmxCIPPortIndex, atmxServiceVclEncapType=atmxServiceVclEncapType, atmLeArpVci=atmLeArpVci, atmxLeArpPortIndex=atmxLeArpPortIndex, atmLecVersion=atmLecVersion, atmxVccActualReceiveTrafficBestEffort=atmxVccActualReceiveTrafficBestEffort, atmLecActualLanType=atmLecActualLanType, atmxVccRequestedTransmitTrafficQoSClass=atmxVccRequestedTransmitTrafficQoSClass, atmxVccStatsRxSDUNoBuffers=atmxVccStatsRxSDUNoBuffers, atmxServiceConnections=atmxServiceConnections, atmxVccStatsPortIndex=atmxVccStatsPortIndex, atmLecMulticastForwardVpi=atmLecMulticastForwardVpi, atmxLayerStatsTable=atmxLayerStatsTable, atmLecPrimaryAtmAddress=atmLecPrimaryAtmAddress, atmLeArpType=atmLeArpType, atmxGpToVcRowStatus=atmxGpToVcRowStatus, atmxBwgScr=atmxBwgScr, atmxLayerStatsTxCellErrors=atmxLayerStatsTxCellErrors, atmLecControlTimeout=atmLecControlTimeout, atmxAddressAcceptableReceiveTrafficDescriptor=atmxAddressAcceptableReceiveTrafficDescriptor, atmxVccAcceptableReceiveTrafficDescriptorParam2=atmxVccAcceptableReceiveTrafficDescriptorParam2, atmxPortUniType=atmxPortUniType, atmxLecConfigIndex=atmxLecConfigIndex, atmLecMaxRetryCount=atmLecMaxRetryCount, atmxVccRequestedReceiveTrafficDescriptorParam2=atmxVccRequestedReceiveTrafficDescriptorParam2, atmLecMaxUnknownFrameCount=atmLecMaxUnknownFrameCount, atmxBwgMbs=atmxBwgMbs, atmxAddressTransmitMaxSDU=atmxAddressTransmitMaxSDU, atmxVccStatsTxCellNoBuffers=atmxVccStatsTxCellNoBuffers, atmCIPArpReqToNet=atmCIPArpReqToNet, atmxLayerStatsTxSDUs=atmxLayerStatsTxSDUs, atmxPortConnectionType=atmxPortConnectionType, atmLeArpIsRemoteAddress=atmLeArpIsRemoteAddress, atmxPortMediaType=atmxPortMediaType, atmxAddressRequestedTransmitTrafficDescriptorParam3=atmxAddressRequestedTransmitTrafficDescriptorParam3, atmxVccRequestedTransmitTrafficDescriptorParam1=atmxVccRequestedTransmitTrafficDescriptorParam1, atmLecForwardDelayTime=atmLecForwardDelayTime, atmxVccStatsRxCellNoBuffers=atmxVccStatsRxCellNoBuffers, atmxLayerStatsRxSDUErrors=atmxLayerStatsRxSDUErrors, atmxPortTxSegmentSize=atmxPortTxSegmentSize, atmxArpAtmAddress=atmxArpAtmAddress, atmCIPInvArpRespFromNet=atmCIPInvArpRespFromNet, atmxVccAcceptableTransmitTrafficQoSClass=atmxVccAcceptableTransmitTrafficQoSClass, atmLecSrRingNum=atmLecSrRingNum, atmxArpTable=atmxArpTable, atmxLayerStatsTxCellDiscards=atmxLayerStatsTxCellDiscards, atmxServicePortIndex=atmxServicePortIndex, atmxLayerStatsRxSDUNoBuffers=atmxLayerStatsRxSDUNoBuffers, atmLecRowStatus=atmLecRowStatus, atmxVccGroup=atmxVccGroup, atmxPortDescription=atmxPortDescription, atmxVccTransmitMaxFrameSize=atmxVccTransmitMaxFrameSize, atmxVccStatsTxOctets=atmxVccStatsTxOctets, atmxAddressRequestedReceiveTrafficDescriptorParam3=atmxAddressRequestedReceiveTrafficDescriptorParam3, atmGpToVcBulkMappingTable=atmGpToVcBulkMappingTable, atmxBwgServiceEntry=atmxBwgServiceEntry, atmLecUseTranslation=atmLecUseTranslation, atmLecTopologyChange=atmLecTopologyChange, atmGpToVcMappingTable=atmGpToVcMappingTable, atmxVccPortIndex=atmxVccPortIndex, atmxVccRequestedReceiveTrafficDescriptorParam3=atmxVccRequestedReceiveTrafficDescriptorParam3, VciInteger=VciInteger, atmxVccRequestedTransmitTrafficDescriptor=atmxVccRequestedTransmitTrafficDescriptor, atmxGpToVcSlotIndex=atmxGpToVcSlotIndex, atmxVccStatsTxCells=atmxVccStatsTxCells, atmxServiceType=atmxServiceType, atmxVccStatsVci=atmxVccStatsVci, atmxPortMaxVCCs=atmxPortMaxVCCs, atmxAddressAcceptableTransmitTrafficDescriptorParam3=atmxAddressAcceptableTransmitTrafficDescriptorParam3, atmLecExpectedArpResponseTime=atmLecExpectedArpResponseTime, atmxVccDownTime=atmxVccDownTime, atmxVccActualTransmitTrafficDescriptorParam1=atmxVccActualTransmitTrafficDescriptorParam1, atmxCIPServiceNum=atmxCIPServiceNum, atmxPortILMIstatus=atmxPortILMIstatus, atmxAddressAtmAddress=atmxAddressAtmAddress, atmxLecSlotIndex=atmxLecSlotIndex, atmLeArpEntryType=atmLeArpEntryType, atmxAddressGroup=atmxAddressGroup, atmxVccStatsRxSDUCrcErrors=atmxVccStatsRxSDUCrcErrors, atmxLeArpServiceNum=atmxLeArpServiceNum, atmLecStatusTable=atmLecStatusTable, atmLecControlDirectVci=atmLecControlDirectVci, atmxLayerStatsEntry=atmxLayerStatsEntry, atmxVccStatsEntry=atmxVccStatsEntry, atmxVccStatsRxCellDiscards=atmxVccStatsRxCellDiscards, atmxVccStatsRxSDUDiscards=atmxVccStatsRxSDUDiscards, atmxGpToVcVci=atmxGpToVcVci, atmxVccStatsGroup=atmxVccStatsGroup, atmxAddressTable=atmxAddressTable, atmxLayerStatsTxCellNoBuffers=atmxLayerStatsTxCellNoBuffers, atmxPortTable=atmxPortTable, atmxVccReceiveMaxFrameSize=atmxVccReceiveMaxFrameSize, atmLecConfigServerAtmAddress=atmLecConfigServerAtmAddress, atmLecPathSwitchingDelay=atmLecPathSwitchingDelay, atmxPortTimingMode=atmxPortTimingMode, atmxVccRequestedReceiveTrafficDescriptor=atmxVccRequestedReceiveTrafficDescriptor, atmxArpGroup=atmxArpGroup, atmxLayerStatsRxCellDiscards=atmxLayerStatsRxCellDiscards, atmxAddressVci=atmxAddressVci, atmxBwgEntry=atmxBwgEntry, atmxLayerStatsRxSDUDiscards=atmxLayerStatsRxSDUDiscards, atmxVccStatsTxCellErrors=atmxVccStatsTxCellErrors, atmxPortSignalingVci=atmxPortSignalingVci, atmxPortILMIVci=atmxPortILMIVci, atmxLayerStatsTxSDUDiscards=atmxLayerStatsTxSDUDiscards, atmxVccAcceptableTransmitTrafficDescriptorParam2=atmxVccAcceptableTransmitTrafficDescriptorParam2, atmLecStatisticsTable=atmLecStatisticsTable, atmLecControlFramesOut=atmLecControlFramesOut, atmCIPBroadcastPktFromIP=atmCIPBroadcastPktFromIP, atmLeArpMacAddress=atmLeArpMacAddress, atmxArpType=atmxArpType, atmxAddressIndex=atmxAddressIndex, atmxArpIPAddress=atmxArpIPAddress, atmxVccAcceptableTransmitTrafficDescriptorParam1=atmxVccAcceptableTransmitTrafficDescriptorParam1, atmxVccAcceptableReceiveTrafficDescriptorParam1=atmxVccAcceptableReceiveTrafficDescriptorParam1, atmxLayerStatsTxCells=atmxLayerStatsTxCells, atmxPortLoopbackConfig=atmxPortLoopbackConfig, atmxAddressRequestedTransmitTrafficQoSClass=atmxAddressRequestedTransmitTrafficQoSClass, atmxPortTxBufferSize=atmxPortTxBufferSize, xylanLecConfigTable=xylanLecConfigTable, atmxAddressRequestedReceiveTrafficQoSClass=atmxAddressRequestedReceiveTrafficQoSClass, atmxVccAcceptableTransmitTrafficBestEffort=atmxVccAcceptableTransmitTrafficBestEffort, atmLecLastFailureRespCode=atmLecLastFailureRespCode, atmxServiceGroup=atmxServiceGroup, atmxAddressDescription=atmxAddressDescription, atmxPortSSCOPstatus=atmxPortSSCOPstatus, atmxBwgPcr=atmxBwgPcr, atmLecMulticastSendVci=atmLecMulticastSendVci, atmxLayerStatsTxSDUNoBuffers=atmxLayerStatsTxSDUNoBuffers, atmxLayerStatsRxSDUCrcErrors=atmxLayerStatsRxSDUCrcErrors, atmxLeArpSlotIndex=atmxLeArpSlotIndex, atmLecControlDistributeVci=atmLecControlDistributeVci, atmxLecStatusPortIndex=atmxLecStatusPortIndex, atmLeArpEntry=atmLeArpEntry, atmxGpToVcBulkMappingList=atmxGpToVcBulkMappingList, atmxServiceAddress=atmxServiceAddress, atmxPortPlScramble=atmxPortPlScramble, atmx1483ScaleGroup=atmx1483ScaleGroup, atmLecRowInUse=atmLecRowInUse, atmxLayerStatsRxSDUTrash=atmxLayerStatsRxSDUTrash, atmLecConfigUseDefaultLecsAddr=atmLecConfigUseDefaultLecsAddr, atmxVccCircuitType=atmxVccCircuitType, atmCIPpktsFromIP=atmCIPpktsFromIP, atmCIPStatisticsEntry=atmCIPStatisticsEntry, atmxVccRequestedReceiveTrafficBestEffort=atmxVccRequestedReceiveTrafficBestEffort, atmxVccEntry=atmxVccEntry, atmxVccDescription=atmxVccDescription, atmxVccStatsRxCellErrors=atmxVccStatsRxCellErrors, atmxLsmGroup=atmxLsmGroup, atmxPortAddress=atmxPortAddress, atmxLecServiceNum=atmxLecServiceNum, atmxVccStatsTxCellDiscards=atmxVccStatsTxCellDiscards, atmxCIPSlotIndex=atmxCIPSlotIndex, atmxServiceConnectionType=atmxServiceConnectionType, atmLecArpRepliesOut=atmLecArpRepliesOut, atmxLayerStatsRxSDUInvalidSz=atmxLayerStatsRxSDUInvalidSz, atmLecConfigMaxDataFrameSize=atmLecConfigMaxDataFrameSize, atmLecConfigLesAtmAddress=atmLecConfigLesAtmAddress, atmxVccAcceptableReceiveTrafficDescriptor=atmxVccAcceptableReceiveTrafficDescriptor, atmxVccSlotIndex=atmxVccSlotIndex, atmxGpToVcBulkSlotIndex=atmxGpToVcBulkSlotIndex, LeArpType=LeArpType, atmxServiceOperStatus=atmxServiceOperStatus, atmLecLastFailureState=atmLecLastFailureState, atmGpToVcMappingEntry=atmGpToVcMappingEntry)
mibBuilder.exportSymbols('XYLAN-ATM-MIB', atmxGpToVcGroupId=atmxGpToVcGroupId, atmxVccStatsRxOctets=atmxVccStatsRxOctets, atmxVccAdmStatus=atmxVccAdmStatus, XylanAtmLaneAddress=XylanAtmLaneAddress, LeArpTableEntryType=LeArpTableEntryType, atmLecControlDirectVpi=atmLecControlDirectVpi, atmCIPInvArpRespToNet=atmCIPInvArpRespToNet, atmxServiceEncapsType=atmxServiceEncapsType, atmxServiceAddresses=atmxServiceAddresses, atmCIPPktsFromNet=atmCIPPktsFromNet, atmxArpIndex=atmxArpIndex, atmCIPInvArpReqToNet=atmCIPInvArpReqToNet, atmxServiceDescription=atmxServiceDescription, atmxVccStatsTxSDUNoBuffers=atmxVccStatsTxSDUNoBuffers, atmCIPPktsToIP=atmCIPPktsToIP, atmxVccAcceptableReceiveTrafficDescriptorParam3=atmxVccAcceptableReceiveTrafficDescriptorParam3, atmxVccTable=atmxVccTable, atmxLayerStatsGroup=atmxLayerStatsGroup, atmLecConfigLanName=atmLecConfigLanName, atmLecArpRequestsIn=atmLecArpRequestsIn, atmxServiceNumVclMembers=atmxServiceNumVclMembers, atmxGpToVcPortIndex=atmxGpToVcPortIndex, atmxAddressAcceptableReceiveTrafficDescriptorParam3=atmxAddressAcceptableReceiveTrafficDescriptorParam3, AtmServiceOperStatCodes=AtmServiceOperStatCodes, atmxVccConnType=atmxVccConnType, atmxAddressAcceptableTransmitTrafficQoSClass=atmxAddressAcceptableTransmitTrafficQoSClass, atmxServiceNumber=atmxServiceNumber, AtmOperStatCodes=AtmOperStatCodes, atmxAddressRequestedReceiveTrafficDescriptorParam1=atmxAddressRequestedReceiveTrafficDescriptorParam1, xylanLecSlotNumber=xylanLecSlotNumber, atmxAddressType=atmxAddressType, atmLecConfigDirectVci=atmLecConfigDirectVci, atmCIPArpReqFromNet=atmCIPArpReqFromNet, atmxSahiBWGroup=atmxSahiBWGroup, atmxVccStatsRxSDUs=atmxVccStatsRxSDUs, atmxServiceSEL=atmxServiceSEL, atmLecMulticastForwardVci=atmLecMulticastForwardVci, atmxVccActualTransmitTrafficDescriptorParam2=atmxVccActualTransmitTrafficDescriptorParam2, atmxVccRequestedReceiveTrafficDescriptorParam1=atmxVccRequestedReceiveTrafficDescriptorParam1, atmxLayerStatsRxOctets=atmxLayerStatsRxOctets, atmxVccStatsRxSDUInvalidSz=atmxVccStatsRxSDUInvalidSz, atmLecActualMaxDataFrameSize=atmLecActualMaxDataFrameSize, atmLecActualLesAtmAddress=atmLecActualLesAtmAddress, atmLecConfigTable=atmLecConfigTable, atmxAddressAcceptableTransmitTrafficDescriptor=atmxAddressAcceptableTransmitTrafficDescriptor, atmxPortUniPortIndex=atmxPortUniPortIndex, AtmAdminStatCodes=AtmAdminStatCodes, atmxServiceLaneCfgTblIdx=atmxServiceLaneCfgTblIdx, atmxBwgServiceTable=atmxBwgServiceTable, atmxVccStatsTxSDUs=atmxVccStatsTxSDUs, atmLecConfigEntry=atmLecConfigEntry, atmxLaneGroup=atmxLaneGroup, VpiInteger=VpiInteger, atmLecUseForwardDelay=atmLecUseForwardDelay, atmxPortOperStatus=atmxPortOperStatus, atmxLayerStatsSlotIndex=atmxLayerStatsSlotIndex, atmCIPInvArpNakToNet=atmCIPInvArpNakToNet, atmxVccRequestedTransmitTrafficBestEffort=atmxVccRequestedTransmitTrafficBestEffort, atmxVccActualTransmitTrafficBestEffort=atmxVccActualTransmitTrafficBestEffort, atmxAddressAcceptableReceiveTrafficQoSClass=atmxAddressAcceptableReceiveTrafficQoSClass, atmxVccActualReceiveTrafficDescriptorParam3=atmxVccActualReceiveTrafficDescriptorParam3, atmxAddressServiceUsed=atmxAddressServiceUsed, AtmTransmissionTypes=AtmTransmissionTypes, atmxVccAcceptableReceiveTrafficQoSClass=atmxVccAcceptableReceiveTrafficQoSClass, atmxBwgSlotIndex=atmxBwgSlotIndex, atmxVccStatsRxSDUTrash=atmxVccStatsRxSDUTrash, atmxArpVci=atmxArpVci, atmxVccStatsTxSDUErrors=atmxVccStatsTxSDUErrors, atmxServiceSahiBwgNum=atmxServiceSahiBwgNum, atmLecArpRepliesIn=atmLecArpRepliesIn, atmLecStatisticsEntry=atmLecStatisticsEntry, atmCIPPktsFromNetDiscard=atmCIPPktsFromNetDiscard, atmxServiceTable=atmxServiceTable, atmxAddressRequestedReceiveTrafficBestEffort=atmxAddressRequestedReceiveTrafficBestEffort, atmxVccActualTransmitTrafficQoSClass=atmxVccActualTransmitTrafficQoSClass, atmxVccActualReceiveTrafficDescriptorParam1=atmxVccActualReceiveTrafficDescriptorParam1, atmxVccStatsRxCells=atmxVccStatsRxCells, atmLecControlFramesIn=atmLecControlFramesIn, atmxAddressRequestedTransmitTrafficDescriptorParam1=atmxAddressRequestedTransmitTrafficDescriptorParam1, atmLecStatusEntry=atmLecStatusEntry, atmxGpToVcBulkPortIndex=atmxGpToVcBulkPortIndex, atmxVccVpi=atmxVccVpi, atmxPortMaxVciBits=atmxPortMaxVciBits, atmxBwgOperStatus=atmxBwgOperStatus, atmxServiceAdmStatus=atmxServiceAdmStatus, atmxServiceVlan=atmxServiceVlan, atmxLayerStatsRxCells=atmxLayerStatsRxCells, atmxAddressRequestedTransmitTrafficDescriptor=atmxAddressRequestedTransmitTrafficDescriptor, atmxVccUpTime=atmxVccUpTime, atmxServiceSlotIndex=atmxServiceSlotIndex, atmxVccStatsSlotIndex=atmxVccStatsSlotIndex, atmxLecStatsPortIndex=atmxLecStatsPortIndex, atmLecServerVccEntry=atmLecServerVccEntry, atmCIPArpRespFromNet=atmCIPArpRespFromNet, atmxAddressAcceptableReceiveTrafficDescriptorParam1=atmxAddressAcceptableReceiveTrafficDescriptorParam1, atmxPortTransmissionType=atmxPortTransmissionType, atmxPortSlotIndex=atmxPortSlotIndex, atmxLecStatsSlotIndex=atmxLecStatsSlotIndex, atmxPortEnableILMI=atmxPortEnableILMI, atmxGpToVcServiceNum=atmxGpToVcServiceNum, xylanLecServiceNumber=xylanLecServiceNumber, atmxLayerStatsPortIndex=atmxLayerStatsPortIndex, atmxPortRxBufferSize=atmxPortRxBufferSize, AtmTrafficDescrTypes=AtmTrafficDescrTypes, atmxGpToVcVpi=atmxGpToVcVpi, atmxAddressEntry=atmxAddressEntry, atmCIPPktsFromIPDiscard=atmCIPPktsFromIPDiscard, atmxVccVci=atmxVccVci, atmLecConfigLanType=atmLecConfigLanType, atmxLayerStatsRxCellTrash=atmxLayerStatsRxCellTrash, atmxVccActualReceiveTrafficDescriptorParam2=atmxVccActualReceiveTrafficDescriptorParam2, atmxBwgServiceNum=atmxBwgServiceNum, atmLecMulticastSendVpi=atmLecMulticastSendVpi, atmxBwgPortIndex=atmxBwgPortIndex, atmxVccAcceptableReceiveTrafficBestEffort=atmxVccAcceptableReceiveTrafficBestEffort, atmLeArpAtmAddress=atmLeArpAtmAddress, AtmMediaTypes=AtmMediaTypes, atmxLayerStatsRxCellCrcErrors=atmxLayerStatsRxCellCrcErrors, atmxVccActualTransmitTrafficDescriptor=atmxVccActualTransmitTrafficDescriptor, atmLecFlushTimeOut=atmLecFlushTimeOut)
|
def count_down(num):
if num == 0:
return 0
else:
print(num)
num = num -1
return count_down(num)
print(count_down(10))
|
def count_down(num):
if num == 0:
return 0
else:
print(num)
num = num - 1
return count_down(num)
print(count_down(10))
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.