content
stringlengths 7
1.05M
| fixed_cases
stringlengths 1
1.28M
|
---|---|
class Solution:
def finalPrices(self, prices: List[int]) -> List[int]:
res = []
for i in range(len(prices)):
for j in range(i+1,len(prices)):
if prices[j]<=prices[i]:
res.append(prices[i]-prices[j])
break
if j==len(prices)-1:
res.append(prices[i])
res.append(prices[-1])
return res | class Solution:
def final_prices(self, prices: List[int]) -> List[int]:
res = []
for i in range(len(prices)):
for j in range(i + 1, len(prices)):
if prices[j] <= prices[i]:
res.append(prices[i] - prices[j])
break
if j == len(prices) - 1:
res.append(prices[i])
res.append(prices[-1])
return res |
"""Tests for the sbahn_munich integration"""
line_dict = {
"name": "S3",
"color": "#333333",
"text_color": "#444444",
}
| """Tests for the sbahn_munich integration"""
line_dict = {'name': 'S3', 'color': '#333333', 'text_color': '#444444'} |
N, M = map(int, input().split())
for i in range(1, M + 1):
if i % 2 == 1:
j = (i - 1) // 2
print(1 + j, M + 1 - j)
else:
j = (i - 2) // 2
print(M + 2 + j, 2 * M + 1 - j)
| (n, m) = map(int, input().split())
for i in range(1, M + 1):
if i % 2 == 1:
j = (i - 1) // 2
print(1 + j, M + 1 - j)
else:
j = (i - 2) // 2
print(M + 2 + j, 2 * M + 1 - j) |
summary = 0
i = 0
while i < 5:
summary = summary + i
print(summary)
i = i + 1
| summary = 0
i = 0
while i < 5:
summary = summary + i
print(summary)
i = i + 1 |
# Store the version here so:
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module
# https://stackoverflow.com/questions/458550/standard-way-to-embed-version-into-python-package
__version__ = '1.6.1'
release_notes = {
'1.6.1': """
Fixed GUI crash when loading certain RLBot config files with relative paths for agents.
Fixed agent preset loading to allow multiple agents to saved/loaded correctly if they have the same name. - ima9rd
""",
'1.6.0':"""
Add support for auto starting .NET executables.
""",
'1.5.1': """
Fixed crash with GUI when no default RLBot.cfg file was found.
Updated GUI to launch Rocket League when clicking run if no Rocket League process is found. - ima9rd
""",
'1.5.0': """
Adding a have_internet helper function to help streamline upgrade checks. - ima9rd
""",
'1.4.2': """
Adding support for auto-running java bots during tournaments. To take advantage of this
in your bot, see https://github.com/RLBot/RLBotJavaExample/wiki/Auto-Launching-Java
Plus bug fixes:
- Fixed a bug where auto-run executables would crash when trying to write to stderr.
- Dragging bots to another team in the GUI no longer breaks the config.
""",
'1.3.0': """
Accurate ball prediction for Hoops and Dropshot modes!
- Kipje13, Marvin, NeverCast, et. al.
""",
'1.2.6': """
Fixed a bug where field info was not extracted properly during dropshot mode.
It was reporting 2 goals rather than the expected 140.
""",
'1.2.5': """
***************************************************
* Fix for dodge cancels / half flips! - ccman32 *
***************************************************
Plus:
- Changing the rendering strategy for 3D lines that go past the camera. Formerly it was
"draw it, even though it's crazy sometimes", now it will be "don't draw it".
- Showing the rate that inputs are received for each player index when you press the
[home] key. Toggle back off with the [end] key.
- Fixed a bug where party_member_bot could get influenced by real controller input.
- Creating new presets in the GUI works better now.
- Got rid of the libpng warning seen when using the GUI.
- Giving specific error messages when cfg files are messed up.
""",
'1.2.2': """
- Rearranged the GUI a bit, and made it load and track appearance configs more effectively.
- Fixed bug where RUN button behavior in the GUI would not work after killing bots.
""",
'1.2.0': """
- We now offer a 'RigidBodyTick' thanks to whatisaphone! It's a lower-level representation of
physics data which updates at 120Hz and is not subject to interpolation. You can still make a
great bot without it, but this feature is quite nice for the scientists among us.
See https://github.com/RLBot/RLBotPythonExample/wiki/Rigid-Body-Tick for more details!
- Faster way to access ball prediction data in python. - Skyborg
""",
'1.1.3': """
- Faster way to access ball prediction data in python. - Skyborg
- Java bots will now shut down when the python framework quits. This has been necessary recently
to avoid buggy situations.
- Shutting down the python framework will no longer attempt to kill bots twice in a row.
- Clicking on the "Run" button twice in a row in the GUI will no longer spawn duplicate processes.
""",
'1.1.2': """
Faster way to access ball prediction data in python. - Skyborg
""",
'1.1.1': """
You can now get information about the ball's status in Dropshot mode thanks to hallo_doei!
Read all about it at https://github.com/RLBot/RLBot/wiki/Dropshot
Other changes:
- The loadout config for orange team is now respected again. - ccman32
- Fixed a bug where the GUI would crash with a "KeyError". - hallo_doei
- Avoiding and suppressing some game crashes, and also restoring the
ability to get game tick data during replays and the postgame. - tarehart
- Fixed a bug where bots would dodge when they intended to double jump. -tarehart
""",
'1.0.6': """
The latest Rocket League patch broke dodges for our bots; this update fixes it.
""",
'1.0.5': """
Maximum size for a render message has been decreased again because many people experienced
errors related to memory access. The limit is now only double the original.
""",
'1.0.4': """
- Maximum size for a render message has been increased by a factor of 100. This means you can
draw a lot of lines at once without getting errors.
- Boost amount for cars will now round up to the nearest integer, so 0.3% boost will now appear
as 1 instead of 0.
- Fixed a crash that would commonly happen after a match ends. As a side effect, you can no longer
see up-to-date player data during instant replays.
""",
'1.0.3': """
Time for the big 1.0 release! We actually left "beta" a long time ago so this isn't as big
a milestone as the number implies, but we DO have two great new features!
1. Setting game state. You can manipulate the position, velocity, etc of the ball and the cars!
This can be a great help during bot development, and you can also get creative with it. Visit
the wiki for details and documentation - https://github.com/RLBot/RLBot/wiki/Manipulating-Game-State
Code written by hallo_doei, ccman32, and tarehart
2. Ball prediction. We now provide a list of future ball positions based on chip's excellent
physics modeling. Take advantage of this to do next-level wall reads, catches, and dribbles! You can
read about the math involved here: https://samuelpmish.github.io/notes/RocketLeague/ball_bouncing/
Note: currently the wall bounces are only accurate on the standard arena, not hoops or dropshot.
Documentation and examples can be found here: https://github.com/RLBot/RLBot/wiki/Ball-Path-Prediction
Code written by chip and tarehart
Bonus:
- You can now play on Salty Shores thanks to hallo_doei
- Bug fix for people with spaces in their file path by Zaptive
- Subprocess agent for future Rust support by whatisaphone
""",
'0.0.32': """
More comprehensive fix for Rocket League patch 1.50. Compared to previous version:
- Dropshot tile data is fixed
- Boost pad data is fixed
- Loadout configuration is fixed
Thanks to ccman32 and dtracers for delivering this fix quickly!
""",
'0.0.31': """
Rapid response to Rocket League patch 1.50 with the following known issues:
- Dropshot tile data is missing
- Boost pad data is missing
- Loadout configuration is broken
Thanks to ccman32 and dtracers for delivering this short-term fix quickly.
We will follow this up with a proper fix as soon as possible. You may also choose to stay on
Rocket League 1.49 and RLBot 0.0.30, ask for instructions on discord.
""",
'0.0.30': """
- New core dll that is less likely to break when Rocket League is patched - ccman32 and hallo-doei
- Fixed bug resulting in incorrect quickchat - dtracers
- Added more built-in colors to the python rendering manager - Eastvillage
- Fix for items with a ':' not showing up in the GUI - hallo-doei
- Fix for GUI not saving correct path - hallo-doei
- Fix for GUI crash when saving preset then canceling - hallo-doei
- Adding file checking before injection (Resolves #167) - Redox
- Fixed typo in rlbot.cfg - Redox
- Fancy release notes - tarehart and Skyborg
"""
}
release_banner = """
______ _ ______ _
10100 | ___ \ | | ___ \ | | 00101
110011 | |_/ / | | |_/ / ___ | |_ 110011
00110110 | /| | | ___ \/ _ \| __| 01101100
010010 | |\ \| |____| |_/ / (_) | |_ 010010
10010 \_| \_\_____/\____/ \___/ \__| 01001
"""
def get_current_release_notes():
if __version__ in release_notes:
return release_notes[__version__]
return ''
def get_help_text():
return "Trouble? Ask on Discord at https://discord.gg/5cNbXgG " \
"or report an issue at https://github.com/RLBot/RLBot/issues"
def print_current_release_notes():
print(release_banner)
print("Version {}".format(__version__))
print(get_current_release_notes())
print(get_help_text())
print("")
| __version__ = '1.6.1'
release_notes = {'1.6.1': '\n Fixed GUI crash when loading certain RLBot config files with relative paths for agents.\n Fixed agent preset loading to allow multiple agents to saved/loaded correctly if they have the same name. - ima9rd\n ', '1.6.0': '\n Add support for auto starting .NET executables.\n ', '1.5.1': '\n Fixed crash with GUI when no default RLBot.cfg file was found.\n Updated GUI to launch Rocket League when clicking run if no Rocket League process is found. - ima9rd \n ', '1.5.0': '\n Adding a have_internet helper function to help streamline upgrade checks. - ima9rd\n ', '1.4.2': '\n Adding support for auto-running java bots during tournaments. To take advantage of this\n in your bot, see https://github.com/RLBot/RLBotJavaExample/wiki/Auto-Launching-Java\n \n Plus bug fixes:\n - Fixed a bug where auto-run executables would crash when trying to write to stderr.\n - Dragging bots to another team in the GUI no longer breaks the config.\n ', '1.3.0': '\n Accurate ball prediction for Hoops and Dropshot modes!\n - Kipje13, Marvin, NeverCast, et. al.\n ', '1.2.6': '\n Fixed a bug where field info was not extracted properly during dropshot mode.\n It was reporting 2 goals rather than the expected 140.\n ', '1.2.5': '\n ***************************************************\n * Fix for dodge cancels / half flips! - ccman32 *\n ***************************************************\n \n Plus:\n - Changing the rendering strategy for 3D lines that go past the camera. Formerly it was\n "draw it, even though it\'s crazy sometimes", now it will be "don\'t draw it".\n - Showing the rate that inputs are received for each player index when you press the\n [home] key. Toggle back off with the [end] key.\n - Fixed a bug where party_member_bot could get influenced by real controller input.\n - Creating new presets in the GUI works better now.\n - Got rid of the libpng warning seen when using the GUI.\n - Giving specific error messages when cfg files are messed up.\n ', '1.2.2': '\n - Rearranged the GUI a bit, and made it load and track appearance configs more effectively.\n - Fixed bug where RUN button behavior in the GUI would not work after killing bots.\n ', '1.2.0': "\n - We now offer a 'RigidBodyTick' thanks to whatisaphone! It's a lower-level representation of\n physics data which updates at 120Hz and is not subject to interpolation. You can still make a \n great bot without it, but this feature is quite nice for the scientists among us.\n \n See https://github.com/RLBot/RLBotPythonExample/wiki/Rigid-Body-Tick for more details!\n \n - Faster way to access ball prediction data in python. - Skyborg\n ", '1.1.3': '\n - Faster way to access ball prediction data in python. - Skyborg\n - Java bots will now shut down when the python framework quits. This has been necessary recently\n to avoid buggy situations.\n - Shutting down the python framework will no longer attempt to kill bots twice in a row.\n - Clicking on the "Run" button twice in a row in the GUI will no longer spawn duplicate processes.\n ', '1.1.2': '\n Faster way to access ball prediction data in python. - Skyborg\n ', '1.1.1': '\n You can now get information about the ball\'s status in Dropshot mode thanks to hallo_doei!\n Read all about it at https://github.com/RLBot/RLBot/wiki/Dropshot\n\n Other changes:\n - The loadout config for orange team is now respected again. - ccman32\n - Fixed a bug where the GUI would crash with a "KeyError". - hallo_doei\n - Avoiding and suppressing some game crashes, and also restoring the\n ability to get game tick data during replays and the postgame. - tarehart\n - Fixed a bug where bots would dodge when they intended to double jump. -tarehart\n ', '1.0.6': '\n The latest Rocket League patch broke dodges for our bots; this update fixes it.\n ', '1.0.5': '\n Maximum size for a render message has been decreased again because many people experienced\n errors related to memory access. The limit is now only double the original.\n ', '1.0.4': '\n - Maximum size for a render message has been increased by a factor of 100. This means you can\n draw a lot of lines at once without getting errors.\n - Boost amount for cars will now round up to the nearest integer, so 0.3% boost will now appear\n as 1 instead of 0.\n - Fixed a crash that would commonly happen after a match ends. As a side effect, you can no longer\n see up-to-date player data during instant replays.\n ', '1.0.3': '\n Time for the big 1.0 release! We actually left "beta" a long time ago so this isn\'t as big\n a milestone as the number implies, but we DO have two great new features!\n\n 1. Setting game state. You can manipulate the position, velocity, etc of the ball and the cars!\n This can be a great help during bot development, and you can also get creative with it. Visit\n the wiki for details and documentation - https://github.com/RLBot/RLBot/wiki/Manipulating-Game-State\n Code written by hallo_doei, ccman32, and tarehart\n\n 2. Ball prediction. We now provide a list of future ball positions based on chip\'s excellent\n physics modeling. Take advantage of this to do next-level wall reads, catches, and dribbles! You can\n read about the math involved here: https://samuelpmish.github.io/notes/RocketLeague/ball_bouncing/\n Note: currently the wall bounces are only accurate on the standard arena, not hoops or dropshot.\n Documentation and examples can be found here: https://github.com/RLBot/RLBot/wiki/Ball-Path-Prediction\n Code written by chip and tarehart\n\n Bonus:\n - You can now play on Salty Shores thanks to hallo_doei\n - Bug fix for people with spaces in their file path by Zaptive\n - Subprocess agent for future Rust support by whatisaphone\n ', '0.0.32': '\n More comprehensive fix for Rocket League patch 1.50. Compared to previous version:\n - Dropshot tile data is fixed\n - Boost pad data is fixed\n - Loadout configuration is fixed\n \n Thanks to ccman32 and dtracers for delivering this fix quickly!\n ', '0.0.31': '\n Rapid response to Rocket League patch 1.50 with the following known issues:\n - Dropshot tile data is missing\n - Boost pad data is missing\n - Loadout configuration is broken\n \n Thanks to ccman32 and dtracers for delivering this short-term fix quickly.\n\n We will follow this up with a proper fix as soon as possible. You may also choose to stay on\n Rocket League 1.49 and RLBot 0.0.30, ask for instructions on discord.\n ', '0.0.30': "\n - New core dll that is less likely to break when Rocket League is patched - ccman32 and hallo-doei\n - Fixed bug resulting in incorrect quickchat - dtracers\n - Added more built-in colors to the python rendering manager - Eastvillage\n - Fix for items with a ':' not showing up in the GUI - hallo-doei\n - Fix for GUI not saving correct path - hallo-doei\n - Fix for GUI crash when saving preset then canceling - hallo-doei\n - Adding file checking before injection (Resolves #167) - Redox\n - Fixed typo in rlbot.cfg - Redox\n - Fancy release notes - tarehart and Skyborg\n "}
release_banner = '\n\n ______ _ ______ _\n 10100 | ___ \\ | | ___ \\ | | 00101\n 110011 | |_/ / | | |_/ / ___ | |_ 110011\n 00110110 | /| | | ___ \\/ _ \\| __| 01101100\n 010010 | |\\ \\| |____| |_/ / (_) | |_ 010010\n 10010 \\_| \\_\\_____/\\____/ \\___/ \\__| 01001\n\n\n'
def get_current_release_notes():
if __version__ in release_notes:
return release_notes[__version__]
return ''
def get_help_text():
return 'Trouble? Ask on Discord at https://discord.gg/5cNbXgG or report an issue at https://github.com/RLBot/RLBot/issues'
def print_current_release_notes():
print(release_banner)
print('Version {}'.format(__version__))
print(get_current_release_notes())
print(get_help_text())
print('') |
input = """
c(2).
p(1).
a(2).
d(2,2,1).
okay(X):- c(X), #count{V:a(V),d(V,X,1)} = 1.
ouch(X):- p(X), #count{V:a(V),d(V,X,1)} = 1.
"""
output = """
{a(2), c(2), d(2,2,1), okay(2), p(1)}
"""
| input = '\nc(2).\np(1).\na(2).\nd(2,2,1).\nokay(X):- c(X), #count{V:a(V),d(V,X,1)} = 1.\nouch(X):- p(X), #count{V:a(V),d(V,X,1)} = 1.\n'
output = '\n{a(2), c(2), d(2,2,1), okay(2), p(1)}\n' |
#
# PySNMP MIB module XXX-MIB (http://snmplabs.com/pysmi)
# ASN.1 source file:///Users/davwang4/Dev/mibs.snmplabs.com/asn1/XXX-MIB
# Produced by pysmi-0.3.4 at Wed May 1 15:44:42 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")
SingleValueConstraint, ConstraintsUnion, ValueRangeConstraint, ValueSizeConstraint, ConstraintsIntersection = mibBuilder.importSymbols("ASN1-REFINEMENT", "SingleValueConstraint", "ConstraintsUnion", "ValueRangeConstraint", "ValueSizeConstraint", "ConstraintsIntersection")
ModuleCompliance, NotificationGroup = mibBuilder.importSymbols("SNMPv2-CONF", "ModuleCompliance", "NotificationGroup")
Gauge32, ModuleIdentity, iso, Integer32, enterprises, ObjectIdentity, Unsigned32, Counter64, IpAddress, Bits, Counter32, MibIdentifier, MibScalar, MibTable, MibTableRow, MibTableColumn, TimeTicks, NotificationType = mibBuilder.importSymbols("SNMPv2-SMI", "Gauge32", "ModuleIdentity", "iso", "Integer32", "enterprises", "ObjectIdentity", "Unsigned32", "Counter64", "IpAddress", "Bits", "Counter32", "MibIdentifier", "MibScalar", "MibTable", "MibTableRow", "MibTableColumn", "TimeTicks", "NotificationType")
DisplayString, TextualConvention = mibBuilder.importSymbols("SNMPv2-TC", "DisplayString", "TextualConvention")
company = ModuleIdentity((1, 3, 6, 1, 4, 1, 6688))
company.setRevisions(('2009-03-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts: company.setRevisionsDescriptions(('1G MC supported',))
if mibBuilder.loadTexts: company.setLastUpdated('200903050000Z')
if mibBuilder.loadTexts: company.setOrganization('FiberRoad')
if mibBuilder.loadTexts: company.setContactInfo('www.fiberroad.com.cn')
if mibBuilder.loadTexts: company.setDescription('Media Converter NMS SNMP mib file')
ipProduct = ObjectIdentity((1, 3, 6, 1, 4, 1, 6688, 1))
if mibBuilder.loadTexts: ipProduct.setStatus('current')
if mibBuilder.loadTexts: ipProduct.setDescription('IP product line')
height2HU = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1))
systemMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1))
alarmMIB = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2))
shelfNum = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 4))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfNum.setStatus('current')
if mibBuilder.loadTexts: shelfNum.setDescription('The number of shelf in current system')
shelfTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2), )
if mibBuilder.loadTexts: shelfTable.setStatus('current')
if mibBuilder.loadTexts: shelfTable.setDescription('Shelf table')
shelfEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1), ).setIndexNames((0, "XXX-MIB", "shelfName"))
if mibBuilder.loadTexts: shelfEntry.setStatus('current')
if mibBuilder.loadTexts: shelfEntry.setDescription('Shelf entry definition')
shelfName = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfName.setStatus('current')
if mibBuilder.loadTexts: shelfName.setDescription('Shelf name')
psuA = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psuA.setStatus('current')
if mibBuilder.loadTexts: psuA.setDescription('The status fan A of current shelf')
psuB = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: psuB.setStatus('current')
if mibBuilder.loadTexts: psuB.setDescription('The status psu B of current shelf')
volA = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("abnormal", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: volA.setStatus('current')
if mibBuilder.loadTexts: volA.setDescription('The voltage status of psuA of current shelf')
volB = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("normal", 1), ("abnormal", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: volB.setStatus('current')
if mibBuilder.loadTexts: volB.setDescription('The voltage status of psuB of current shelf')
fan = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("on", 1), ("off", 2), ("nc", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: fan.setStatus('current')
if mibBuilder.loadTexts: fan.setDescription('The status fan A of current shelf')
temperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 7), Integer32()).setUnits(' oC').setMaxAccess("readonly")
if mibBuilder.loadTexts: temperature.setStatus('current')
if mibBuilder.loadTexts: temperature.setDescription('The temperature status of current shelf')
coCardNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 8), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coCardNum.setStatus('current')
if mibBuilder.loadTexts: coCardNum.setDescription('The number of center card inserting of current shelf')
rmtCardNum = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 9), Integer32().subtype(subtypeSpec=ValueRangeConstraint(0, 16))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rmtCardNum.setStatus('current')
if mibBuilder.loadTexts: rmtCardNum.setDescription('The number of remote card inserting of current shelf')
slotObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3))
slotTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1), )
if mibBuilder.loadTexts: slotTable.setStatus('current')
if mibBuilder.loadTexts: slotTable.setDescription('Sparse table containing one entry for each slot in exist chassis in the system, indexed by shelfIdx and slotIdx.')
slotEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "shelfIdx"), (0, "XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: slotEntry.setStatus('current')
if mibBuilder.loadTexts: slotEntry.setDescription("in this table ,user can find the converter module's type inserted in the system's slot.then you can get the detail information about the specified type in the cardObjects table")
shelfIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: shelfIdx.setStatus('current')
if mibBuilder.loadTexts: shelfIdx.setDescription('Chassis index - 1 = master management module, 2-4 = slave management module')
slotIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=NamedValues(("slot01", 1), ("slot02", 2), ("slot03", 3), ("slot04", 4), ("slot05", 5), ("slot06", 6), ("slot07", 7), ("slot08", 8), ("slot09", 9), ("slot10", 10), ("slot11", 11), ("slot12", 12), ("slot13", 13), ("slot14", 14), ("slot15", 15), ("slot16", 16), ("slot17", 17)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: slotIdx.setStatus('current')
if mibBuilder.loadTexts: slotIdx.setDescription("chassis's slot,whitch is a index in this table")
coCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 100, 101, 102))).clone(namedValues=NamedValues(("no-card", 0), ("ip113s", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeo", 5), ("mc-ip175d", 6), ("mc-10g-oeo", 7), ("mc-10g-oee", 8), ("mc-FAN", 9), ("mc-10g-oeo-1r", 10), ("mc-2-5g", 11), ("mc-40g-oeo", 12), ("mc-2-5g-t", 13), ("mc-2-5g-f", 14), ("mc-2-5g-mux-t", 15), ("mc-2-5g-mux-f", 16), ("mc-1g-e2o-backup", 17), ("mc-e1-1sfp", 18), ("mc-e1-2sfp", 19), ("mc-100m-sfp", 20), ("mc-1g-o2o-backup", 21), ("mc-cwdm-4", 22), ("mc-cwdm-8", 23), ("mc-10g-oeo-2r", 24), ("mc-qca8334", 25), ("mc-e1t1", 26), ("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: coCardType.setStatus('current')
if mibBuilder.loadTexts: coCardType.setDescription("local card's type inserted in the chassis")
coCardDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 4), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: coCardDesc.setStatus('current')
if mibBuilder.loadTexts: coCardDesc.setDescription("local card's description")
rmtCardType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 100, 101, 102))).clone(namedValues=NamedValues(("no-card", 0), ("ip113sr", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeor", 5), ("mc-ip175dr", 6), ("mc-10g-oeor", 7), ("mc-10g-oeer", 8), ("mc-FANr", 9), ("mc-10g-oeo-1rr", 10), ("mc-2-5gr", 11), ("mc-40g-oeor", 12), ("mc-2-5g-tr", 13), ("mc-2-5g-fr", 14), ("mc-2-5g-mux-tr", 15), ("mc-2-5g-mux-fr", 16), ("mc-1g-e2o-backupr", 17), ("mc-e1-1sfpr", 18), ("mc-e1-2sfpr", 19), ("mc-100m-sfpr", 20), ("mc-1g-o2o-backupr", 21), ("mc-cwdmr-4", 22), ("mc-cwdmr-8", 23), ("mc-10g-oeo-2rr", 24), ("mc-qca8334r", 25), ("mc-e1t1r", 26), ("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: rmtCardType.setStatus('current')
if mibBuilder.loadTexts: rmtCardType.setDescription("remote card's type connect with the local converter")
rmtCardDesc = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: rmtCardDesc.setStatus('current')
if mibBuilder.loadTexts: rmtCardDesc.setDescription("remote card's description")
cardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4))
nmuObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1))
nmuConfig = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1))
nmuType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(100, 101, 102))).clone(namedValues=NamedValues(("fr600f-mm", 100), ("fr600f-ms", 101), ("not-support", 102)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: nmuType.setStatus('current')
if mibBuilder.loadTexts: nmuType.setDescription('The type of NMU (network management unit)')
ipaddr = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 2), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: ipaddr.setStatus('current')
if mibBuilder.loadTexts: ipaddr.setDescription('The ethernet IP address of NMU (network management unit)')
subnet = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 3), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: subnet.setStatus('current')
if mibBuilder.loadTexts: subnet.setDescription('The etherent mask address of NMU (network management unit)')
gateway = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 4), IpAddress()).setMaxAccess("readonly")
if mibBuilder.loadTexts: gateway.setStatus('current')
if mibBuilder.loadTexts: gateway.setDescription('The ethernet gateway address of NMU (network management unit)')
sysContact = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 5), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysContact.setStatus('current')
if mibBuilder.loadTexts: sysContact.setDescription('Mirror of the system.sysContact.0')
sysName = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 6), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysName.setStatus('current')
if mibBuilder.loadTexts: sysName.setDescription('Mirror of the system.sysName.0')
sysLocation = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 7), DisplayString()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: sysLocation.setStatus('current')
if mibBuilder.loadTexts: sysLocation.setDescription('Mirror of the system.sysLocation.0')
trapHost1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 8), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost1.setStatus('current')
if mibBuilder.loadTexts: trapHost1.setDescription("The first host's IP address used to receive trap messages, when set 0 it simply delete this entry. This applies to the trap host 2~4 below as well.")
trapHost2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 9), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost2.setStatus('current')
if mibBuilder.loadTexts: trapHost2.setDescription("The second host's IP address used to receive trap messages")
trapHost3 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 10), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost3.setStatus('current')
if mibBuilder.loadTexts: trapHost3.setDescription("The third host's IP address used to receive trap messages")
trapHost4 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 11), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: trapHost4.setStatus('current')
if mibBuilder.loadTexts: trapHost4.setDescription("The fourth host's IP address used to receive trap messages")
mcCmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2))
mcCmTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1), )
if mibBuilder.loadTexts: mcCmTable.setStatus('current')
if mibBuilder.loadTexts: mcCmTable.setDescription('MC Configuration table')
mcCmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcCmEntry.setStatus('current')
if mibBuilder.loadTexts: mcCmEntry.setDescription('MC Configuration entry definition')
mcShelfIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("master", 1), ("slave1", 2), ("slave2", 3), ("slave3", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcShelfIdx.setStatus('current')
if mibBuilder.loadTexts: mcShelfIdx.setDescription('Shelf index')
mcCardIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=NamedValues(("card01", 1), ("card02", 2), ("card03", 3), ("card04", 4), ("card05", 5), ("card06", 6), ("card07", 7), ("card08", 8), ("card09", 9), ("card10", 10), ("card11", 11), ("card12", 12), ("card13", 13), ("card14", 14), ("card15", 15), ("card16", 16)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcCardIdx.setStatus('current')
if mibBuilder.loadTexts: mcCardIdx.setDescription('Card index')
mcType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26))).clone(namedValues=NamedValues(("no-card", 0), ("ip113s", 1), ("ip113f", 2), ("mc-1g-e2o", 3), ("mc-1g-o2o", 4), ("mc-4-25g-oeo", 5), ("mc-ip175d", 6), ("mc-10g-oeo", 7), ("mc-10g-oee", 8), ("mc-FAN", 9), ("mc-10g-oeo-1r", 10), ("mc-2-5g", 11), ("mc-40g-oeo", 12), ("mc-2-5g-t", 13), ("mc-2-5g-f", 14), ("mc-2-5g-mux-t", 15), ("mc-2-5g-mux-f", 16), ("mc-1g-e2o-backup", 17), ("mc-e1-1sfp", 18), ("mc-e1-2sfp", 19), ("mc-100m-sfp", 20), ("mc-1g-o2o-backup", 21), ("mc-cwdm-4", 22), ("mc-cwdm-8", 23), ("mc-10g-oeo-2r", 24), ("mc-qca8334", 25), ("mc-e1t1", 26)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcType.setStatus('current')
if mibBuilder.loadTexts: mcType.setDescription("Center card's type")
mcTransceiverMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("bidi", 1), ("duplex-fiber", 2), ("sfp", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTransceiverMode.setStatus('current')
if mibBuilder.loadTexts: mcTransceiverMode.setDescription("Center card's optical transceiver mode. 100M card support bidi/duplex-fiber; 1G card support bidi/duplex-fiber/sfp. Once sfp is given, the following mcTransceiverDist should be ignored.")
mcTransceiverDist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 5), Integer32().subtype(subtypeSpec=ValueRangeConstraint(1, 120))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTransceiverDist.setStatus('current')
if mibBuilder.loadTexts: mcTransceiverDist.setDescription("Center card's optical transceiver distance, 1 means 550m for duplex-fiber mode in case of 1G card, otherwise it represents the real distance (unit of km).")
mcPortState = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("locked", 1), ("unlocked", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcPortState.setStatus('current')
if mibBuilder.loadTexts: mcPortState.setDescription("Center card's port status, locked or unlocked")
mcTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcTransmitMode.setDescription("Center card's transmmit mode")
mcCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcCurWorkMode.setDescription("Center card's current work mode")
mcCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcCfgWorkMode.setDescription("Center card's configurable work mode")
mcLFPCfg = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcLFPCfg.setStatus('current')
if mibBuilder.loadTexts: mcLFPCfg.setDescription('Remote fault detect function, valid only on center MC card')
mcUpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 11), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcUpStream.setStatus('current')
if mibBuilder.loadTexts: mcUpStream.setDescription("Center card's up stream of MC")
mcDownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 12), Gauge32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcDownStream.setStatus('current')
if mibBuilder.loadTexts: mcDownStream.setDescription("Center card's down stream of MC")
mcTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxlink.setStatus('current')
if mibBuilder.loadTexts: mcTxlink.setDescription("Center card's electrical port's link status")
mcFxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcFxlink.setStatus('current')
if mibBuilder.loadTexts: mcFxlink.setDescription("Center card's optical port's link status")
mcHWLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWLFP.setStatus('current')
if mibBuilder.loadTexts: mcHWLFP.setDescription("Center card's HW LFP, not applicable for 1G card")
mcHWTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcHWTransmitMode.setDescription("Center card's HW transmit mode, not applicable for 1G card")
mcHWWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcHWWorkMode.setDescription("Center card's HW work mode, not applicable for 1G card")
mcHWRmtCtrlMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcHWRmtCtrlMode.setStatus('current')
if mibBuilder.loadTexts: mcHWRmtCtrlMode.setDescription("Center card's HW remote control mode (only valid for local card). the disable mode indicates that all SET operations must be prohibited")
mcNtwSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcNtwSfpExist.setDescription("Center 1G card's Network SFP indication")
mcAccSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcAccSfpExist.setDescription("Center 1G card's Access SFP indication, applicable only for O2O type")
mcUtility = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("idle", 1), ("reset", 2), ("default", 3), ("set2hw", 4), ("not-support", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcUtility.setStatus('current')
if mibBuilder.loadTexts: mcUtility.setDescription('reset, default to factory, set to HW word, etc...')
mcRmtDetect = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("no-remote", 0), ("yes", 1), ("not-support", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtDetect.setStatus('current')
if mibBuilder.loadTexts: mcRmtDetect.setDescription('An identifier to indicate if there is a remote MC currently connecting to system or not')
mcRmtType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26))).clone(namedValues=NamedValues(("no-card", 0), ("ip113sr", 1), ("ip113f", 2), ("mc-1g-e2or", 3), ("mc-1g-o2or", 4), ("mc-4-25g-oeor", 5), ("mc-ip175dr", 6), ("mc-10g-oeor", 7), ("mc-10g-oeer", 8), ("mc-FANr", 9), ("mc-10g-oeo-1rr", 10), ("mc-2-5gr", 11), ("mc-40g-oeor", 12), ("mc-2-5g-tr", 13), ("mc-2-5g-fr", 14), ("mc-2-5g-mux-tr", 15), ("mc-2-5g-mux-fr", 16), ("mc-1g-e2o-backupr", 17), ("mc-e1-1sfpr", 18), ("mc-e1-2sfpr", 19), ("mc-100m-sfpr", 20), ("mc-1g-o2o-backupr", 21), ("mc-cwdmr-4", 22), ("mc-cwdmr-8", 23), ("mc-10g-oeo-2rr", 24), ("mc-qca8334r", 25), ("mc-e1t1r", 26)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtType.setStatus('current')
if mibBuilder.loadTexts: mcRmtType.setDescription("Remote card's type")
mcRmtTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 24), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtTransmitMode.setDescription("Remote card's transmmit mode")
mcRmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 25), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtCurWorkMode.setDescription("Remote card's current work mode")
mcRmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 26), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtCfgWorkMode.setDescription("Remote card's configurable work mode")
mcRmtLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 27), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtLFP.setStatus('current')
if mibBuilder.loadTexts: mcRmtLFP.setDescription("Remote card's LFP lamp state")
mcRmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 28), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcRmtTxlink.setDescription("Remote card's electrial port status")
mcRmtHWLFP = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 29), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWLFP.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWLFP.setDescription("Remote card's HW LFP, not applicable for 1G card")
mcRmtHWTransmitMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 30), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("cut-through", 1), ("store-forward", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWTransmitMode.setDescription("Remote card's HW transmit mode, not applicable for 1G card")
mcRmtHWWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 31), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmtHWWorkMode.setDescription("Remote card's HW work mode, not applicable for 1G card")
mcRmtLoopback = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 32), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmtLoopback.setDescription("Remote card's HW Loopback state")
mcRmtPwrDown = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 33), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("powerdown", 1), ("normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtPwrDown.setStatus('current')
if mibBuilder.loadTexts: mcRmtPwrDown.setDescription("Remote card's power down state")
mcRmtAccSfpExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 34), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtAccSfpExist.setStatus('current')
if mibBuilder.loadTexts: mcRmtAccSfpExist.setDescription("Remote 1G card's Access SFP indication, applicable only for O2O type")
mcRmtUtility = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 35), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("no-card", 0), ("idle", 1), ("reset", 2), ("default", 3), ("set2hw", 4), ("not-support", 5)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtUtility.setStatus('current')
if mibBuilder.loadTexts: mcRmtUtility.setDescription("Rmote cards's reset, default to factory, set to HW word, etc...")
mcCm1gSpecificObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2))
mcCm1gIpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1))
mcCm1gIpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1), )
if mibBuilder.loadTexts: mcCm1gIpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gIpTable.setDescription('MC 1G Ip address table')
mcCm1gIpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gIpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gIpEntry.setDescription('MC 1G Ip address entry definition')
mcLoOrRmtFg = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("local", 1), ("remote", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcLoOrRmtFg.setStatus('current')
if mibBuilder.loadTexts: mcLoOrRmtFg.setDescription('location index, local or remote')
mcIpAddr = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 2), IpAddress()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIpAddr.setStatus('current')
if mibBuilder.loadTexts: mcIpAddr.setDescription('The Ip address of the node')
mcCm1gSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2))
mcCm1gSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1), )
if mibBuilder.loadTexts: mcCm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gSfpTable.setDescription('MC 1G SFP table')
mcCm1gSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gSfpEntry.setDescription('MC 1G SFP entry definition')
getSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
sfpCompliance = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
sfpConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpConnector.setStatus('current')
if mibBuilder.loadTexts: sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
sfpTransCode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit1: Copper Module bit2: MultiMode bit3: MultiMode others: unsupported')
sfpSmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
sfpMmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
sfpCopperLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
sfpBrSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
sfpWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: sfpWavelength.setDescription('SFP laser wavelength (one word)')
sfpTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: sfpTemperature.setDescription('SFP temperature (one type, signed)')
sfpTranPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: sfpTranPower.setDescription('SFP tx power (one type, signed)')
sfpRecvPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: sfpRecvPower.setDescription('SFP rx power (one type, signed)')
sfpVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mcCm1gAccSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3))
mcCm1gAccSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1), )
if mibBuilder.loadTexts: mcCm1gAccSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcCm1gAccSfpTable.setDescription('MC 1G Access SFP table')
mcCm1gAccSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mcCm1gAccSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcCm1gAccSfpEntry.setDescription('MC 1G Access SFP entry definition')
getAccSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getAccSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getAccSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
accsfpCompliance = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpCompliance.setStatus('current')
if mibBuilder.loadTexts: accsfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
accsfpConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpConnector.setStatus('current')
if mibBuilder.loadTexts: accsfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
accsfpTransCode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTransCode.setStatus('current')
if mibBuilder.loadTexts: accsfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
accsfpSmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpSmLength.setStatus('current')
if mibBuilder.loadTexts: accsfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
accsfpMmLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpMmLength.setStatus('current')
if mibBuilder.loadTexts: accsfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
accsfpCopperLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: accsfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
accsfpBrSpeed = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: accsfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
accsfpWavelength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpWavelength.setStatus('current')
if mibBuilder.loadTexts: accsfpWavelength.setDescription('SFP laser wavelength (one word)')
accsfpTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTemperature.setStatus('current')
if mibBuilder.loadTexts: accsfpTemperature.setDescription('SFP temperature (one type, signed)')
accsfpTranPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpTranPower.setStatus('current')
if mibBuilder.loadTexts: accsfpTranPower.setDescription('SFP tx power (one type, signed)')
accsfpRecvPower = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 12), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: accsfpRecvPower.setDescription('SFP rx power (one type, signed)')
accsfpVoltage = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 13), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: accsfpVoltage.setStatus('current')
if mibBuilder.loadTexts: accsfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mcIP175DObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3))
mcIP175DCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1))
mcIP175DCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1), )
if mibBuilder.loadTexts: mcIP175DCardTable.setStatus('current')
if mibBuilder.loadTexts: mcIP175DCardTable.setDescription('MC IP175D Configuration table')
mcIP175DCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcIP175DCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcIP175DCardEntry.setDescription('MC Configuration entry definition')
mcIP175DVlanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Normal", 1), ("mode1", 2), ("mode2", 3), ("not-support", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DVlanMode.setStatus('current')
if mibBuilder.loadTexts: mcIP175DVlanMode.setDescription("Center card's vlan mode")
mcIP175DPortObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2))
mcIP175DPortTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1), )
if mibBuilder.loadTexts: mcIP175DPortTable.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortTable.setDescription('MC IP175D Configuration table')
mcIP175DPortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcIP175DPortIdx"))
if mibBuilder.loadTexts: mcIP175DPortEntry.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortEntry.setDescription('MC Configuration entry definition')
mcIP175DPortIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port1", 1), ("port2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DPortIdx.setStatus('current')
if mibBuilder.loadTexts: mcIP175DPortIdx.setDescription('Port index')
mcIP175DCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DCurWorkMode.setDescription("Center card's port current work mode")
mcIP175DCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DCfgWorkMode.setDescription("Center card's port configurable work mode")
mcIP175DUpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(64, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DUpStream.setStatus('current')
if mibBuilder.loadTexts: mcIP175DUpStream.setDescription("Center card's port up stream of MC")
mcIP175DDownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(64, 100000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DDownStream.setStatus('current')
if mibBuilder.loadTexts: mcIP175DDownStream.setDescription("Center card's port down stream of MC")
mcIP175DTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DTxlink.setStatus('current')
if mibBuilder.loadTexts: mcIP175DTxlink.setDescription("Center card's port 1 electrical port's link status")
mcIP175DRmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DRmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mcIP175DRmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcIP175DRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcIP175DRmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mcIP175DRmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcIP175DRmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcIP175DRmtTxlink.setDescription("Remote card's port electrial port status")
mc4_25G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4)).setLabel("mc4-25G-OEOObjects")
mc4_25G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1)).setLabel("mc4-25G-OEOCardObjects")
mc4_25G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1), ).setLabel("mc4-25G-OEOCardTable")
if mibBuilder.loadTexts: mc4_25G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOCardTable.setDescription('MC 4.25G OEO Configuration table')
mc4_25G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1), ).setLabel("mc4-25G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc4_25G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc4_25G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mc4_25G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mc4_25G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOLoopback.setDescription("card's Loopback state")
mc4_25G_OEOWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOWorkMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOWorkMode.setDescription("card's Work Mode")
mc4_25G_OEONtwPD = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc4-25G-OEONtwPD").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEONtwPD.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEONtwPD.setDescription("Center card's network side PD status")
mc4_25G_OEOAccPD = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOAccPD").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOAccPD.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOAccPD.setDescription("Center card's access side PD status")
mc4_25G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mc4-25G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc4_25G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc4_25G_OEOHWWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mc4-25G-OEOHWWorkMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc4_25G_OEO_Test_Lock = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Lock", 1), ("Unlock", 2)))).setLabel("mc4-25G-OEO-Test-Lock").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc4_25G_OEO_Test_Error_Counter = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 11), Integer32()).setLabel("mc4-25G-OEO-Test-Error-Counter").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc4_25G_OEO_Test_Continue_Time = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 12), Integer32()).setLabel("mc4-25G-OEO-Test-Continue-Time").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc4_25G_OEO_Test_Result = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Pass", 1), ("Error", 2)))).setLabel("mc4-25G-OEO-Test-Result").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Test_Result.setDescription('test result')
mc4_25G_OEO_Start_Test = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Start", 1), ("Stop", 2)))).setLabel("mc4-25G-OEO-Start-Test").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Start_Test.setDescription('start test and stop test')
mc4_25G_OEO_Get_Test_Rst = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("Get", 1)))).setLabel("mc4-25G-OEO-Get-Test-Rst").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc4_25G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts: mc4_25G_OEO_Get_Test_Rst.setDescription('get test result')
mcRmt4_25G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mcRmt4_25G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mcRmt4_25G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOLoopback.setDescription("card's Loopback state")
mcRmt4_25G_OEOWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOWorkMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOWorkMode.setDescription("card's Work Mode")
mcRmt4_25G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=NamedValues(("Infini", 1), ("STM16", 2), ("STM4", 3), ("STM1", 4), ("FCx4", 5), ("FCx2", 6), ("FCx1", 7), ("GE", 8), ("FE", 9), ("ESCOM", 10), ("not-support", 11)))).setLabel("mcRmt4-25G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mcRmt4_25G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mcRmt4_25G_OEOHWWorkMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("repeater", 1), ("retimer", 2), ("not-support", 3)))).setLabel("mcRmt4-25G-OEOHWWorkMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc10G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5)).setLabel("mc10G-OEOObjects")
mc10G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1)).setLabel("mc10G-OEOCardObjects")
mc10G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1), ).setLabel("mc10G-OEOCardTable")
if mibBuilder.loadTexts: mc10G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOCardTable.setDescription('MC 10G OEO Configuration table')
mc10G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1), ).setLabel("mc10G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc10G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOLoopback.setDescription("card's Loopback state")
mc10G_OEOSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEOSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOSFP1.setDescription("Center card's SFP1 link status")
mc10G_OEOSFP2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEOSFP2").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOSFP2.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOSFP2.setDescription("Center card's SFP2 link status")
mc10G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mc10G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc10G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc10G_OEO_Test_Lock = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Lock", 1), ("Unlock", 2)))).setLabel("mc10G-OEO-Test-Lock").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc10G_OEO_Test_Error_Counter = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 9), Integer32()).setLabel("mc10G-OEO-Test-Error-Counter").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc10G_OEO_Test_Continue_Time = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 10), Integer32()).setLabel("mc10G-OEO-Test-Continue-Time").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc10G_OEO_Test_Result = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Pass", 1), ("Error", 2)))).setLabel("mc10G-OEO-Test-Result").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Test_Result.setDescription('test result')
mc10G_OEO_Start_Test = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("Start", 1), ("Stop", 2)))).setLabel("mc10G-OEO-Start-Test").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Start_Test.setDescription('start test and stop test')
mc10G_OEO_Get_Test_Rst = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1))).clone(namedValues=NamedValues(("Get", 1)))).setLabel("mc10G-OEO-Get-Test-Rst").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_Get_Test_Rst.setDescription('get test result')
mcRmt10G_OEOCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmt10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOLoopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmt10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOLoopback.setDescription("card's Loopback state")
mcRmt10G_OEOHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 4))).clone(namedValues=NamedValues(("LAN", 1), ("WAN", 2), ("not-support", 4)))).setLabel("mcRmt10G-OEOHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOHWSpdMode.setDescription("Center card's HW speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mcRmt10G_OEOHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mcRmt10G_OEOSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mcRmt10G-OEOSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEOSFP1.setDescription("card's SFP1 link status")
mc10G_OEO_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_accType.setDescription('')
mc10G_OEO_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO_ntwType.setDescription('')
mcRmt10G_OEO_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mcRmt10G-OEO-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEO_accType.setDescription('')
mcRmt10G_OEO_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 23), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mcRmt10G-OEO-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmt10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts: mcRmt10G_OEO_ntwType.setDescription('')
mc10G_OEEObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6)).setLabel("mc10G-OEEObjects")
mc10G_OEECardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1)).setLabel("mc10G-OEECardObjects")
mc10G_OEECardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1), ).setLabel("mc10G-OEECardTable")
if mibBuilder.loadTexts: mc10G_OEECardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEECardTable.setDescription('MC 10G OEE Configuration table')
mc10G_OEECardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1), ).setLabel("mc10G-OEECardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEECardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEECardEntry.setDescription('MC Configuration entry definition')
mc10G_OEETxlink = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEETxlink").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEETxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEETxlink.setDescription("Center card's electrical port's link status")
mc10G_OEEFxlink = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEEFxlink").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEEFxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEEFxlink.setDescription("Center card's optical port's link status")
mc10G_OEECurSpd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("m10G-Master", 7), ("m10G-Slave", 8), ("not-support", 9)))).setLabel("mc10G-OEECurSpd").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEECurSpd.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEECurSpd.setDescription("Local card's current spd")
mc10G_OEELoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEELoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEELoopMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEELoopMode.setDescription("card's Loopback state")
mc10G_OEESpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 7, 8))).clone(namedValues=NamedValues(("auto", 1), ("m10G-Master", 7), ("m10G-Slave", 8)))).setLabel("mc10G-OEESpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEESpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEESpdMode.setDescription("card's speed mode")
mc10G_OEEHWLoopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEEHWLoopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEEHWLoopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEEHWLoopback.setDescription("card's Loopback state")
mc10G_OEE_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEE-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEE_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEE_ntwType.setDescription('')
mc10G_OEE_checkResult = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 8), Integer32()).setLabel("mc10G-OEE-checkResult").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEE_checkResult.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEE_checkResult.setDescription('test result')
mcFanObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7))
mcFanCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1))
mcFanCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1), )
if mibBuilder.loadTexts: mcFanCardTable.setStatus('current')
if mibBuilder.loadTexts: mcFanCardTable.setDescription('MC fan card table')
mcFanCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcFanCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcFanCardEntry.setDescription('MC Configuration entry definition')
mcFanStatus = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Normal", 1), ("Abnormal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcFanStatus.setStatus('mandatory')
if mibBuilder.loadTexts: mcFanStatus.setDescription("Center card's fan status")
mc40G_OEOObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8)).setLabel("mc40G-OEOObjects")
mc40G_OEOCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1)).setLabel("mc40G-OEOCardObjects")
mc40G_OEOCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1), ).setLabel("mc40G-OEOCardTable")
if mibBuilder.loadTexts: mc40G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOCardTable.setDescription('MC 40G OEO Configuration table')
mc40G_OEOCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1), ).setLabel("mc40G-OEOCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc40G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc40G_OEOQsfp1Lane1_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane1-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane1_link.setDescription("Center card's Qsfp1 Lane1 link status")
mc40G_OEOQsfp1Lane2_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane2-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane2_link.setDescription("Center card's Qsfp1 Lane2 link status")
mc40G_OEOQsfp1Lane3_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane3-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane3_link.setDescription("Center card's Qsfp1 Lane3 link status")
mc40G_OEOQsfp1Lane4_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp1Lane4-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp1Lane4_link.setDescription("Center card's Qsfp1 Lane4 link status")
mc40G_OEOQsfp2Lane1_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane1-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane1_link.setDescription("Center card's Qsfp2 Lane1 link status")
mc40G_OEOQsfp2Lane2_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane2-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane2_link.setDescription("Center card's Qsfp2 Lane2 link status")
mc40G_OEOQsfp2Lane3_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane3-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane3_link.setDescription("Center card's Qsfp2 Lane3 link status")
mc40G_OEOQsfp2Lane4_link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc40G-OEOQsfp2Lane4-link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOQsfp2Lane4_link.setDescription("Center card's Qsfp2 Lane4 link status")
mc40G_OEOLane1LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane1LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane1LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane1LoopMode.setDescription("card's Lane1 Loopback state")
mc40G_OEOLane2LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane2LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane2LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane2LoopMode.setDescription("card's Lane2 Loopback state")
mc40G_OEOLane3LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane3LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane3LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane3LoopMode.setDescription("card's Lane3 Loopback state")
mc40G_OEOLane4LoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOLane4LoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLane4LoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLane4LoopMode.setDescription("card's Lane4 Loopback state")
mc40G_OEOLoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5))).clone(namedValues=NamedValues(("all", 1), ("line-side-enable", 2), ("host-side-enable", 3), ("disable", 4), ("not-support", 5)))).setLabel("mc40G-OEOLoopMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOLoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOLoopMode.setDescription("card's Loopback state")
mc40G_OEOSpeedMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=NamedValues(("no-card", 0), ("mc40GSpeed-1", 1), ("mc40GSpeed-2", 2), ("mc40GSpeed-3", 3), ("mc40GSpeed-4", 4), ("mc40GSpeed-5", 5), ("mc40GSpeed-6", 6), ("mc40GSpeed-7", 7), ("mc40GSpeed-8", 8), ("mc40GSpeed-9", 9), ("mc40GSpeed-10", 10), ("mc40GSpeed-11", 11), ("mc40GSpeed-12", 12), ("mc40GSpeed-13", 13), ("not-support", 14)))).setLabel("mc40G-OEOSpeedMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc40G_OEOSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps) speed13: 4X10G: 10GInfiniband(10000.00Mbps)')
mc40G_OEOHWLoopMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("line-side-enable", 1), ("host-side-enable", 2), ("disable", 3), ("not-support", 4)))).setLabel("mc40G-OEOHWLoopMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOHWLoopMode.setStatus('current')
if mibBuilder.loadTexts: mc40G_OEOHWLoopMode.setDescription("card's HW Loopback state")
mc40G_OEOHWSpeedMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=NamedValues(("no-card", 0), ("mc40GSpeed-1", 1), ("mc40GSpeed-2", 2), ("mc40GSpeed-3", 3), ("mc40GSpeed-4", 4), ("mc40GSpeed-5", 5), ("mc40GSpeed-6", 6), ("mc40GSpeed-7", 7), ("mc40GSpeed-8", 8), ("mc40GSpeed-9", 9), ("mc40GSpeed-10", 10), ("mc40GSpeed-11", 11), ("mc40GSpeed-12", 12), ("not-support", 13)))).setLabel("mc40G-OEOHWSpeedMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc40G_OEOHWSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc40G_OEOHWSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps)')
mcQsfpSpecificObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9))
mcNtwQSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1))
mcNtwQSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1), )
if mibBuilder.loadTexts: mcNtwQSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcNtwQSfpTable.setDescription('MC Ntw QSFP table')
mcNtwQSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcNtwQSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcNtwQSfpEntry.setDescription('MC Ntw QSFP entry definition')
getNtwQSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getNtwQSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getNtwQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfpNtwConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwConnector.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfpNtwTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTemperature.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTemperature.setDescription('SFP temperature (one type, signed)')
qsfpNtwTxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower1.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower2.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower3.setDescription('SFP tx power (one type, signed)')
qsfpNtwTxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwTxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwTxPower4.setDescription('SFP tx power (one type, signed)')
qsfpNtwRxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower1.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower2.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower3.setDescription('SFP rx power (one type, signed)')
qsfpNtwRxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpNtwRxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpNtwRxPower4.setDescription('SFP rx power (one type, signed)')
mcAccQSfpObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2))
mcAccQSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1), )
if mibBuilder.loadTexts: mcAccQSfpTable.setStatus('current')
if mibBuilder.loadTexts: mcAccQSfpTable.setDescription('MC Acc QSFP table')
mcAccQSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcAccQSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mcAccQSfpEntry.setDescription('MC Acc QSFP entry definition')
getAccQSfpCmd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: getAccQSfpCmd.setStatus('current')
if mibBuilder.loadTexts: getAccQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfpAccConnector = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 2), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccConnector.setStatus('current')
if mibBuilder.loadTexts: qsfpAccConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfpAccTemperature = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 3), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTemperature.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTemperature.setDescription('SFP temperature (one type, signed)')
qsfpAccTxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 4), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower1.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 5), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower2.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 6), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower3.setDescription('SFP tx power (one type, signed)')
qsfpAccTxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 7), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccTxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpAccTxPower4.setDescription('SFP tx power (one type, signed)')
qsfpAccRxPower1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 8), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower1.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower1.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 9), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower2.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower2.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 10), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower3.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower3.setDescription('SFP rx power (one type, signed)')
qsfpAccRxPower4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 11), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: qsfpAccRxPower4.setStatus('current')
if mibBuilder.loadTexts: qsfpAccRxPower4.setDescription('SFP rx power (one type, signed)')
mc2_5GMCObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10)).setLabel("mc2-5GMCObjects")
mc2_5GMCSFP3Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1)).setLabel("mc2-5GMCSFP3Objects")
mc2_5Cm1gSfpTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1), ).setLabel("mc2-5Cm1gSfpTable")
if mibBuilder.loadTexts: mc2_5Cm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts: mc2_5Cm1gSfpTable.setDescription('MC 1G SFP table')
mc2_5Cm1gSfpEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1), ).setLabel("mc2-5Cm1gSfpEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mc2_5Cm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts: mc2_5Cm1gSfpEntry.setDescription('MC 1G SFP entry definition')
mc2_5g_getSfpCmd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setLabel("mc2-5g-getSfpCmd").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc2_5g_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc2_5g_sfpCompliance = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 2), Integer32()).setLabel("mc2-5g-sfpCompliance").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc2_5g_sfpConnector = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 3), Integer32()).setLabel("mc2-5g-sfpConnector").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpConnector.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc2_5g_sfpTransCode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 4), Integer32()).setLabel("mc2-5g-sfpTransCode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc2_5g_sfpSmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 5), Integer32()).setLabel("mc2-5g-sfpSmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc2_5g_sfpMmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 6), Integer32()).setLabel("mc2-5g-sfpMmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc2_5g_sfpCopperLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 7), Integer32()).setLabel("mc2-5g-sfpCopperLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc2_5g_sfpBrSpeed = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 8), Integer32()).setLabel("mc2-5g-sfpBrSpeed").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc2_5g_sfpWavelength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 9), Integer32()).setLabel("mc2-5g-sfpWavelength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc2_5g_sfpTemperature = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 10), Integer32()).setLabel("mc2-5g-sfpTemperature").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc2_5g_sfpTranPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 11), Integer32()).setLabel("mc2-5g-sfpTranPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc2_5g_sfpRecvPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 12), Integer32()).setLabel("mc2-5g-sfpRecvPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc2_5g_sfpVoltage = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 13), Integer32()).setLabel("mc2-5g-sfpVoltage").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5g_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: mc2_5g_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc2_5GMCCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2)).setLabel("mc2-5GMCCardObjects")
mc2_5GMCCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1), ).setLabel("mc2-5GMCCardTable")
if mibBuilder.loadTexts: mc2_5GMCCardTable.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCCardTable.setDescription('MC 2-5GMC Configuration table')
mc2_5GMCCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1), ).setLabel("mc2-5GMCCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc2_5GMCCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCCardEntry.setDescription('MC Configuration entry definition')
mc2_5GMCSfp3Exist = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setLabel("mc2-5GMCSfp3Exist").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCSfp3Exist.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCSfp3Exist.setDescription("Center 1G card's SFP3 indication")
mc2_5GMCPort1link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort1link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort1link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort1link.setDescription("Center card's electrical port1's link status")
mc2_5GMCPort2link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort2link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort2link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort2link.setDescription("Center card's electrical port2's link status")
mc2_5GMCPort3link = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc2-5GMCPort3link").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc2_5GMCPort3link.setStatus('current')
if mibBuilder.loadTexts: mc2_5GMCPort3link.setDescription("Center card's electrical port3's link status")
mcE1Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11))
mcE1CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1))
mcE1CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1), )
if mibBuilder.loadTexts: mcE1CardTable.setStatus('current')
if mibBuilder.loadTexts: mcE1CardTable.setDescription('MC E1 + Eth Configuration table')
mcE1CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcE1CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcE1CardEntry.setDescription('MC Configuration entry definition')
mcE1Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1Txlink.setDescription("Center card's electrical port's link status")
mcE1TxCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1TxCurWorkMode.setDescription("Center card's current work mode")
mcE1SFP1Link = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1SFP1Link.setDescription("Center card's SFP1 port's link status")
mcE1Port1LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1LOS.setDescription("card's E1 Port1 Los state")
mcE1Port1AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1AIS.setDescription("card's E1 Port1 AIS state")
mcE1Port1CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port1CV.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1CV.setDescription("card's E1 Port1 CV state")
mcE1Port2LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2LOS.setDescription("card's E1 Port2 Los state")
mcE1Port2AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2AIS.setDescription("card's E1 Port2 AIS state")
mcE1Port2CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1Port2CV.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2CV.setDescription("card's E1 Port2 CV state")
mcE1Port1Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts: mcE1Port1Loop.setDescription("card's Port1 Loopback state")
mcE1Port2Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts: mcE1Port2Loop.setDescription("card's Port2 Loopback state")
mcRmtE1Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1Txlink.setDescription("Remote card's electrical port's link status")
mcRmtE1TxCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1TxCurWorkMode.setDescription("Remote card's current work mode")
mcRmtE1SFP1Link = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts: mcRmtE1SFP1Link.setDescription("Remote card's SFP1 port's link status")
mcRmtE1Port1LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1LOS.setDescription("Remote card's E1 Port1 Los state")
mcRmtE1Port1AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1AIS.setDescription("Remote card's E1 Port1 AIS state")
mcRmtE1Port1CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port1CV.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1CV.setDescription("Remote card's E1 Port1 CV state")
mcRmtE1Port2LOS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2LOS.setDescription("Remote card's E1 Port2 Los state")
mcRmtE1Port2AIS = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2AIS.setDescription("Remote card's E1 Port2 AIS state")
mcRmtE1Port2CV = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("alarm", 1), ("e1normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRmtE1Port2CV.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2CV.setDescription("Remote card's E1 Port2 CV state")
mcRmtE1Port1Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 21), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port1Loop.setDescription("Remote card's Port1 Loopback state")
mcRmtE1Port2Loop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 22), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("external", 1), ("internal", 2), ("disabled", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcRmtE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts: mcRmtE1Port2Loop.setDescription("Remote card's Port2 Loopback state")
mc1GE2OObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12))
mc1GE2OCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1))
mc1GE2OCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1), )
if mibBuilder.loadTexts: mc1GE2OCardTable.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OCardTable.setDescription('MC E2O Fiber backup Configuration table')
mc1GE2OCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc1GE2OCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OCardEntry.setDescription('MC Configuration entry definition')
mc1GE2OPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1GE2OPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1GE2OTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OTxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2OTxlink.setDescription("Center card's electrical port's link status")
mc1GE2OPortPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1GE2OPortPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPortPri.setDescription("Center card's Port Pri state")
mc1GE2OPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1GE2OPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1GE2OPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2OPortHWPri.setDescription("Center card's Port Hardward Pri state")
mc1GE2ORmtPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1GE2ORmtPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1GE2ORmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtTxlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GE2ORmtTxlink.setDescription("Remote card's electrical port's link status")
mc1GE2ORmtPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1GE2ORmtPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1GE2ORmtPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GE2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GE2ORmtPortHWPri.setDescription("Remote card's Port Hardward Pri state")
mc1GO2OObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13))
mc1GO2OCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1))
mc1GO2OCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1), )
if mibBuilder.loadTexts: mc1GO2OCardTable.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OCardTable.setDescription('MC O2O Fiber backup Configuration table')
mc1GO2OCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc1GO2OCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OCardEntry.setDescription('MC Configuration entry definition')
mc1GO2OPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1GO2OPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1GO2OPort3SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2OPort3SFPlink.setDescription("Center card's port3 SFP's link status")
mc1GO2OPortPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1GO2OPortPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPortPri.setDescription("Center card's Port Pri state")
mc1GO2OPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1GO2OPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1GO2OPort3SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort3SFPExist.setDescription('O2O Port3 SFP indication')
mc1GO2OPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPortHWPri.setDescription("Local card's Port Hardward Pri state")
mc1GO2OPort3HWSpd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("M100", 1), ("M1000", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2OPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OPort3HWSpd.setDescription("Local card's Port3 Hardward Speed state")
mc1GO2ORmtPort1SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1GO2ORmtPort2SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1GO2ORmtPort3SFPlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPlink.setDescription("Remote card's port3 SFP's link status")
mc1GO2ORmtPort1SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1GO2ORmtPort2SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4))).clone(namedValues=NamedValues(("no-card", 0), ("inserted", 1), ("removed", 2), ("na", 3), ("support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1GO2ORmtPort3SFPExist = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("inserted", 1), ("removed", 2), ("na", 3), ("not-support", 4)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort3SFPExist.setDescription("Remote card's SFP3 indication")
mc1GO2ORmtPortHWPri = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Port1", 1), ("Port2", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPortHWPri.setDescription("Remot card's Port Hardward Pri state")
mc1GO2ORmtPort3HWSpd = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("M100", 1), ("M1000", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1GO2ORmtPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts: mc1GO2ORmtPort3HWSpd.setDescription("Remot card's Port3 Hardward Speed state")
mc1GO2OSFP3Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2))
mc1GO2OSfp3Table = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1), )
if mibBuilder.loadTexts: mc1GO2OSfp3Table.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OSfp3Table.setDescription('MC 1G SFP table')
mc1GO2OSfp3Entry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcLoOrRmtFg"))
if mibBuilder.loadTexts: mc1GO2OSfp3Entry.setStatus('current')
if mibBuilder.loadTexts: mc1GO2OSfp3Entry.setDescription('MC 1G O2O SFP3 entry definition')
mc1go2o_getSfpCmd = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2))).clone(namedValues=NamedValues(("na", 0), ("local", 1), ("remote", 2)))).setLabel("mc1go2o-getSfpCmd").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc1go2o_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc1go2o_sfpCompliance = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 2), Integer32()).setLabel("mc1go2o-sfpCompliance").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc1go2o_sfpConnector = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 3), Integer32()).setLabel("mc1go2o-sfpConnector").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpConnector.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc1go2o_sfpTransCode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 4), Integer32()).setLabel("mc1go2o-sfpTransCode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc1go2o_sfpSmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 5), Integer32()).setLabel("mc1go2o-sfpSmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc1go2o_sfpMmLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 6), Integer32()).setLabel("mc1go2o-sfpMmLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc1go2o_sfpCopperLength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 7), Integer32()).setLabel("mc1go2o-sfpCopperLength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc1go2o_sfpBrSpeed = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 8), Integer32()).setLabel("mc1go2o-sfpBrSpeed").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc1go2o_sfpWavelength = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 9), Integer32()).setLabel("mc1go2o-sfpWavelength").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc1go2o_sfpTemperature = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 10), Integer32()).setLabel("mc1go2o-sfpTemperature").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc1go2o_sfpTranPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 11), Integer32()).setLabel("mc1go2o-sfpTranPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc1go2o_sfpRecvPower = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 12), Integer32()).setLabel("mc1go2o-sfpRecvPower").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc1go2o_sfpVoltage = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 13), Integer32()).setLabel("mc1go2o-sfpVoltage").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc1go2o_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts: mc1go2o_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc10GOEO1RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14))
mc10GOEO1RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1))
mc10GOEO1RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1), )
if mibBuilder.loadTexts: mc10GOEO1RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO1RCardTable.setDescription('MC 10G OEO 1R Configuration table')
mc10GOEO1RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEO1RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO1RCardEntry.setDescription('MC Configuration entry definition')
mcAccXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mcAccXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mcAccXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcAccXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1WaveLength.setDescription("XFP1's wavelength")
mcNtwXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mcNtwXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mcNtwXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcNtwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2WaveLength.setDescription("XFP2's wavelength")
mcAccXFP1TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcAccXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mcAccXFP1TunableType.setDescription("XFP1's wavelength tunable type")
mcNtwXFP2TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcNtwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mcNtwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mc10GOEO3RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15))
mc10GOEO3RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1))
mc10GOEO3RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1), )
if mibBuilder.loadTexts: mc10GOEO3RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO3RCardTable.setDescription('MC 10G OEO 3R tunable wavelength Configuration table')
mc10GOEO3RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEO3RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEO3RCardEntry.setDescription('MC Configuration entry definition')
accXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
accXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
accXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: accXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1WaveLength.setDescription("XFP1's wavelength")
ntwXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
ntwXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
ntwXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 6), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: ntwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2WaveLength.setDescription("XFP2's wavelength")
accXFP1TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: accXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: accXFP1TunableType.setDescription("XFP1's wavelength tunable type")
ntwXFP2TunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: ntwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts: ntwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mcCWDMObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16))
mcCWDMCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1))
mcCWDMCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1), )
if mibBuilder.loadTexts: mcCWDMCardTable.setStatus('current')
if mibBuilder.loadTexts: mcCWDMCardTable.setDescription('MC CWDM table')
mcCWDMCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcCWDMCardEntry.setStatus('current')
if mibBuilder.loadTexts: mcCWDMCardEntry.setDescription('MC Configuration entry definition')
cwdmWavelengthCount = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 1), Integer32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelengthCount.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelengthCount.setDescription('wavelength count')
cwdmWavelength1 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 2), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength1.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength1.setDescription('CWDM Card wavelenth 1')
cwdmWavelength2 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 3), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength2.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength2.setDescription('CWDM Card wavelenth 2')
cwdmWavelength3 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 4), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength3.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength3.setDescription('CWDM Card wavelenth 3')
cwdmWavelength4 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 5), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength4.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength4.setDescription('CWDM Card wavelenth 4')
cwdmWavelength5 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 6), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength5.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength5.setDescription('CWDM Card wavelenth 5')
cwdmWavelength6 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 7), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength6.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength6.setDescription('CWDM Card wavelenth 6')
cwdmWavelength7 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 8), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength7.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength7.setDescription('CWDM Card wavelenth 7')
cwdmWavelength8 = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: cwdmWavelength8.setStatus('mandatory')
if mibBuilder.loadTexts: cwdmWavelength8.setDescription('CWDM Card wavelenth 8')
mc10G_OEO2RObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17)).setLabel("mc10G-OEO2RObjects")
mc10G_OEO2RCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1)).setLabel("mc10G-OEO2RCardObjects")
mc10G_OEO2RCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1), ).setLabel("mc10G-OEO2RCardTable")
if mibBuilder.loadTexts: mc10G_OEO2RCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RCardTable.setDescription('MC 10G OEO 2R Configuration table')
mc10G_OEO2RCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1), ).setLabel("mc10G-OEO2RCardEntry").setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10G_OEO2RCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RCardEntry.setDescription('MC Configuration entry definition')
mc10G_OEO2RCurSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RCurSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RCurSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RCfgSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RCfgSpdMode").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RCfgSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RSFP1Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP1Loopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP1Loopback.setDescription("card's SFP1 Loopback state")
mc10G_OEO2RSFP2Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP2Loopback").setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10G_OEO2RSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP2Loopback.setDescription("card's SFP2 Loopback state")
mc10G_OEO2RSFP1 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP1").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RSFP1.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP1.setDescription("Center card's SFP1 link status")
mc10G_OEO2RSFP2 = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RSFP2").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RSFP2.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RSFP2.setDescription("Center card's SFP2 link status")
mc10G_OEO2RHWSpdMode = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Speed85", 1), ("Speed103to117", 2), ("Speed995to113", 3), ("not-support", 4)))).setLabel("mc10G-OEO2RHWSpdMode").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSpdMode.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10G_OEO2RHWSFP1Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RHWSFP1Loopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP1Loopback.setDescription("card's HW Loopback state")
mc10G_OEO2RHWSFP2Loopback = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setLabel("mc10G-OEO2RHWSFP2Loopback").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2RHWSFP2Loopback.setDescription("card's HW Loopback state")
mc10G_OEO2RVersion = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 10), DisplayString()).setLabel("mc10G-OEO2RVersion").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2RVersion.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2RVersion.setDescription('MC version')
mc10GXFP1WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mc10GXFP1WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mc10GXFP1WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 13), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10GXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP1WaveLength.setDescription("XFP1's wavelength")
mc10GXFP2WaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mc10GXFP2WaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mc10GXFP2WaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 16), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mc10GXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: mc10GXFP2WaveLength.setDescription("XFP2's wavelength")
mc10G_OEO2R_accType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 17), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO2R-accType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_accType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2R_accType.setDescription('')
mc10G_OEO2R_ntwType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 18), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("XFP", 1), ("SFP", 2), ("unknow", 3)))).setLabel("mc10G-OEO2R-ntwType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_ntwType.setStatus('current')
if mibBuilder.loadTexts: mc10G_OEO2R_ntwType.setDescription('')
mc10G_OEO2R_accTunableType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 19), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setLabel("mc10G-OEO2R-accTunableType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_accTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2R_accTunableType.setDescription("XFP1's wavelength tunable type")
mc10G_OEO2R_ntwTunableType = MibScalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 20), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setLabel("mc10G-OEO2R-ntwTunableType").setMaxAccess("readonly")
if mibBuilder.loadTexts: mc10G_OEO2R_ntwTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: mc10G_OEO2R_ntwTunableType.setDescription("XFP2's wavelength tunable type")
mcQCA8334Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18))
mcQCA8334CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1))
mcQCA8334CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1), )
if mibBuilder.loadTexts: mcQCA8334CardTable.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334CardTable.setDescription('MC QCA8334 Configuration table')
mcQCA8334CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcQCA8334CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334CardEntry.setDescription('MC Configuration entry definition')
mcQCA8334VlanMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4))).clone(namedValues=NamedValues(("Normal", 1), ("mode1", 2), ("mode2", 3), ("not-support", 4)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334VlanMode.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334VlanMode.setDescription("Center card's vlan mode")
mcQCA8334PortObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2))
mcQCA8334PortTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1), )
if mibBuilder.loadTexts: mcQCA8334PortTable.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortTable.setDescription('MC QCA8334 Configuration table')
mcQCA8334PortEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"), (0, "XXX-MIB", "mcQCA8334PortIdx"))
if mibBuilder.loadTexts: mcQCA8334PortEntry.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortEntry.setDescription('MC Configuration entry definition')
mcQCA8334PortIdx = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2))).clone(namedValues=NamedValues(("port1", 1), ("port2", 2)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334PortIdx.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334PortIdx.setDescription('Port index')
mcQCA8334CurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334CurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334CurWorkMode.setDescription("Center card's port current work mode")
mcQCA8334CfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334CfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334CfgWorkMode.setDescription("Center card's port configurable work mode")
mcQCA8334UpStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 4), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(32, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334UpStream.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334UpStream.setDescription("Center card's port up stream of MC")
mcQCA8334DownStream = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 5), Gauge32().subtype(subtypeSpec=ValueRangeConstraint(32, 1000000))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334DownStream.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334DownStream.setDescription("Center card's port down stream of MC")
mcQCA8334Txlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334Txlink.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334Txlink.setDescription("Center card's port 1 electrical port's link status")
mcQCA8334RmtCurWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334RmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334RmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mcQCA8334RmtCfgWorkMode = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=NamedValues(("no-card", 0), ("mAuto", 1), ("m100-full", 2), ("m100-half", 3), ("m10-full", 4), ("m10-half", 5), ("m1G-full", 6), ("not-support", 7)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcQCA8334RmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts: mcQCA8334RmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mcQCA8334RmtTxlink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 9), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(0, 1, 2, 3))).clone(namedValues=NamedValues(("no-card", 0), ("up", 1), ("down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcQCA8334RmtTxlink.setStatus('current')
if mibBuilder.loadTexts: mcQCA8334RmtTxlink.setDescription("Remote card's port electrial port status")
mcE1T1Objects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19))
mcE1T1CardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1))
mcE1T1CardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1), )
if mibBuilder.loadTexts: mcE1T1CardTable.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CardTable.setDescription('MC E1T1 Configuration table')
mcE1T1CardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcE1T1CardEntry.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CardEntry.setDescription('MC Configuration entry definition')
mcE1T1Type = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1", 1), ("T1", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1Type.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1Type.setDescription("Center card's current type")
mcE1T1FLink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Up", 1), ("Down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1FLink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1FLink.setDescription("Center card's current link")
mcE1T1FLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 3), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1FLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1FLossAlarm.setDescription('')
mcE1T1TLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1TLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1TLossAlarm.setDescription('')
mcE1T1AISAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1AISAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1AISAlarm.setDescription('')
mcE1T1TLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 6), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1TLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1TLoop.setDescription('Tx Loopback state')
mcE1T1FLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 7), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1FLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1FLoop.setDescription('Fx Loopback state')
mcE1T1CodeType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 8), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1-HDB3-Or-T1-B8ZS", 1), ("AMI", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1CodeType.setStatus('current')
if mibBuilder.loadTexts: mcE1T1CodeType.setDescription('coding type')
mcE1T1Version = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 9), DisplayString()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1Version.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1Version.setDescription('MC version')
mcE1T1RmtFLink = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 10), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Up", 1), ("Down", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtFLink.setStatus('mandatory')
if mibBuilder.loadTexts: mcE1T1RmtFLink.setDescription("Center card's current link")
mcE1T1RmtFLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 11), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtFLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtFLossAlarm.setDescription('')
mcE1T1RmtTLossAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 12), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtTLossAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtTLossAlarm.setDescription('')
mcE1T1RmtAISAlarm = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 13), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Alarm", 1), ("Normal", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcE1T1RmtAISAlarm.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtAISAlarm.setDescription('')
mcE1T1RmtTLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 14), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtTLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtTLoop.setDescription('Tx Loopback state')
mcE1T1RmtFLoop = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 15), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("enable", 1), ("disable", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtFLoop.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtFLoop.setDescription('Fx Loopback state')
mcE1T1RmtCodeType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 16), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("E1-HDB3-Or-T1-B8ZS", 1), ("AMI", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcE1T1RmtCodeType.setStatus('current')
if mibBuilder.loadTexts: mcE1T1RmtCodeType.setDescription('coding type')
mc10GOEEXFPTunableObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20))
mc10GOEEXFPTunableCardObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1))
mc10GOEEXFPTunableCardTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1), )
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardTable.setStatus('current')
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardTable.setDescription('MC 10G OEE tunable wavelength Configuration table')
mc10GOEEXFPTunableCardEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardEntry.setStatus('current')
if mibBuilder.loadTexts: mc10GOEEXFPTunableCardEntry.setDescription('MC Configuration entry definition')
xfpWaveLengthTunability = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 1), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Supported", 1), ("Unsupported", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpWaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLengthTunability.setDescription("XFP's wavelength tunability")
xfpWaveLengthTunable = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 2), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("Doing", 1), ("Completed", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpWaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLengthTunable.setDescription("XFP's wavelength tunable status")
xfpWaveLength = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 3), Integer32()).setMaxAccess("readwrite")
if mibBuilder.loadTexts: xfpWaveLength.setStatus('mandatory')
if mibBuilder.loadTexts: xfpWaveLength.setDescription("XFP's wavelength")
xfpTunableType = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 4), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("channel", 1), ("wavelength", 2), ("not-support", 3)))).setMaxAccess("readonly")
if mibBuilder.loadTexts: xfpTunableType.setStatus('mandatory')
if mibBuilder.loadTexts: xfpTunableType.setDescription("XFP's wavelength tunable type")
mcPmObjects = MibIdentifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3))
mcPmTable = MibTable((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1), )
if mibBuilder.loadTexts: mcPmTable.setStatus('current')
if mibBuilder.loadTexts: mcPmTable.setDescription('MC Performance table')
mcPmEntry = MibTableRow((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1), ).setIndexNames((0, "XXX-MIB", "mcShelfIdx"), (0, "XXX-MIB", "mcCardIdx"))
if mibBuilder.loadTexts: mcPmEntry.setStatus('current')
if mibBuilder.loadTexts: mcPmEntry.setDescription('MC Performance entry definition')
mcRxByteHi = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 1), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRxByteHi.setStatus('current')
if mibBuilder.loadTexts: mcRxByteHi.setDescription('The total number of reveive bytes (high)')
mcRxByteLo = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 2), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcRxByteLo.setStatus('current')
if mibBuilder.loadTexts: mcRxByteLo.setDescription('The total number of reveive bytes (low)')
mcTxByteHi = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 3), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxByteHi.setStatus('current')
if mibBuilder.loadTexts: mcTxByteHi.setDescription('The total number of transmit bytes (high)')
mcTxByteLo = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 4), Counter32()).setMaxAccess("readonly")
if mibBuilder.loadTexts: mcTxByteLo.setStatus('current')
if mibBuilder.loadTexts: mcTxByteLo.setDescription('The total number of transmit bytes (low)')
mcPmRest = MibTableColumn((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 5), Integer32().subtype(subtypeSpec=ConstraintsUnion(SingleValueConstraint(1, 2, 3))).clone(namedValues=NamedValues(("idle", 1), ("reset", 2), ("not-support", 3)))).setMaxAccess("readwrite")
if mibBuilder.loadTexts: mcPmRest.setStatus('current')
if mibBuilder.loadTexts: mcPmRest.setDescription('reset counter')
shelf_Detected = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 1)).setLabel("shelf-Detected").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_Detected.setStatus('current')
if mibBuilder.loadTexts: shelf_Detected.setDescription('A slave shelf is detected (1~19)')
shelf_Lost = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 2)).setLabel("shelf-Lost").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_Lost.setStatus('current')
if mibBuilder.loadTexts: shelf_Lost.setDescription('A shelf is lost')
shelf_psuA_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 3)).setLabel("shelf-psuA-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuA_On.setStatus('current')
if mibBuilder.loadTexts: shelf_psuA_On.setDescription('PSU A is detected')
shelf_psuA_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 4)).setLabel("shelf-psuA-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuA_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_psuA_Off.setDescription('PSU A is lost')
shelf_psuB_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 5)).setLabel("shelf-psuB-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuB_On.setStatus('current')
if mibBuilder.loadTexts: shelf_psuB_On.setDescription('PSU B is detected')
shelf_psuB_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 6)).setLabel("shelf-psuB-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_psuB_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_psuB_Off.setDescription('PSU B is lost')
shelf_fan_On = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 7)).setLabel("shelf-fan-On").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_fan_On.setStatus('current')
if mibBuilder.loadTexts: shelf_fan_On.setDescription('Fan A is detected')
shelf_fan_Off = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 8)).setLabel("shelf-fan-Off").setObjects(("XXX-MIB", "shelfIdx"))
if mibBuilder.loadTexts: shelf_fan_Off.setStatus('current')
if mibBuilder.loadTexts: shelf_fan_Off.setDescription('Fan A is lost')
card_Detected = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 20)).setLabel("card-Detected").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_Detected.setStatus('current')
if mibBuilder.loadTexts: card_Detected.setDescription('A card is detected (20~29)')
card_Lost = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 21)).setLabel("card-Lost").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_Lost.setStatus('current')
if mibBuilder.loadTexts: card_Lost.setDescription('A card is lost')
card_MC_Co_Tx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 30)).setLabel("card-MC-Co-Tx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up.setDescription('The tx link of mc in center side is up (above 30)')
card_MC_Co_Tx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 31)).setLabel("card-MC-Co-Tx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down.setDescription('The tx link of mc in center side is broken')
card_MC_Co_Fx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 32)).setLabel("card-MC-Co-Fx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Fx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Fx_Up.setDescription('The fx link of mc in center side is up')
card_MC_Co_Fx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 33)).setLabel("card-MC-Co-Fx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Fx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Fx_Down.setDescription('The fx link of mc in center side is broken')
card_MC_Rmt_Tx_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 34)).setLabel("card-MC-Rmt-Tx-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up.setDescription('The tx link of mc in customer side is up')
card_MC_Rmt_Tx_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 35)).setLabel("card-MC-Rmt-Tx-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down.setDescription('The tx link of mc in customer side is broken')
card_MC_Rmt_PwrDown = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 36)).setLabel("card-MC-Rmt-PwrDown").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_PwrDown.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_PwrDown.setDescription('Remote mc power down detected')
card_MC_Co_Ntw_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 37)).setLabel("card-MC-Co-Ntw-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Inserted.setDescription('Local network port SFP inserted')
card_MC_Co_Ntw_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 38)).setLabel("card-MC-Co-Ntw-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Ntw_SFP_Removed.setDescription('Local network port SFP removed')
card_MC_Co_Acc_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 39)).setLabel("card-MC-Co-Acc-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Inserted.setDescription('Local access port SFP inserted')
card_MC_Co_Acc_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 40)).setLabel("card-MC-Co-Acc-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Acc_SFP_Removed.setDescription('Local access port SFP removed')
card_MC_Rmt_Acc_SFP_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 41)).setLabel("card-MC-Rmt-Acc-SFP-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Inserted.setDescription('Remote access port SFP inserted')
card_MC_Rmt_Acc_SFP_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 42)).setLabel("card-MC-Rmt-Acc-SFP-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Acc_SFP_Removed.setDescription('Remote access port SFP removed')
card_MC_Co_Tx_Up1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 43)).setLabel("card-MC-Co-Tx-Up1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up1.setDescription('The tx1 link of mc in center side is up')
card_MC_Co_Tx_Down1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 44)).setLabel("card-MC-Co-Tx-Down1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down1.setDescription('The tx1 link of mc in center side is broken')
card_MC_Co_Tx_Up2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 45)).setLabel("card-MC-Co-Tx-Up2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Up2.setDescription('The tx2 link of mc in center side is up')
card_MC_Co_Tx_Down2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 46)).setLabel("card-MC-Co-Tx-Down2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Tx_Down2.setDescription('The tx2 link of mc in center side is broken')
card_MC_Rmt_Tx_Up1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 47)).setLabel("card-MC-Rmt-Tx-Up1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up1.setDescription('The tx1 link of mc in customer side is up')
card_MC_Rmt_Tx_Down1 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 48)).setLabel("card-MC-Rmt-Tx-Down1").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down1.setDescription('The tx1 link of mc in customer side is broken')
card_MC_Rmt_Tx_Up2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 49)).setLabel("card-MC-Rmt-Tx-Up2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Up2.setDescription('The tx2 link of mc in customer side is up')
card_MC_Rmt_Tx_Down2 = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 50)).setLabel("card-MC-Rmt-Tx-Down2").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_Tx_Down2.setDescription('The tx2 link of mc in customer side is broken')
card_MC_Co_SFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 51)).setLabel("card-MC-Co-SFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Inserted.setDescription('Local SFP1 inserted')
card_MC_Co_SFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 52)).setLabel("card-MC-Co-SFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Removed.setDescription('Local SFP1 removed')
card_MC_Co_SFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 53)).setLabel("card-MC-Co-SFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Inserted.setDescription('Local SFP2 inserted')
card_MC_Co_SFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 54)).setLabel("card-MC-Co-SFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Removed.setDescription('Local SFP2 removed')
card_MC_Co_SFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 55)).setLabel("card-MC-Co-SFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Up.setDescription('The SFP1 link of mc in center side is up')
card_MC_Co_SFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 56)).setLabel("card-MC-Co-SFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP1_Down.setDescription('The SFP1 link of mc in center side is broken')
card_MC_Co_SFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 57)).setLabel("card-MC-Co-SFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Up.setDescription('The SFP2 link of mc in center side is up')
card_MC_Co_SFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 58)).setLabel("card-MC-Co-SFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP2_Down.setDescription('The SFP2 link of mc in center side is broken')
card_MC_Rmt_SFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 59)).setLabel("card-MC-Rmt-SFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Inserted.setDescription('Remote SFP1 inserted')
card_MC_Rmt_SFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 60)).setLabel("card-MC-Rmt-SFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Removed.setDescription('Remote SFP1 removed')
card_MC_Rmt_SFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 61)).setLabel("card-MC-Rmt-SFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Up.setDescription('The SFP1 link of mc in customer side is up')
card_MC_Rmt_SFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 62)).setLabel("card-MC-Rmt-SFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP1_Down.setDescription('The SFP1 link of mc in customer side is broken')
card_MC_Co_SFPSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 63)).setLabel("card-MC-Co-SFPSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Inserted.setDescription('Local SFP+1 inserted')
card_MC_Co_SFPSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 64)).setLabel("card-MC-Co-SFPSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Removed.setDescription('Local SFP+1 removed')
card_MC_Co_SFPSFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 65)).setLabel("card-MC-Co-SFPSFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Inserted.setDescription('Local SFPSFP2 inserted')
card_MC_Co_SFPSFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 66)).setLabel("card-MC-Co-SFPSFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Removed.setDescription('Local SFP+2 removed')
card_MC_Rmt_SFPSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 67)).setLabel("card-MC-Rmt-SFPSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Inserted.setDescription('Remote SFP+1 inserted')
card_MC_Rmt_SFPSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 68)).setLabel("card-MC-Rmt-SFPSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Removed.setDescription('Remote SFP+1 removed')
card_MC_Co_XFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 69)).setLabel("card-MC-Co-XFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Inserted.setDescription('Local XFP+1 inserted')
card_MC_Co_XFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 70)).setLabel("card-MC-Co-XFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Removed.setDescription('Local XFP+1 removed')
card_MC_Co_XFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 71)).setLabel("card-MC-Co-XFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Inserted.setDescription('Local XFP2 inserted')
card_MC_Co_XFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 72)).setLabel("card-MC-Co-XFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Removed.setDescription('Local XFP+2 removed')
card_MC_Rmt_XFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 73)).setLabel("card-MC-Rmt-XFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Inserted.setDescription('Remote XFP+1 inserted')
card_MC_Rmt_XFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 74)).setLabel("card-MC-Rmt-XFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Removed.setDescription('Remote XFP+1 removed')
card_MC_Co_SFPSFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 75)).setLabel("card-MC-Co-SFPSFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Up.setDescription('The SFP+1 link of mc in center side is up')
card_MC_Co_SFPSFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 76)).setLabel("card-MC-Co-SFPSFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP1_Down.setDescription('The SFP+1 link of mc in center side is broken')
card_MC_Co_SFPSFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 77)).setLabel("card-MC-Co-SFPSFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Up.setDescription('The SFP+2 link of mc in center side is up')
card_MC_Co_SFPSFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 78)).setLabel("card-MC-Co-SFPSFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFPSFP2_Down.setDescription('The SFP+2 link of mc in center side is broken')
card_MC_Rmt_SFPSFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 79)).setLabel("card-MC-Rmt-SFPSFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Up.setDescription('The SFPSFP1 link of mc in customer side is up')
card_MC_Rmt_SFPSFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 80)).setLabel("card-MC-Rmt-SFPSFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFPSFP1_Down.setDescription('The SFP+1 link of mc in customer side is broken')
card_MC_Co_XFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 81)).setLabel("card-MC-Co-XFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Up.setDescription('The XFP1 link of mc in center side is up')
card_MC_Co_XFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 82)).setLabel("card-MC-Co-XFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP1_Down.setDescription('The XFP1 link of mc in center side is broken')
card_MC_Co_XFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 83)).setLabel("card-MC-Co-XFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Up.setDescription('The XFP2 link of mc in center side is up')
card_MC_Co_XFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 84)).setLabel("card-MC-Co-XFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_XFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_XFP2_Down.setDescription('The XFP2 link of mc in center side is broken')
card_MC_Rmt_XFP1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 85)).setLabel("card-MC-Rmt-XFP1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Up.setDescription('The XFP1 link of mc in customer side is up')
card_MC_Rmt_XFP1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 86)).setLabel("card-MC-Rmt-XFP1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_XFP1_Down.setDescription('The XFP link of mc in customer side is broken')
card_MC_Co_SFP3_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 87)).setLabel("card-MC-Co-SFP3-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Inserted.setDescription('Local SFP3 inserted')
card_MC_Co_SFP3_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 88)).setLabel("card-MC-Co-SFP3-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Removed.setDescription('Local SFP3 removed')
card_MC_Co_Port1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 89)).setLabel("card-MC-Co-Port1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port1_Up.setDescription('The Port1 link of mc in center side is up')
card_MC_Co_Port1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 90)).setLabel("card-MC-Co-Port1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port1_Down.setDescription('The Port1 link of mc in center side is broken')
card_MC_Co_Port2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 91)).setLabel("card-MC-Co-Port2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port2_Up.setDescription('The Port2 link of mc in center side is up')
card_MC_Co_Port2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 92)).setLabel("card-MC-Co-Port2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port2_Down.setDescription('The Port2 link of mc in center side is broken')
card_MC_Co_Port3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 93)).setLabel("card-MC-Co-Port3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port3_Up.setDescription('The Port3 link of mc in center side is up')
card_MC_Co_Port3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 94)).setLabel("card-MC-Co-Port3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_Port3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_Port3_Down.setDescription('The Port3 link of mc in center side is broken')
card_MC_FAN_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 100)).setLabel("card-MC-FAN-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_FAN_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_FAN_Normal.setDescription('Fan card work normally')
card_MC_FAN_Abnormal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 101)).setLabel("card-MC-FAN-Abnormal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_FAN_Abnormal.setStatus('current')
if mibBuilder.loadTexts: card_MC_FAN_Abnormal.setDescription('Fan card work abnormally')
card_MC_Co_QSFP1_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 102)).setLabel("card-MC-Co-QSFP1-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Inserted.setDescription('Local QSFP1 inserted')
card_MC_Co_QSFP1_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 103)).setLabel("card-MC-Co-QSFP1-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Removed.setDescription('Local QSFP1 removed')
card_MC_Co_QSFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 104)).setLabel("card-MC-Co-QSFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Inserted.setDescription('Local QSFP2 inserted')
card_MC_Co_QSFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 105)).setLabel("card-MC-Co-QSFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Removed.setDescription('Local QSFP2 removed')
card_MC_Co_QSFP1_Lane1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 106)).setLabel("card-MC-Co-QSFP1-Lane1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Up.setDescription('The QSFP1 Lane1 link of mc in center side is up')
card_MC_Co_QSFP1_Lane1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 107)).setLabel("card-MC-Co-QSFP1-Lane1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane1_Down.setDescription('The QSFP1 lane1 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 108)).setLabel("card-MC-Co-QSFP1-Lane2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Up.setDescription('The QSFP1 Lane2 link of mc in center side is up')
card_MC_Co_QSFP1_Lane2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 109)).setLabel("card-MC-Co-QSFP1-Lane2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane2_Down.setDescription('The QSFP1 lane2 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 110)).setLabel("card-MC-Co-QSFP1-Lane3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Up.setDescription('The QSFP1 Lane3 link of mc in center side is up')
card_MC_Co_QSFP1_Lane3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 111)).setLabel("card-MC-Co-QSFP1-Lane3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane3_Down.setDescription('The QSFP1 lane3 link of mc in center side is broken')
card_MC_Co_QSFP1_Lane4_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 112)).setLabel("card-MC-Co-QSFP1-Lane4-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Up.setDescription('The QSFP1 Lane4 link of mc in center side is up')
card_MC_Co_QSFP1_Lane4_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 113)).setLabel("card-MC-Co-QSFP1-Lane4-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP1_Lane4_Down.setDescription('The QSFP1 lane4 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane1_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 114)).setLabel("card-MC-Co-QSFP2-Lane1-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Up.setDescription('The QSFP2 Lane1 link of mc in center side is up')
card_MC_Co_QSFP2_Lane1_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 115)).setLabel("card-MC-Co-QSFP2-Lane1-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane1_Down.setDescription('The QSFP2 lane1 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 116)).setLabel("card-MC-Co-QSFP2-Lane2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Up.setDescription('The QSFP2 Lane2 link of mc in center side is up')
card_MC_Co_QSFP2_Lane2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 117)).setLabel("card-MC-Co-QSFP2-Lane2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane2_Down.setDescription('The QSFP2 lane2 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 118)).setLabel("card-MC-Co-QSFP2-Lane3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Up.setDescription('The QSFP2 Lane3 link of mc in center side is up')
card_MC_Co_QSFP2_Lane3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 119)).setLabel("card-MC-Co-QSFP2-Lane3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane3_Down.setDescription('The QSFP2 lane3 link of mc in center side is broken')
card_MC_Co_QSFP2_Lane4_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 120)).setLabel("card-MC-Co-QSFP2-Lane4-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Up.setDescription('The QSFP2 Lane4 link of mc in center side is up')
card_MC_Co_QSFP2_Lane4_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 121)).setLabel("card-MC-Co-QSFP2-Lane4-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_QSFP2_Lane4_Down.setDescription('The QSFP2 lane4 link of mc in center side is broken')
card_MC_Rmt_SFP2_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 122)).setLabel("card-MC-Rmt-SFP2-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Inserted.setDescription('Remote SFP2 inserted')
card_MC_Rmt_SFP2_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 123)).setLabel("card-MC-Rmt-SFP2-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Removed.setDescription('Remote SFP2 removed')
card_MC_Rmt_SFP3_Inserted = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 124)).setLabel("card-MC-Rmt-SFP3-Inserted").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Inserted.setDescription('Remote SFP3 inserted')
card_MC_Rmt_SFP3_Removed = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 125)).setLabel("card-MC-Rmt-SFP3-Removed").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Removed.setDescription('Remote SFP3 removed')
card_MC_Rmt_SFP2_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 126)).setLabel("card-MC-Rmt-SFP2-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Up.setDescription('The SFP2 link of mc in customer side is up')
card_MC_Rmt_SFP2_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 127)).setLabel("card-MC-Rmt-SFP2-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP2_Down.setDescription('The SFP2 link of mc in customer side is broken')
card_MC_Rmt_SFP3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 128)).setLabel("card-MC-Rmt-SFP3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Up.setDescription('The SFP3 link of mc in customer side is up')
card_MC_Rmt_SFP3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 129)).setLabel("card-MC-Rmt-SFP3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Rmt_SFP3_Down.setDescription('The SFP3 link of mc in customer side is broken')
card_MC_E1_Co_Port1_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 130)).setLabel("card-MC-E1-Co-Port1-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in center side')
card_MC_E1_Co_Port1_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 131)).setLabel("card-MC-E1-Co-Port1-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_LOS_Normal.setDescription('Port1 LOS normal in center side')
card_MC_E1_Co_Port1_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 132)).setLabel("card-MC-E1-Co-Port1-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in center side')
card_MC_E1_Co_Port1_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 133)).setLabel("card-MC-E1-Co-Port1-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_AIS_Normal.setDescription('Port1 AIS normal in center side')
card_MC_E1_Co_Port1_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 134)).setLabel("card-MC-E1-Co-Port1-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Alarm.setDescription('Port1 CV alarm in center side')
card_MC_E1_Co_Port1_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 135)).setLabel("card-MC-E1-Co-Port1-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port1_CV_Normal.setDescription('Port1 CV normal in center side')
card_MC_E1_Co_Port2_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 136)).setLabel("card-MC-E1-Co-Port2-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in center side')
card_MC_E1_Co_Port2_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 137)).setLabel("card-MC-E1-Co-Port2-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_LOS_Normal.setDescription('Port2 LOS normal in center side')
card_MC_E1_Co_Port2_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 138)).setLabel("card-MC-E1-Co-Port2-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in center side')
card_MC_E1_Co_Port2_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 139)).setLabel("card-MC-E1-Co-Port2-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_AIS_Normal.setDescription('Port2 AIS normal in center side')
card_MC_E1_Co_Port2_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 140)).setLabel("card-MC-E1-Co-Port2-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Alarm.setDescription('Port2 CV alarm in center side')
card_MC_E1_Co_Port2_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 141)).setLabel("card-MC-E1-Co-Port2-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Co_Port2_CV_Normal.setDescription('Port2 CV normal in center side')
card_MC_E1_Rmt_Port1_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 142)).setLabel("card-MC-E1-Rmt-Port1-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in customer side')
card_MC_E1_Rmt_Port1_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 143)).setLabel("card-MC-E1-Rmt-Port1-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_LOS_Normal.setDescription('Port1 LOS normal in customer side')
card_MC_E1_Rmt_Port1_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 144)).setLabel("card-MC-E1-Rmt-Port1-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in customer side')
card_MC_E1_Rmt_Port1_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 145)).setLabel("card-MC-E1-Rmt-Port1-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_AIS_Normal.setDescription('Port1 AIS normal in customer side')
card_MC_E1_Rmt_Port1_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 146)).setLabel("card-MC-E1-Rmt-Port1-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Alarm.setDescription('Port1 CV alarm in customer side')
card_MC_E1_Rmt_Port1_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 147)).setLabel("card-MC-E1-Rmt-Port1-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port1_CV_Normal.setDescription('Port1 CV normal in customer side')
card_MC_E1_Rmt_Port2_LOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 148)).setLabel("card-MC-E1-Rmt-Port2-LOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in customer side')
card_MC_E1_Rmt_Port2_LOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 149)).setLabel("card-MC-E1-Rmt-Port2-LOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_LOS_Normal.setDescription('Port2 LOS normal in customer side')
card_MC_E1_Rmt_Port2_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 150)).setLabel("card-MC-E1-Rmt-Port2-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in customer side')
card_MC_E1_Rmt_Port2_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 151)).setLabel("card-MC-E1-Rmt-Port2-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_AIS_Normal.setDescription('Port2 AIS normal in customer side')
card_MC_E1_Rmt_Port2_CV_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 152)).setLabel("card-MC-E1-Rmt-Port2-CV-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Alarm.setDescription('Port2 CV alarm in customer side')
card_MC_E1_Rmt_Port2_CV_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 153)).setLabel("card-MC-E1-Rmt-Port2-CV-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1_Rmt_Port2_CV_Normal.setDescription('Port2 CV normal in customer side')
card_MC_Co_SFP3_Up = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 154)).setLabel("card-MC-Co-SFP3-Up").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Up.setDescription('The SFP3 link of mc in center side is up')
card_MC_Co_SFP3_Down = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 155)).setLabel("card-MC-Co-SFP3-Down").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_Co_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts: card_MC_Co_SFP3_Down.setDescription('The SFP3 link of mc in center side is broken')
card_MC_E1T1_Co_TXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 156)).setLabel("card-MC-E1T1-Co-TXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Alarm.setDescription('Tx LOS alarm in center side')
card_MC_E1T1_Co_TXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 157)).setLabel("card-MC-E1T1-Co-TXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_TXLOS_Normal.setDescription('Tx LOS normal in center side')
card_MC_E1T1_Co_FXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 158)).setLabel("card-MC-E1T1-Co-FXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Alarm.setDescription('Fx LOS alarm in center side')
card_MC_E1T1_Co_FXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 159)).setLabel("card-MC-E1T1-Co-FXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_FXLOS_Normal.setDescription('Fx LOS normal in center side')
card_MC_E1T1_Co_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 160)).setLabel("card-MC-E1T1-Co-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Alarm.setDescription('AIS alarm in center side')
card_MC_E1T1_Co_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 161)).setLabel("card-MC-E1T1-Co-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Co_AIS_Normal.setDescription('AIS normal in center side')
card_MC_E1T1_Rmt_TXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 162)).setLabel("card-MC-E1T1-Rmt-TXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Alarm.setDescription('Tx LOS alarm in customer side')
card_MC_E1T1_Rmt_TXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 163)).setLabel("card-MC-E1T1-Rmt-TXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_TXLOS_Normal.setDescription('Tx LOS normal in customer side')
card_MC_E1T1_Rmt_FXLOS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 164)).setLabel("card-MC-E1T1-Rmt-FXLOS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Alarm.setDescription('Fx LOS alarm in customer side')
card_MC_E1T1_Rmt_FXLOS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 165)).setLabel("card-MC-E1T1-Rmt-FXLOS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_FXLOS_Normal.setDescription('Fx LOS normal in customer side')
card_MC_E1T1_Rmt_AIS_Alarm = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 166)).setLabel("card-MC-E1T1-Rmt-AIS-Alarm").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Alarm.setDescription('AIS alarm in customer side')
card_MC_E1T1_Rmt_AIS_Normal = NotificationType((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 167)).setLabel("card-MC-E1T1-Rmt-AIS-Normal").setObjects(("XXX-MIB", "shelfIdx"), ("XXX-MIB", "slotIdx"))
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts: card_MC_E1T1_Rmt_AIS_Normal.setDescription('AIS normal in customer side')
mibBuilder.exportSymbols("XXX-MIB", mc40G_OEOLane2LoopMode=mc40G_OEOLane2LoopMode, company=company, mcFanCardObjects=mcFanCardObjects, mc10G_OEECurSpd=mc10G_OEECurSpd, card_MC_Co_QSFP1_Lane2_Up=card_MC_Co_QSFP1_Lane2_Up, mc4_25G_OEONtwPD=mc4_25G_OEONtwPD, mcCm1gSfpEntry=mcCm1gSfpEntry, card_MC_Co_QSFP1_Lane1_Down=card_MC_Co_QSFP1_Lane1_Down, mc10G_OEO2RObjects=mc10G_OEO2RObjects, mcTransceiverDist=mcTransceiverDist, mc2_5GMCCardObjects=mc2_5GMCCardObjects, mcPortState=mcPortState, mc1GE2OPort2SFPExist=mc1GE2OPort2SFPExist, shelfNum=shelfNum, mcIP175DCurWorkMode=mcIP175DCurWorkMode, card_MC_Rmt_Tx_Up1=card_MC_Rmt_Tx_Up1, mc1go2o_sfpTransCode=mc1go2o_sfpTransCode, sysName=sysName, psuB=psuB, ntwXFP2WaveLength=ntwXFP2WaveLength, mcAccXFP1WaveLengthTunability=mcAccXFP1WaveLengthTunability, mc10G_OEO_Test_Error_Counter=mc10G_OEO_Test_Error_Counter, mc2_5g_sfpWavelength=mc2_5g_sfpWavelength, mc2_5g_sfpCompliance=mc2_5g_sfpCompliance, card_MC_E1_Co_Port1_CV_Alarm=card_MC_E1_Co_Port1_CV_Alarm, mcIP175DCardTable=mcIP175DCardTable, mc4_25G_OEO_Test_Result=mc4_25G_OEO_Test_Result, mc40G_OEOHWLoopMode=mc40G_OEOHWLoopMode, mcE1T1RmtFLink=mcE1T1RmtFLink, ntwXFP2WaveLengthTunability=ntwXFP2WaveLengthTunability, card_MC_E1T1_Co_TXLOS_Normal=card_MC_E1T1_Co_TXLOS_Normal, mcCmEntry=mcCmEntry, mc1go2o_sfpCompliance=mc1go2o_sfpCompliance, shelfIdx=shelfIdx, trapHost1=trapHost1, mcCm1gSfpObjects=mcCm1gSfpObjects, volA=volA, getNtwQSfpCmd=getNtwQSfpCmd, mc1GO2OPortHWPri=mc1GO2OPortHWPri, card_MC_Co_SFP3_Up=card_MC_Co_SFP3_Up, mcE1Port2Loop=mcE1Port2Loop, xfpWaveLengthTunable=xfpWaveLengthTunable, rmtCardNum=rmtCardNum, shelf_fan_Off=shelf_fan_Off, mcDownStream=mcDownStream, mcE1SFP1Link=mcE1SFP1Link, mc10G_OEOCardEntry=mc10G_OEOCardEntry, mcAccXFP1WaveLengthTunable=mcAccXFP1WaveLengthTunable, nmuType=nmuType, mc10G_OEO_Get_Test_Rst=mc10G_OEO_Get_Test_Rst, mc1GE2ORmtPort1SFPlink=mc1GE2ORmtPort1SFPlink, slotObjects=slotObjects, mcIP175DObjects=mcIP175DObjects, card_MC_Co_Tx_Up1=card_MC_Co_Tx_Up1, mcRmtE1Port1CV=mcRmtE1Port1CV, mcRmtHWTransmitMode=mcRmtHWTransmitMode, mcIP175DTxlink=mcIP175DTxlink, mc10G_OEOCurSpdMode=mc10G_OEOCurSpdMode, mc10G_OEELoopMode=mc10G_OEELoopMode, mcE1T1FLossAlarm=mcE1T1FLossAlarm, shelf_psuA_On=shelf_psuA_On, mcQCA8334RmtCfgWorkMode=mcQCA8334RmtCfgWorkMode, shelfTable=shelfTable, ipaddr=ipaddr, mc1GE2OPort1SFPlink=mc1GE2OPort1SFPlink, mc10G_OEO_accType=mc10G_OEO_accType, card_MC_E1_Rmt_Port1_AIS_Normal=card_MC_E1_Rmt_Port1_AIS_Normal, sfpVoltage=sfpVoltage, mc10GOEO1RCardTable=mc10GOEO1RCardTable, mc10GXFP2WaveLengthTunable=mc10GXFP2WaveLengthTunable, mcRmtE1Port1Loop=mcRmtE1Port1Loop, mc4_25G_OEOCardEntry=mc4_25G_OEOCardEntry, card_MC_E1_Rmt_Port1_AIS_Alarm=card_MC_E1_Rmt_Port1_AIS_Alarm, mcRmt4_25G_OEOHWWorkMode=mcRmt4_25G_OEOHWWorkMode, mcCm1gIpEntry=mcCm1gIpEntry, cwdmWavelength5=cwdmWavelength5, mcE1Port1AIS=mcE1Port1AIS, accXFP1TunableType=accXFP1TunableType, mcRmtPwrDown=mcRmtPwrDown, mc10G_OEOObjects=mc10G_OEOObjects, card_MC_Rmt_Tx_Down=card_MC_Rmt_Tx_Down, mc10G_OEEHWLoopback=mc10G_OEEHWLoopback, card_MC_Co_Port3_Down=card_MC_Co_Port3_Down, card_MC_Co_SFP3_Down=card_MC_Co_SFP3_Down, mcQCA8334RmtTxlink=mcQCA8334RmtTxlink, card_MC_E1T1_Co_AIS_Normal=card_MC_E1T1_Co_AIS_Normal, mcRmtE1TxCurWorkMode=mcRmtE1TxCurWorkMode, qsfpAccRxPower4=qsfpAccRxPower4, mcRmt10G_OEOLoopback=mcRmt10G_OEOLoopback, card_MC_E1_Rmt_Port2_CV_Normal=card_MC_E1_Rmt_Port2_CV_Normal, card_MC_E1_Co_Port2_CV_Normal=card_MC_E1_Co_Port2_CV_Normal, mcTxByteLo=mcTxByteLo, mcCardIdx=mcCardIdx, card_MC_Rmt_SFP3_Up=card_MC_Rmt_SFP3_Up, card_MC_E1T1_Co_FXLOS_Alarm=card_MC_E1T1_Co_FXLOS_Alarm, mcRmt4_25G_OEOHWSpdMode=mcRmt4_25G_OEOHWSpdMode, card_MC_Co_QSFP1_Lane4_Up=card_MC_Co_QSFP1_Lane4_Up, mcUtility=mcUtility, mc4_25G_OEOObjects=mc4_25G_OEOObjects, mc10GOEO1RCardEntry=mc10GOEO1RCardEntry, getAccSfpCmd=getAccSfpCmd, mc1GO2OPort3SFPExist=mc1GO2OPort3SFPExist, mcRmtCfgWorkMode=mcRmtCfgWorkMode, mcNtwQSfpObjects=mcNtwQSfpObjects, mcShelfIdx=mcShelfIdx, mc40G_OEOCardEntry=mc40G_OEOCardEntry, mcE1T1CardTable=mcE1T1CardTable, accsfpRecvPower=accsfpRecvPower, mc10GXFP1WaveLengthTunability=mc10GXFP1WaveLengthTunability, cwdmWavelength7=cwdmWavelength7, cwdmWavelength1=cwdmWavelength1, mc40G_OEOQsfp2Lane3_link=mc40G_OEOQsfp2Lane3_link, mcE1Port2CV=mcE1Port2CV, mcAccQSfpObjects=mcAccQSfpObjects, mcRmtE1Port1AIS=mcRmtE1Port1AIS, mcIP175DCardEntry=mcIP175DCardEntry, accsfpTemperature=accsfpTemperature, mc10G_OEO2R_accTunableType=mc10G_OEO2R_accTunableType, card_MC_Co_QSFP2_Lane2_Up=card_MC_Co_QSFP2_Lane2_Up, mc4_25G_OEO_Test_Lock=mc4_25G_OEO_Test_Lock, mcRmtUtility=mcRmtUtility, mc2_5GMCSfp3Exist=mc2_5GMCSfp3Exist, mc4_25G_OEO_Start_Test=mc4_25G_OEO_Start_Test, qsfpAccTemperature=qsfpAccTemperature, card_MC_Rmt_Tx_Down2=card_MC_Rmt_Tx_Down2, sfpConnector=sfpConnector, mcFanObjects=mcFanObjects, card_MC_Co_SFP2_Inserted=card_MC_Co_SFP2_Inserted, mc1GE2OPortPri=mc1GE2OPortPri, mc1GO2OPort1SFPExist=mc1GO2OPort1SFPExist, card_MC_Rmt_SFP3_Down=card_MC_Rmt_SFP3_Down, mcRmt10G_OEOCfgSpdMode=mcRmt10G_OEOCfgSpdMode, mc1go2o_sfpWavelength=mc1go2o_sfpWavelength, card_MC_Co_SFP1_Removed=card_MC_Co_SFP1_Removed, mc40G_OEOQsfp1Lane1_link=mc40G_OEOQsfp1Lane1_link, card_MC_Rmt_XFP1_Up=card_MC_Rmt_XFP1_Up, card_MC_E1T1_Co_TXLOS_Alarm=card_MC_E1T1_Co_TXLOS_Alarm, sfpCopperLength=sfpCopperLength, mc2_5GMCCardTable=mc2_5GMCCardTable, mc2_5g_getSfpCmd=mc2_5g_getSfpCmd, mcE1T1RmtTLossAlarm=mcE1T1RmtTLossAlarm, trapHost3=trapHost3, mcRmtE1Port2LOS=mcRmtE1Port2LOS, card_MC_Co_SFPSFP1_Removed=card_MC_Co_SFPSFP1_Removed, card_MC_E1T1_Co_FXLOS_Normal=card_MC_E1T1_Co_FXLOS_Normal, mc1GO2OPort3SFPlink=mc1GO2OPort3SFPlink, mc1go2o_getSfpCmd=mc1go2o_getSfpCmd, sfpCompliance=sfpCompliance, card_MC_Co_QSFP2_Lane2_Down=card_MC_Co_QSFP2_Lane2_Down, mc10GXFP1WaveLength=mc10GXFP1WaveLength, mc10GOEO3RCardTable=mc10GOEO3RCardTable, mc1GO2ORmtPortHWPri=mc1GO2ORmtPortHWPri, card_MC_Rmt_Tx_Up2=card_MC_Rmt_Tx_Up2, mcRmtHWLFP=mcRmtHWLFP, card_MC_Co_QSFP1_Lane1_Up=card_MC_Co_QSFP1_Lane1_Up, accsfpSmLength=accsfpSmLength, mcIP175DPortObjects=mcIP175DPortObjects, mcType=mcType, accXFP1WaveLength=accXFP1WaveLength, mc40G_OEOQsfp1Lane3_link=mc40G_OEOQsfp1Lane3_link, mc10GXFP2WaveLengthTunability=mc10GXFP2WaveLengthTunability, card_MC_E1T1_Rmt_TXLOS_Normal=card_MC_E1T1_Rmt_TXLOS_Normal, mcRmtHWWorkMode=mcRmtHWWorkMode, mcQCA8334UpStream=mcQCA8334UpStream, card_MC_Rmt_SFP1_Down=card_MC_Rmt_SFP1_Down, mc4_25G_OEOHWLoopback=mc4_25G_OEOHWLoopback, mc10G_OEEFxlink=mc10G_OEEFxlink, mcE1Port1LOS=mcE1Port1LOS, mc2_5GMCPort1link=mc2_5GMCPort1link, qsfpAccRxPower3=qsfpAccRxPower3, mcNtwSfpExist=mcNtwSfpExist, mcNtwXFP2WaveLength=mcNtwXFP2WaveLength, mcRmt10G_OEOHWSpdMode=mcRmt10G_OEOHWSpdMode, cwdmWavelengthCount=cwdmWavelengthCount, card_MC_Rmt_SFPSFP1_Up=card_MC_Rmt_SFPSFP1_Up, mc10G_OEOHWSpdMode=mc10G_OEOHWSpdMode, mc40G_OEOQsfp2Lane4_link=mc40G_OEOQsfp2Lane4_link, mcNtwXFP2WaveLengthTunable=mcNtwXFP2WaveLengthTunable, mc2_5GMCSFP3Objects=mc2_5GMCSFP3Objects, mcHWTransmitMode=mcHWTransmitMode, slotIdx=slotIdx, qsfpNtwTxPower1=qsfpNtwTxPower1, mcHWLFP=mcHWLFP, mcE1T1RmtAISAlarm=mcE1T1RmtAISAlarm, volB=volB, mcRmtCurWorkMode=mcRmtCurWorkMode, mc1GE2OCardTable=mc1GE2OCardTable, accsfpWavelength=accsfpWavelength, mcAccQSfpEntry=mcAccQSfpEntry, mcTxByteHi=mcTxByteHi, mc10G_OEO2RHWSFP1Loopback=mc10G_OEO2RHWSFP1Loopback, sysContact=sysContact, slotEntry=slotEntry, mcCurWorkMode=mcCurWorkMode, card_MC_E1_Rmt_Port2_AIS_Alarm=card_MC_E1_Rmt_Port2_AIS_Alarm, mcIP175DUpStream=mcIP175DUpStream, mcRmtDetect=mcRmtDetect, mc10G_OEO_Test_Lock=mc10G_OEO_Test_Lock, mc2_5g_sfpTranPower=mc2_5g_sfpTranPower, mc2_5g_sfpBrSpeed=mc2_5g_sfpBrSpeed, mc40G_OEOSpeedMode=mc40G_OEOSpeedMode, mc1GO2OSfp3Table=mc1GO2OSfp3Table, mc1GE2ORmtPort2SFPlink=mc1GE2ORmtPort2SFPlink, mcCm1gAccSfpObjects=mcCm1gAccSfpObjects, rmtCardType=rmtCardType, card_MC_Co_SFP2_Removed=card_MC_Co_SFP2_Removed, card_MC_Co_Tx_Down1=card_MC_Co_Tx_Down1, card_MC_Co_QSFP1_Lane2_Down=card_MC_Co_QSFP1_Lane2_Down, card_MC_Co_QSFP2_Lane4_Down=card_MC_Co_QSFP2_Lane4_Down, mcRxByteHi=mcRxByteHi, card_MC_Rmt_SFP3_Inserted=card_MC_Rmt_SFP3_Inserted, mcE1CardEntry=mcE1CardEntry, card_Detected=card_Detected, card_MC_Co_XFP2_Up=card_MC_Co_XFP2_Up, card_MC_Rmt_SFP2_Up=card_MC_Rmt_SFP2_Up, trapHost2=trapHost2, mc2_5Cm1gSfpTable=mc2_5Cm1gSfpTable, mcCWDMCardEntry=mcCWDMCardEntry, mcE1T1TLoop=mcE1T1TLoop, mc1GO2OPortPri=mc1GO2OPortPri, mcLFPCfg=mcLFPCfg, qsfpAccRxPower1=qsfpAccRxPower1, temperature=temperature, qsfpAccTxPower3=qsfpAccTxPower3, card_MC_Co_SFP1_Down=card_MC_Co_SFP1_Down, mc4_25G_OEOCurSpdMode=mc4_25G_OEOCurSpdMode, mc10G_OEECardEntry=mc10G_OEECardEntry, mcFanStatus=mcFanStatus, mc2_5GMCPort3link=mc2_5GMCPort3link, systemMIB=systemMIB, mcTxlink=mcTxlink, mcCmTable=mcCmTable, mcRmtTxlink=mcRmtTxlink, mc40G_OEOQsfp1Lane4_link=mc40G_OEOQsfp1Lane4_link, sfpTranPower=sfpTranPower, coCardType=coCardType, mcFanCardEntry=mcFanCardEntry, cwdmWavelength3=cwdmWavelength3, card_MC_E1_Co_Port1_AIS_Normal=card_MC_E1_Co_Port1_AIS_Normal, mc1GE2OPortHWPri=mc1GE2OPortHWPri, mcE1T1TLossAlarm=mcE1T1TLossAlarm, mcQCA8334DownStream=mcQCA8334DownStream, mcIP175DPortEntry=mcIP175DPortEntry, mcE1T1Version=mcE1T1Version, card_MC_Co_QSFP1_Lane3_Down=card_MC_Co_QSFP1_Lane3_Down, card_MC_E1_Rmt_Port1_CV_Normal=card_MC_E1_Rmt_Port1_CV_Normal, card_MC_Rmt_SFP2_Removed=card_MC_Rmt_SFP2_Removed, card_MC_Co_SFPSFP1_Down=card_MC_Co_SFPSFP1_Down, accsfpBrSpeed=accsfpBrSpeed, cwdmWavelength8=cwdmWavelength8, mcRmt10G_OEOCurSpdMode=mcRmt10G_OEOCurSpdMode, mc10GOEEXFPTunableCardObjects=mc10GOEEXFPTunableCardObjects, mc1GE2ORmtPortHWPri=mc1GE2ORmtPortHWPri, mc10G_OEO_Test_Continue_Time=mc10G_OEO_Test_Continue_Time)
mibBuilder.exportSymbols("XXX-MIB", mc4_25G_OEO_Test_Error_Counter=mc4_25G_OEO_Test_Error_Counter, mc1GO2OPort1SFPlink=mc1GO2OPort1SFPlink, card_MC_E1_Rmt_Port1_LOS_Normal=card_MC_E1_Rmt_Port1_LOS_Normal, mc1GO2OSFP3Objects=mc1GO2OSFP3Objects, xfpWaveLength=xfpWaveLength, card_MC_Co_XFP1_Removed=card_MC_Co_XFP1_Removed, card_MC_Rmt_SFP2_Inserted=card_MC_Rmt_SFP2_Inserted, mc4_25G_OEOWorkMode=mc4_25G_OEOWorkMode, card_MC_Co_XFP2_Inserted=card_MC_Co_XFP2_Inserted, mc2_5g_sfpSmLength=mc2_5g_sfpSmLength, card_MC_Co_Port2_Down=card_MC_Co_Port2_Down, card_MC_Rmt_Acc_SFP_Removed=card_MC_Rmt_Acc_SFP_Removed, card_MC_Co_QSFP2_Removed=card_MC_Co_QSFP2_Removed, mc10GOEEXFPTunableCardTable=mc10GOEEXFPTunableCardTable, card_MC_Co_SFPSFP2_Down=card_MC_Co_SFPSFP2_Down, mcQCA8334PortIdx=mcQCA8334PortIdx, card_MC_E1T1_Rmt_AIS_Alarm=card_MC_E1T1_Rmt_AIS_Alarm, mcIP175DPortTable=mcIP175DPortTable, mc1go2o_sfpRecvPower=mc1go2o_sfpRecvPower, mc10G_OEO2R_ntwType=mc10G_OEO2R_ntwType, card_MC_Rmt_Tx_Up=card_MC_Rmt_Tx_Up, mcCm1gAccSfpTable=mcCm1gAccSfpTable, mcE1T1RmtFLoop=mcE1T1RmtFLoop, card_MC_E1_Co_Port1_CV_Normal=card_MC_E1_Co_Port1_CV_Normal, mc10GXFP1WaveLengthTunable=mc10GXFP1WaveLengthTunable, card_MC_Co_Tx_Up2=card_MC_Co_Tx_Up2, mcRmt10G_OEOHWLoopback=mcRmt10G_OEOHWLoopback, mc10G_OEECardObjects=mc10G_OEECardObjects, mcRmt4_25G_OEOWorkMode=mcRmt4_25G_OEOWorkMode, card_MC_Co_Port1_Up=card_MC_Co_Port1_Up, mc10GXFP2WaveLength=mc10GXFP2WaveLength, mc10G_OEOCardTable=mc10G_OEOCardTable, mc10G_OEE_ntwType=mc10G_OEE_ntwType, mcRmt10G_OEO_ntwType=mcRmt10G_OEO_ntwType, card_MC_Co_SFPSFP1_Up=card_MC_Co_SFPSFP1_Up, mc1GO2OPort2SFPlink=mc1GO2OPort2SFPlink, mcE1T1AISAlarm=mcE1T1AISAlarm, mcLoOrRmtFg=mcLoOrRmtFg, mc10G_OEOCfgSpdMode=mc10G_OEOCfgSpdMode, mcE1T1CardObjects=mcE1T1CardObjects, card_MC_Co_SFP3_Removed=card_MC_Co_SFP3_Removed, mcE1T1FLink=mcE1T1FLink, nmuObjects=nmuObjects, mc1go2o_sfpCopperLength=mc1go2o_sfpCopperLength, mc1GO2OPort3HWSpd=mc1GO2OPort3HWSpd, mc1GO2ORmtPort3SFPExist=mc1GO2ORmtPort3SFPExist, mc10G_OEO2R_ntwTunableType=mc10G_OEO2R_ntwTunableType, shelf_psuB_On=shelf_psuB_On, mcPmTable=mcPmTable, mcCm1gSpecificObjects=mcCm1gSpecificObjects, mc4_25G_OEO_Get_Test_Rst=mc4_25G_OEO_Get_Test_Rst, mcE1T1CardEntry=mcE1T1CardEntry, mc4_25G_OEO_Test_Continue_Time=mc4_25G_OEO_Test_Continue_Time, mcQsfpSpecificObjects=mcQsfpSpecificObjects, mc10GOEO3RCardObjects=mc10GOEO3RCardObjects, card_MC_E1_Co_Port2_AIS_Alarm=card_MC_E1_Co_Port2_AIS_Alarm, mc1GE2OCardObjects=mc1GE2OCardObjects, mc2_5g_sfpRecvPower=mc2_5g_sfpRecvPower, height2HU=height2HU, mc2_5g_sfpMmLength=mc2_5g_sfpMmLength, mc1GE2OObjects=mc1GE2OObjects, mc1GO2OObjects=mc1GO2OObjects, mcCm1gIpTable=mcCm1gIpTable, mcNtwQSfpEntry=mcNtwQSfpEntry, mc40G_OEOLane1LoopMode=mc40G_OEOLane1LoopMode, mc1go2o_sfpConnector=mc1go2o_sfpConnector, card_MC_Co_SFPSFP2_Up=card_MC_Co_SFPSFP2_Up, mcE1Port1CV=mcE1Port1CV, shelfEntry=shelfEntry, sfpBrSpeed=sfpBrSpeed, mcRmtE1SFP1Link=mcRmtE1SFP1Link, card_MC_Co_Acc_SFP_Removed=card_MC_Co_Acc_SFP_Removed, mc10G_OEOSFP2=mc10G_OEOSFP2, card_MC_E1_Co_Port2_LOS_Normal=card_MC_E1_Co_Port2_LOS_Normal, mcUpStream=mcUpStream, mc4_25G_OEOCardObjects=mc4_25G_OEOCardObjects, card_MC_Co_SFP2_Up=card_MC_Co_SFP2_Up, mc2_5g_sfpTransCode=mc2_5g_sfpTransCode, card_MC_E1_Rmt_Port2_LOS_Normal=card_MC_E1_Rmt_Port2_LOS_Normal, mc10G_OEO_Start_Test=mc10G_OEO_Start_Test, accXFP1WaveLengthTunable=accXFP1WaveLengthTunable, mcIpAddr=mcIpAddr, mc40G_OEOCardTable=mc40G_OEOCardTable, mc1GO2ORmtPort3SFPlink=mc1GO2ORmtPort3SFPlink, mcRmt4_25G_OEOLoopback=mcRmt4_25G_OEOLoopback, mcE1T1Type=mcE1T1Type, qsfpNtwRxPower3=qsfpNtwRxPower3, mc10G_OEOCardObjects=mc10G_OEOCardObjects, shelfName=shelfName, card_Lost=card_Lost, accsfpCopperLength=accsfpCopperLength, card_MC_E1_Co_Port1_LOS_Alarm=card_MC_E1_Co_Port1_LOS_Alarm, mcIP175DVlanMode=mcIP175DVlanMode, card_MC_E1T1_Rmt_TXLOS_Alarm=card_MC_E1T1_Rmt_TXLOS_Alarm, mc10G_OEESpdMode=mc10G_OEESpdMode, card_MC_Co_Fx_Up=card_MC_Co_Fx_Up, rmtCardDesc=rmtCardDesc, mcAccXFP1TunableType=mcAccXFP1TunableType, card_MC_Rmt_SFPSFP1_Removed=card_MC_Rmt_SFPSFP1_Removed, mcNtwXFP2WaveLengthTunability=mcNtwXFP2WaveLengthTunability, card_MC_Co_QSFP1_Removed=card_MC_Co_QSFP1_Removed, card_MC_Co_Ntw_SFP_Removed=card_MC_Co_Ntw_SFP_Removed, mcPmRest=mcPmRest, card_MC_Co_Acc_SFP_Inserted=card_MC_Co_Acc_SFP_Inserted, mcE1T1RmtFLossAlarm=mcE1T1RmtFLossAlarm, mc10G_OEO2RCardTable=mc10G_OEO2RCardTable, card_MC_E1_Rmt_Port2_CV_Alarm=card_MC_E1_Rmt_Port2_CV_Alarm, card_MC_Co_Port3_Up=card_MC_Co_Port3_Up, mc1GE2OPort2SFPlink=mc1GE2OPort2SFPlink, mc10GOEO3RObjects=mc10GOEO3RObjects, card_MC_E1_Co_Port1_AIS_Alarm=card_MC_E1_Co_Port1_AIS_Alarm, mc10G_OEO_Test_Result=mc10G_OEO_Test_Result, card_MC_Co_SFPSFP1_Inserted=card_MC_Co_SFPSFP1_Inserted, mc4_25G_OEOHWWorkMode=mc4_25G_OEOHWWorkMode, card_MC_Co_Tx_Down=card_MC_Co_Tx_Down, mcCWDMObjects=mcCWDMObjects, mcHWRmtCtrlMode=mcHWRmtCtrlMode, mcCfgWorkMode=mcCfgWorkMode, mcQCA8334PortEntry=mcQCA8334PortEntry, mcE1CardTable=mcE1CardTable, mc40G_OEOQsfp1Lane2_link=mc40G_OEOQsfp1Lane2_link, mc10G_OEO2RCurSpdMode=mc10G_OEO2RCurSpdMode, PYSNMP_MODULE_ID=company, mc10G_OEOLoopback=mc10G_OEOLoopback, mcE1T1FLoop=mcE1T1FLoop, card_MC_Rmt_SFP1_Up=card_MC_Rmt_SFP1_Up, mcRmt4_25G_OEOCfgSpdMode=mcRmt4_25G_OEOCfgSpdMode, card_MC_Rmt_PwrDown=card_MC_Rmt_PwrDown, mc1go2o_sfpMmLength=mc1go2o_sfpMmLength, mcQCA8334CfgWorkMode=mcQCA8334CfgWorkMode, mcRmtType=mcRmtType, mcQCA8334VlanMode=mcQCA8334VlanMode, mc4_25G_OEOHWSpdMode=mc4_25G_OEOHWSpdMode, card_MC_Co_QSFP2_Lane1_Up=card_MC_Co_QSFP2_Lane1_Up, mcE1Port2LOS=mcE1Port2LOS, mc1GO2OCardObjects=mc1GO2OCardObjects, mcRmt4_25G_OEOHWLoopback=mcRmt4_25G_OEOHWLoopback, mcRmt10G_OEO_accType=mcRmt10G_OEO_accType, mc2_5GMCObjects=mc2_5GMCObjects, mcTransceiverMode=mcTransceiverMode, mc40G_OEOObjects=mc40G_OEOObjects, mcCm1gAccSfpEntry=mcCm1gAccSfpEntry, mcIP175DCfgWorkMode=mcIP175DCfgWorkMode, mc1GE2ORmtTxlink=mc1GE2ORmtTxlink, mcE1T1RmtTLoop=mcE1T1RmtTLoop, qsfpNtwTxPower2=qsfpNtwTxPower2, mc1GO2OPort2SFPExist=mc1GO2OPort2SFPExist, ntwXFP2WaveLengthTunable=ntwXFP2WaveLengthTunable, qsfpNtwRxPower2=qsfpNtwRxPower2, card_MC_Co_XFP1_Inserted=card_MC_Co_XFP1_Inserted, mc10G_OEOSFP1=mc10G_OEOSFP1, mcQCA8334CardObjects=mcQCA8334CardObjects, card_MC_Co_QSFP1_Lane3_Up=card_MC_Co_QSFP1_Lane3_Up, mcAccQSfpTable=mcAccQSfpTable, mc10G_OEO_ntwType=mc10G_OEO_ntwType, mc40G_OEOLane3LoopMode=mc40G_OEOLane3LoopMode, card_MC_Rmt_SFP3_Removed=card_MC_Rmt_SFP3_Removed, card_MC_Co_QSFP2_Lane3_Down=card_MC_Co_QSFP2_Lane3_Down, psuA=psuA, ipProduct=ipProduct, mcFanCardTable=mcFanCardTable, mcRmtE1Port2CV=mcRmtE1Port2CV, mc40G_OEOQsfp2Lane2_link=mc40G_OEOQsfp2Lane2_link, qsfpAccRxPower2=qsfpAccRxPower2, mc10G_OEO2RCfgSpdMode=mc10G_OEO2RCfgSpdMode, card_MC_E1_Rmt_Port2_LOS_Alarm=card_MC_E1_Rmt_Port2_LOS_Alarm, card_MC_E1T1_Rmt_FXLOS_Normal=card_MC_E1T1_Rmt_FXLOS_Normal, mc2_5g_sfpCopperLength=mc2_5g_sfpCopperLength, mcCmObjects=mcCmObjects, mc10GOEEXFPTunableObjects=mc10GOEEXFPTunableObjects, mc10GOEO1RObjects=mc10GOEO1RObjects, mc40G_OEOHWSpeedMode=mc40G_OEOHWSpeedMode, getAccQSfpCmd=getAccQSfpCmd, mcQCA8334CardTable=mcQCA8334CardTable, mc10G_OEO2R_accType=mc10G_OEO2R_accType, card_MC_E1_Co_Port1_LOS_Normal=card_MC_E1_Co_Port1_LOS_Normal, card_MC_Rmt_SFPSFP1_Inserted=card_MC_Rmt_SFPSFP1_Inserted, mc2_5g_sfpTemperature=mc2_5g_sfpTemperature, mcRmtE1Txlink=mcRmtE1Txlink, accsfpTranPower=accsfpTranPower, mcE1T1CodeType=mcE1T1CodeType, sfpRecvPower=sfpRecvPower, card_MC_Co_Fx_Down=card_MC_Co_Fx_Down, card_MC_Co_QSFP2_Inserted=card_MC_Co_QSFP2_Inserted, mcRmtLFP=mcRmtLFP, card_MC_Rmt_SFP1_Inserted=card_MC_Rmt_SFP1_Inserted, accsfpTransCode=accsfpTransCode, sysLocation=sysLocation, qsfpNtwRxPower4=qsfpNtwRxPower4, card_MC_E1_Rmt_Port1_LOS_Alarm=card_MC_E1_Rmt_Port1_LOS_Alarm, sfpSmLength=sfpSmLength, cwdmWavelength6=cwdmWavelength6, mcE1TxCurWorkMode=mcE1TxCurWorkMode, mc1GE2ORmtPort1SFPExist=mc1GE2ORmtPort1SFPExist, mcCm1gIpObjects=mcCm1gIpObjects, mcRmtE1Port2Loop=mcRmtE1Port2Loop, mc10G_OEO2RCardEntry=mc10G_OEO2RCardEntry, card_MC_Co_SFP1_Up=card_MC_Co_SFP1_Up, qsfpAccTxPower2=qsfpAccTxPower2, card_MC_Rmt_XFP1_Removed=card_MC_Rmt_XFP1_Removed, qsfpAccTxPower1=qsfpAccTxPower1, qsfpAccConnector=qsfpAccConnector, mcRmtE1Port2AIS=mcRmtE1Port2AIS, card_MC_E1T1_Rmt_FXLOS_Alarm=card_MC_E1T1_Rmt_FXLOS_Alarm, card_MC_Co_QSFP1_Inserted=card_MC_Co_QSFP1_Inserted, card_MC_FAN_Normal=card_MC_FAN_Normal, mcNtwQSfpTable=mcNtwQSfpTable, mc10G_OEE_checkResult=mc10G_OEE_checkResult, card_MC_E1T1_Rmt_AIS_Normal=card_MC_E1T1_Rmt_AIS_Normal, mc2_5GMCCardEntry=mc2_5GMCCardEntry, mcE1Txlink=mcE1Txlink, mcQCA8334CardEntry=mcQCA8334CardEntry, mcRmtLoopback=mcRmtLoopback, mcQCA8334CurWorkMode=mcQCA8334CurWorkMode, card_MC_Rmt_SFP2_Down=card_MC_Rmt_SFP2_Down, card_MC_Rmt_SFP1_Removed=card_MC_Rmt_SFP1_Removed, mcRmtE1Port1LOS=mcRmtE1Port1LOS, card_MC_Co_SFP1_Inserted=card_MC_Co_SFP1_Inserted, qsfpNtwRxPower1=qsfpNtwRxPower1, mc10G_OEO2RSFP2=mc10G_OEO2RSFP2, slotTable=slotTable, mc10G_OEECardTable=mc10G_OEECardTable, mc40G_OEOLoopMode=mc40G_OEOLoopMode, mc1go2o_sfpTranPower=mc1go2o_sfpTranPower, mc1GO2ORmtPort2SFPlink=mc1GO2ORmtPort2SFPlink, mc10G_OEO2RCardObjects=mc10G_OEO2RCardObjects, mcCm1gSfpTable=mcCm1gSfpTable, mc1go2o_sfpTemperature=mc1go2o_sfpTemperature, mc1GO2ORmtPort2SFPExist=mc1GO2ORmtPort2SFPExist, card_MC_E1_Co_Port2_CV_Alarm=card_MC_E1_Co_Port2_CV_Alarm, mc1GE2OPort1SFPExist=mc1GE2OPort1SFPExist, accsfpConnector=accsfpConnector, coCardNum=coCardNum, mc1GO2OCardTable=mc1GO2OCardTable, gateway=gateway, qsfpNtwTemperature=qsfpNtwTemperature, card_MC_Rmt_XFP1_Inserted=card_MC_Rmt_XFP1_Inserted, mcIP175DRmtCurWorkMode=mcIP175DRmtCurWorkMode, mc2_5g_sfpConnector=mc2_5g_sfpConnector, mcE1T1RmtCodeType=mcE1T1RmtCodeType, mc1GO2ORmtPort1SFPExist=mc1GO2ORmtPort1SFPExist, mc4_25G_OEOCfgSpdMode=mc4_25G_OEOCfgSpdMode, card_MC_Co_SFP2_Down=card_MC_Co_SFP2_Down, sfpMmLength=sfpMmLength, mc10GOEEXFPTunableCardEntry=mc10GOEEXFPTunableCardEntry, mcIP175DPortIdx=mcIP175DPortIdx, sfpWavelength=sfpWavelength, shelf_psuA_Off=shelf_psuA_Off, card_MC_Co_Port1_Down=card_MC_Co_Port1_Down, mcRmtAccSfpExist=mcRmtAccSfpExist, mcAccXFP1WaveLength=mcAccXFP1WaveLength, card_MC_Co_QSFP2_Lane4_Up=card_MC_Co_QSFP2_Lane4_Up, card_MC_Co_QSFP2_Lane3_Up=card_MC_Co_QSFP2_Lane3_Up, mcE1CardObjects=mcE1CardObjects)
mibBuilder.exportSymbols("XXX-MIB", ntwXFP2TunableType=ntwXFP2TunableType, card_MC_Co_Ntw_SFP_Inserted=card_MC_Co_Ntw_SFP_Inserted, card_MC_E1_Rmt_Port2_AIS_Normal=card_MC_E1_Rmt_Port2_AIS_Normal, mc2_5GMCPort2link=mc2_5GMCPort2link, mc1GE2ORmtPort2SFPExist=mc1GE2ORmtPort2SFPExist, getSfpCmd=getSfpCmd, mc10G_OEO2RSFP1=mc10G_OEO2RSFP1, card_MC_Co_SFPSFP2_Removed=card_MC_Co_SFPSFP2_Removed, mc1GO2ORmtPort1SFPlink=mc1GO2ORmtPort1SFPlink, mcPmObjects=mcPmObjects, card_MC_Co_Tx_Up=card_MC_Co_Tx_Up, qsfpAccTxPower4=qsfpAccTxPower4, shelf_Lost=shelf_Lost, mcPmEntry=mcPmEntry, mc2_5Cm1gSfpEntry=mc2_5Cm1gSfpEntry, mc1GO2OSfp3Entry=mc1GO2OSfp3Entry, cwdmWavelength4=cwdmWavelength4, xfpWaveLengthTunability=xfpWaveLengthTunability, card_MC_FAN_Abnormal=card_MC_FAN_Abnormal, mc10G_OEO2RSFP2Loopback=mc10G_OEO2RSFP2Loopback, subnet=subnet, card_MC_Co_Port2_Up=card_MC_Co_Port2_Up, card_MC_Co_XFP2_Removed=card_MC_Co_XFP2_Removed, shelf_fan_On=shelf_fan_On, mcQCA8334PortObjects=mcQCA8334PortObjects, mcE1Port1Loop=mcE1Port1Loop, mc10G_OEETxlink=mc10G_OEETxlink, mc10G_OEOHWLoopback=mc10G_OEOHWLoopback, mcRmt4_25G_OEOCurSpdMode=mcRmt4_25G_OEOCurSpdMode, coCardDesc=coCardDesc, nmuConfig=nmuConfig, mc1GO2OCardEntry=mc1GO2OCardEntry, mc1go2o_sfpBrSpeed=mc1go2o_sfpBrSpeed, fan=fan, mc10GOEO3RCardEntry=mc10GOEO3RCardEntry, card_MC_Co_XFP1_Down=card_MC_Co_XFP1_Down, card_MC_Rmt_XFP1_Down=card_MC_Rmt_XFP1_Down, mcE1Objects=mcE1Objects, card_MC_Rmt_Tx_Down1=card_MC_Rmt_Tx_Down1, mcHWWorkMode=mcHWWorkMode, card_MC_Rmt_SFPSFP1_Down=card_MC_Rmt_SFPSFP1_Down, card_MC_Co_QSFP2_Lane1_Down=card_MC_Co_QSFP2_Lane1_Down, mc4_25G_OEOAccPD=mc4_25G_OEOAccPD, cwdmWavelength2=cwdmWavelength2, trapHost4=trapHost4, mcQCA8334PortTable=mcQCA8334PortTable, mcCWDMCardObjects=mcCWDMCardObjects, mcTransmitMode=mcTransmitMode, sfpTemperature=sfpTemperature, qsfpNtwConnector=qsfpNtwConnector, mc4_25G_OEOCardTable=mc4_25G_OEOCardTable, mc40G_OEOLane4LoopMode=mc40G_OEOLane4LoopMode, mcQCA8334Objects=mcQCA8334Objects, mc40G_OEOCardObjects=mc40G_OEOCardObjects, shelf_psuB_Off=shelf_psuB_Off, mcIP175DRmtTxlink=mcIP175DRmtTxlink, mc2_5g_sfpVoltage=mc2_5g_sfpVoltage, mcCWDMCardTable=mcCWDMCardTable, mcRmtTransmitMode=mcRmtTransmitMode, mcFxlink=mcFxlink, mcRxByteLo=mcRxByteLo, mc1GE2OTxlink=mc1GE2OTxlink, mc1go2o_sfpVoltage=mc1go2o_sfpVoltage, mc10GOEO1RCardObjects=mc10GOEO1RCardObjects, card_MC_E1_Rmt_Port1_CV_Alarm=card_MC_E1_Rmt_Port1_CV_Alarm, card_MC_Co_XFP1_Up=card_MC_Co_XFP1_Up, mc10G_OEEObjects=mc10G_OEEObjects, card_MC_E1T1_Co_AIS_Alarm=card_MC_E1T1_Co_AIS_Alarm, mc1go2o_sfpSmLength=mc1go2o_sfpSmLength, shelf_Detected=shelf_Detected, card_MC_Co_SFPSFP2_Inserted=card_MC_Co_SFPSFP2_Inserted, card_MC_Rmt_Acc_SFP_Inserted=card_MC_Rmt_Acc_SFP_Inserted, mcIP175DCardObjects=mcIP175DCardObjects, card_MC_Co_XFP2_Down=card_MC_Co_XFP2_Down, mcQCA8334Txlink=mcQCA8334Txlink, mcE1Port2AIS=mcE1Port2AIS, card_MC_Co_Tx_Down2=card_MC_Co_Tx_Down2, sfpTransCode=sfpTransCode, mc4_25G_OEOLoopback=mc4_25G_OEOLoopback, mcNtwXFP2TunableType=mcNtwXFP2TunableType, accsfpVoltage=accsfpVoltage, mcRmt10G_OEOSFP1=mcRmt10G_OEOSFP1, mc1GO2ORmtPort3HWSpd=mc1GO2ORmtPort3HWSpd, mc10G_OEO2RHWSFP2Loopback=mc10G_OEO2RHWSFP2Loopback, qsfpNtwTxPower3=qsfpNtwTxPower3, mc10G_OEO2RVersion=mc10G_OEO2RVersion, accsfpMmLength=accsfpMmLength, mc10G_OEO2RHWSpdMode=mc10G_OEO2RHWSpdMode, mc10G_OEO2RSFP1Loopback=mc10G_OEO2RSFP1Loopback, mc1GE2OCardEntry=mc1GE2OCardEntry, mcQCA8334RmtCurWorkMode=mcQCA8334RmtCurWorkMode, xfpTunableType=xfpTunableType, card_MC_Co_QSFP1_Lane4_Down=card_MC_Co_QSFP1_Lane4_Down, mcIP175DDownStream=mcIP175DDownStream, cardObjects=cardObjects, alarmMIB=alarmMIB, accXFP1WaveLengthTunability=accXFP1WaveLengthTunability, qsfpNtwTxPower4=qsfpNtwTxPower4, mcE1T1Objects=mcE1T1Objects, mcAccSfpExist=mcAccSfpExist, card_MC_E1_Co_Port2_AIS_Normal=card_MC_E1_Co_Port2_AIS_Normal, card_MC_E1_Co_Port2_LOS_Alarm=card_MC_E1_Co_Port2_LOS_Alarm, mcIP175DRmtCfgWorkMode=mcIP175DRmtCfgWorkMode, mc40G_OEOQsfp2Lane1_link=mc40G_OEOQsfp2Lane1_link, accsfpCompliance=accsfpCompliance, card_MC_Co_SFP3_Inserted=card_MC_Co_SFP3_Inserted)
| (object_identifier, integer, octet_string) = mibBuilder.importSymbols('ASN1', 'ObjectIdentifier', 'Integer', 'OctetString')
(named_values,) = mibBuilder.importSymbols('ASN1-ENUMERATION', 'NamedValues')
(single_value_constraint, constraints_union, value_range_constraint, value_size_constraint, constraints_intersection) = mibBuilder.importSymbols('ASN1-REFINEMENT', 'SingleValueConstraint', 'ConstraintsUnion', 'ValueRangeConstraint', 'ValueSizeConstraint', 'ConstraintsIntersection')
(module_compliance, notification_group) = mibBuilder.importSymbols('SNMPv2-CONF', 'ModuleCompliance', 'NotificationGroup')
(gauge32, module_identity, iso, integer32, enterprises, object_identity, unsigned32, counter64, ip_address, bits, counter32, mib_identifier, mib_scalar, mib_table, mib_table_row, mib_table_column, time_ticks, notification_type) = mibBuilder.importSymbols('SNMPv2-SMI', 'Gauge32', 'ModuleIdentity', 'iso', 'Integer32', 'enterprises', 'ObjectIdentity', 'Unsigned32', 'Counter64', 'IpAddress', 'Bits', 'Counter32', 'MibIdentifier', 'MibScalar', 'MibTable', 'MibTableRow', 'MibTableColumn', 'TimeTicks', 'NotificationType')
(display_string, textual_convention) = mibBuilder.importSymbols('SNMPv2-TC', 'DisplayString', 'TextualConvention')
company = module_identity((1, 3, 6, 1, 4, 1, 6688))
company.setRevisions(('2009-03-05 00:00',))
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
if mibBuilder.loadTexts:
company.setRevisionsDescriptions(('1G MC supported',))
if mibBuilder.loadTexts:
company.setLastUpdated('200903050000Z')
if mibBuilder.loadTexts:
company.setOrganization('FiberRoad')
if mibBuilder.loadTexts:
company.setContactInfo('www.fiberroad.com.cn')
if mibBuilder.loadTexts:
company.setDescription('Media Converter NMS SNMP mib file')
ip_product = object_identity((1, 3, 6, 1, 4, 1, 6688, 1))
if mibBuilder.loadTexts:
ipProduct.setStatus('current')
if mibBuilder.loadTexts:
ipProduct.setDescription('IP product line')
height2_hu = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1))
system_mib = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1))
alarm_mib = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2))
shelf_num = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 1), integer32().subtype(subtypeSpec=value_range_constraint(1, 4))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfNum.setStatus('current')
if mibBuilder.loadTexts:
shelfNum.setDescription('The number of shelf in current system')
shelf_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2))
if mibBuilder.loadTexts:
shelfTable.setStatus('current')
if mibBuilder.loadTexts:
shelfTable.setDescription('Shelf table')
shelf_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1)).setIndexNames((0, 'XXX-MIB', 'shelfName'))
if mibBuilder.loadTexts:
shelfEntry.setStatus('current')
if mibBuilder.loadTexts:
shelfEntry.setDescription('Shelf entry definition')
shelf_name = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('master', 1), ('slave1', 2), ('slave2', 3), ('slave3', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfName.setStatus('current')
if mibBuilder.loadTexts:
shelfName.setDescription('Shelf name')
psu_a = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('on', 1), ('off', 2), ('nc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
psuA.setStatus('current')
if mibBuilder.loadTexts:
psuA.setDescription('The status fan A of current shelf')
psu_b = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('on', 1), ('off', 2), ('nc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
psuB.setStatus('current')
if mibBuilder.loadTexts:
psuB.setDescription('The status psu B of current shelf')
vol_a = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('abnormal', 2), ('nc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
volA.setStatus('current')
if mibBuilder.loadTexts:
volA.setDescription('The voltage status of psuA of current shelf')
vol_b = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('normal', 1), ('abnormal', 2), ('nc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
volB.setStatus('current')
if mibBuilder.loadTexts:
volB.setDescription('The voltage status of psuB of current shelf')
fan = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('on', 1), ('off', 2), ('nc', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
fan.setStatus('current')
if mibBuilder.loadTexts:
fan.setDescription('The status fan A of current shelf')
temperature = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 7), integer32()).setUnits(' oC').setMaxAccess('readonly')
if mibBuilder.loadTexts:
temperature.setStatus('current')
if mibBuilder.loadTexts:
temperature.setDescription('The temperature status of current shelf')
co_card_num = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 8), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
coCardNum.setStatus('current')
if mibBuilder.loadTexts:
coCardNum.setDescription('The number of center card inserting of current shelf')
rmt_card_num = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 2, 1, 9), integer32().subtype(subtypeSpec=value_range_constraint(0, 16))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rmtCardNum.setStatus('current')
if mibBuilder.loadTexts:
rmtCardNum.setDescription('The number of remote card inserting of current shelf')
slot_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3))
slot_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1))
if mibBuilder.loadTexts:
slotTable.setStatus('current')
if mibBuilder.loadTexts:
slotTable.setDescription('Sparse table containing one entry for each slot in exist chassis in the system, indexed by shelfIdx and slotIdx.')
slot_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1)).setIndexNames((0, 'XXX-MIB', 'shelfIdx'), (0, 'XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
slotEntry.setStatus('current')
if mibBuilder.loadTexts:
slotEntry.setDescription("in this table ,user can find the converter module's type inserted in the system's slot.then you can get the detail information about the specified type in the cardObjects table")
shelf_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('master', 1), ('slave1', 2), ('slave2', 3), ('slave3', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
shelfIdx.setStatus('current')
if mibBuilder.loadTexts:
shelfIdx.setDescription('Chassis index - 1 = master management module, 2-4 = slave management module')
slot_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17))).clone(namedValues=named_values(('slot01', 1), ('slot02', 2), ('slot03', 3), ('slot04', 4), ('slot05', 5), ('slot06', 6), ('slot07', 7), ('slot08', 8), ('slot09', 9), ('slot10', 10), ('slot11', 11), ('slot12', 12), ('slot13', 13), ('slot14', 14), ('slot15', 15), ('slot16', 16), ('slot17', 17)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
slotIdx.setStatus('current')
if mibBuilder.loadTexts:
slotIdx.setDescription("chassis's slot,whitch is a index in this table")
co_card_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 100, 101, 102))).clone(namedValues=named_values(('no-card', 0), ('ip113s', 1), ('ip113f', 2), ('mc-1g-e2o', 3), ('mc-1g-o2o', 4), ('mc-4-25g-oeo', 5), ('mc-ip175d', 6), ('mc-10g-oeo', 7), ('mc-10g-oee', 8), ('mc-FAN', 9), ('mc-10g-oeo-1r', 10), ('mc-2-5g', 11), ('mc-40g-oeo', 12), ('mc-2-5g-t', 13), ('mc-2-5g-f', 14), ('mc-2-5g-mux-t', 15), ('mc-2-5g-mux-f', 16), ('mc-1g-e2o-backup', 17), ('mc-e1-1sfp', 18), ('mc-e1-2sfp', 19), ('mc-100m-sfp', 20), ('mc-1g-o2o-backup', 21), ('mc-cwdm-4', 22), ('mc-cwdm-8', 23), ('mc-10g-oeo-2r', 24), ('mc-qca8334', 25), ('mc-e1t1', 26), ('fr600f-mm', 100), ('fr600f-ms', 101), ('not-support', 102)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
coCardType.setStatus('current')
if mibBuilder.loadTexts:
coCardType.setDescription("local card's type inserted in the chassis")
co_card_desc = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 4), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
coCardDesc.setStatus('current')
if mibBuilder.loadTexts:
coCardDesc.setDescription("local card's description")
rmt_card_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 100, 101, 102))).clone(namedValues=named_values(('no-card', 0), ('ip113sr', 1), ('ip113f', 2), ('mc-1g-e2o', 3), ('mc-1g-o2o', 4), ('mc-4-25g-oeor', 5), ('mc-ip175dr', 6), ('mc-10g-oeor', 7), ('mc-10g-oeer', 8), ('mc-FANr', 9), ('mc-10g-oeo-1rr', 10), ('mc-2-5gr', 11), ('mc-40g-oeor', 12), ('mc-2-5g-tr', 13), ('mc-2-5g-fr', 14), ('mc-2-5g-mux-tr', 15), ('mc-2-5g-mux-fr', 16), ('mc-1g-e2o-backupr', 17), ('mc-e1-1sfpr', 18), ('mc-e1-2sfpr', 19), ('mc-100m-sfpr', 20), ('mc-1g-o2o-backupr', 21), ('mc-cwdmr-4', 22), ('mc-cwdmr-8', 23), ('mc-10g-oeo-2rr', 24), ('mc-qca8334r', 25), ('mc-e1t1r', 26), ('fr600f-mm', 100), ('fr600f-ms', 101), ('not-support', 102)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
rmtCardType.setStatus('current')
if mibBuilder.loadTexts:
rmtCardType.setDescription("remote card's type connect with the local converter")
rmt_card_desc = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 3, 1, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
rmtCardDesc.setStatus('current')
if mibBuilder.loadTexts:
rmtCardDesc.setDescription("remote card's description")
card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4))
nmu_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1))
nmu_config = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1))
nmu_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(100, 101, 102))).clone(namedValues=named_values(('fr600f-mm', 100), ('fr600f-ms', 101), ('not-support', 102)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
nmuType.setStatus('current')
if mibBuilder.loadTexts:
nmuType.setDescription('The type of NMU (network management unit)')
ipaddr = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 2), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ipaddr.setStatus('current')
if mibBuilder.loadTexts:
ipaddr.setDescription('The ethernet IP address of NMU (network management unit)')
subnet = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 3), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
subnet.setStatus('current')
if mibBuilder.loadTexts:
subnet.setDescription('The etherent mask address of NMU (network management unit)')
gateway = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 4), ip_address()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
gateway.setStatus('current')
if mibBuilder.loadTexts:
gateway.setDescription('The ethernet gateway address of NMU (network management unit)')
sys_contact = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 5), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysContact.setStatus('current')
if mibBuilder.loadTexts:
sysContact.setDescription('Mirror of the system.sysContact.0')
sys_name = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 6), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysName.setStatus('current')
if mibBuilder.loadTexts:
sysName.setDescription('Mirror of the system.sysName.0')
sys_location = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 7), display_string()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
sysLocation.setStatus('current')
if mibBuilder.loadTexts:
sysLocation.setDescription('Mirror of the system.sysLocation.0')
trap_host1 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 8), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
trapHost1.setStatus('current')
if mibBuilder.loadTexts:
trapHost1.setDescription("The first host's IP address used to receive trap messages, when set 0 it simply delete this entry. This applies to the trap host 2~4 below as well.")
trap_host2 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 9), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
trapHost2.setStatus('current')
if mibBuilder.loadTexts:
trapHost2.setDescription("The second host's IP address used to receive trap messages")
trap_host3 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 10), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
trapHost3.setStatus('current')
if mibBuilder.loadTexts:
trapHost3.setDescription("The third host's IP address used to receive trap messages")
trap_host4 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 1, 1, 11), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
trapHost4.setStatus('current')
if mibBuilder.loadTexts:
trapHost4.setDescription("The fourth host's IP address used to receive trap messages")
mc_cm_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2))
mc_cm_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1))
if mibBuilder.loadTexts:
mcCmTable.setStatus('current')
if mibBuilder.loadTexts:
mcCmTable.setDescription('MC Configuration table')
mc_cm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcCmEntry.setStatus('current')
if mibBuilder.loadTexts:
mcCmEntry.setDescription('MC Configuration entry definition')
mc_shelf_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('master', 1), ('slave1', 2), ('slave2', 3), ('slave3', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcShelfIdx.setStatus('current')
if mibBuilder.loadTexts:
mcShelfIdx.setDescription('Shelf index')
mc_card_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16))).clone(namedValues=named_values(('card01', 1), ('card02', 2), ('card03', 3), ('card04', 4), ('card05', 5), ('card06', 6), ('card07', 7), ('card08', 8), ('card09', 9), ('card10', 10), ('card11', 11), ('card12', 12), ('card13', 13), ('card14', 14), ('card15', 15), ('card16', 16)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcCardIdx.setStatus('current')
if mibBuilder.loadTexts:
mcCardIdx.setDescription('Card index')
mc_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26))).clone(namedValues=named_values(('no-card', 0), ('ip113s', 1), ('ip113f', 2), ('mc-1g-e2o', 3), ('mc-1g-o2o', 4), ('mc-4-25g-oeo', 5), ('mc-ip175d', 6), ('mc-10g-oeo', 7), ('mc-10g-oee', 8), ('mc-FAN', 9), ('mc-10g-oeo-1r', 10), ('mc-2-5g', 11), ('mc-40g-oeo', 12), ('mc-2-5g-t', 13), ('mc-2-5g-f', 14), ('mc-2-5g-mux-t', 15), ('mc-2-5g-mux-f', 16), ('mc-1g-e2o-backup', 17), ('mc-e1-1sfp', 18), ('mc-e1-2sfp', 19), ('mc-100m-sfp', 20), ('mc-1g-o2o-backup', 21), ('mc-cwdm-4', 22), ('mc-cwdm-8', 23), ('mc-10g-oeo-2r', 24), ('mc-qca8334', 25), ('mc-e1t1', 26)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcType.setStatus('current')
if mibBuilder.loadTexts:
mcType.setDescription("Center card's type")
mc_transceiver_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('bidi', 1), ('duplex-fiber', 2), ('sfp', 3), ('not-support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcTransceiverMode.setStatus('current')
if mibBuilder.loadTexts:
mcTransceiverMode.setDescription("Center card's optical transceiver mode. 100M card support bidi/duplex-fiber; 1G card support bidi/duplex-fiber/sfp. Once sfp is given, the following mcTransceiverDist should be ignored.")
mc_transceiver_dist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 5), integer32().subtype(subtypeSpec=value_range_constraint(1, 120))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcTransceiverDist.setStatus('current')
if mibBuilder.loadTexts:
mcTransceiverDist.setDescription("Center card's optical transceiver distance, 1 means 550m for duplex-fiber mode in case of 1G card, otherwise it represents the real distance (unit of km).")
mc_port_state = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('locked', 1), ('unlocked', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcPortState.setStatus('current')
if mibBuilder.loadTexts:
mcPortState.setDescription("Center card's port status, locked or unlocked")
mc_transmit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('cut-through', 1), ('store-forward', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcTransmitMode.setStatus('current')
if mibBuilder.loadTexts:
mcTransmitMode.setDescription("Center card's transmmit mode")
mc_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcCurWorkMode.setDescription("Center card's current work mode")
mc_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcCfgWorkMode.setDescription("Center card's configurable work mode")
mc_lfp_cfg = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcLFPCfg.setStatus('current')
if mibBuilder.loadTexts:
mcLFPCfg.setDescription('Remote fault detect function, valid only on center MC card')
mc_up_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 11), gauge32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcUpStream.setStatus('current')
if mibBuilder.loadTexts:
mcUpStream.setDescription("Center card's up stream of MC")
mc_down_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 12), gauge32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcDownStream.setStatus('current')
if mibBuilder.loadTexts:
mcDownStream.setDescription("Center card's down stream of MC")
mc_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcTxlink.setStatus('current')
if mibBuilder.loadTexts:
mcTxlink.setDescription("Center card's electrical port's link status")
mc_fxlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcFxlink.setStatus('current')
if mibBuilder.loadTexts:
mcFxlink.setDescription("Center card's optical port's link status")
mc_hwlfp = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcHWLFP.setStatus('current')
if mibBuilder.loadTexts:
mcHWLFP.setDescription("Center card's HW LFP, not applicable for 1G card")
mc_hw_transmit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('cut-through', 1), ('store-forward', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts:
mcHWTransmitMode.setDescription("Center card's HW transmit mode, not applicable for 1G card")
mc_hw_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcHWWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mcHWWorkMode.setDescription("Center card's HW work mode, not applicable for 1G card")
mc_hw_rmt_ctrl_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcHWRmtCtrlMode.setStatus('current')
if mibBuilder.loadTexts:
mcHWRmtCtrlMode.setDescription("Center card's HW remote control mode (only valid for local card). the disable mode indicates that all SET operations must be prohibited")
mc_ntw_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inserted', 1), ('removed', 2), ('na', 3), ('not-support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcNtwSfpExist.setStatus('current')
if mibBuilder.loadTexts:
mcNtwSfpExist.setDescription("Center 1G card's Network SFP indication")
mc_acc_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inserted', 1), ('removed', 2), ('na', 3), ('not-support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcAccSfpExist.setStatus('current')
if mibBuilder.loadTexts:
mcAccSfpExist.setDescription("Center 1G card's Access SFP indication, applicable only for O2O type")
mc_utility = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('idle', 1), ('reset', 2), ('default', 3), ('set2hw', 4), ('not-support', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcUtility.setStatus('current')
if mibBuilder.loadTexts:
mcUtility.setDescription('reset, default to factory, set to HW word, etc...')
mc_rmt_detect = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('no-remote', 0), ('yes', 1), ('not-support', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtDetect.setStatus('current')
if mibBuilder.loadTexts:
mcRmtDetect.setDescription('An identifier to indicate if there is a remote MC currently connecting to system or not')
mc_rmt_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26))).clone(namedValues=named_values(('no-card', 0), ('ip113sr', 1), ('ip113f', 2), ('mc-1g-e2or', 3), ('mc-1g-o2or', 4), ('mc-4-25g-oeor', 5), ('mc-ip175dr', 6), ('mc-10g-oeor', 7), ('mc-10g-oeer', 8), ('mc-FANr', 9), ('mc-10g-oeo-1rr', 10), ('mc-2-5gr', 11), ('mc-40g-oeor', 12), ('mc-2-5g-tr', 13), ('mc-2-5g-fr', 14), ('mc-2-5g-mux-tr', 15), ('mc-2-5g-mux-fr', 16), ('mc-1g-e2o-backupr', 17), ('mc-e1-1sfpr', 18), ('mc-e1-2sfpr', 19), ('mc-100m-sfpr', 20), ('mc-1g-o2o-backupr', 21), ('mc-cwdmr-4', 22), ('mc-cwdmr-8', 23), ('mc-10g-oeo-2rr', 24), ('mc-qca8334r', 25), ('mc-e1t1r', 26)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtType.setStatus('current')
if mibBuilder.loadTexts:
mcRmtType.setDescription("Remote card's type")
mc_rmt_transmit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 24), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('cut-through', 1), ('store-forward', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtTransmitMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmtTransmitMode.setDescription("Remote card's transmmit mode")
mc_rmt_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 25), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmtCurWorkMode.setDescription("Remote card's current work mode")
mc_rmt_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 26), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmtCfgWorkMode.setDescription("Remote card's configurable work mode")
mc_rmt_lfp = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 27), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtLFP.setStatus('current')
if mibBuilder.loadTexts:
mcRmtLFP.setDescription("Remote card's LFP lamp state")
mc_rmt_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 28), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtTxlink.setStatus('current')
if mibBuilder.loadTexts:
mcRmtTxlink.setDescription("Remote card's electrial port status")
mc_rmt_hwlfp = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 29), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtHWLFP.setStatus('current')
if mibBuilder.loadTexts:
mcRmtHWLFP.setDescription("Remote card's HW LFP, not applicable for 1G card")
mc_rmt_hw_transmit_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 30), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('cut-through', 1), ('store-forward', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtHWTransmitMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmtHWTransmitMode.setDescription("Remote card's HW transmit mode, not applicable for 1G card")
mc_rmt_hw_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 31), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtHWWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmtHWWorkMode.setDescription("Remote card's HW work mode, not applicable for 1G card")
mc_rmt_loopback = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 32), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtLoopback.setStatus('current')
if mibBuilder.loadTexts:
mcRmtLoopback.setDescription("Remote card's HW Loopback state")
mc_rmt_pwr_down = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 33), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('powerdown', 1), ('normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtPwrDown.setStatus('current')
if mibBuilder.loadTexts:
mcRmtPwrDown.setDescription("Remote card's power down state")
mc_rmt_acc_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 34), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtAccSfpExist.setStatus('current')
if mibBuilder.loadTexts:
mcRmtAccSfpExist.setDescription("Remote 1G card's Access SFP indication, applicable only for O2O type")
mc_rmt_utility = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 1, 1, 35), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5))).clone(namedValues=named_values(('no-card', 0), ('idle', 1), ('reset', 2), ('default', 3), ('set2hw', 4), ('not-support', 5)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtUtility.setStatus('current')
if mibBuilder.loadTexts:
mcRmtUtility.setDescription("Rmote cards's reset, default to factory, set to HW word, etc...")
mc_cm1g_specific_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2))
mc_cm1g_ip_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1))
mc_cm1g_ip_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1))
if mibBuilder.loadTexts:
mcCm1gIpTable.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gIpTable.setDescription('MC 1G Ip address table')
mc_cm1g_ip_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcLoOrRmtFg'))
if mibBuilder.loadTexts:
mcCm1gIpEntry.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gIpEntry.setDescription('MC 1G Ip address entry definition')
mc_lo_or_rmt_fg = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('local', 1), ('remote', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcLoOrRmtFg.setStatus('current')
if mibBuilder.loadTexts:
mcLoOrRmtFg.setDescription('location index, local or remote')
mc_ip_addr = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 1, 1, 1, 2), ip_address()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIpAddr.setStatus('current')
if mibBuilder.loadTexts:
mcIpAddr.setDescription('The Ip address of the node')
mc_cm1g_sfp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2))
mc_cm1g_sfp_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1))
if mibBuilder.loadTexts:
mcCm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gSfpTable.setDescription('MC 1G SFP table')
mc_cm1g_sfp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcLoOrRmtFg'))
if mibBuilder.loadTexts:
mcCm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gSfpEntry.setDescription('MC 1G SFP entry definition')
get_sfp_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
getSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
sfp_compliance = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpCompliance.setStatus('current')
if mibBuilder.loadTexts:
sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
sfp_connector = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpConnector.setStatus('current')
if mibBuilder.loadTexts:
sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
sfp_trans_code = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpTransCode.setStatus('current')
if mibBuilder.loadTexts:
sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit1: Copper Module bit2: MultiMode bit3: MultiMode others: unsupported')
sfp_sm_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpSmLength.setStatus('current')
if mibBuilder.loadTexts:
sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
sfp_mm_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpMmLength.setStatus('current')
if mibBuilder.loadTexts:
sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
sfp_copper_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts:
sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
sfp_br_speed = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts:
sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
sfp_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpWavelength.setStatus('current')
if mibBuilder.loadTexts:
sfpWavelength.setDescription('SFP laser wavelength (one word)')
sfp_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpTemperature.setStatus('current')
if mibBuilder.loadTexts:
sfpTemperature.setDescription('SFP temperature (one type, signed)')
sfp_tran_power = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpTranPower.setStatus('current')
if mibBuilder.loadTexts:
sfpTranPower.setDescription('SFP tx power (one type, signed)')
sfp_recv_power = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts:
sfpRecvPower.setDescription('SFP rx power (one type, signed)')
sfp_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 2, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
sfpVoltage.setStatus('current')
if mibBuilder.loadTexts:
sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc_cm1g_acc_sfp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3))
mc_cm1g_acc_sfp_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1))
if mibBuilder.loadTexts:
mcCm1gAccSfpTable.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gAccSfpTable.setDescription('MC 1G Access SFP table')
mc_cm1g_acc_sfp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcLoOrRmtFg'))
if mibBuilder.loadTexts:
mcCm1gAccSfpEntry.setStatus('current')
if mibBuilder.loadTexts:
mcCm1gAccSfpEntry.setDescription('MC 1G Access SFP entry definition')
get_acc_sfp_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
getAccSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
getAccSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
accsfp_compliance = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpCompliance.setStatus('current')
if mibBuilder.loadTexts:
accsfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
accsfp_connector = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpConnector.setStatus('current')
if mibBuilder.loadTexts:
accsfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
accsfp_trans_code = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpTransCode.setStatus('current')
if mibBuilder.loadTexts:
accsfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
accsfp_sm_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpSmLength.setStatus('current')
if mibBuilder.loadTexts:
accsfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
accsfp_mm_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpMmLength.setStatus('current')
if mibBuilder.loadTexts:
accsfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
accsfp_copper_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpCopperLength.setStatus('current')
if mibBuilder.loadTexts:
accsfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
accsfp_br_speed = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts:
accsfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
accsfp_wavelength = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpWavelength.setStatus('current')
if mibBuilder.loadTexts:
accsfpWavelength.setDescription('SFP laser wavelength (one word)')
accsfp_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpTemperature.setStatus('current')
if mibBuilder.loadTexts:
accsfpTemperature.setDescription('SFP temperature (one type, signed)')
accsfp_tran_power = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpTranPower.setStatus('current')
if mibBuilder.loadTexts:
accsfpTranPower.setDescription('SFP tx power (one type, signed)')
accsfp_recv_power = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 12), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpRecvPower.setStatus('current')
if mibBuilder.loadTexts:
accsfpRecvPower.setDescription('SFP rx power (one type, signed)')
accsfp_voltage = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 2, 3, 1, 1, 13), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accsfpVoltage.setStatus('current')
if mibBuilder.loadTexts:
accsfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc_ip175_d_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3))
mc_ip175_d_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1))
mc_ip175_d_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1))
if mibBuilder.loadTexts:
mcIP175DCardTable.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DCardTable.setDescription('MC IP175D Configuration table')
mc_ip175_d_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcIP175DCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DCardEntry.setDescription('MC Configuration entry definition')
mc_ip175_d_vlan_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('Normal', 1), ('mode1', 2), ('mode2', 3), ('not-support', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIP175DVlanMode.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DVlanMode.setDescription("Center card's vlan mode")
mc_ip175_d_port_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2))
mc_ip175_d_port_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1))
if mibBuilder.loadTexts:
mcIP175DPortTable.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DPortTable.setDescription('MC IP175D Configuration table')
mc_ip175_d_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcIP175DPortIdx'))
if mibBuilder.loadTexts:
mcIP175DPortEntry.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DPortEntry.setDescription('MC Configuration entry definition')
mc_ip175_d_port_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('port1', 1), ('port2', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcIP175DPortIdx.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DPortIdx.setDescription('Port index')
mc_ip175_d_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcIP175DCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcIP175DCurWorkMode.setDescription("Center card's port current work mode")
mc_ip175_d_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIP175DCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcIP175DCfgWorkMode.setDescription("Center card's port configurable work mode")
mc_ip175_d_up_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(64, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIP175DUpStream.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DUpStream.setDescription("Center card's port up stream of MC")
mc_ip175_d_down_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 5), gauge32().subtype(subtypeSpec=value_range_constraint(64, 100000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIP175DDownStream.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DDownStream.setDescription("Center card's port down stream of MC")
mc_ip175_d_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcIP175DTxlink.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DTxlink.setDescription("Center card's port 1 electrical port's link status")
mc_ip175_d_rmt_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcIP175DRmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcIP175DRmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mc_ip175_d_rmt_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcIP175DRmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcIP175DRmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mc_ip175_d_rmt_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 3, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcIP175DRmtTxlink.setStatus('current')
if mibBuilder.loadTexts:
mcIP175DRmtTxlink.setDescription("Remote card's port electrial port status")
mc4_25_g_oeo_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4)).setLabel('mc4-25G-OEOObjects')
mc4_25_g_oeo_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1)).setLabel('mc4-25G-OEOCardObjects')
mc4_25_g_oeo_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1)).setLabel('mc4-25G-OEOCardTable')
if mibBuilder.loadTexts:
mc4_25G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOCardTable.setDescription('MC 4.25G OEO Configuration table')
mc4_25_g_oeo_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1)).setLabel('mc4-25G-OEOCardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc4_25G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc4_25_g_oeo_cur_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mc4-25G-OEOCurSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mc4_25_g_oeo_cfg_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mc4-25G-OEOCfgSpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mc4_25_g_oeo_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc4-25G-OEOLoopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOLoopback.setDescription("card's Loopback state")
mc4_25_g_oeo_work_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('repeater', 1), ('retimer', 2), ('not-support', 3)))).setLabel('mc4-25G-OEOWorkMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOWorkMode.setDescription("card's Work Mode")
mc4_25_g_oeo_ntw_pd = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc4-25G-OEONtwPD').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEONtwPD.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEONtwPD.setDescription("Center card's network side PD status")
mc4_25_g_oeo_acc_pd = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc4-25G-OEOAccPD').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEOAccPD.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOAccPD.setDescription("Center card's access side PD status")
mc4_25_g_oeohw_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mc4-25G-OEOHWSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc4_25_g_oeohw_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc4-25G-OEOHWLoopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc4_25_g_oeohw_work_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('repeater', 1), ('retimer', 2), ('not-support', 3)))).setLabel('mc4-25G-OEOHWWorkMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc4_25_g_oeo__test__lock = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Lock', 1), ('Unlock', 2)))).setLabel('mc4-25G-OEO-Test-Lock').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc4_25_g_oeo__test__error__counter = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 11), integer32()).setLabel('mc4-25G-OEO-Test-Error-Counter').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc4_25_g_oeo__test__continue__time = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 12), integer32()).setLabel('mc4-25G-OEO-Test-Continue-Time').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc4_25_g_oeo__test__result = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Pass', 1), ('Error', 2)))).setLabel('mc4-25G-OEO-Test-Result').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Test_Result.setDescription('test result')
mc4_25_g_oeo__start__test = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Start', 1), ('Stop', 2)))).setLabel('mc4-25G-OEO-Start-Test').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc4_25G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Start_Test.setDescription('start test and stop test')
mc4_25_g_oeo__get__test__rst = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('Get', 1)))).setLabel('mc4-25G-OEO-Get-Test-Rst').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc4_25G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts:
mc4_25G_OEO_Get_Test_Rst.setDescription('get test result')
mc_rmt4_25_g_oeo_cur_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mcRmt4-25G-OEOCurSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOCurSpdMode.setDescription("Center card's config speed mode")
mc_rmt4_25_g_oeo_cfg_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mcRmt4-25G-OEOCfgSpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOCfgSpdMode.setDescription("Center card's current speed mode")
mc_rmt4_25_g_oeo_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mcRmt4-25G-OEOLoopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOLoopback.setDescription("card's Loopback state")
mc_rmt4_25_g_oeo_work_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('repeater', 1), ('retimer', 2), ('not-support', 3)))).setLabel('mcRmt4-25G-OEOWorkMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOWorkMode.setDescription("card's Work Mode")
mc_rmt4_25_g_oeohw_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11))).clone(namedValues=named_values(('Infini', 1), ('STM16', 2), ('STM4', 3), ('STM1', 4), ('FCx4', 5), ('FCx2', 6), ('FCx1', 7), ('GE', 8), ('FE', 9), ('ESCOM', 10), ('not-support', 11)))).setLabel('mcRmt4-25G-OEOHWSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc_rmt4_25_g_oeohw_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mcRmt4-25G-OEOHWLoopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc_rmt4_25_g_oeohw_work_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 4, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('repeater', 1), ('retimer', 2), ('not-support', 3)))).setLabel('mcRmt4-25G-OEOHWWorkMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWWorkMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmt4_25G_OEOHWWorkMode.setDescription("card's HW Work Mode")
mc10_g_oeo_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5)).setLabel('mc10G-OEOObjects')
mc10_g_oeo_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1)).setLabel('mc10G-OEOCardObjects')
mc10_g_oeo_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1)).setLabel('mc10G-OEOCardTable')
if mibBuilder.loadTexts:
mc10G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOCardTable.setDescription('MC 10G OEO Configuration table')
mc10_g_oeo_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1)).setLabel('mc10G-OEOCardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc10_g_oeo_cur_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mc10G-OEOCurSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10_g_oeo_cfg_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mc10G-OEOCfgSpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc10_g_oeo_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEOLoopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOLoopback.setDescription("card's Loopback state")
mc10_g_oeosfp1 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEOSFP1').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOSFP1.setDescription("Center card's SFP1 link status")
mc10_g_oeosfp2 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEOSFP2').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEOSFP2.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOSFP2.setDescription("Center card's SFP2 link status")
mc10_g_oeohw_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mc10G-OEOHWSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOHWSpdMode.setDescription("Center card's HW speed mode")
mc10_g_oeohw_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEOHWLoopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc10_g_oeo__test__lock = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Lock', 1), ('Unlock', 2)))).setLabel('mc10G-OEO-Test-Lock').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Lock.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Lock.setDescription('test result lock or unlock')
mc10_g_oeo__test__error__counter = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 9), integer32()).setLabel('mc10G-OEO-Test-Error-Counter').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Error_Counter.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Error_Counter.setDescription('test result error counter')
mc10_g_oeo__test__continue__time = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 10), integer32()).setLabel('mc10G-OEO-Test-Continue-Time').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Continue_Time.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Continue_Time.setDescription('test continue time unit is second')
mc10_g_oeo__test__result = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Pass', 1), ('Error', 2)))).setLabel('mc10G-OEO-Test-Result').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Result.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Test_Result.setDescription('test result')
mc10_g_oeo__start__test = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('Start', 1), ('Stop', 2)))).setLabel('mc10G-OEO-Start-Test').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEO_Start_Test.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Start_Test.setDescription('start test and stop test')
mc10_g_oeo__get__test__rst = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1))).clone(namedValues=named_values(('Get', 1)))).setLabel('mc10G-OEO-Get-Test-Rst').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEO_Get_Test_Rst.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_Get_Test_Rst.setDescription('get test result')
mc_rmt10_g_oeo_cur_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mcRmt10G-OEOCurSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEOCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmt10G_OEOCurSpdMode.setDescription("Center card's current speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc_rmt10_g_oeo_cfg_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mcRmt10G-OEOCfgSpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmt10G_OEOCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmt10G_OEOCfgSpdMode.setDescription("Center card's config speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc_rmt10_g_oeo_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mcRmt10G-OEOLoopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmt10G_OEOLoopback.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEOLoopback.setDescription("card's Loopback state")
mc_rmt10_g_oeohw_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 4))).clone(namedValues=named_values(('LAN', 1), ('WAN', 2), ('not-support', 4)))).setLabel('mcRmt10G-OEOHWSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEOHWSpdMode.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEOHWSpdMode.setDescription("Center card's HW speed mode 10G LAN(10.3125G) and 10G WAN(9.95328G)")
mc_rmt10_g_oeohw_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mcRmt10G-OEOHWLoopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEOHWLoopback.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEOHWLoopback.setDescription("card's HW Loopback state")
mc_rmt10_g_oeosfp1 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mcRmt10G-OEOSFP1').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEOSFP1.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEOSFP1.setDescription("card's SFP1 link status")
mc10_g_oeo_acc_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mc10G-OEO-accType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_accType.setDescription('')
mc10_g_oeo_ntw_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mc10G-OEO-ntwType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO_ntwType.setDescription('')
mc_rmt10_g_oeo_acc_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mcRmt10G-OEO-accType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEO_accType.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEO_accType.setDescription('')
mc_rmt10_g_oeo_ntw_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 5, 1, 1, 1, 23), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mcRmt10G-OEO-ntwType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmt10G_OEO_ntwType.setStatus('current')
if mibBuilder.loadTexts:
mcRmt10G_OEO_ntwType.setDescription('')
mc10_g_oee_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6)).setLabel('mc10G-OEEObjects')
mc10_g_oee_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1)).setLabel('mc10G-OEECardObjects')
mc10_g_oee_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1)).setLabel('mc10G-OEECardTable')
if mibBuilder.loadTexts:
mc10G_OEECardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEECardTable.setDescription('MC 10G OEE Configuration table')
mc10_g_oee_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1)).setLabel('mc10G-OEECardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10G_OEECardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEECardEntry.setDescription('MC Configuration entry definition')
mc10_g_oee_txlink = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEETxlink').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEETxlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEETxlink.setDescription("Center card's electrical port's link status")
mc10_g_oee_fxlink = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEEFxlink').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEEFxlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEEFxlink.setDescription("Center card's optical port's link status")
mc10_g_oee_cur_spd = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9))).clone(namedValues=named_values(('no-card', 0), ('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('m10G-Master', 7), ('m10G-Slave', 8), ('not-support', 9)))).setLabel('mc10G-OEECurSpd').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEECurSpd.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEECurSpd.setDescription("Local card's current spd")
mc10_g_oee_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEELoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEELoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEELoopMode.setDescription("card's Loopback state")
mc10_g_oee_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 7, 8))).clone(namedValues=named_values(('auto', 1), ('m10G-Master', 7), ('m10G-Slave', 8)))).setLabel('mc10G-OEESpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEESpdMode.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEESpdMode.setDescription("card's speed mode")
mc10_g_oeehw_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEEHWLoopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEEHWLoopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEEHWLoopback.setDescription("card's Loopback state")
mc10_g_oee_ntw_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mc10G-OEE-ntwType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEE_ntwType.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEE_ntwType.setDescription('')
mc10_g_oee_check_result = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 6, 1, 1, 1, 8), integer32()).setLabel('mc10G-OEE-checkResult').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEE_checkResult.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEE_checkResult.setDescription('test result')
mc_fan_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7))
mc_fan_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1))
mc_fan_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1))
if mibBuilder.loadTexts:
mcFanCardTable.setStatus('current')
if mibBuilder.loadTexts:
mcFanCardTable.setDescription('MC fan card table')
mc_fan_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcFanCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcFanCardEntry.setDescription('MC Configuration entry definition')
mc_fan_status = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 7, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Normal', 1), ('Abnormal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcFanStatus.setStatus('mandatory')
if mibBuilder.loadTexts:
mcFanStatus.setDescription("Center card's fan status")
mc40_g_oeo_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8)).setLabel('mc40G-OEOObjects')
mc40_g_oeo_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1)).setLabel('mc40G-OEOCardObjects')
mc40_g_oeo_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1)).setLabel('mc40G-OEOCardTable')
if mibBuilder.loadTexts:
mc40G_OEOCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOCardTable.setDescription('MC 40G OEO Configuration table')
mc40_g_oeo_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1)).setLabel('mc40G-OEOCardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc40G_OEOCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOCardEntry.setDescription('MC Configuration entry definition')
mc40_g_oeo_qsfp1_lane1_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp1Lane1-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane1_link.setDescription("Center card's Qsfp1 Lane1 link status")
mc40_g_oeo_qsfp1_lane2_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp1Lane2-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane2_link.setDescription("Center card's Qsfp1 Lane2 link status")
mc40_g_oeo_qsfp1_lane3_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp1Lane3-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane3_link.setDescription("Center card's Qsfp1 Lane3 link status")
mc40_g_oeo_qsfp1_lane4_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp1Lane4-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp1Lane4_link.setDescription("Center card's Qsfp1 Lane4 link status")
mc40_g_oeo_qsfp2_lane1_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp2Lane1-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane1_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane1_link.setDescription("Center card's Qsfp2 Lane1 link status")
mc40_g_oeo_qsfp2_lane2_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp2Lane2-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane2_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane2_link.setDescription("Center card's Qsfp2 Lane2 link status")
mc40_g_oeo_qsfp2_lane3_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp2Lane3-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane3_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane3_link.setDescription("Center card's Qsfp2 Lane3 link status")
mc40_g_oeo_qsfp2_lane4_link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc40G-OEOQsfp2Lane4-link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane4_link.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOQsfp2Lane4_link.setDescription("Center card's Qsfp2 Lane4 link status")
mc40_g_oeo_lane1_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('line-side-enable', 1), ('host-side-enable', 2), ('disable', 3), ('not-support', 4)))).setLabel('mc40G-OEOLane1LoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOLane1LoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOLane1LoopMode.setDescription("card's Lane1 Loopback state")
mc40_g_oeo_lane2_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('line-side-enable', 1), ('host-side-enable', 2), ('disable', 3), ('not-support', 4)))).setLabel('mc40G-OEOLane2LoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOLane2LoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOLane2LoopMode.setDescription("card's Lane2 Loopback state")
mc40_g_oeo_lane3_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('line-side-enable', 1), ('host-side-enable', 2), ('disable', 3), ('not-support', 4)))).setLabel('mc40G-OEOLane3LoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOLane3LoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOLane3LoopMode.setDescription("card's Lane3 Loopback state")
mc40_g_oeo_lane4_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('line-side-enable', 1), ('host-side-enable', 2), ('disable', 3), ('not-support', 4)))).setLabel('mc40G-OEOLane4LoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOLane4LoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOLane4LoopMode.setDescription("card's Lane4 Loopback state")
mc40_g_oeo_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5))).clone(namedValues=named_values(('all', 1), ('line-side-enable', 2), ('host-side-enable', 3), ('disable', 4), ('not-support', 5)))).setLabel('mc40G-OEOLoopMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOLoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOLoopMode.setDescription("card's Loopback state")
mc40_g_oeo_speed_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14))).clone(namedValues=named_values(('no-card', 0), ('mc40GSpeed-1', 1), ('mc40GSpeed-2', 2), ('mc40GSpeed-3', 3), ('mc40GSpeed-4', 4), ('mc40GSpeed-5', 5), ('mc40GSpeed-6', 6), ('mc40GSpeed-7', 7), ('mc40GSpeed-8', 8), ('mc40GSpeed-9', 9), ('mc40GSpeed-10', 10), ('mc40GSpeed-11', 11), ('mc40GSpeed-12', 12), ('mc40GSpeed-13', 13), ('not-support', 14)))).setLabel('mc40G-OEOSpeedMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc40G_OEOSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps) speed13: 4X10G: 10GInfiniband(10000.00Mbps)')
mc40_g_oeohw_loop_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('line-side-enable', 1), ('host-side-enable', 2), ('disable', 3), ('not-support', 4)))).setLabel('mc40G-OEOHWLoopMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOHWLoopMode.setStatus('current')
if mibBuilder.loadTexts:
mc40G_OEOHWLoopMode.setDescription("card's HW Loopback state")
mc40_g_oeohw_speed_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 8, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13))).clone(namedValues=named_values(('no-card', 0), ('mc40GSpeed-1', 1), ('mc40GSpeed-2', 2), ('mc40GSpeed-3', 3), ('mc40GSpeed-4', 4), ('mc40GSpeed-5', 5), ('mc40GSpeed-6', 6), ('mc40GSpeed-7', 7), ('mc40GSpeed-8', 8), ('mc40GSpeed-9', 9), ('mc40GSpeed-10', 10), ('mc40GSpeed-11', 11), ('mc40GSpeed-12', 12), ('not-support', 13)))).setLabel('mc40G-OEOHWSpeedMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc40G_OEOHWSpeedMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc40G_OEOHWSpeedMode.setDescription('speed1: 1X40G: 10G LAN(10312.5Mbps) speed2: 1X40G: OTU3(10754.60325Mbps) speed3: 1X40G: OTU3e2(11145.83875Mbps) speed4: 4X10G: 10G LAN(10312.5Mbps) speed5: 4X10G: CPRI(9830.4 Mbps) speed6: 4X10G: OC-192/STM-64(9953.28Mbps) speed7: 4X10G: OC-192/STM-64(10664.228571427Mbps) speed8: 4X10G: OC-192/STM-64(10709.225316455Mbps) speed9: 4X10G: 10G Ethernet(11049.107142857Mbps) speed10: 4X10G: 10GFibreChannel(10518.750Mbps) speed11: 4X10G: 10GFibreChannel(11270.089285714Mbps) speed12: 4X10G: 10GFibreChannel(11317.642405063Mbps)')
mc_qsfp_specific_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9))
mc_ntw_q_sfp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1))
mc_ntw_q_sfp_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1))
if mibBuilder.loadTexts:
mcNtwQSfpTable.setStatus('current')
if mibBuilder.loadTexts:
mcNtwQSfpTable.setDescription('MC Ntw QSFP table')
mc_ntw_q_sfp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcNtwQSfpEntry.setStatus('current')
if mibBuilder.loadTexts:
mcNtwQSfpEntry.setDescription('MC Ntw QSFP entry definition')
get_ntw_q_sfp_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
getNtwQSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
getNtwQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfp_ntw_connector = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwConnector.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfp_ntw_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwTemperature.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwTemperature.setDescription('SFP temperature (one type, signed)')
qsfp_ntw_tx_power1 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwTxPower1.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwTxPower1.setDescription('SFP tx power (one type, signed)')
qsfp_ntw_tx_power2 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwTxPower2.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwTxPower2.setDescription('SFP tx power (one type, signed)')
qsfp_ntw_tx_power3 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwTxPower3.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwTxPower3.setDescription('SFP tx power (one type, signed)')
qsfp_ntw_tx_power4 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwTxPower4.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwTxPower4.setDescription('SFP tx power (one type, signed)')
qsfp_ntw_rx_power1 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwRxPower1.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwRxPower1.setDescription('SFP rx power (one type, signed)')
qsfp_ntw_rx_power2 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwRxPower2.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwRxPower2.setDescription('SFP rx power (one type, signed)')
qsfp_ntw_rx_power3 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwRxPower3.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwRxPower3.setDescription('SFP rx power (one type, signed)')
qsfp_ntw_rx_power4 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 1, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpNtwRxPower4.setStatus('current')
if mibBuilder.loadTexts:
qsfpNtwRxPower4.setDescription('SFP rx power (one type, signed)')
mc_acc_q_sfp_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2))
mc_acc_q_sfp_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1))
if mibBuilder.loadTexts:
mcAccQSfpTable.setStatus('current')
if mibBuilder.loadTexts:
mcAccQSfpTable.setDescription('MC Acc QSFP table')
mc_acc_q_sfp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcAccQSfpEntry.setStatus('current')
if mibBuilder.loadTexts:
mcAccQSfpEntry.setDescription('MC Acc QSFP entry definition')
get_acc_q_sfp_cmd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
getAccQSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
getAccQSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
qsfp_acc_connector = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 2), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccConnector.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccConnector.setDescription('SFP connector type (one byte) 0x07: LC 0x0B: Optical Pigtail 0x0C: MPO 0x21: Copper Pigtail others: unsupported')
qsfp_acc_temperature = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 3), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccTemperature.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccTemperature.setDescription('SFP temperature (one type, signed)')
qsfp_acc_tx_power1 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 4), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccTxPower1.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccTxPower1.setDescription('SFP tx power (one type, signed)')
qsfp_acc_tx_power2 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 5), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccTxPower2.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccTxPower2.setDescription('SFP tx power (one type, signed)')
qsfp_acc_tx_power3 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 6), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccTxPower3.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccTxPower3.setDescription('SFP tx power (one type, signed)')
qsfp_acc_tx_power4 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 7), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccTxPower4.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccTxPower4.setDescription('SFP tx power (one type, signed)')
qsfp_acc_rx_power1 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 8), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccRxPower1.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccRxPower1.setDescription('SFP rx power (one type, signed)')
qsfp_acc_rx_power2 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 9), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccRxPower2.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccRxPower2.setDescription('SFP rx power (one type, signed)')
qsfp_acc_rx_power3 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 10), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccRxPower3.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccRxPower3.setDescription('SFP rx power (one type, signed)')
qsfp_acc_rx_power4 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 9, 2, 1, 1, 11), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
qsfpAccRxPower4.setStatus('current')
if mibBuilder.loadTexts:
qsfpAccRxPower4.setDescription('SFP rx power (one type, signed)')
mc2_5_gmc_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10)).setLabel('mc2-5GMCObjects')
mc2_5_gmcsfp3_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1)).setLabel('mc2-5GMCSFP3Objects')
mc2_5_cm1g_sfp_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1)).setLabel('mc2-5Cm1gSfpTable')
if mibBuilder.loadTexts:
mc2_5Cm1gSfpTable.setStatus('current')
if mibBuilder.loadTexts:
mc2_5Cm1gSfpTable.setDescription('MC 1G SFP table')
mc2_5_cm1g_sfp_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1)).setLabel('mc2-5Cm1gSfpEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcLoOrRmtFg'))
if mibBuilder.loadTexts:
mc2_5Cm1gSfpEntry.setStatus('current')
if mibBuilder.loadTexts:
mc2_5Cm1gSfpEntry.setDescription('MC 1G SFP entry definition')
mc2_5g_get_sfp_cmd = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setLabel('mc2-5g-getSfpCmd').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc2_5g_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc2_5g_sfp_compliance = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 2), integer32()).setLabel('mc2-5g-sfpCompliance').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc2_5g_sfp_connector = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 3), integer32()).setLabel('mc2-5g-sfpConnector').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpConnector.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc2_5g_sfp_trans_code = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 4), integer32()).setLabel('mc2-5g-sfpTransCode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc2_5g_sfp_sm_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 5), integer32()).setLabel('mc2-5g-sfpSmLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc2_5g_sfp_mm_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 6), integer32()).setLabel('mc2-5g-sfpMmLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc2_5g_sfp_copper_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 7), integer32()).setLabel('mc2-5g-sfpCopperLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc2_5g_sfp_br_speed = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 8), integer32()).setLabel('mc2-5g-sfpBrSpeed').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc2_5g_sfp_wavelength = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 9), integer32()).setLabel('mc2-5g-sfpWavelength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc2_5g_sfp_temperature = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 10), integer32()).setLabel('mc2-5g-sfpTemperature').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc2_5g_sfp_tran_power = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 11), integer32()).setLabel('mc2-5g-sfpTranPower').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc2_5g_sfp_recv_power = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 12), integer32()).setLabel('mc2-5g-sfpRecvPower').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc2_5g_sfp_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 1, 1, 1, 13), integer32()).setLabel('mc2-5g-sfpVoltage').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5g_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts:
mc2_5g_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc2_5_gmc_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2)).setLabel('mc2-5GMCCardObjects')
mc2_5_gmc_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1)).setLabel('mc2-5GMCCardTable')
if mibBuilder.loadTexts:
mc2_5GMCCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCCardTable.setDescription('MC 2-5GMC Configuration table')
mc2_5_gmc_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1)).setLabel('mc2-5GMCCardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc2_5GMCCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCCardEntry.setDescription('MC Configuration entry definition')
mc2_5_gmc_sfp3_exist = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inserted', 1), ('removed', 2), ('na', 3), ('not-support', 4)))).setLabel('mc2-5GMCSfp3Exist').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5GMCSfp3Exist.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCSfp3Exist.setDescription("Center 1G card's SFP3 indication")
mc2_5_gmc_port1link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc2-5GMCPort1link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5GMCPort1link.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCPort1link.setDescription("Center card's electrical port1's link status")
mc2_5_gmc_port2link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc2-5GMCPort2link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5GMCPort2link.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCPort2link.setDescription("Center card's electrical port2's link status")
mc2_5_gmc_port3link = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 10, 2, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc2-5GMCPort3link').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc2_5GMCPort3link.setStatus('current')
if mibBuilder.loadTexts:
mc2_5GMCPort3link.setDescription("Center card's electrical port3's link status")
mc_e1_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11))
mc_e1_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1))
mc_e1_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1))
if mibBuilder.loadTexts:
mcE1CardTable.setStatus('current')
if mibBuilder.loadTexts:
mcE1CardTable.setDescription('MC E1 + Eth Configuration table')
mc_e1_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcE1CardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcE1CardEntry.setDescription('MC Configuration entry definition')
mc_e1_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1Txlink.setDescription("Center card's electrical port's link status")
mc_e1_tx_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1TxCurWorkMode.setDescription("Center card's current work mode")
mc_e1_sfp1_link = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1SFP1Link.setDescription("Center card's SFP1 port's link status")
mc_e1_port1_los = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port1LOS.setDescription("card's E1 Port1 Los state")
mc_e1_port1_ais = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port1AIS.setDescription("card's E1 Port1 AIS state")
mc_e1_port1_cv = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port1CV.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port1CV.setDescription("card's E1 Port1 CV state")
mc_e1_port2_los = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port2LOS.setDescription("card's E1 Port2 Los state")
mc_e1_port2_ais = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port2AIS.setDescription("card's E1 Port2 AIS state")
mc_e1_port2_cv = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1Port2CV.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port2CV.setDescription("card's E1 Port2 CV state")
mc_e1_port1_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('external', 1), ('internal', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port1Loop.setDescription("card's Port1 Loopback state")
mc_e1_port2_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('external', 1), ('internal', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts:
mcE1Port2Loop.setDescription("card's Port2 Loopback state")
mc_rmt_e1_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Txlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmtE1Txlink.setDescription("Remote card's electrical port's link status")
mc_rmt_e1_tx_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1TxCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmtE1TxCurWorkMode.setDescription("Remote card's current work mode")
mc_rmt_e1_sfp1_link = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1SFP1Link.setStatus('mandatory')
if mibBuilder.loadTexts:
mcRmtE1SFP1Link.setDescription("Remote card's SFP1 port's link status")
mc_rmt_e1_port1_los = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port1LOS.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port1LOS.setDescription("Remote card's E1 Port1 Los state")
mc_rmt_e1_port1_ais = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port1AIS.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port1AIS.setDescription("Remote card's E1 Port1 AIS state")
mc_rmt_e1_port1_cv = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port1CV.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port1CV.setDescription("Remote card's E1 Port1 CV state")
mc_rmt_e1_port2_los = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port2LOS.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port2LOS.setDescription("Remote card's E1 Port2 Los state")
mc_rmt_e1_port2_ais = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port2AIS.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port2AIS.setDescription("Remote card's E1 Port2 AIS state")
mc_rmt_e1_port2_cv = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('alarm', 1), ('e1normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRmtE1Port2CV.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port2CV.setDescription("Remote card's E1 Port2 CV state")
mc_rmt_e1_port1_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 21), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('external', 1), ('internal', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtE1Port1Loop.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port1Loop.setDescription("Remote card's Port1 Loopback state")
mc_rmt_e1_port2_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 11, 1, 1, 1, 22), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('external', 1), ('internal', 2), ('disabled', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcRmtE1Port2Loop.setStatus('current')
if mibBuilder.loadTexts:
mcRmtE1Port2Loop.setDescription("Remote card's Port2 Loopback state")
mc1_ge2_o_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12))
mc1_ge2_o_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1))
mc1_ge2_o_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1))
if mibBuilder.loadTexts:
mc1GE2OCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OCardTable.setDescription('MC E2O Fiber backup Configuration table')
mc1_ge2_o_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc1GE2OCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OCardEntry.setDescription('MC Configuration entry definition')
mc1_ge2_o_port1_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1_ge2_o_port2_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1_ge2_o_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OTxlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2OTxlink.setDescription("Center card's electrical port's link status")
mc1_ge2_o_port_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc1GE2OPortPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OPortPri.setDescription("Center card's Port Pri state")
mc1_ge2_o_port1_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1_ge2_o_port2_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1_ge2_o_port_hw_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2OPortHWPri.setDescription("Center card's Port Hardward Pri state")
mc1_ge2_o_rmt_port1_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1_ge2_o_rmt_port2_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1_ge2_o_rmt_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtTxlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GE2ORmtTxlink.setDescription("Remote card's electrical port's link status")
mc1_ge2_o_rmt_port1_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2ORmtPort1SFPExist.setDescription('E2O Port1 SFP indication')
mc1_ge2_o_rmt_port2_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2ORmtPort2SFPExist.setDescription('E2O Port2 SFP indication')
mc1_ge2_o_rmt_port_hw_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 12, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GE2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GE2ORmtPortHWPri.setDescription("Remote card's Port Hardward Pri state")
mc1_go2_o_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13))
mc1_go2_o_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1))
mc1_go2_o_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1))
if mibBuilder.loadTexts:
mc1GO2OCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OCardTable.setDescription('MC O2O Fiber backup Configuration table')
mc1_go2_o_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc1GO2OCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OCardEntry.setDescription('MC Configuration entry definition')
mc1_go2_o_port1_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2OPort1SFPlink.setDescription("Center card's port1 SFP's link status")
mc1_go2_o_port2_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2OPort2SFPlink.setDescription("Center card's port2 SFP's link status")
mc1_go2_o_port3_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2OPort3SFPlink.setDescription("Center card's port3 SFP's link status")
mc1_go2_o_port_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc1GO2OPortPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPortPri.setDescription("Center card's Port Pri state")
mc1_go2_o_port1_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1_go2_o_port2_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1_go2_o_port3_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inserted', 1), ('removed', 2), ('na', 3), ('not-support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPort3SFPExist.setDescription('O2O Port3 SFP indication')
mc1_go2_o_port_hw_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPortHWPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPortHWPri.setDescription("Local card's Port Hardward Pri state")
mc1_go2_o_port3_hw_spd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('M100', 1), ('M1000', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2OPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OPort3HWSpd.setDescription("Local card's Port3 Hardward Speed state")
mc1_go2_o_rmt_port1_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort1SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2ORmtPort1SFPlink.setDescription("Remote card's port1 SFP's link status")
mc1_go2_o_rmt_port2_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort2SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2ORmtPort2SFPlink.setDescription("Remote card's port2 SFP's link status")
mc1_go2_o_rmt_port3_sf_plink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3SFPlink.setStatus('mandatory')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3SFPlink.setDescription("Remote card's port3 SFP's link status")
mc1_go2_o_rmt_port1_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort1SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2ORmtPort1SFPExist.setDescription('O2O Port1 SFP indication')
mc1_go2_o_rmt_port2_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4))).clone(namedValues=named_values(('no-card', 0), ('inserted', 1), ('removed', 2), ('na', 3), ('support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort2SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2ORmtPort2SFPExist.setDescription('O2O Port2 SFP indication')
mc1_go2_o_rmt_port3_sfp_exist = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('inserted', 1), ('removed', 2), ('na', 3), ('not-support', 4)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3SFPExist.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3SFPExist.setDescription("Remote card's SFP3 indication")
mc1_go2_o_rmt_port_hw_pri = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Port1', 1), ('Port2', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPortHWPri.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2ORmtPortHWPri.setDescription("Remot card's Port Hardward Pri state")
mc1_go2_o_rmt_port3_hw_spd = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('M100', 1), ('M1000', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3HWSpd.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2ORmtPort3HWSpd.setDescription("Remot card's Port3 Hardward Speed state")
mc1_go2_osfp3_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2))
mc1_go2_o_sfp3_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1))
if mibBuilder.loadTexts:
mc1GO2OSfp3Table.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OSfp3Table.setDescription('MC 1G SFP table')
mc1_go2_o_sfp3_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcLoOrRmtFg'))
if mibBuilder.loadTexts:
mc1GO2OSfp3Entry.setStatus('current')
if mibBuilder.loadTexts:
mc1GO2OSfp3Entry.setDescription('MC 1G O2O SFP3 entry definition')
mc1go2o_get_sfp_cmd = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2))).clone(namedValues=named_values(('na', 0), ('local', 1), ('remote', 2)))).setLabel('mc1go2o-getSfpCmd').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc1go2o_getSfpCmd.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_getSfpCmd.setDescription('This command will get the updated sfp information. Please send this command prior to getting the following params, otherwise the history sfp information will be sent back.')
mc1go2o_sfp_compliance = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 2), integer32()).setLabel('mc1go2o-sfpCompliance').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpCompliance.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpCompliance.setDescription('SFP compliance (one byte) if 0 then the attributs of sfpTemperature/sfpTranPower/sfpRecvPower should be ignored')
mc1go2o_sfp_connector = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 3), integer32()).setLabel('mc1go2o-sfpConnector').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpConnector.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpConnector.setDescription('SFP connector type (one byte) 0x01: SC 0x07: LC 0x22: RJ45 others: unsupported')
mc1go2o_sfp_trans_code = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 4), integer32()).setLabel('mc1go2o-sfpTransCode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpTransCode.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpTransCode.setDescription('SFP transceiver code (one byte) bit0: SingleMode bit2: MultiMode bit3: MultiMode others: unsupported')
mc1go2o_sfp_sm_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 5), integer32()).setLabel('mc1go2o-sfpSmLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpSmLength.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpSmLength.setDescription('SFP link length for SingleMode, units of km. (one byte) applicable only when sfpTransCode is SingleMode')
mc1go2o_sfp_mm_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 6), integer32()).setLabel('mc1go2o-sfpMmLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpMmLength.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpMmLength.setDescription('SFP link length for MultiMode, units of 10m (one byte) applicable only when sfpTransCode is MultiMode')
mc1go2o_sfp_copper_length = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 7), integer32()).setLabel('mc1go2o-sfpCopperLength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpCopperLength.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpCopperLength.setDescription('SFP link length for Copper, units of m (one byte) applicable only when sfpConnector is RJ45')
mc1go2o_sfp_br_speed = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 8), integer32()).setLabel('mc1go2o-sfpBrSpeed').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpBrSpeed.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpBrSpeed.setDescription('SFP nominal signalling rate, units of 100Mbit/s (one byte)')
mc1go2o_sfp_wavelength = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 9), integer32()).setLabel('mc1go2o-sfpWavelength').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpWavelength.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpWavelength.setDescription('SFP laser wavelength (one word)')
mc1go2o_sfp_temperature = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 10), integer32()).setLabel('mc1go2o-sfpTemperature').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpTemperature.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpTemperature.setDescription('SFP temperature (one type, signed)')
mc1go2o_sfp_tran_power = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 11), integer32()).setLabel('mc1go2o-sfpTranPower').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpTranPower.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpTranPower.setDescription('SFP tx power (one type, signed)')
mc1go2o_sfp_recv_power = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 12), integer32()).setLabel('mc1go2o-sfpRecvPower').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpRecvPower.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpRecvPower.setDescription('SFP rx power (one type, signed)')
mc1go2o_sfp_voltage = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 13, 2, 1, 1, 13), integer32()).setLabel('mc1go2o-sfpVoltage').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc1go2o_sfpVoltage.setStatus('current')
if mibBuilder.loadTexts:
mc1go2o_sfpVoltage.setDescription('SFP voltage, units of 0.1mV (one word)')
mc10_goeo1_r_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14))
mc10_goeo1_r_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1))
mc10_goeo1_r_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1))
if mibBuilder.loadTexts:
mc10GOEO1RCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEO1RCardTable.setDescription('MC 10G OEO 1R Configuration table')
mc10_goeo1_r_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10GOEO1RCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEO1RCardEntry.setDescription('MC Configuration entry definition')
mc_acc_xfp1_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcAccXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
mcAccXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mc_acc_xfp1_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcAccXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
mcAccXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mc_acc_xfp1_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcAccXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
mcAccXFP1WaveLength.setDescription("XFP1's wavelength")
mc_ntw_xfp2_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mc_ntw_xfp2_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mc_ntw_xfp2_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
mcNtwXFP2WaveLength.setDescription("XFP2's wavelength")
mc_acc_xfp1_tunable_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcAccXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
mcAccXFP1TunableType.setDescription("XFP1's wavelength tunable type")
mc_ntw_xfp2_tunable_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 14, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcNtwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
mcNtwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mc10_goeo3_r_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15))
mc10_goeo3_r_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1))
mc10_goeo3_r_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1))
if mibBuilder.loadTexts:
mc10GOEO3RCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEO3RCardTable.setDescription('MC 10G OEO 3R tunable wavelength Configuration table')
mc10_goeo3_r_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10GOEO3RCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEO3RCardEntry.setDescription('MC Configuration entry definition')
acc_xfp1_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
accXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
acc_xfp1_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
accXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
acc_xfp1_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
accXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
accXFP1WaveLength.setDescription("XFP1's wavelength")
ntw_xfp2_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ntwXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
ntwXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
ntw_xfp2_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ntwXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
ntwXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
ntw_xfp2_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 6), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
ntwXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
ntwXFP2WaveLength.setDescription("XFP2's wavelength")
acc_xfp1_tunable_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
accXFP1TunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
accXFP1TunableType.setDescription("XFP1's wavelength tunable type")
ntw_xfp2_tunable_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 15, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
ntwXFP2TunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
ntwXFP2TunableType.setDescription("XFP2's wavelength tunable type")
mc_cwdm_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16))
mc_cwdm_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1))
mc_cwdm_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1))
if mibBuilder.loadTexts:
mcCWDMCardTable.setStatus('current')
if mibBuilder.loadTexts:
mcCWDMCardTable.setDescription('MC CWDM table')
mc_cwdm_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcCWDMCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcCWDMCardEntry.setDescription('MC Configuration entry definition')
cwdm_wavelength_count = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 1), integer32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelengthCount.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelengthCount.setDescription('wavelength count')
cwdm_wavelength1 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 2), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength1.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength1.setDescription('CWDM Card wavelenth 1')
cwdm_wavelength2 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 3), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength2.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength2.setDescription('CWDM Card wavelenth 2')
cwdm_wavelength3 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 4), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength3.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength3.setDescription('CWDM Card wavelenth 3')
cwdm_wavelength4 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 5), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength4.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength4.setDescription('CWDM Card wavelenth 4')
cwdm_wavelength5 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 6), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength5.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength5.setDescription('CWDM Card wavelenth 5')
cwdm_wavelength6 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 7), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength6.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength6.setDescription('CWDM Card wavelenth 6')
cwdm_wavelength7 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 8), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength7.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength7.setDescription('CWDM Card wavelenth 7')
cwdm_wavelength8 = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 16, 1, 1, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
cwdmWavelength8.setStatus('mandatory')
if mibBuilder.loadTexts:
cwdmWavelength8.setDescription('CWDM Card wavelenth 8')
mc10_g_oeo2_r_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17)).setLabel('mc10G-OEO2RObjects')
mc10_g_oeo2_r_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1)).setLabel('mc10G-OEO2RCardObjects')
mc10_g_oeo2_r_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1)).setLabel('mc10G-OEO2RCardTable')
if mibBuilder.loadTexts:
mc10G_OEO2RCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RCardTable.setDescription('MC 10G OEO 2R Configuration table')
mc10_g_oeo2_r_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1)).setLabel('mc10G-OEO2RCardEntry').setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10G_OEO2RCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RCardEntry.setDescription('MC Configuration entry definition')
mc10_g_oeo2_r_cur_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('Speed85', 1), ('Speed103to117', 2), ('Speed995to113', 3), ('not-support', 4)))).setLabel('mc10G-OEO2RCurSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RCurSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEO2RCurSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10_g_oeo2_r_cfg_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('Speed85', 1), ('Speed103to117', 2), ('Speed995to113', 3), ('not-support', 4)))).setLabel('mc10G-OEO2RCfgSpdMode').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEO2RCfgSpdMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEO2RCfgSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10_g_oeo2_rsfp1_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RSFP1Loopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP1Loopback.setDescription("card's SFP1 Loopback state")
mc10_g_oeo2_rsfp2_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RSFP2Loopback').setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP2Loopback.setDescription("card's SFP2 Loopback state")
mc10_g_oeo2_rsfp1 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RSFP1').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP1.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP1.setDescription("Center card's SFP1 link status")
mc10_g_oeo2_rsfp2 = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RSFP2').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP2.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RSFP2.setDescription("Center card's SFP2 link status")
mc10_g_oeo2_rhw_spd_mode = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('Speed85', 1), ('Speed103to117', 2), ('Speed995to113', 3), ('not-support', 4)))).setLabel('mc10G-OEO2RHWSpdMode').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSpdMode.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSpdMode.setDescription("Center card's current speed mode 1: 8.5G 2: 10.3G-11.7G 3: 9.95G-11.3G ")
mc10_g_oeo2_rhwsfp1_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RHWSFP1Loopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSFP1Loopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSFP1Loopback.setDescription("card's HW Loopback state")
mc10_g_oeo2_rhwsfp2_loopback = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setLabel('mc10G-OEO2RHWSFP2Loopback').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSFP2Loopback.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2RHWSFP2Loopback.setDescription("card's HW Loopback state")
mc10_g_oeo2_r_version = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 10), display_string()).setLabel('mc10G-OEO2RVersion').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2RVersion.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEO2RVersion.setDescription('MC version')
mc10_gxfp1_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10GXFP1WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP1WaveLengthTunability.setDescription("XFP1's wavelength tunability")
mc10_gxfp1_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10GXFP1WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP1WaveLengthTunable.setDescription("XFP1's wavelength tunable status")
mc10_gxfp1_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 13), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10GXFP1WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP1WaveLength.setDescription("XFP1's wavelength")
mc10_gxfp2_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10GXFP2WaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP2WaveLengthTunability.setDescription("XFP2's wavelength tunability")
mc10_gxfp2_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10GXFP2WaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP2WaveLengthTunable.setDescription("XFP2's wavelength tunable status")
mc10_gxfp2_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 16), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mc10GXFP2WaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10GXFP2WaveLength.setDescription("XFP2's wavelength")
mc10_g_oeo2_r_acc_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 17), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mc10G-OEO2R-accType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2R_accType.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2R_accType.setDescription('')
mc10_g_oeo2_r_ntw_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 18), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('XFP', 1), ('SFP', 2), ('unknow', 3)))).setLabel('mc10G-OEO2R-ntwType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2R_ntwType.setStatus('current')
if mibBuilder.loadTexts:
mc10G_OEO2R_ntwType.setDescription('')
mc10_g_oeo2_r_acc_tunable_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 19), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setLabel('mc10G-OEO2R-accTunableType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2R_accTunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEO2R_accTunableType.setDescription("XFP1's wavelength tunable type")
mc10_g_oeo2_r_ntw_tunable_type = mib_scalar((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 17, 1, 1, 1, 20), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setLabel('mc10G-OEO2R-ntwTunableType').setMaxAccess('readonly')
if mibBuilder.loadTexts:
mc10G_OEO2R_ntwTunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
mc10G_OEO2R_ntwTunableType.setDescription("XFP2's wavelength tunable type")
mc_qca8334_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18))
mc_qca8334_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1))
mc_qca8334_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1))
if mibBuilder.loadTexts:
mcQCA8334CardTable.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334CardTable.setDescription('MC QCA8334 Configuration table')
mc_qca8334_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcQCA8334CardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334CardEntry.setDescription('MC Configuration entry definition')
mc_qca8334_vlan_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4))).clone(namedValues=named_values(('Normal', 1), ('mode1', 2), ('mode2', 3), ('not-support', 4)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcQCA8334VlanMode.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334VlanMode.setDescription("Center card's vlan mode")
mc_qca8334_port_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2))
mc_qca8334_port_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1))
if mibBuilder.loadTexts:
mcQCA8334PortTable.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334PortTable.setDescription('MC QCA8334 Configuration table')
mc_qca8334_port_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'), (0, 'XXX-MIB', 'mcQCA8334PortIdx'))
if mibBuilder.loadTexts:
mcQCA8334PortEntry.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334PortEntry.setDescription('MC Configuration entry definition')
mc_qca8334_port_idx = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2))).clone(namedValues=named_values(('port1', 1), ('port2', 2)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcQCA8334PortIdx.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334PortIdx.setDescription('Port index')
mc_qca8334_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcQCA8334CurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcQCA8334CurWorkMode.setDescription("Center card's port current work mode")
mc_qca8334_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcQCA8334CfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcQCA8334CfgWorkMode.setDescription("Center card's port configurable work mode")
mc_qca8334_up_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 4), gauge32().subtype(subtypeSpec=value_range_constraint(32, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcQCA8334UpStream.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334UpStream.setDescription("Center card's port up stream of MC")
mc_qca8334_down_stream = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 5), gauge32().subtype(subtypeSpec=value_range_constraint(32, 1000000))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcQCA8334DownStream.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334DownStream.setDescription("Center card's port down stream of MC")
mc_qca8334_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcQCA8334Txlink.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334Txlink.setDescription("Center card's port 1 electrical port's link status")
mc_qca8334_rmt_cur_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcQCA8334RmtCurWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcQCA8334RmtCurWorkMode.setDescription("Remote card's port 1 current work mode")
mc_qca8334_rmt_cfg_work_mode = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3, 4, 5, 6, 7))).clone(namedValues=named_values(('no-card', 0), ('mAuto', 1), ('m100-full', 2), ('m100-half', 3), ('m10-full', 4), ('m10-half', 5), ('m1G-full', 6), ('not-support', 7)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcQCA8334RmtCfgWorkMode.setStatus('mandatory')
if mibBuilder.loadTexts:
mcQCA8334RmtCfgWorkMode.setDescription("Remote card's port1 configurable work mode")
mc_qca8334_rmt_txlink = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 18, 2, 1, 1, 9), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(0, 1, 2, 3))).clone(namedValues=named_values(('no-card', 0), ('up', 1), ('down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcQCA8334RmtTxlink.setStatus('current')
if mibBuilder.loadTexts:
mcQCA8334RmtTxlink.setDescription("Remote card's port electrial port status")
mc_e1_t1_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19))
mc_e1_t1_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1))
mc_e1_t1_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1))
if mibBuilder.loadTexts:
mcE1T1CardTable.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1CardTable.setDescription('MC E1T1 Configuration table')
mc_e1_t1_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcE1T1CardEntry.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1CardEntry.setDescription('MC Configuration entry definition')
mc_e1_t1_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('E1', 1), ('T1', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1Type.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1T1Type.setDescription("Center card's current type")
mc_e1_t1_f_link = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Up', 1), ('Down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1FLink.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1T1FLink.setDescription("Center card's current link")
mc_e1_t1_f_loss_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 3), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1FLossAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1FLossAlarm.setDescription('')
mc_e1_t1_t_loss_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1TLossAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1TLossAlarm.setDescription('')
mc_e1_t1_ais_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1AISAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1AISAlarm.setDescription('')
mc_e1_t1_t_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 6), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1TLoop.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1TLoop.setDescription('Tx Loopback state')
mc_e1_t1_f_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 7), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1FLoop.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1FLoop.setDescription('Fx Loopback state')
mc_e1_t1_code_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 8), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('E1-HDB3-Or-T1-B8ZS', 1), ('AMI', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1CodeType.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1CodeType.setDescription('coding type')
mc_e1_t1_version = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 9), display_string()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1Version.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1T1Version.setDescription('MC version')
mc_e1_t1_rmt_f_link = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 10), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Up', 1), ('Down', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1RmtFLink.setStatus('mandatory')
if mibBuilder.loadTexts:
mcE1T1RmtFLink.setDescription("Center card's current link")
mc_e1_t1_rmt_f_loss_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 11), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1RmtFLossAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtFLossAlarm.setDescription('')
mc_e1_t1_rmt_t_loss_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 12), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1RmtTLossAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtTLossAlarm.setDescription('')
mc_e1_t1_rmt_ais_alarm = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 13), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Alarm', 1), ('Normal', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcE1T1RmtAISAlarm.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtAISAlarm.setDescription('')
mc_e1_t1_rmt_t_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 14), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1RmtTLoop.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtTLoop.setDescription('Tx Loopback state')
mc_e1_t1_rmt_f_loop = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 15), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('enable', 1), ('disable', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1RmtFLoop.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtFLoop.setDescription('Fx Loopback state')
mc_e1_t1_rmt_code_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 19, 1, 1, 1, 16), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('E1-HDB3-Or-T1-B8ZS', 1), ('AMI', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcE1T1RmtCodeType.setStatus('current')
if mibBuilder.loadTexts:
mcE1T1RmtCodeType.setDescription('coding type')
mc10_goeexfp_tunable_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20))
mc10_goeexfp_tunable_card_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1))
mc10_goeexfp_tunable_card_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1))
if mibBuilder.loadTexts:
mc10GOEEXFPTunableCardTable.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEEXFPTunableCardTable.setDescription('MC 10G OEE tunable wavelength Configuration table')
mc10_goeexfp_tunable_card_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mc10GOEEXFPTunableCardEntry.setStatus('current')
if mibBuilder.loadTexts:
mc10GOEEXFPTunableCardEntry.setDescription('MC Configuration entry definition')
xfp_wave_length_tunability = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 1), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Supported', 1), ('Unsupported', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xfpWaveLengthTunability.setStatus('mandatory')
if mibBuilder.loadTexts:
xfpWaveLengthTunability.setDescription("XFP's wavelength tunability")
xfp_wave_length_tunable = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 2), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('Doing', 1), ('Completed', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xfpWaveLengthTunable.setStatus('mandatory')
if mibBuilder.loadTexts:
xfpWaveLengthTunable.setDescription("XFP's wavelength tunable status")
xfp_wave_length = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 3), integer32()).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
xfpWaveLength.setStatus('mandatory')
if mibBuilder.loadTexts:
xfpWaveLength.setDescription("XFP's wavelength")
xfp_tunable_type = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 2, 20, 1, 1, 1, 4), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('channel', 1), ('wavelength', 2), ('not-support', 3)))).setMaxAccess('readonly')
if mibBuilder.loadTexts:
xfpTunableType.setStatus('mandatory')
if mibBuilder.loadTexts:
xfpTunableType.setDescription("XFP's wavelength tunable type")
mc_pm_objects = mib_identifier((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3))
mc_pm_table = mib_table((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1))
if mibBuilder.loadTexts:
mcPmTable.setStatus('current')
if mibBuilder.loadTexts:
mcPmTable.setDescription('MC Performance table')
mc_pm_entry = mib_table_row((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1)).setIndexNames((0, 'XXX-MIB', 'mcShelfIdx'), (0, 'XXX-MIB', 'mcCardIdx'))
if mibBuilder.loadTexts:
mcPmEntry.setStatus('current')
if mibBuilder.loadTexts:
mcPmEntry.setDescription('MC Performance entry definition')
mc_rx_byte_hi = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 1), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRxByteHi.setStatus('current')
if mibBuilder.loadTexts:
mcRxByteHi.setDescription('The total number of reveive bytes (high)')
mc_rx_byte_lo = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 2), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcRxByteLo.setStatus('current')
if mibBuilder.loadTexts:
mcRxByteLo.setDescription('The total number of reveive bytes (low)')
mc_tx_byte_hi = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 3), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcTxByteHi.setStatus('current')
if mibBuilder.loadTexts:
mcTxByteHi.setDescription('The total number of transmit bytes (high)')
mc_tx_byte_lo = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 4), counter32()).setMaxAccess('readonly')
if mibBuilder.loadTexts:
mcTxByteLo.setStatus('current')
if mibBuilder.loadTexts:
mcTxByteLo.setDescription('The total number of transmit bytes (low)')
mc_pm_rest = mib_table_column((1, 3, 6, 1, 4, 1, 6688, 1, 1, 1, 4, 3, 1, 1, 5), integer32().subtype(subtypeSpec=constraints_union(single_value_constraint(1, 2, 3))).clone(namedValues=named_values(('idle', 1), ('reset', 2), ('not-support', 3)))).setMaxAccess('readwrite')
if mibBuilder.loadTexts:
mcPmRest.setStatus('current')
if mibBuilder.loadTexts:
mcPmRest.setDescription('reset counter')
shelf__detected = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 1)).setLabel('shelf-Detected').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_Detected.setStatus('current')
if mibBuilder.loadTexts:
shelf_Detected.setDescription('A slave shelf is detected (1~19)')
shelf__lost = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 2)).setLabel('shelf-Lost').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_Lost.setStatus('current')
if mibBuilder.loadTexts:
shelf_Lost.setDescription('A shelf is lost')
shelf_psu_a__on = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 3)).setLabel('shelf-psuA-On').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_psuA_On.setStatus('current')
if mibBuilder.loadTexts:
shelf_psuA_On.setDescription('PSU A is detected')
shelf_psu_a__off = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 4)).setLabel('shelf-psuA-Off').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_psuA_Off.setStatus('current')
if mibBuilder.loadTexts:
shelf_psuA_Off.setDescription('PSU A is lost')
shelf_psu_b__on = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 5)).setLabel('shelf-psuB-On').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_psuB_On.setStatus('current')
if mibBuilder.loadTexts:
shelf_psuB_On.setDescription('PSU B is detected')
shelf_psu_b__off = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 6)).setLabel('shelf-psuB-Off').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_psuB_Off.setStatus('current')
if mibBuilder.loadTexts:
shelf_psuB_Off.setDescription('PSU B is lost')
shelf_fan__on = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 7)).setLabel('shelf-fan-On').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_fan_On.setStatus('current')
if mibBuilder.loadTexts:
shelf_fan_On.setDescription('Fan A is detected')
shelf_fan__off = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 8)).setLabel('shelf-fan-Off').setObjects(('XXX-MIB', 'shelfIdx'))
if mibBuilder.loadTexts:
shelf_fan_Off.setStatus('current')
if mibBuilder.loadTexts:
shelf_fan_Off.setDescription('Fan A is lost')
card__detected = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 20)).setLabel('card-Detected').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_Detected.setStatus('current')
if mibBuilder.loadTexts:
card_Detected.setDescription('A card is detected (20~29)')
card__lost = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 21)).setLabel('card-Lost').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_Lost.setStatus('current')
if mibBuilder.loadTexts:
card_Lost.setDescription('A card is lost')
card_mc__co__tx__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 30)).setLabel('card-MC-Co-Tx-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up.setDescription('The tx link of mc in center side is up (above 30)')
card_mc__co__tx__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 31)).setLabel('card-MC-Co-Tx-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down.setDescription('The tx link of mc in center side is broken')
card_mc__co__fx__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 32)).setLabel('card-MC-Co-Fx-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Fx_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Fx_Up.setDescription('The fx link of mc in center side is up')
card_mc__co__fx__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 33)).setLabel('card-MC-Co-Fx-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Fx_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Fx_Down.setDescription('The fx link of mc in center side is broken')
card_mc__rmt__tx__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 34)).setLabel('card-MC-Rmt-Tx-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up.setDescription('The tx link of mc in customer side is up')
card_mc__rmt__tx__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 35)).setLabel('card-MC-Rmt-Tx-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down.setDescription('The tx link of mc in customer side is broken')
card_mc__rmt__pwr_down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 36)).setLabel('card-MC-Rmt-PwrDown').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_PwrDown.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_PwrDown.setDescription('Remote mc power down detected')
card_mc__co__ntw_sfp__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 37)).setLabel('card-MC-Co-Ntw-SFP-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Ntw_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Ntw_SFP_Inserted.setDescription('Local network port SFP inserted')
card_mc__co__ntw_sfp__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 38)).setLabel('card-MC-Co-Ntw-SFP-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Ntw_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Ntw_SFP_Removed.setDescription('Local network port SFP removed')
card_mc__co__acc_sfp__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 39)).setLabel('card-MC-Co-Acc-SFP-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Acc_SFP_Inserted.setDescription('Local access port SFP inserted')
card_mc__co__acc_sfp__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 40)).setLabel('card-MC-Co-Acc-SFP-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Acc_SFP_Removed.setDescription('Local access port SFP removed')
card_mc__rmt__acc_sfp__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 41)).setLabel('card-MC-Rmt-Acc-SFP-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Acc_SFP_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Acc_SFP_Inserted.setDescription('Remote access port SFP inserted')
card_mc__rmt__acc_sfp__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 42)).setLabel('card-MC-Rmt-Acc-SFP-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Acc_SFP_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Acc_SFP_Removed.setDescription('Remote access port SFP removed')
card_mc__co__tx__up1 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 43)).setLabel('card-MC-Co-Tx-Up1').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up1.setDescription('The tx1 link of mc in center side is up')
card_mc__co__tx__down1 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 44)).setLabel('card-MC-Co-Tx-Down1').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down1.setDescription('The tx1 link of mc in center side is broken')
card_mc__co__tx__up2 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 45)).setLabel('card-MC-Co-Tx-Up2').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Up2.setDescription('The tx2 link of mc in center side is up')
card_mc__co__tx__down2 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 46)).setLabel('card-MC-Co-Tx-Down2').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Tx_Down2.setDescription('The tx2 link of mc in center side is broken')
card_mc__rmt__tx__up1 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 47)).setLabel('card-MC-Rmt-Tx-Up1').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up1.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up1.setDescription('The tx1 link of mc in customer side is up')
card_mc__rmt__tx__down1 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 48)).setLabel('card-MC-Rmt-Tx-Down1').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down1.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down1.setDescription('The tx1 link of mc in customer side is broken')
card_mc__rmt__tx__up2 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 49)).setLabel('card-MC-Rmt-Tx-Up2').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up2.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Up2.setDescription('The tx2 link of mc in customer side is up')
card_mc__rmt__tx__down2 = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 50)).setLabel('card-MC-Rmt-Tx-Down2').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down2.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_Tx_Down2.setDescription('The tx2 link of mc in customer side is broken')
card_mc__co_sfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 51)).setLabel('card-MC-Co-SFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Inserted.setDescription('Local SFP1 inserted')
card_mc__co_sfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 52)).setLabel('card-MC-Co-SFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Removed.setDescription('Local SFP1 removed')
card_mc__co_sfp2__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 53)).setLabel('card-MC-Co-SFP2-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Inserted.setDescription('Local SFP2 inserted')
card_mc__co_sfp2__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 54)).setLabel('card-MC-Co-SFP2-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Removed.setDescription('Local SFP2 removed')
card_mc__co_sfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 55)).setLabel('card-MC-Co-SFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Up.setDescription('The SFP1 link of mc in center side is up')
card_mc__co_sfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 56)).setLabel('card-MC-Co-SFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP1_Down.setDescription('The SFP1 link of mc in center side is broken')
card_mc__co_sfp2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 57)).setLabel('card-MC-Co-SFP2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Up.setDescription('The SFP2 link of mc in center side is up')
card_mc__co_sfp2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 58)).setLabel('card-MC-Co-SFP2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP2_Down.setDescription('The SFP2 link of mc in center side is broken')
card_mc__rmt_sfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 59)).setLabel('card-MC-Rmt-SFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Inserted.setDescription('Remote SFP1 inserted')
card_mc__rmt_sfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 60)).setLabel('card-MC-Rmt-SFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Removed.setDescription('Remote SFP1 removed')
card_mc__rmt_sfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 61)).setLabel('card-MC-Rmt-SFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Up.setDescription('The SFP1 link of mc in customer side is up')
card_mc__rmt_sfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 62)).setLabel('card-MC-Rmt-SFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP1_Down.setDescription('The SFP1 link of mc in customer side is broken')
card_mc__co_sfpsfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 63)).setLabel('card-MC-Co-SFPSFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Inserted.setDescription('Local SFP+1 inserted')
card_mc__co_sfpsfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 64)).setLabel('card-MC-Co-SFPSFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Removed.setDescription('Local SFP+1 removed')
card_mc__co_sfpsfp2__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 65)).setLabel('card-MC-Co-SFPSFP2-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Inserted.setDescription('Local SFPSFP2 inserted')
card_mc__co_sfpsfp2__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 66)).setLabel('card-MC-Co-SFPSFP2-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Removed.setDescription('Local SFP+2 removed')
card_mc__rmt_sfpsfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 67)).setLabel('card-MC-Rmt-SFPSFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Inserted.setDescription('Remote SFP+1 inserted')
card_mc__rmt_sfpsfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 68)).setLabel('card-MC-Rmt-SFPSFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Removed.setDescription('Remote SFP+1 removed')
card_mc__co_xfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 69)).setLabel('card-MC-Co-XFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Inserted.setDescription('Local XFP+1 inserted')
card_mc__co_xfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 70)).setLabel('card-MC-Co-XFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Removed.setDescription('Local XFP+1 removed')
card_mc__co_xfp2__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 71)).setLabel('card-MC-Co-XFP2-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Inserted.setDescription('Local XFP2 inserted')
card_mc__co_xfp2__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 72)).setLabel('card-MC-Co-XFP2-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Removed.setDescription('Local XFP+2 removed')
card_mc__rmt_xfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 73)).setLabel('card-MC-Rmt-XFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Inserted.setDescription('Remote XFP+1 inserted')
card_mc__rmt_xfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 74)).setLabel('card-MC-Rmt-XFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Removed.setDescription('Remote XFP+1 removed')
card_mc__co_sfpsfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 75)).setLabel('card-MC-Co-SFPSFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Up.setDescription('The SFP+1 link of mc in center side is up')
card_mc__co_sfpsfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 76)).setLabel('card-MC-Co-SFPSFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP1_Down.setDescription('The SFP+1 link of mc in center side is broken')
card_mc__co_sfpsfp2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 77)).setLabel('card-MC-Co-SFPSFP2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Up.setDescription('The SFP+2 link of mc in center side is up')
card_mc__co_sfpsfp2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 78)).setLabel('card-MC-Co-SFPSFP2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFPSFP2_Down.setDescription('The SFP+2 link of mc in center side is broken')
card_mc__rmt_sfpsfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 79)).setLabel('card-MC-Rmt-SFPSFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Up.setDescription('The SFPSFP1 link of mc in customer side is up')
card_mc__rmt_sfpsfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 80)).setLabel('card-MC-Rmt-SFPSFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFPSFP1_Down.setDescription('The SFP+1 link of mc in customer side is broken')
card_mc__co_xfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 81)).setLabel('card-MC-Co-XFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Up.setDescription('The XFP1 link of mc in center side is up')
card_mc__co_xfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 82)).setLabel('card-MC-Co-XFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP1_Down.setDescription('The XFP1 link of mc in center side is broken')
card_mc__co_xfp2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 83)).setLabel('card-MC-Co-XFP2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Up.setDescription('The XFP2 link of mc in center side is up')
card_mc__co_xfp2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 84)).setLabel('card-MC-Co-XFP2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_XFP2_Down.setDescription('The XFP2 link of mc in center side is broken')
card_mc__rmt_xfp1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 85)).setLabel('card-MC-Rmt-XFP1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Up.setDescription('The XFP1 link of mc in customer side is up')
card_mc__rmt_xfp1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 86)).setLabel('card-MC-Rmt-XFP1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_XFP1_Down.setDescription('The XFP link of mc in customer side is broken')
card_mc__co_sfp3__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 87)).setLabel('card-MC-Co-SFP3-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Inserted.setDescription('Local SFP3 inserted')
card_mc__co_sfp3__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 88)).setLabel('card-MC-Co-SFP3-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Removed.setDescription('Local SFP3 removed')
card_mc__co__port1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 89)).setLabel('card-MC-Co-Port1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port1_Up.setDescription('The Port1 link of mc in center side is up')
card_mc__co__port1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 90)).setLabel('card-MC-Co-Port1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port1_Down.setDescription('The Port1 link of mc in center side is broken')
card_mc__co__port2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 91)).setLabel('card-MC-Co-Port2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port2_Up.setDescription('The Port2 link of mc in center side is up')
card_mc__co__port2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 92)).setLabel('card-MC-Co-Port2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port2_Down.setDescription('The Port2 link of mc in center side is broken')
card_mc__co__port3__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 93)).setLabel('card-MC-Co-Port3-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port3_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port3_Up.setDescription('The Port3 link of mc in center side is up')
card_mc__co__port3__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 94)).setLabel('card-MC-Co-Port3-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_Port3_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_Port3_Down.setDescription('The Port3 link of mc in center side is broken')
card_mc_fan__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 100)).setLabel('card-MC-FAN-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_FAN_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_FAN_Normal.setDescription('Fan card work normally')
card_mc_fan__abnormal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 101)).setLabel('card-MC-FAN-Abnormal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_FAN_Abnormal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_FAN_Abnormal.setDescription('Fan card work abnormally')
card_mc__co_qsfp1__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 102)).setLabel('card-MC-Co-QSFP1-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Inserted.setDescription('Local QSFP1 inserted')
card_mc__co_qsfp1__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 103)).setLabel('card-MC-Co-QSFP1-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Removed.setDescription('Local QSFP1 removed')
card_mc__co_qsfp2__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 104)).setLabel('card-MC-Co-QSFP2-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Inserted.setDescription('Local QSFP2 inserted')
card_mc__co_qsfp2__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 105)).setLabel('card-MC-Co-QSFP2-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Removed.setDescription('Local QSFP2 removed')
card_mc__co_qsfp1__lane1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 106)).setLabel('card-MC-Co-QSFP1-Lane1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane1_Up.setDescription('The QSFP1 Lane1 link of mc in center side is up')
card_mc__co_qsfp1__lane1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 107)).setLabel('card-MC-Co-QSFP1-Lane1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane1_Down.setDescription('The QSFP1 lane1 link of mc in center side is broken')
card_mc__co_qsfp1__lane2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 108)).setLabel('card-MC-Co-QSFP1-Lane2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane2_Up.setDescription('The QSFP1 Lane2 link of mc in center side is up')
card_mc__co_qsfp1__lane2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 109)).setLabel('card-MC-Co-QSFP1-Lane2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane2_Down.setDescription('The QSFP1 lane2 link of mc in center side is broken')
card_mc__co_qsfp1__lane3__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 110)).setLabel('card-MC-Co-QSFP1-Lane3-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane3_Up.setDescription('The QSFP1 Lane3 link of mc in center side is up')
card_mc__co_qsfp1__lane3__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 111)).setLabel('card-MC-Co-QSFP1-Lane3-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane3_Down.setDescription('The QSFP1 lane3 link of mc in center side is broken')
card_mc__co_qsfp1__lane4__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 112)).setLabel('card-MC-Co-QSFP1-Lane4-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane4_Up.setDescription('The QSFP1 Lane4 link of mc in center side is up')
card_mc__co_qsfp1__lane4__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 113)).setLabel('card-MC-Co-QSFP1-Lane4-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP1_Lane4_Down.setDescription('The QSFP1 lane4 link of mc in center side is broken')
card_mc__co_qsfp2__lane1__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 114)).setLabel('card-MC-Co-QSFP2-Lane1-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane1_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane1_Up.setDescription('The QSFP2 Lane1 link of mc in center side is up')
card_mc__co_qsfp2__lane1__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 115)).setLabel('card-MC-Co-QSFP2-Lane1-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane1_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane1_Down.setDescription('The QSFP2 lane1 link of mc in center side is broken')
card_mc__co_qsfp2__lane2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 116)).setLabel('card-MC-Co-QSFP2-Lane2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane2_Up.setDescription('The QSFP2 Lane2 link of mc in center side is up')
card_mc__co_qsfp2__lane2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 117)).setLabel('card-MC-Co-QSFP2-Lane2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane2_Down.setDescription('The QSFP2 lane2 link of mc in center side is broken')
card_mc__co_qsfp2__lane3__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 118)).setLabel('card-MC-Co-QSFP2-Lane3-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane3_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane3_Up.setDescription('The QSFP2 Lane3 link of mc in center side is up')
card_mc__co_qsfp2__lane3__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 119)).setLabel('card-MC-Co-QSFP2-Lane3-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane3_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane3_Down.setDescription('The QSFP2 lane3 link of mc in center side is broken')
card_mc__co_qsfp2__lane4__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 120)).setLabel('card-MC-Co-QSFP2-Lane4-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane4_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane4_Up.setDescription('The QSFP2 Lane4 link of mc in center side is up')
card_mc__co_qsfp2__lane4__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 121)).setLabel('card-MC-Co-QSFP2-Lane4-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane4_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_QSFP2_Lane4_Down.setDescription('The QSFP2 lane4 link of mc in center side is broken')
card_mc__rmt_sfp2__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 122)).setLabel('card-MC-Rmt-SFP2-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Inserted.setDescription('Remote SFP2 inserted')
card_mc__rmt_sfp2__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 123)).setLabel('card-MC-Rmt-SFP2-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Removed.setDescription('Remote SFP2 removed')
card_mc__rmt_sfp3__inserted = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 124)).setLabel('card-MC-Rmt-SFP3-Inserted').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Inserted.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Inserted.setDescription('Remote SFP3 inserted')
card_mc__rmt_sfp3__removed = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 125)).setLabel('card-MC-Rmt-SFP3-Removed').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Removed.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Removed.setDescription('Remote SFP3 removed')
card_mc__rmt_sfp2__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 126)).setLabel('card-MC-Rmt-SFP2-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Up.setDescription('The SFP2 link of mc in customer side is up')
card_mc__rmt_sfp2__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 127)).setLabel('card-MC-Rmt-SFP2-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP2_Down.setDescription('The SFP2 link of mc in customer side is broken')
card_mc__rmt_sfp3__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 128)).setLabel('card-MC-Rmt-SFP3-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Up.setDescription('The SFP3 link of mc in customer side is up')
card_mc__rmt_sfp3__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 129)).setLabel('card-MC-Rmt-SFP3-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Rmt_SFP3_Down.setDescription('The SFP3 link of mc in customer side is broken')
card_mc_e1__co__port1_los__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 130)).setLabel('card-MC-E1-Co-Port1-LOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in center side')
card_mc_e1__co__port1_los__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 131)).setLabel('card-MC-E1-Co-Port1-LOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_LOS_Normal.setDescription('Port1 LOS normal in center side')
card_mc_e1__co__port1_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 132)).setLabel('card-MC-E1-Co-Port1-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in center side')
card_mc_e1__co__port1_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 133)).setLabel('card-MC-E1-Co-Port1-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_AIS_Normal.setDescription('Port1 AIS normal in center side')
card_mc_e1__co__port1_cv__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 134)).setLabel('card-MC-E1-Co-Port1-CV-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_CV_Alarm.setDescription('Port1 CV alarm in center side')
card_mc_e1__co__port1_cv__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 135)).setLabel('card-MC-E1-Co-Port1-CV-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port1_CV_Normal.setDescription('Port1 CV normal in center side')
card_mc_e1__co__port2_los__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 136)).setLabel('card-MC-E1-Co-Port2-LOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in center side')
card_mc_e1__co__port2_los__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 137)).setLabel('card-MC-E1-Co-Port2-LOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_LOS_Normal.setDescription('Port2 LOS normal in center side')
card_mc_e1__co__port2_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 138)).setLabel('card-MC-E1-Co-Port2-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in center side')
card_mc_e1__co__port2_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 139)).setLabel('card-MC-E1-Co-Port2-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_AIS_Normal.setDescription('Port2 AIS normal in center side')
card_mc_e1__co__port2_cv__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 140)).setLabel('card-MC-E1-Co-Port2-CV-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_CV_Alarm.setDescription('Port2 CV alarm in center side')
card_mc_e1__co__port2_cv__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 141)).setLabel('card-MC-E1-Co-Port2-CV-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Co_Port2_CV_Normal.setDescription('Port2 CV normal in center side')
card_mc_e1__rmt__port1_los__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 142)).setLabel('card-MC-E1-Rmt-Port1-LOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_LOS_Alarm.setDescription('Port1 LOS alarm in customer side')
card_mc_e1__rmt__port1_los__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 143)).setLabel('card-MC-E1-Rmt-Port1-LOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_LOS_Normal.setDescription('Port1 LOS normal in customer side')
card_mc_e1__rmt__port1_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 144)).setLabel('card-MC-E1-Rmt-Port1-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_AIS_Alarm.setDescription('Port1 AIS alarm in customer side')
card_mc_e1__rmt__port1_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 145)).setLabel('card-MC-E1-Rmt-Port1-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_AIS_Normal.setDescription('Port1 AIS normal in customer side')
card_mc_e1__rmt__port1_cv__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 146)).setLabel('card-MC-E1-Rmt-Port1-CV-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_CV_Alarm.setDescription('Port1 CV alarm in customer side')
card_mc_e1__rmt__port1_cv__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 147)).setLabel('card-MC-E1-Rmt-Port1-CV-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_CV_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port1_CV_Normal.setDescription('Port1 CV normal in customer side')
card_mc_e1__rmt__port2_los__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 148)).setLabel('card-MC-E1-Rmt-Port2-LOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_LOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_LOS_Alarm.setDescription('Port2 LOS alarm in customer side')
card_mc_e1__rmt__port2_los__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 149)).setLabel('card-MC-E1-Rmt-Port2-LOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_LOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_LOS_Normal.setDescription('Port2 LOS normal in customer side')
card_mc_e1__rmt__port2_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 150)).setLabel('card-MC-E1-Rmt-Port2-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_AIS_Alarm.setDescription('Port2 AIS alarm in customer side')
card_mc_e1__rmt__port2_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 151)).setLabel('card-MC-E1-Rmt-Port2-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_AIS_Normal.setDescription('Port2 AIS normal in customer side')
card_mc_e1__rmt__port2_cv__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 152)).setLabel('card-MC-E1-Rmt-Port2-CV-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_CV_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_CV_Alarm.setDescription('Port2 CV alarm in customer side')
card_mc_e1__rmt__port2_cv__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 153)).setLabel('card-MC-E1-Rmt-Port2-CV-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_CV_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1_Rmt_Port2_CV_Normal.setDescription('Port2 CV normal in customer side')
card_mc__co_sfp3__up = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 154)).setLabel('card-MC-Co-SFP3-Up').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Up.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Up.setDescription('The SFP3 link of mc in center side is up')
card_mc__co_sfp3__down = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 155)).setLabel('card-MC-Co-SFP3-Down').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Down.setStatus('current')
if mibBuilder.loadTexts:
card_MC_Co_SFP3_Down.setDescription('The SFP3 link of mc in center side is broken')
card_mc_e1_t1__co_txlos__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 156)).setLabel('card-MC-E1T1-Co-TXLOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_TXLOS_Alarm.setDescription('Tx LOS alarm in center side')
card_mc_e1_t1__co_txlos__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 157)).setLabel('card-MC-E1T1-Co-TXLOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_TXLOS_Normal.setDescription('Tx LOS normal in center side')
card_mc_e1_t1__co_fxlos__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 158)).setLabel('card-MC-E1T1-Co-FXLOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_FXLOS_Alarm.setDescription('Fx LOS alarm in center side')
card_mc_e1_t1__co_fxlos__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 159)).setLabel('card-MC-E1T1-Co-FXLOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_FXLOS_Normal.setDescription('Fx LOS normal in center side')
card_mc_e1_t1__co_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 160)).setLabel('card-MC-E1T1-Co-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_AIS_Alarm.setDescription('AIS alarm in center side')
card_mc_e1_t1__co_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 161)).setLabel('card-MC-E1T1-Co-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Co_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Co_AIS_Normal.setDescription('AIS normal in center side')
card_mc_e1_t1__rmt_txlos__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 162)).setLabel('card-MC-E1T1-Rmt-TXLOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_TXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_TXLOS_Alarm.setDescription('Tx LOS alarm in customer side')
card_mc_e1_t1__rmt_txlos__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 163)).setLabel('card-MC-E1T1-Rmt-TXLOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_TXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_TXLOS_Normal.setDescription('Tx LOS normal in customer side')
card_mc_e1_t1__rmt_fxlos__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 164)).setLabel('card-MC-E1T1-Rmt-FXLOS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_FXLOS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_FXLOS_Alarm.setDescription('Fx LOS alarm in customer side')
card_mc_e1_t1__rmt_fxlos__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 165)).setLabel('card-MC-E1T1-Rmt-FXLOS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_FXLOS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_FXLOS_Normal.setDescription('Fx LOS normal in customer side')
card_mc_e1_t1__rmt_ais__alarm = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 166)).setLabel('card-MC-E1T1-Rmt-AIS-Alarm').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_AIS_Alarm.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_AIS_Alarm.setDescription('AIS alarm in customer side')
card_mc_e1_t1__rmt_ais__normal = notification_type((1, 3, 6, 1, 4, 1, 6688, 1, 1, 2, 167)).setLabel('card-MC-E1T1-Rmt-AIS-Normal').setObjects(('XXX-MIB', 'shelfIdx'), ('XXX-MIB', 'slotIdx'))
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_AIS_Normal.setStatus('current')
if mibBuilder.loadTexts:
card_MC_E1T1_Rmt_AIS_Normal.setDescription('AIS normal in customer side')
mibBuilder.exportSymbols('XXX-MIB', mc40G_OEOLane2LoopMode=mc40G_OEOLane2LoopMode, company=company, mcFanCardObjects=mcFanCardObjects, mc10G_OEECurSpd=mc10G_OEECurSpd, card_MC_Co_QSFP1_Lane2_Up=card_MC_Co_QSFP1_Lane2_Up, mc4_25G_OEONtwPD=mc4_25G_OEONtwPD, mcCm1gSfpEntry=mcCm1gSfpEntry, card_MC_Co_QSFP1_Lane1_Down=card_MC_Co_QSFP1_Lane1_Down, mc10G_OEO2RObjects=mc10G_OEO2RObjects, mcTransceiverDist=mcTransceiverDist, mc2_5GMCCardObjects=mc2_5GMCCardObjects, mcPortState=mcPortState, mc1GE2OPort2SFPExist=mc1GE2OPort2SFPExist, shelfNum=shelfNum, mcIP175DCurWorkMode=mcIP175DCurWorkMode, card_MC_Rmt_Tx_Up1=card_MC_Rmt_Tx_Up1, mc1go2o_sfpTransCode=mc1go2o_sfpTransCode, sysName=sysName, psuB=psuB, ntwXFP2WaveLength=ntwXFP2WaveLength, mcAccXFP1WaveLengthTunability=mcAccXFP1WaveLengthTunability, mc10G_OEO_Test_Error_Counter=mc10G_OEO_Test_Error_Counter, mc2_5g_sfpWavelength=mc2_5g_sfpWavelength, mc2_5g_sfpCompliance=mc2_5g_sfpCompliance, card_MC_E1_Co_Port1_CV_Alarm=card_MC_E1_Co_Port1_CV_Alarm, mcIP175DCardTable=mcIP175DCardTable, mc4_25G_OEO_Test_Result=mc4_25G_OEO_Test_Result, mc40G_OEOHWLoopMode=mc40G_OEOHWLoopMode, mcE1T1RmtFLink=mcE1T1RmtFLink, ntwXFP2WaveLengthTunability=ntwXFP2WaveLengthTunability, card_MC_E1T1_Co_TXLOS_Normal=card_MC_E1T1_Co_TXLOS_Normal, mcCmEntry=mcCmEntry, mc1go2o_sfpCompliance=mc1go2o_sfpCompliance, shelfIdx=shelfIdx, trapHost1=trapHost1, mcCm1gSfpObjects=mcCm1gSfpObjects, volA=volA, getNtwQSfpCmd=getNtwQSfpCmd, mc1GO2OPortHWPri=mc1GO2OPortHWPri, card_MC_Co_SFP3_Up=card_MC_Co_SFP3_Up, mcE1Port2Loop=mcE1Port2Loop, xfpWaveLengthTunable=xfpWaveLengthTunable, rmtCardNum=rmtCardNum, shelf_fan_Off=shelf_fan_Off, mcDownStream=mcDownStream, mcE1SFP1Link=mcE1SFP1Link, mc10G_OEOCardEntry=mc10G_OEOCardEntry, mcAccXFP1WaveLengthTunable=mcAccXFP1WaveLengthTunable, nmuType=nmuType, mc10G_OEO_Get_Test_Rst=mc10G_OEO_Get_Test_Rst, mc1GE2ORmtPort1SFPlink=mc1GE2ORmtPort1SFPlink, slotObjects=slotObjects, mcIP175DObjects=mcIP175DObjects, card_MC_Co_Tx_Up1=card_MC_Co_Tx_Up1, mcRmtE1Port1CV=mcRmtE1Port1CV, mcRmtHWTransmitMode=mcRmtHWTransmitMode, mcIP175DTxlink=mcIP175DTxlink, mc10G_OEOCurSpdMode=mc10G_OEOCurSpdMode, mc10G_OEELoopMode=mc10G_OEELoopMode, mcE1T1FLossAlarm=mcE1T1FLossAlarm, shelf_psuA_On=shelf_psuA_On, mcQCA8334RmtCfgWorkMode=mcQCA8334RmtCfgWorkMode, shelfTable=shelfTable, ipaddr=ipaddr, mc1GE2OPort1SFPlink=mc1GE2OPort1SFPlink, mc10G_OEO_accType=mc10G_OEO_accType, card_MC_E1_Rmt_Port1_AIS_Normal=card_MC_E1_Rmt_Port1_AIS_Normal, sfpVoltage=sfpVoltage, mc10GOEO1RCardTable=mc10GOEO1RCardTable, mc10GXFP2WaveLengthTunable=mc10GXFP2WaveLengthTunable, mcRmtE1Port1Loop=mcRmtE1Port1Loop, mc4_25G_OEOCardEntry=mc4_25G_OEOCardEntry, card_MC_E1_Rmt_Port1_AIS_Alarm=card_MC_E1_Rmt_Port1_AIS_Alarm, mcRmt4_25G_OEOHWWorkMode=mcRmt4_25G_OEOHWWorkMode, mcCm1gIpEntry=mcCm1gIpEntry, cwdmWavelength5=cwdmWavelength5, mcE1Port1AIS=mcE1Port1AIS, accXFP1TunableType=accXFP1TunableType, mcRmtPwrDown=mcRmtPwrDown, mc10G_OEOObjects=mc10G_OEOObjects, card_MC_Rmt_Tx_Down=card_MC_Rmt_Tx_Down, mc10G_OEEHWLoopback=mc10G_OEEHWLoopback, card_MC_Co_Port3_Down=card_MC_Co_Port3_Down, card_MC_Co_SFP3_Down=card_MC_Co_SFP3_Down, mcQCA8334RmtTxlink=mcQCA8334RmtTxlink, card_MC_E1T1_Co_AIS_Normal=card_MC_E1T1_Co_AIS_Normal, mcRmtE1TxCurWorkMode=mcRmtE1TxCurWorkMode, qsfpAccRxPower4=qsfpAccRxPower4, mcRmt10G_OEOLoopback=mcRmt10G_OEOLoopback, card_MC_E1_Rmt_Port2_CV_Normal=card_MC_E1_Rmt_Port2_CV_Normal, card_MC_E1_Co_Port2_CV_Normal=card_MC_E1_Co_Port2_CV_Normal, mcTxByteLo=mcTxByteLo, mcCardIdx=mcCardIdx, card_MC_Rmt_SFP3_Up=card_MC_Rmt_SFP3_Up, card_MC_E1T1_Co_FXLOS_Alarm=card_MC_E1T1_Co_FXLOS_Alarm, mcRmt4_25G_OEOHWSpdMode=mcRmt4_25G_OEOHWSpdMode, card_MC_Co_QSFP1_Lane4_Up=card_MC_Co_QSFP1_Lane4_Up, mcUtility=mcUtility, mc4_25G_OEOObjects=mc4_25G_OEOObjects, mc10GOEO1RCardEntry=mc10GOEO1RCardEntry, getAccSfpCmd=getAccSfpCmd, mc1GO2OPort3SFPExist=mc1GO2OPort3SFPExist, mcRmtCfgWorkMode=mcRmtCfgWorkMode, mcNtwQSfpObjects=mcNtwQSfpObjects, mcShelfIdx=mcShelfIdx, mc40G_OEOCardEntry=mc40G_OEOCardEntry, mcE1T1CardTable=mcE1T1CardTable, accsfpRecvPower=accsfpRecvPower, mc10GXFP1WaveLengthTunability=mc10GXFP1WaveLengthTunability, cwdmWavelength7=cwdmWavelength7, cwdmWavelength1=cwdmWavelength1, mc40G_OEOQsfp2Lane3_link=mc40G_OEOQsfp2Lane3_link, mcE1Port2CV=mcE1Port2CV, mcAccQSfpObjects=mcAccQSfpObjects, mcRmtE1Port1AIS=mcRmtE1Port1AIS, mcIP175DCardEntry=mcIP175DCardEntry, accsfpTemperature=accsfpTemperature, mc10G_OEO2R_accTunableType=mc10G_OEO2R_accTunableType, card_MC_Co_QSFP2_Lane2_Up=card_MC_Co_QSFP2_Lane2_Up, mc4_25G_OEO_Test_Lock=mc4_25G_OEO_Test_Lock, mcRmtUtility=mcRmtUtility, mc2_5GMCSfp3Exist=mc2_5GMCSfp3Exist, mc4_25G_OEO_Start_Test=mc4_25G_OEO_Start_Test, qsfpAccTemperature=qsfpAccTemperature, card_MC_Rmt_Tx_Down2=card_MC_Rmt_Tx_Down2, sfpConnector=sfpConnector, mcFanObjects=mcFanObjects, card_MC_Co_SFP2_Inserted=card_MC_Co_SFP2_Inserted, mc1GE2OPortPri=mc1GE2OPortPri, mc1GO2OPort1SFPExist=mc1GO2OPort1SFPExist, card_MC_Rmt_SFP3_Down=card_MC_Rmt_SFP3_Down, mcRmt10G_OEOCfgSpdMode=mcRmt10G_OEOCfgSpdMode, mc1go2o_sfpWavelength=mc1go2o_sfpWavelength, card_MC_Co_SFP1_Removed=card_MC_Co_SFP1_Removed, mc40G_OEOQsfp1Lane1_link=mc40G_OEOQsfp1Lane1_link, card_MC_Rmt_XFP1_Up=card_MC_Rmt_XFP1_Up, card_MC_E1T1_Co_TXLOS_Alarm=card_MC_E1T1_Co_TXLOS_Alarm, sfpCopperLength=sfpCopperLength, mc2_5GMCCardTable=mc2_5GMCCardTable, mc2_5g_getSfpCmd=mc2_5g_getSfpCmd, mcE1T1RmtTLossAlarm=mcE1T1RmtTLossAlarm, trapHost3=trapHost3, mcRmtE1Port2LOS=mcRmtE1Port2LOS, card_MC_Co_SFPSFP1_Removed=card_MC_Co_SFPSFP1_Removed, card_MC_E1T1_Co_FXLOS_Normal=card_MC_E1T1_Co_FXLOS_Normal, mc1GO2OPort3SFPlink=mc1GO2OPort3SFPlink, mc1go2o_getSfpCmd=mc1go2o_getSfpCmd, sfpCompliance=sfpCompliance, card_MC_Co_QSFP2_Lane2_Down=card_MC_Co_QSFP2_Lane2_Down, mc10GXFP1WaveLength=mc10GXFP1WaveLength, mc10GOEO3RCardTable=mc10GOEO3RCardTable, mc1GO2ORmtPortHWPri=mc1GO2ORmtPortHWPri, card_MC_Rmt_Tx_Up2=card_MC_Rmt_Tx_Up2, mcRmtHWLFP=mcRmtHWLFP, card_MC_Co_QSFP1_Lane1_Up=card_MC_Co_QSFP1_Lane1_Up, accsfpSmLength=accsfpSmLength, mcIP175DPortObjects=mcIP175DPortObjects, mcType=mcType, accXFP1WaveLength=accXFP1WaveLength, mc40G_OEOQsfp1Lane3_link=mc40G_OEOQsfp1Lane3_link, mc10GXFP2WaveLengthTunability=mc10GXFP2WaveLengthTunability, card_MC_E1T1_Rmt_TXLOS_Normal=card_MC_E1T1_Rmt_TXLOS_Normal, mcRmtHWWorkMode=mcRmtHWWorkMode, mcQCA8334UpStream=mcQCA8334UpStream, card_MC_Rmt_SFP1_Down=card_MC_Rmt_SFP1_Down, mc4_25G_OEOHWLoopback=mc4_25G_OEOHWLoopback, mc10G_OEEFxlink=mc10G_OEEFxlink, mcE1Port1LOS=mcE1Port1LOS, mc2_5GMCPort1link=mc2_5GMCPort1link, qsfpAccRxPower3=qsfpAccRxPower3, mcNtwSfpExist=mcNtwSfpExist, mcNtwXFP2WaveLength=mcNtwXFP2WaveLength, mcRmt10G_OEOHWSpdMode=mcRmt10G_OEOHWSpdMode, cwdmWavelengthCount=cwdmWavelengthCount, card_MC_Rmt_SFPSFP1_Up=card_MC_Rmt_SFPSFP1_Up, mc10G_OEOHWSpdMode=mc10G_OEOHWSpdMode, mc40G_OEOQsfp2Lane4_link=mc40G_OEOQsfp2Lane4_link, mcNtwXFP2WaveLengthTunable=mcNtwXFP2WaveLengthTunable, mc2_5GMCSFP3Objects=mc2_5GMCSFP3Objects, mcHWTransmitMode=mcHWTransmitMode, slotIdx=slotIdx, qsfpNtwTxPower1=qsfpNtwTxPower1, mcHWLFP=mcHWLFP, mcE1T1RmtAISAlarm=mcE1T1RmtAISAlarm, volB=volB, mcRmtCurWorkMode=mcRmtCurWorkMode, mc1GE2OCardTable=mc1GE2OCardTable, accsfpWavelength=accsfpWavelength, mcAccQSfpEntry=mcAccQSfpEntry, mcTxByteHi=mcTxByteHi, mc10G_OEO2RHWSFP1Loopback=mc10G_OEO2RHWSFP1Loopback, sysContact=sysContact, slotEntry=slotEntry, mcCurWorkMode=mcCurWorkMode, card_MC_E1_Rmt_Port2_AIS_Alarm=card_MC_E1_Rmt_Port2_AIS_Alarm, mcIP175DUpStream=mcIP175DUpStream, mcRmtDetect=mcRmtDetect, mc10G_OEO_Test_Lock=mc10G_OEO_Test_Lock, mc2_5g_sfpTranPower=mc2_5g_sfpTranPower, mc2_5g_sfpBrSpeed=mc2_5g_sfpBrSpeed, mc40G_OEOSpeedMode=mc40G_OEOSpeedMode, mc1GO2OSfp3Table=mc1GO2OSfp3Table, mc1GE2ORmtPort2SFPlink=mc1GE2ORmtPort2SFPlink, mcCm1gAccSfpObjects=mcCm1gAccSfpObjects, rmtCardType=rmtCardType, card_MC_Co_SFP2_Removed=card_MC_Co_SFP2_Removed, card_MC_Co_Tx_Down1=card_MC_Co_Tx_Down1, card_MC_Co_QSFP1_Lane2_Down=card_MC_Co_QSFP1_Lane2_Down, card_MC_Co_QSFP2_Lane4_Down=card_MC_Co_QSFP2_Lane4_Down, mcRxByteHi=mcRxByteHi, card_MC_Rmt_SFP3_Inserted=card_MC_Rmt_SFP3_Inserted, mcE1CardEntry=mcE1CardEntry, card_Detected=card_Detected, card_MC_Co_XFP2_Up=card_MC_Co_XFP2_Up, card_MC_Rmt_SFP2_Up=card_MC_Rmt_SFP2_Up, trapHost2=trapHost2, mc2_5Cm1gSfpTable=mc2_5Cm1gSfpTable, mcCWDMCardEntry=mcCWDMCardEntry, mcE1T1TLoop=mcE1T1TLoop, mc1GO2OPortPri=mc1GO2OPortPri, mcLFPCfg=mcLFPCfg, qsfpAccRxPower1=qsfpAccRxPower1, temperature=temperature, qsfpAccTxPower3=qsfpAccTxPower3, card_MC_Co_SFP1_Down=card_MC_Co_SFP1_Down, mc4_25G_OEOCurSpdMode=mc4_25G_OEOCurSpdMode, mc10G_OEECardEntry=mc10G_OEECardEntry, mcFanStatus=mcFanStatus, mc2_5GMCPort3link=mc2_5GMCPort3link, systemMIB=systemMIB, mcTxlink=mcTxlink, mcCmTable=mcCmTable, mcRmtTxlink=mcRmtTxlink, mc40G_OEOQsfp1Lane4_link=mc40G_OEOQsfp1Lane4_link, sfpTranPower=sfpTranPower, coCardType=coCardType, mcFanCardEntry=mcFanCardEntry, cwdmWavelength3=cwdmWavelength3, card_MC_E1_Co_Port1_AIS_Normal=card_MC_E1_Co_Port1_AIS_Normal, mc1GE2OPortHWPri=mc1GE2OPortHWPri, mcE1T1TLossAlarm=mcE1T1TLossAlarm, mcQCA8334DownStream=mcQCA8334DownStream, mcIP175DPortEntry=mcIP175DPortEntry, mcE1T1Version=mcE1T1Version, card_MC_Co_QSFP1_Lane3_Down=card_MC_Co_QSFP1_Lane3_Down, card_MC_E1_Rmt_Port1_CV_Normal=card_MC_E1_Rmt_Port1_CV_Normal, card_MC_Rmt_SFP2_Removed=card_MC_Rmt_SFP2_Removed, card_MC_Co_SFPSFP1_Down=card_MC_Co_SFPSFP1_Down, accsfpBrSpeed=accsfpBrSpeed, cwdmWavelength8=cwdmWavelength8, mcRmt10G_OEOCurSpdMode=mcRmt10G_OEOCurSpdMode, mc10GOEEXFPTunableCardObjects=mc10GOEEXFPTunableCardObjects, mc1GE2ORmtPortHWPri=mc1GE2ORmtPortHWPri, mc10G_OEO_Test_Continue_Time=mc10G_OEO_Test_Continue_Time)
mibBuilder.exportSymbols('XXX-MIB', mc4_25G_OEO_Test_Error_Counter=mc4_25G_OEO_Test_Error_Counter, mc1GO2OPort1SFPlink=mc1GO2OPort1SFPlink, card_MC_E1_Rmt_Port1_LOS_Normal=card_MC_E1_Rmt_Port1_LOS_Normal, mc1GO2OSFP3Objects=mc1GO2OSFP3Objects, xfpWaveLength=xfpWaveLength, card_MC_Co_XFP1_Removed=card_MC_Co_XFP1_Removed, card_MC_Rmt_SFP2_Inserted=card_MC_Rmt_SFP2_Inserted, mc4_25G_OEOWorkMode=mc4_25G_OEOWorkMode, card_MC_Co_XFP2_Inserted=card_MC_Co_XFP2_Inserted, mc2_5g_sfpSmLength=mc2_5g_sfpSmLength, card_MC_Co_Port2_Down=card_MC_Co_Port2_Down, card_MC_Rmt_Acc_SFP_Removed=card_MC_Rmt_Acc_SFP_Removed, card_MC_Co_QSFP2_Removed=card_MC_Co_QSFP2_Removed, mc10GOEEXFPTunableCardTable=mc10GOEEXFPTunableCardTable, card_MC_Co_SFPSFP2_Down=card_MC_Co_SFPSFP2_Down, mcQCA8334PortIdx=mcQCA8334PortIdx, card_MC_E1T1_Rmt_AIS_Alarm=card_MC_E1T1_Rmt_AIS_Alarm, mcIP175DPortTable=mcIP175DPortTable, mc1go2o_sfpRecvPower=mc1go2o_sfpRecvPower, mc10G_OEO2R_ntwType=mc10G_OEO2R_ntwType, card_MC_Rmt_Tx_Up=card_MC_Rmt_Tx_Up, mcCm1gAccSfpTable=mcCm1gAccSfpTable, mcE1T1RmtFLoop=mcE1T1RmtFLoop, card_MC_E1_Co_Port1_CV_Normal=card_MC_E1_Co_Port1_CV_Normal, mc10GXFP1WaveLengthTunable=mc10GXFP1WaveLengthTunable, card_MC_Co_Tx_Up2=card_MC_Co_Tx_Up2, mcRmt10G_OEOHWLoopback=mcRmt10G_OEOHWLoopback, mc10G_OEECardObjects=mc10G_OEECardObjects, mcRmt4_25G_OEOWorkMode=mcRmt4_25G_OEOWorkMode, card_MC_Co_Port1_Up=card_MC_Co_Port1_Up, mc10GXFP2WaveLength=mc10GXFP2WaveLength, mc10G_OEOCardTable=mc10G_OEOCardTable, mc10G_OEE_ntwType=mc10G_OEE_ntwType, mcRmt10G_OEO_ntwType=mcRmt10G_OEO_ntwType, card_MC_Co_SFPSFP1_Up=card_MC_Co_SFPSFP1_Up, mc1GO2OPort2SFPlink=mc1GO2OPort2SFPlink, mcE1T1AISAlarm=mcE1T1AISAlarm, mcLoOrRmtFg=mcLoOrRmtFg, mc10G_OEOCfgSpdMode=mc10G_OEOCfgSpdMode, mcE1T1CardObjects=mcE1T1CardObjects, card_MC_Co_SFP3_Removed=card_MC_Co_SFP3_Removed, mcE1T1FLink=mcE1T1FLink, nmuObjects=nmuObjects, mc1go2o_sfpCopperLength=mc1go2o_sfpCopperLength, mc1GO2OPort3HWSpd=mc1GO2OPort3HWSpd, mc1GO2ORmtPort3SFPExist=mc1GO2ORmtPort3SFPExist, mc10G_OEO2R_ntwTunableType=mc10G_OEO2R_ntwTunableType, shelf_psuB_On=shelf_psuB_On, mcPmTable=mcPmTable, mcCm1gSpecificObjects=mcCm1gSpecificObjects, mc4_25G_OEO_Get_Test_Rst=mc4_25G_OEO_Get_Test_Rst, mcE1T1CardEntry=mcE1T1CardEntry, mc4_25G_OEO_Test_Continue_Time=mc4_25G_OEO_Test_Continue_Time, mcQsfpSpecificObjects=mcQsfpSpecificObjects, mc10GOEO3RCardObjects=mc10GOEO3RCardObjects, card_MC_E1_Co_Port2_AIS_Alarm=card_MC_E1_Co_Port2_AIS_Alarm, mc1GE2OCardObjects=mc1GE2OCardObjects, mc2_5g_sfpRecvPower=mc2_5g_sfpRecvPower, height2HU=height2HU, mc2_5g_sfpMmLength=mc2_5g_sfpMmLength, mc1GE2OObjects=mc1GE2OObjects, mc1GO2OObjects=mc1GO2OObjects, mcCm1gIpTable=mcCm1gIpTable, mcNtwQSfpEntry=mcNtwQSfpEntry, mc40G_OEOLane1LoopMode=mc40G_OEOLane1LoopMode, mc1go2o_sfpConnector=mc1go2o_sfpConnector, card_MC_Co_SFPSFP2_Up=card_MC_Co_SFPSFP2_Up, mcE1Port1CV=mcE1Port1CV, shelfEntry=shelfEntry, sfpBrSpeed=sfpBrSpeed, mcRmtE1SFP1Link=mcRmtE1SFP1Link, card_MC_Co_Acc_SFP_Removed=card_MC_Co_Acc_SFP_Removed, mc10G_OEOSFP2=mc10G_OEOSFP2, card_MC_E1_Co_Port2_LOS_Normal=card_MC_E1_Co_Port2_LOS_Normal, mcUpStream=mcUpStream, mc4_25G_OEOCardObjects=mc4_25G_OEOCardObjects, card_MC_Co_SFP2_Up=card_MC_Co_SFP2_Up, mc2_5g_sfpTransCode=mc2_5g_sfpTransCode, card_MC_E1_Rmt_Port2_LOS_Normal=card_MC_E1_Rmt_Port2_LOS_Normal, mc10G_OEO_Start_Test=mc10G_OEO_Start_Test, accXFP1WaveLengthTunable=accXFP1WaveLengthTunable, mcIpAddr=mcIpAddr, mc40G_OEOCardTable=mc40G_OEOCardTable, mc1GO2ORmtPort3SFPlink=mc1GO2ORmtPort3SFPlink, mcRmt4_25G_OEOLoopback=mcRmt4_25G_OEOLoopback, mcE1T1Type=mcE1T1Type, qsfpNtwRxPower3=qsfpNtwRxPower3, mc10G_OEOCardObjects=mc10G_OEOCardObjects, shelfName=shelfName, card_Lost=card_Lost, accsfpCopperLength=accsfpCopperLength, card_MC_E1_Co_Port1_LOS_Alarm=card_MC_E1_Co_Port1_LOS_Alarm, mcIP175DVlanMode=mcIP175DVlanMode, card_MC_E1T1_Rmt_TXLOS_Alarm=card_MC_E1T1_Rmt_TXLOS_Alarm, mc10G_OEESpdMode=mc10G_OEESpdMode, card_MC_Co_Fx_Up=card_MC_Co_Fx_Up, rmtCardDesc=rmtCardDesc, mcAccXFP1TunableType=mcAccXFP1TunableType, card_MC_Rmt_SFPSFP1_Removed=card_MC_Rmt_SFPSFP1_Removed, mcNtwXFP2WaveLengthTunability=mcNtwXFP2WaveLengthTunability, card_MC_Co_QSFP1_Removed=card_MC_Co_QSFP1_Removed, card_MC_Co_Ntw_SFP_Removed=card_MC_Co_Ntw_SFP_Removed, mcPmRest=mcPmRest, card_MC_Co_Acc_SFP_Inserted=card_MC_Co_Acc_SFP_Inserted, mcE1T1RmtFLossAlarm=mcE1T1RmtFLossAlarm, mc10G_OEO2RCardTable=mc10G_OEO2RCardTable, card_MC_E1_Rmt_Port2_CV_Alarm=card_MC_E1_Rmt_Port2_CV_Alarm, card_MC_Co_Port3_Up=card_MC_Co_Port3_Up, mc1GE2OPort2SFPlink=mc1GE2OPort2SFPlink, mc10GOEO3RObjects=mc10GOEO3RObjects, card_MC_E1_Co_Port1_AIS_Alarm=card_MC_E1_Co_Port1_AIS_Alarm, mc10G_OEO_Test_Result=mc10G_OEO_Test_Result, card_MC_Co_SFPSFP1_Inserted=card_MC_Co_SFPSFP1_Inserted, mc4_25G_OEOHWWorkMode=mc4_25G_OEOHWWorkMode, card_MC_Co_Tx_Down=card_MC_Co_Tx_Down, mcCWDMObjects=mcCWDMObjects, mcHWRmtCtrlMode=mcHWRmtCtrlMode, mcCfgWorkMode=mcCfgWorkMode, mcQCA8334PortEntry=mcQCA8334PortEntry, mcE1CardTable=mcE1CardTable, mc40G_OEOQsfp1Lane2_link=mc40G_OEOQsfp1Lane2_link, mc10G_OEO2RCurSpdMode=mc10G_OEO2RCurSpdMode, PYSNMP_MODULE_ID=company, mc10G_OEOLoopback=mc10G_OEOLoopback, mcE1T1FLoop=mcE1T1FLoop, card_MC_Rmt_SFP1_Up=card_MC_Rmt_SFP1_Up, mcRmt4_25G_OEOCfgSpdMode=mcRmt4_25G_OEOCfgSpdMode, card_MC_Rmt_PwrDown=card_MC_Rmt_PwrDown, mc1go2o_sfpMmLength=mc1go2o_sfpMmLength, mcQCA8334CfgWorkMode=mcQCA8334CfgWorkMode, mcRmtType=mcRmtType, mcQCA8334VlanMode=mcQCA8334VlanMode, mc4_25G_OEOHWSpdMode=mc4_25G_OEOHWSpdMode, card_MC_Co_QSFP2_Lane1_Up=card_MC_Co_QSFP2_Lane1_Up, mcE1Port2LOS=mcE1Port2LOS, mc1GO2OCardObjects=mc1GO2OCardObjects, mcRmt4_25G_OEOHWLoopback=mcRmt4_25G_OEOHWLoopback, mcRmt10G_OEO_accType=mcRmt10G_OEO_accType, mc2_5GMCObjects=mc2_5GMCObjects, mcTransceiverMode=mcTransceiverMode, mc40G_OEOObjects=mc40G_OEOObjects, mcCm1gAccSfpEntry=mcCm1gAccSfpEntry, mcIP175DCfgWorkMode=mcIP175DCfgWorkMode, mc1GE2ORmtTxlink=mc1GE2ORmtTxlink, mcE1T1RmtTLoop=mcE1T1RmtTLoop, qsfpNtwTxPower2=qsfpNtwTxPower2, mc1GO2OPort2SFPExist=mc1GO2OPort2SFPExist, ntwXFP2WaveLengthTunable=ntwXFP2WaveLengthTunable, qsfpNtwRxPower2=qsfpNtwRxPower2, card_MC_Co_XFP1_Inserted=card_MC_Co_XFP1_Inserted, mc10G_OEOSFP1=mc10G_OEOSFP1, mcQCA8334CardObjects=mcQCA8334CardObjects, card_MC_Co_QSFP1_Lane3_Up=card_MC_Co_QSFP1_Lane3_Up, mcAccQSfpTable=mcAccQSfpTable, mc10G_OEO_ntwType=mc10G_OEO_ntwType, mc40G_OEOLane3LoopMode=mc40G_OEOLane3LoopMode, card_MC_Rmt_SFP3_Removed=card_MC_Rmt_SFP3_Removed, card_MC_Co_QSFP2_Lane3_Down=card_MC_Co_QSFP2_Lane3_Down, psuA=psuA, ipProduct=ipProduct, mcFanCardTable=mcFanCardTable, mcRmtE1Port2CV=mcRmtE1Port2CV, mc40G_OEOQsfp2Lane2_link=mc40G_OEOQsfp2Lane2_link, qsfpAccRxPower2=qsfpAccRxPower2, mc10G_OEO2RCfgSpdMode=mc10G_OEO2RCfgSpdMode, card_MC_E1_Rmt_Port2_LOS_Alarm=card_MC_E1_Rmt_Port2_LOS_Alarm, card_MC_E1T1_Rmt_FXLOS_Normal=card_MC_E1T1_Rmt_FXLOS_Normal, mc2_5g_sfpCopperLength=mc2_5g_sfpCopperLength, mcCmObjects=mcCmObjects, mc10GOEEXFPTunableObjects=mc10GOEEXFPTunableObjects, mc10GOEO1RObjects=mc10GOEO1RObjects, mc40G_OEOHWSpeedMode=mc40G_OEOHWSpeedMode, getAccQSfpCmd=getAccQSfpCmd, mcQCA8334CardTable=mcQCA8334CardTable, mc10G_OEO2R_accType=mc10G_OEO2R_accType, card_MC_E1_Co_Port1_LOS_Normal=card_MC_E1_Co_Port1_LOS_Normal, card_MC_Rmt_SFPSFP1_Inserted=card_MC_Rmt_SFPSFP1_Inserted, mc2_5g_sfpTemperature=mc2_5g_sfpTemperature, mcRmtE1Txlink=mcRmtE1Txlink, accsfpTranPower=accsfpTranPower, mcE1T1CodeType=mcE1T1CodeType, sfpRecvPower=sfpRecvPower, card_MC_Co_Fx_Down=card_MC_Co_Fx_Down, card_MC_Co_QSFP2_Inserted=card_MC_Co_QSFP2_Inserted, mcRmtLFP=mcRmtLFP, card_MC_Rmt_SFP1_Inserted=card_MC_Rmt_SFP1_Inserted, accsfpTransCode=accsfpTransCode, sysLocation=sysLocation, qsfpNtwRxPower4=qsfpNtwRxPower4, card_MC_E1_Rmt_Port1_LOS_Alarm=card_MC_E1_Rmt_Port1_LOS_Alarm, sfpSmLength=sfpSmLength, cwdmWavelength6=cwdmWavelength6, mcE1TxCurWorkMode=mcE1TxCurWorkMode, mc1GE2ORmtPort1SFPExist=mc1GE2ORmtPort1SFPExist, mcCm1gIpObjects=mcCm1gIpObjects, mcRmtE1Port2Loop=mcRmtE1Port2Loop, mc10G_OEO2RCardEntry=mc10G_OEO2RCardEntry, card_MC_Co_SFP1_Up=card_MC_Co_SFP1_Up, qsfpAccTxPower2=qsfpAccTxPower2, card_MC_Rmt_XFP1_Removed=card_MC_Rmt_XFP1_Removed, qsfpAccTxPower1=qsfpAccTxPower1, qsfpAccConnector=qsfpAccConnector, mcRmtE1Port2AIS=mcRmtE1Port2AIS, card_MC_E1T1_Rmt_FXLOS_Alarm=card_MC_E1T1_Rmt_FXLOS_Alarm, card_MC_Co_QSFP1_Inserted=card_MC_Co_QSFP1_Inserted, card_MC_FAN_Normal=card_MC_FAN_Normal, mcNtwQSfpTable=mcNtwQSfpTable, mc10G_OEE_checkResult=mc10G_OEE_checkResult, card_MC_E1T1_Rmt_AIS_Normal=card_MC_E1T1_Rmt_AIS_Normal, mc2_5GMCCardEntry=mc2_5GMCCardEntry, mcE1Txlink=mcE1Txlink, mcQCA8334CardEntry=mcQCA8334CardEntry, mcRmtLoopback=mcRmtLoopback, mcQCA8334CurWorkMode=mcQCA8334CurWorkMode, card_MC_Rmt_SFP2_Down=card_MC_Rmt_SFP2_Down, card_MC_Rmt_SFP1_Removed=card_MC_Rmt_SFP1_Removed, mcRmtE1Port1LOS=mcRmtE1Port1LOS, card_MC_Co_SFP1_Inserted=card_MC_Co_SFP1_Inserted, qsfpNtwRxPower1=qsfpNtwRxPower1, mc10G_OEO2RSFP2=mc10G_OEO2RSFP2, slotTable=slotTable, mc10G_OEECardTable=mc10G_OEECardTable, mc40G_OEOLoopMode=mc40G_OEOLoopMode, mc1go2o_sfpTranPower=mc1go2o_sfpTranPower, mc1GO2ORmtPort2SFPlink=mc1GO2ORmtPort2SFPlink, mc10G_OEO2RCardObjects=mc10G_OEO2RCardObjects, mcCm1gSfpTable=mcCm1gSfpTable, mc1go2o_sfpTemperature=mc1go2o_sfpTemperature, mc1GO2ORmtPort2SFPExist=mc1GO2ORmtPort2SFPExist, card_MC_E1_Co_Port2_CV_Alarm=card_MC_E1_Co_Port2_CV_Alarm, mc1GE2OPort1SFPExist=mc1GE2OPort1SFPExist, accsfpConnector=accsfpConnector, coCardNum=coCardNum, mc1GO2OCardTable=mc1GO2OCardTable, gateway=gateway, qsfpNtwTemperature=qsfpNtwTemperature, card_MC_Rmt_XFP1_Inserted=card_MC_Rmt_XFP1_Inserted, mcIP175DRmtCurWorkMode=mcIP175DRmtCurWorkMode, mc2_5g_sfpConnector=mc2_5g_sfpConnector, mcE1T1RmtCodeType=mcE1T1RmtCodeType, mc1GO2ORmtPort1SFPExist=mc1GO2ORmtPort1SFPExist, mc4_25G_OEOCfgSpdMode=mc4_25G_OEOCfgSpdMode, card_MC_Co_SFP2_Down=card_MC_Co_SFP2_Down, sfpMmLength=sfpMmLength, mc10GOEEXFPTunableCardEntry=mc10GOEEXFPTunableCardEntry, mcIP175DPortIdx=mcIP175DPortIdx, sfpWavelength=sfpWavelength, shelf_psuA_Off=shelf_psuA_Off, card_MC_Co_Port1_Down=card_MC_Co_Port1_Down, mcRmtAccSfpExist=mcRmtAccSfpExist, mcAccXFP1WaveLength=mcAccXFP1WaveLength, card_MC_Co_QSFP2_Lane4_Up=card_MC_Co_QSFP2_Lane4_Up, card_MC_Co_QSFP2_Lane3_Up=card_MC_Co_QSFP2_Lane3_Up, mcE1CardObjects=mcE1CardObjects)
mibBuilder.exportSymbols('XXX-MIB', ntwXFP2TunableType=ntwXFP2TunableType, card_MC_Co_Ntw_SFP_Inserted=card_MC_Co_Ntw_SFP_Inserted, card_MC_E1_Rmt_Port2_AIS_Normal=card_MC_E1_Rmt_Port2_AIS_Normal, mc2_5GMCPort2link=mc2_5GMCPort2link, mc1GE2ORmtPort2SFPExist=mc1GE2ORmtPort2SFPExist, getSfpCmd=getSfpCmd, mc10G_OEO2RSFP1=mc10G_OEO2RSFP1, card_MC_Co_SFPSFP2_Removed=card_MC_Co_SFPSFP2_Removed, mc1GO2ORmtPort1SFPlink=mc1GO2ORmtPort1SFPlink, mcPmObjects=mcPmObjects, card_MC_Co_Tx_Up=card_MC_Co_Tx_Up, qsfpAccTxPower4=qsfpAccTxPower4, shelf_Lost=shelf_Lost, mcPmEntry=mcPmEntry, mc2_5Cm1gSfpEntry=mc2_5Cm1gSfpEntry, mc1GO2OSfp3Entry=mc1GO2OSfp3Entry, cwdmWavelength4=cwdmWavelength4, xfpWaveLengthTunability=xfpWaveLengthTunability, card_MC_FAN_Abnormal=card_MC_FAN_Abnormal, mc10G_OEO2RSFP2Loopback=mc10G_OEO2RSFP2Loopback, subnet=subnet, card_MC_Co_Port2_Up=card_MC_Co_Port2_Up, card_MC_Co_XFP2_Removed=card_MC_Co_XFP2_Removed, shelf_fan_On=shelf_fan_On, mcQCA8334PortObjects=mcQCA8334PortObjects, mcE1Port1Loop=mcE1Port1Loop, mc10G_OEETxlink=mc10G_OEETxlink, mc10G_OEOHWLoopback=mc10G_OEOHWLoopback, mcRmt4_25G_OEOCurSpdMode=mcRmt4_25G_OEOCurSpdMode, coCardDesc=coCardDesc, nmuConfig=nmuConfig, mc1GO2OCardEntry=mc1GO2OCardEntry, mc1go2o_sfpBrSpeed=mc1go2o_sfpBrSpeed, fan=fan, mc10GOEO3RCardEntry=mc10GOEO3RCardEntry, card_MC_Co_XFP1_Down=card_MC_Co_XFP1_Down, card_MC_Rmt_XFP1_Down=card_MC_Rmt_XFP1_Down, mcE1Objects=mcE1Objects, card_MC_Rmt_Tx_Down1=card_MC_Rmt_Tx_Down1, mcHWWorkMode=mcHWWorkMode, card_MC_Rmt_SFPSFP1_Down=card_MC_Rmt_SFPSFP1_Down, card_MC_Co_QSFP2_Lane1_Down=card_MC_Co_QSFP2_Lane1_Down, mc4_25G_OEOAccPD=mc4_25G_OEOAccPD, cwdmWavelength2=cwdmWavelength2, trapHost4=trapHost4, mcQCA8334PortTable=mcQCA8334PortTable, mcCWDMCardObjects=mcCWDMCardObjects, mcTransmitMode=mcTransmitMode, sfpTemperature=sfpTemperature, qsfpNtwConnector=qsfpNtwConnector, mc4_25G_OEOCardTable=mc4_25G_OEOCardTable, mc40G_OEOLane4LoopMode=mc40G_OEOLane4LoopMode, mcQCA8334Objects=mcQCA8334Objects, mc40G_OEOCardObjects=mc40G_OEOCardObjects, shelf_psuB_Off=shelf_psuB_Off, mcIP175DRmtTxlink=mcIP175DRmtTxlink, mc2_5g_sfpVoltage=mc2_5g_sfpVoltage, mcCWDMCardTable=mcCWDMCardTable, mcRmtTransmitMode=mcRmtTransmitMode, mcFxlink=mcFxlink, mcRxByteLo=mcRxByteLo, mc1GE2OTxlink=mc1GE2OTxlink, mc1go2o_sfpVoltage=mc1go2o_sfpVoltage, mc10GOEO1RCardObjects=mc10GOEO1RCardObjects, card_MC_E1_Rmt_Port1_CV_Alarm=card_MC_E1_Rmt_Port1_CV_Alarm, card_MC_Co_XFP1_Up=card_MC_Co_XFP1_Up, mc10G_OEEObjects=mc10G_OEEObjects, card_MC_E1T1_Co_AIS_Alarm=card_MC_E1T1_Co_AIS_Alarm, mc1go2o_sfpSmLength=mc1go2o_sfpSmLength, shelf_Detected=shelf_Detected, card_MC_Co_SFPSFP2_Inserted=card_MC_Co_SFPSFP2_Inserted, card_MC_Rmt_Acc_SFP_Inserted=card_MC_Rmt_Acc_SFP_Inserted, mcIP175DCardObjects=mcIP175DCardObjects, card_MC_Co_XFP2_Down=card_MC_Co_XFP2_Down, mcQCA8334Txlink=mcQCA8334Txlink, mcE1Port2AIS=mcE1Port2AIS, card_MC_Co_Tx_Down2=card_MC_Co_Tx_Down2, sfpTransCode=sfpTransCode, mc4_25G_OEOLoopback=mc4_25G_OEOLoopback, mcNtwXFP2TunableType=mcNtwXFP2TunableType, accsfpVoltage=accsfpVoltage, mcRmt10G_OEOSFP1=mcRmt10G_OEOSFP1, mc1GO2ORmtPort3HWSpd=mc1GO2ORmtPort3HWSpd, mc10G_OEO2RHWSFP2Loopback=mc10G_OEO2RHWSFP2Loopback, qsfpNtwTxPower3=qsfpNtwTxPower3, mc10G_OEO2RVersion=mc10G_OEO2RVersion, accsfpMmLength=accsfpMmLength, mc10G_OEO2RHWSpdMode=mc10G_OEO2RHWSpdMode, mc10G_OEO2RSFP1Loopback=mc10G_OEO2RSFP1Loopback, mc1GE2OCardEntry=mc1GE2OCardEntry, mcQCA8334RmtCurWorkMode=mcQCA8334RmtCurWorkMode, xfpTunableType=xfpTunableType, card_MC_Co_QSFP1_Lane4_Down=card_MC_Co_QSFP1_Lane4_Down, mcIP175DDownStream=mcIP175DDownStream, cardObjects=cardObjects, alarmMIB=alarmMIB, accXFP1WaveLengthTunability=accXFP1WaveLengthTunability, qsfpNtwTxPower4=qsfpNtwTxPower4, mcE1T1Objects=mcE1T1Objects, mcAccSfpExist=mcAccSfpExist, card_MC_E1_Co_Port2_AIS_Normal=card_MC_E1_Co_Port2_AIS_Normal, card_MC_E1_Co_Port2_LOS_Alarm=card_MC_E1_Co_Port2_LOS_Alarm, mcIP175DRmtCfgWorkMode=mcIP175DRmtCfgWorkMode, mc40G_OEOQsfp2Lane1_link=mc40G_OEOQsfp2Lane1_link, accsfpCompliance=accsfpCompliance, card_MC_Co_SFP3_Inserted=card_MC_Co_SFP3_Inserted) |
# Copyright (c) 2009 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'conditions': [
['OS!="win"', {
'variables': {
'config_h_dir':
'.', # crafted for gcc/linux.
},
}, { # else, OS=="win"
'variables': {
'config_h_dir':
'vsprojects', # crafted for msvc.
},
'target_defaults': {
'msvs_disabled_warnings': [
4018, # signed/unsigned mismatch in comparison
4244, # implicit conversion, possible loss of data
4355, # 'this' used in base member initializer list
],
'defines!': [
'WIN32_LEAN_AND_MEAN', # Protobuf defines this itself.
],
},
}]
],
'targets': [
# The "lite" lib is about 1/7th the size of the heavy lib,
# but it doesn't support some of the more exotic features of
# protobufs, like reflection. To generate C++ code that can link
# against the lite version of the library, add the option line:
#
# option optimize_for = LITE_RUNTIME;
#
# to your .proto file.
{
'target_name': 'protobuf_lite',
'type': '<(library)',
'toolsets': ['host', 'target'],
'sources': [
'src/google/protobuf/stubs/common.h',
'src/google/protobuf/stubs/once.h',
'src/google/protobuf/extension_set.h',
'src/google/protobuf/generated_message_util.h',
'src/google/protobuf/message_lite.h',
'src/google/protobuf/repeated_field.h',
'src/google/protobuf/unknown_field_set.cc',
'src/google/protobuf/unknown_field_set.h',
'src/google/protobuf/wire_format_lite.h',
'src/google/protobuf/wire_format_lite_inl.h',
'src/google/protobuf/io/coded_stream.h',
'src/google/protobuf/io/zero_copy_stream.h',
'src/google/protobuf/io/zero_copy_stream_impl_lite.h',
'src/google/protobuf/stubs/common.cc',
'src/google/protobuf/stubs/once.cc',
'src/google/protobuf/stubs/hash.h',
'src/google/protobuf/stubs/map-util.h',
'src/google/protobuf/stubs/stl_util-inl.h',
'src/google/protobuf/extension_set.cc',
'src/google/protobuf/generated_message_util.cc',
'src/google/protobuf/message_lite.cc',
'src/google/protobuf/repeated_field.cc',
'src/google/protobuf/wire_format_lite.cc',
'src/google/protobuf/io/coded_stream.cc',
'src/google/protobuf/io/coded_stream_inl.h',
'src/google/protobuf/io/zero_copy_stream.cc',
'src/google/protobuf/io/zero_copy_stream_impl_lite.cc',
'<(config_h_dir)/config.h',
],
'include_dirs': [
'<(config_h_dir)',
'src',
],
# This macro must be defined to suppress the use of dynamic_cast<>,
# which requires RTTI.
'defines': [
'GOOGLE_PROTOBUF_NO_RTTI',
],
'direct_dependent_settings': {
'include_dirs': [
'<(config_h_dir)',
'src',
],
'defines': [
'GOOGLE_PROTOBUF_NO_RTTI',
],
},
},
# This is the full, heavy protobuf lib that's needed for c++ .proto's
# that don't specify the LITE_RUNTIME option. The protocol
# compiler itself (protoc) falls into that category.
#
# DO NOT LINK AGAINST THIS TARGET IN CHROME CODE --agl
{
'target_name': 'protobuf_full_do_not_use',
'type': '<(library)',
'toolsets': ['host','target'],
'sources': [
'src/google/protobuf/descriptor.h',
'src/google/protobuf/descriptor.pb.h',
'src/google/protobuf/descriptor_database.h',
'src/google/protobuf/dynamic_message.h',
'src/google/protobuf/generated_message_reflection.h',
'src/google/protobuf/message.h',
'src/google/protobuf/reflection_ops.h',
'src/google/protobuf/service.h',
'src/google/protobuf/text_format.h',
'src/google/protobuf/unknown_field_set.h',
'src/google/protobuf/wire_format.h',
'src/google/protobuf/io/gzip_stream.h',
'src/google/protobuf/io/printer.h',
'src/google/protobuf/io/tokenizer.h',
'src/google/protobuf/io/zero_copy_stream_impl.h',
'src/google/protobuf/compiler/code_generator.h',
'src/google/protobuf/compiler/command_line_interface.h',
'src/google/protobuf/compiler/importer.h',
'src/google/protobuf/compiler/parser.h',
'src/google/protobuf/stubs/strutil.cc',
'src/google/protobuf/stubs/strutil.h',
'src/google/protobuf/stubs/substitute.cc',
'src/google/protobuf/stubs/substitute.h',
'src/google/protobuf/stubs/structurally_valid.cc',
'src/google/protobuf/descriptor.cc',
'src/google/protobuf/descriptor.pb.cc',
'src/google/protobuf/descriptor_database.cc',
'src/google/protobuf/dynamic_message.cc',
'src/google/protobuf/extension_set_heavy.cc',
'src/google/protobuf/generated_message_reflection.cc',
'src/google/protobuf/message.cc',
'src/google/protobuf/reflection_ops.cc',
'src/google/protobuf/service.cc',
'src/google/protobuf/text_format.cc',
'src/google/protobuf/unknown_field_set.cc',
'src/google/protobuf/wire_format.cc',
# This file pulls in zlib, but it's not actually used by protoc, so
# instead of compiling zlib for the host, let's just exclude this.
# 'src/src/google/protobuf/io/gzip_stream.cc',
'src/google/protobuf/io/printer.cc',
'src/google/protobuf/io/tokenizer.cc',
'src/google/protobuf/io/zero_copy_stream_impl.cc',
'src/google/protobuf/compiler/importer.cc',
'src/google/protobuf/compiler/parser.cc',
],
'dependencies': [
'protobuf_lite',
],
'export_dependent_settings': [
'protobuf_lite',
],
},
{
'target_name': 'protoc',
'type': 'executable',
'toolsets': ['host'],
'sources': [
'src/google/protobuf/compiler/code_generator.cc',
'src/google/protobuf/compiler/command_line_interface.cc',
'src/google/protobuf/compiler/plugin.cc',
'src/google/protobuf/compiler/plugin.pb.cc',
'src/google/protobuf/compiler/subprocess.cc',
'src/google/protobuf/compiler/subprocess.h',
'src/google/protobuf/compiler/zip_writer.cc',
'src/google/protobuf/compiler/zip_writer.h',
'src/google/protobuf/compiler/cpp/cpp_enum.cc',
'src/google/protobuf/compiler/cpp/cpp_enum.h',
'src/google/protobuf/compiler/cpp/cpp_enum_field.cc',
'src/google/protobuf/compiler/cpp/cpp_enum_field.h',
'src/google/protobuf/compiler/cpp/cpp_extension.cc',
'src/google/protobuf/compiler/cpp/cpp_extension.h',
'src/google/protobuf/compiler/cpp/cpp_field.cc',
'src/google/protobuf/compiler/cpp/cpp_field.h',
'src/google/protobuf/compiler/cpp/cpp_file.cc',
'src/google/protobuf/compiler/cpp/cpp_file.h',
'src/google/protobuf/compiler/cpp/cpp_generator.cc',
'src/google/protobuf/compiler/cpp/cpp_helpers.cc',
'src/google/protobuf/compiler/cpp/cpp_helpers.h',
'src/google/protobuf/compiler/cpp/cpp_message.cc',
'src/google/protobuf/compiler/cpp/cpp_message.h',
'src/google/protobuf/compiler/cpp/cpp_message_field.cc',
'src/google/protobuf/compiler/cpp/cpp_message_field.h',
'src/google/protobuf/compiler/cpp/cpp_primitive_field.cc',
'src/google/protobuf/compiler/cpp/cpp_primitive_field.h',
'src/google/protobuf/compiler/cpp/cpp_service.cc',
'src/google/protobuf/compiler/cpp/cpp_service.h',
'src/google/protobuf/compiler/cpp/cpp_string_field.cc',
'src/google/protobuf/compiler/cpp/cpp_string_field.h',
'src/google/protobuf/compiler/java/java_enum.cc',
'src/google/protobuf/compiler/java/java_enum.h',
'src/google/protobuf/compiler/java/java_enum_field.cc',
'src/google/protobuf/compiler/java/java_enum_field.h',
'src/google/protobuf/compiler/java/java_extension.cc',
'src/google/protobuf/compiler/java/java_extension.h',
'src/google/protobuf/compiler/java/java_field.cc',
'src/google/protobuf/compiler/java/java_field.h',
'src/google/protobuf/compiler/java/java_file.cc',
'src/google/protobuf/compiler/java/java_file.h',
'src/google/protobuf/compiler/java/java_generator.cc',
'src/google/protobuf/compiler/java/java_helpers.cc',
'src/google/protobuf/compiler/java/java_helpers.h',
'src/google/protobuf/compiler/java/java_message.cc',
'src/google/protobuf/compiler/java/java_message.h',
'src/google/protobuf/compiler/java/java_message_field.cc',
'src/google/protobuf/compiler/java/java_message_field.h',
'src/google/protobuf/compiler/java/java_primitive_field.cc',
'src/google/protobuf/compiler/java/java_primitive_field.h',
'src/google/protobuf/compiler/java/java_service.cc',
'src/google/protobuf/compiler/java/java_service.h',
'src/google/protobuf/compiler/java/java_string_field.cc',
'src/google/protobuf/compiler/java/java_string_field.h',
'src/google/protobuf/compiler/python/python_generator.cc',
'src/google/protobuf/compiler/main.cc',
],
'dependencies': [
'protobuf_full_do_not_use',
],
'include_dirs': [
'<(config_h_dir)',
'src/src',
],
},
{
# Generate the python module needed by all protoc-generated Python code.
'target_name': 'py_proto',
'type': 'none',
'copies': [
{
'destination': '<(PRODUCT_DIR)/pyproto/google/',
'files': [
# google/ module gets an empty __init__.py.
'__init__.py',
],
},
{
'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf',
'files': [
'python/google/protobuf/__init__.py',
'python/google/protobuf/descriptor.py',
'python/google/protobuf/message.py',
'python/google/protobuf/reflection.py',
'python/google/protobuf/service.py',
'python/google/protobuf/service_reflection.py',
'python/google/protobuf/text_format.py',
# TODO(ncarter): protoc's python generator treats descriptor.proto
# specially, but it's not possible to trigger the special treatment
# unless you run protoc from ./src/src (the treatment is based
# on the path to the .proto file matching a constant exactly).
# I'm not sure how to convince gyp to execute a rule from a
# different directory. Until this is resolved, use a copy of
# descriptor_pb2.py that I manually generated.
'descriptor_pb2.py',
],
},
{
'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf/internal',
'files': [
'python/google/protobuf/internal/__init__.py',
'python/google/protobuf/internal/api_implementation.py',
'python/google/protobuf/internal/containers.py',
'python/google/protobuf/internal/cpp_message.py',
'python/google/protobuf/internal/decoder.py',
'python/google/protobuf/internal/encoder.py',
'python/google/protobuf/internal/generator_test.py',
'python/google/protobuf/internal/message_listener.py',
'python/google/protobuf/internal/python_message.py',
'python/google/protobuf/internal/type_checkers.py',
'python/google/protobuf/internal/wire_format.py',
],
},
],
# # We can't generate a proper descriptor_pb2.py -- see earlier comment.
# 'rules': [
# {
# 'rule_name': 'genproto',
# 'extension': 'proto',
# 'inputs': [
# '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
# ],
# 'variables': {
# # The protoc compiler requires a proto_path argument with the
# # directory containing the .proto file.
# 'rule_input_relpath': 'src/google/protobuf',
# },
# 'outputs': [
# '<(PRODUCT_DIR)/pyproto/google/protobuf/<(RULE_INPUT_ROOT)_pb2.py',
# ],
# 'action': [
# '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
# '-I./src',
# '-I.',
# '--python_out=<(PRODUCT_DIR)/pyproto/google/protobuf',
# 'google/protobuf/descriptor.proto',
# ],
# 'message': 'Generating Python code from <(RULE_INPUT_PATH)',
# },
# ],
# 'dependencies': [
# 'protoc#host',
# ],
# 'sources': [
# 'src/google/protobuf/descriptor.proto',
# ],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2:
| {'conditions': [['OS!="win"', {'variables': {'config_h_dir': '.'}}, {'variables': {'config_h_dir': 'vsprojects'}, 'target_defaults': {'msvs_disabled_warnings': [4018, 4244, 4355], 'defines!': ['WIN32_LEAN_AND_MEAN']}}]], 'targets': [{'target_name': 'protobuf_lite', 'type': '<(library)', 'toolsets': ['host', 'target'], 'sources': ['src/google/protobuf/stubs/common.h', 'src/google/protobuf/stubs/once.h', 'src/google/protobuf/extension_set.h', 'src/google/protobuf/generated_message_util.h', 'src/google/protobuf/message_lite.h', 'src/google/protobuf/repeated_field.h', 'src/google/protobuf/unknown_field_set.cc', 'src/google/protobuf/unknown_field_set.h', 'src/google/protobuf/wire_format_lite.h', 'src/google/protobuf/wire_format_lite_inl.h', 'src/google/protobuf/io/coded_stream.h', 'src/google/protobuf/io/zero_copy_stream.h', 'src/google/protobuf/io/zero_copy_stream_impl_lite.h', 'src/google/protobuf/stubs/common.cc', 'src/google/protobuf/stubs/once.cc', 'src/google/protobuf/stubs/hash.h', 'src/google/protobuf/stubs/map-util.h', 'src/google/protobuf/stubs/stl_util-inl.h', 'src/google/protobuf/extension_set.cc', 'src/google/protobuf/generated_message_util.cc', 'src/google/protobuf/message_lite.cc', 'src/google/protobuf/repeated_field.cc', 'src/google/protobuf/wire_format_lite.cc', 'src/google/protobuf/io/coded_stream.cc', 'src/google/protobuf/io/coded_stream_inl.h', 'src/google/protobuf/io/zero_copy_stream.cc', 'src/google/protobuf/io/zero_copy_stream_impl_lite.cc', '<(config_h_dir)/config.h'], 'include_dirs': ['<(config_h_dir)', 'src'], 'defines': ['GOOGLE_PROTOBUF_NO_RTTI'], 'direct_dependent_settings': {'include_dirs': ['<(config_h_dir)', 'src'], 'defines': ['GOOGLE_PROTOBUF_NO_RTTI']}}, {'target_name': 'protobuf_full_do_not_use', 'type': '<(library)', 'toolsets': ['host', 'target'], 'sources': ['src/google/protobuf/descriptor.h', 'src/google/protobuf/descriptor.pb.h', 'src/google/protobuf/descriptor_database.h', 'src/google/protobuf/dynamic_message.h', 'src/google/protobuf/generated_message_reflection.h', 'src/google/protobuf/message.h', 'src/google/protobuf/reflection_ops.h', 'src/google/protobuf/service.h', 'src/google/protobuf/text_format.h', 'src/google/protobuf/unknown_field_set.h', 'src/google/protobuf/wire_format.h', 'src/google/protobuf/io/gzip_stream.h', 'src/google/protobuf/io/printer.h', 'src/google/protobuf/io/tokenizer.h', 'src/google/protobuf/io/zero_copy_stream_impl.h', 'src/google/protobuf/compiler/code_generator.h', 'src/google/protobuf/compiler/command_line_interface.h', 'src/google/protobuf/compiler/importer.h', 'src/google/protobuf/compiler/parser.h', 'src/google/protobuf/stubs/strutil.cc', 'src/google/protobuf/stubs/strutil.h', 'src/google/protobuf/stubs/substitute.cc', 'src/google/protobuf/stubs/substitute.h', 'src/google/protobuf/stubs/structurally_valid.cc', 'src/google/protobuf/descriptor.cc', 'src/google/protobuf/descriptor.pb.cc', 'src/google/protobuf/descriptor_database.cc', 'src/google/protobuf/dynamic_message.cc', 'src/google/protobuf/extension_set_heavy.cc', 'src/google/protobuf/generated_message_reflection.cc', 'src/google/protobuf/message.cc', 'src/google/protobuf/reflection_ops.cc', 'src/google/protobuf/service.cc', 'src/google/protobuf/text_format.cc', 'src/google/protobuf/unknown_field_set.cc', 'src/google/protobuf/wire_format.cc', 'src/google/protobuf/io/printer.cc', 'src/google/protobuf/io/tokenizer.cc', 'src/google/protobuf/io/zero_copy_stream_impl.cc', 'src/google/protobuf/compiler/importer.cc', 'src/google/protobuf/compiler/parser.cc'], 'dependencies': ['protobuf_lite'], 'export_dependent_settings': ['protobuf_lite']}, {'target_name': 'protoc', 'type': 'executable', 'toolsets': ['host'], 'sources': ['src/google/protobuf/compiler/code_generator.cc', 'src/google/protobuf/compiler/command_line_interface.cc', 'src/google/protobuf/compiler/plugin.cc', 'src/google/protobuf/compiler/plugin.pb.cc', 'src/google/protobuf/compiler/subprocess.cc', 'src/google/protobuf/compiler/subprocess.h', 'src/google/protobuf/compiler/zip_writer.cc', 'src/google/protobuf/compiler/zip_writer.h', 'src/google/protobuf/compiler/cpp/cpp_enum.cc', 'src/google/protobuf/compiler/cpp/cpp_enum.h', 'src/google/protobuf/compiler/cpp/cpp_enum_field.cc', 'src/google/protobuf/compiler/cpp/cpp_enum_field.h', 'src/google/protobuf/compiler/cpp/cpp_extension.cc', 'src/google/protobuf/compiler/cpp/cpp_extension.h', 'src/google/protobuf/compiler/cpp/cpp_field.cc', 'src/google/protobuf/compiler/cpp/cpp_field.h', 'src/google/protobuf/compiler/cpp/cpp_file.cc', 'src/google/protobuf/compiler/cpp/cpp_file.h', 'src/google/protobuf/compiler/cpp/cpp_generator.cc', 'src/google/protobuf/compiler/cpp/cpp_helpers.cc', 'src/google/protobuf/compiler/cpp/cpp_helpers.h', 'src/google/protobuf/compiler/cpp/cpp_message.cc', 'src/google/protobuf/compiler/cpp/cpp_message.h', 'src/google/protobuf/compiler/cpp/cpp_message_field.cc', 'src/google/protobuf/compiler/cpp/cpp_message_field.h', 'src/google/protobuf/compiler/cpp/cpp_primitive_field.cc', 'src/google/protobuf/compiler/cpp/cpp_primitive_field.h', 'src/google/protobuf/compiler/cpp/cpp_service.cc', 'src/google/protobuf/compiler/cpp/cpp_service.h', 'src/google/protobuf/compiler/cpp/cpp_string_field.cc', 'src/google/protobuf/compiler/cpp/cpp_string_field.h', 'src/google/protobuf/compiler/java/java_enum.cc', 'src/google/protobuf/compiler/java/java_enum.h', 'src/google/protobuf/compiler/java/java_enum_field.cc', 'src/google/protobuf/compiler/java/java_enum_field.h', 'src/google/protobuf/compiler/java/java_extension.cc', 'src/google/protobuf/compiler/java/java_extension.h', 'src/google/protobuf/compiler/java/java_field.cc', 'src/google/protobuf/compiler/java/java_field.h', 'src/google/protobuf/compiler/java/java_file.cc', 'src/google/protobuf/compiler/java/java_file.h', 'src/google/protobuf/compiler/java/java_generator.cc', 'src/google/protobuf/compiler/java/java_helpers.cc', 'src/google/protobuf/compiler/java/java_helpers.h', 'src/google/protobuf/compiler/java/java_message.cc', 'src/google/protobuf/compiler/java/java_message.h', 'src/google/protobuf/compiler/java/java_message_field.cc', 'src/google/protobuf/compiler/java/java_message_field.h', 'src/google/protobuf/compiler/java/java_primitive_field.cc', 'src/google/protobuf/compiler/java/java_primitive_field.h', 'src/google/protobuf/compiler/java/java_service.cc', 'src/google/protobuf/compiler/java/java_service.h', 'src/google/protobuf/compiler/java/java_string_field.cc', 'src/google/protobuf/compiler/java/java_string_field.h', 'src/google/protobuf/compiler/python/python_generator.cc', 'src/google/protobuf/compiler/main.cc'], 'dependencies': ['protobuf_full_do_not_use'], 'include_dirs': ['<(config_h_dir)', 'src/src']}, {'target_name': 'py_proto', 'type': 'none', 'copies': [{'destination': '<(PRODUCT_DIR)/pyproto/google/', 'files': ['__init__.py']}, {'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf', 'files': ['python/google/protobuf/__init__.py', 'python/google/protobuf/descriptor.py', 'python/google/protobuf/message.py', 'python/google/protobuf/reflection.py', 'python/google/protobuf/service.py', 'python/google/protobuf/service_reflection.py', 'python/google/protobuf/text_format.py', 'descriptor_pb2.py']}, {'destination': '<(PRODUCT_DIR)/pyproto/google/protobuf/internal', 'files': ['python/google/protobuf/internal/__init__.py', 'python/google/protobuf/internal/api_implementation.py', 'python/google/protobuf/internal/containers.py', 'python/google/protobuf/internal/cpp_message.py', 'python/google/protobuf/internal/decoder.py', 'python/google/protobuf/internal/encoder.py', 'python/google/protobuf/internal/generator_test.py', 'python/google/protobuf/internal/message_listener.py', 'python/google/protobuf/internal/python_message.py', 'python/google/protobuf/internal/type_checkers.py', 'python/google/protobuf/internal/wire_format.py']}]}]} |
# def mul(a):
# return lambda b:b*a
# singler = mul(1) # addition = lambda b:b*1
# doubler = mul(2) # addition = lambda b:b*2
# tripler = mul(3) # addition = lambda b:b*3
# print(doubler(7)) # 7*2 = 14
# print(tripler(7)) # 7*3 = 21
# print(singler(7)) # 7*1 = 7
class Student:
def __init__(self, fname):
self.fname = fname
def greet(self, fname):
return f"Hello, {fname}"
class BatchA(Student):
def __init__(self, lname):
self.lname = lname
#Student.__init__(self, "Nikunj")
super().__init__("Nikunj")
def printName(self):
return f"{self.fname} {self.lname}"
stud = BatchA("Thakor")
print(stud.printName())
rgb(255, 255, 255) # White
rgb(255, 0, 0) # Red
rgb(0, 0, 0) # Black
rgb(0, 255, 255) # Cyan
rgb(255, 255, 0) # Yellow
#00ff00 //green
#1e90ff //dodgerblue
| class Student:
def __init__(self, fname):
self.fname = fname
def greet(self, fname):
return f'Hello, {fname}'
class Batcha(Student):
def __init__(self, lname):
self.lname = lname
super().__init__('Nikunj')
def print_name(self):
return f'{self.fname} {self.lname}'
stud = batch_a('Thakor')
print(stud.printName())
rgb(255, 255, 255)
rgb(255, 0, 0)
rgb(0, 0, 0)
rgb(0, 255, 255)
rgb(255, 255, 0) |
class MyError(Exception):
pass
class PropertyContainer(object):
def __init__(self):
self.props = {}
def set_property(self, prop, value):
self.props[prop] = value
def get_property(self, prop):
return self.props.get(prop)
def has_property(self, prop):
return prop in self.props
class Node(PropertyContainer):
pass
class Edge(PropertyContainer):
def __init__(self, node1, node2):
super().__init__()
self.node1 = node1
self.node2 = node2
class Network(object):
NAME_PROP = "name" # NAME_PROP is an optional string property
FRIEND_PROP = "friend" # FRIEND_PROP is an optional boolean property
def __init__(self):
self.nodes = set()
self.edges = set()
def create_person(self):
node = Node()
self.nodes.add(node)
return node
# add prop to value; overwrite if prop exists
def add_person_property(self, person, prop, value):
# flag non-existent person
if person not in self.nodes:
raise RuntimeError("person does not exist")
if prop == Network.NAME_PROP:
# disallow non-string values for NAME_PROP property
if not isinstance(value, str):
raise TypeError(
"{0} is a string property".format(Network.NAME_PROP))
# disallow multiple people to have the same name
for p in self.nodes:
if p.get_property(Network.NAME_PROP) == value and \
p is not person:
raise ValueError("{0} name already taken".format(value))
person.set_property(prop, value)
def add_relation(self, person1, person2):
# flag non-existent persons
if person1 not in self.nodes:
# raise RuntimeError("person1 does not exist")
person1 = self.create_person()
if person2 not in self.nodes:
raise RuntimeError("person2 does not exist")
# flag existing edge
for e in self.edges:
if (e.node1 is person1 and e.node2 is person2) or \
(e.node1 is person2 and e.node2 is person1):
raise ValueError("relation exists")
self.edges.add(Edge(person1, person2))
def add_relation_property(self, person1, person2, prop, value):
# disallow non-boolean values for FRIEND_PROP property
if prop == Network.FRIEND_PROP and not isinstance(value, bool):
raise TypeError(
"{0} is a boolean property".format(Network.FRIEND_PROP))
for e in self.edges:
if (e.node1 is person1 and e.node2 is person2) or \
(e.node1 is person2 and e.node2 is person1):
e.set_property(prop, value)
return
# flag non-existent relation
raise RuntimeError("Non-existent relation")
# get a person with given name
def get_person(self, name):
# disallow non-string values for name
if not isinstance(name, str):
raise TypeError(
"{0} is a string argument".format(Network.NAME_PROP))
for n in self.nodes:
if n.get_property(Network.NAME_PROP) == name:
return n
# flag non-existent person
raise RuntimeError("No person named {0}".format(name))
# get friends of friends of a person with given name
def friends_of_friends(self, name):
# disallow non-string values for name
if not isinstance(name, str):
raise TypeError(
"{0} is a string argument".format(Network.NAME_PROP))
# flag non-existent person
person = self.get_person(name)
visited = set([person])
i = 0
while i < 2:
newly_visited = set()
for p in (x for x in visited):
for e in (x for x in self.edges if
x.get_property(Network.FRIEND_PROP) == True):
n1 = e.node1
n2 = e.node2
if n1 == p:
newly_visited.add(e.node2)
elif n2 == p:
newly_visited.add(e.node1)
visited = newly_visited
i += 1
return list(visited)
| class Myerror(Exception):
pass
class Propertycontainer(object):
def __init__(self):
self.props = {}
def set_property(self, prop, value):
self.props[prop] = value
def get_property(self, prop):
return self.props.get(prop)
def has_property(self, prop):
return prop in self.props
class Node(PropertyContainer):
pass
class Edge(PropertyContainer):
def __init__(self, node1, node2):
super().__init__()
self.node1 = node1
self.node2 = node2
class Network(object):
name_prop = 'name'
friend_prop = 'friend'
def __init__(self):
self.nodes = set()
self.edges = set()
def create_person(self):
node = node()
self.nodes.add(node)
return node
def add_person_property(self, person, prop, value):
if person not in self.nodes:
raise runtime_error('person does not exist')
if prop == Network.NAME_PROP:
if not isinstance(value, str):
raise type_error('{0} is a string property'.format(Network.NAME_PROP))
for p in self.nodes:
if p.get_property(Network.NAME_PROP) == value and p is not person:
raise value_error('{0} name already taken'.format(value))
person.set_property(prop, value)
def add_relation(self, person1, person2):
if person1 not in self.nodes:
person1 = self.create_person()
if person2 not in self.nodes:
raise runtime_error('person2 does not exist')
for e in self.edges:
if e.node1 is person1 and e.node2 is person2 or (e.node1 is person2 and e.node2 is person1):
raise value_error('relation exists')
self.edges.add(edge(person1, person2))
def add_relation_property(self, person1, person2, prop, value):
if prop == Network.FRIEND_PROP and (not isinstance(value, bool)):
raise type_error('{0} is a boolean property'.format(Network.FRIEND_PROP))
for e in self.edges:
if e.node1 is person1 and e.node2 is person2 or (e.node1 is person2 and e.node2 is person1):
e.set_property(prop, value)
return
raise runtime_error('Non-existent relation')
def get_person(self, name):
if not isinstance(name, str):
raise type_error('{0} is a string argument'.format(Network.NAME_PROP))
for n in self.nodes:
if n.get_property(Network.NAME_PROP) == name:
return n
raise runtime_error('No person named {0}'.format(name))
def friends_of_friends(self, name):
if not isinstance(name, str):
raise type_error('{0} is a string argument'.format(Network.NAME_PROP))
person = self.get_person(name)
visited = set([person])
i = 0
while i < 2:
newly_visited = set()
for p in (x for x in visited):
for e in (x for x in self.edges if x.get_property(Network.FRIEND_PROP) == True):
n1 = e.node1
n2 = e.node2
if n1 == p:
newly_visited.add(e.node2)
elif n2 == p:
newly_visited.add(e.node1)
visited = newly_visited
i += 1
return list(visited) |
SCRABBLE_LETTER_VALUES = {
'a': 1, 'b': 3, 'c': 3, 'd': 2, 'e': 1, 'f': 4, 'g': 2, 'h': 4, 'i': 1, 'j': 8, 'k': 5, 'l': 1, 'm': 3, 'n': 1,
'o': 1, 'p': 3, 'q': 10, 'r': 1, 's': 1, 't': 1, 'u': 1, 'v': 4, 'w': 4, 'x': 8, 'y': 4, 'z': 10
}
def getWordScore(word, n):
"""
Returns the score for a word. Assumes the word is a valid word.
The score for a word is the sum of the points for letters in the
word, multiplied by the length of the word, PLUS 50 points if all n
letters are used on the first turn.
Letters are scored as in Scrabble; A is worth 1, B is worth 3, C is
worth 3, D is worth 2, E is worth 1, and so on (see SCRABBLE_LETTER_VALUES)
word: string (lowercase letters)
n: integer (HAND_SIZE; i.e., hand size required for additional points)
returns: int >= 0
"""
total_points = 0
for letter in word:
total_points += SCRABBLE_LETTER_VALUES[letter]
total_points *= len(word)
if len(word) == n:
total_points += 50
return total_points
print(getWordScore('waybill', 7))
| scrabble_letter_values = {'a': 1, 'b': 3, 'c': 3, 'd': 2, 'e': 1, 'f': 4, 'g': 2, 'h': 4, 'i': 1, 'j': 8, 'k': 5, 'l': 1, 'm': 3, 'n': 1, 'o': 1, 'p': 3, 'q': 10, 'r': 1, 's': 1, 't': 1, 'u': 1, 'v': 4, 'w': 4, 'x': 8, 'y': 4, 'z': 10}
def get_word_score(word, n):
"""
Returns the score for a word. Assumes the word is a valid word.
The score for a word is the sum of the points for letters in the
word, multiplied by the length of the word, PLUS 50 points if all n
letters are used on the first turn.
Letters are scored as in Scrabble; A is worth 1, B is worth 3, C is
worth 3, D is worth 2, E is worth 1, and so on (see SCRABBLE_LETTER_VALUES)
word: string (lowercase letters)
n: integer (HAND_SIZE; i.e., hand size required for additional points)
returns: int >= 0
"""
total_points = 0
for letter in word:
total_points += SCRABBLE_LETTER_VALUES[letter]
total_points *= len(word)
if len(word) == n:
total_points += 50
return total_points
print(get_word_score('waybill', 7)) |
# code....
a = 1
b = 2
c = 3
s = a+b+c
r = s/3
print(r)
# code....
'''
def average():
a=1
b=2
c=3
s=a+b+c
r=s/3
print(r)
average()
'''
'''
#input
#parameter
#argument
def average(a,b,c):
s=a+b+c
r=s/3
print(r)
average(10,20,30)
'''
def average(a, b, c):
s = a+b+c
r = s/3
return r
print(average(10, 20, 30))
| a = 1
b = 2
c = 3
s = a + b + c
r = s / 3
print(r)
'\ndef average():\n a=1\n b=2\n c=3\n s=a+b+c\n r=s/3\n print(r)\naverage()\n'
'\n#input\n#parameter\n#argument\ndef average(a,b,c):\n s=a+b+c\n r=s/3\n print(r)\naverage(10,20,30)\n'
def average(a, b, c):
s = a + b + c
r = s / 3
return r
print(average(10, 20, 30)) |
"""
Base settings for Proxito
Some of these settings will eventually be backported into the main settings file,
but currently we have them to be able to run the site with the old middleware for
a staged rollout of the proxito code.
"""
class CommunityProxitoSettingsMixin:
ROOT_URLCONF = 'readthedocs.proxito.urls'
USE_SUBDOMAIN = True
SECURE_REFERRER_POLICY = "no-referrer-when-downgrade"
# Allow cookies from cross-site requests on subdomains for now.
# As 'Lax' breaks when the page is embedded in an iframe.
SESSION_COOKIE_SAMESITE = None
@property
def DATABASES(self):
# This keeps connections to the DB alive,
# which reduces latency with connecting to postgres
dbs = getattr(super(), 'DATABASES', {})
for db in dbs:
dbs[db]['CONN_MAX_AGE'] = 86400
return dbs
@property
def MIDDLEWARE(self): # noqa
# Use our new middleware instead of the old one
classes = super().MIDDLEWARE
classes = list(classes)
classes.append('readthedocs.proxito.middleware.ProxitoMiddleware')
middleware_to_remove = (
'csp.middleware.CSPMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
for mw in middleware_to_remove:
if mw in classes:
classes.remove(mw)
else:
log.warning('Failed to remove middleware: %s', mw)
return classes
| """
Base settings for Proxito
Some of these settings will eventually be backported into the main settings file,
but currently we have them to be able to run the site with the old middleware for
a staged rollout of the proxito code.
"""
class Communityproxitosettingsmixin:
root_urlconf = 'readthedocs.proxito.urls'
use_subdomain = True
secure_referrer_policy = 'no-referrer-when-downgrade'
session_cookie_samesite = None
@property
def databases(self):
dbs = getattr(super(), 'DATABASES', {})
for db in dbs:
dbs[db]['CONN_MAX_AGE'] = 86400
return dbs
@property
def middleware(self):
classes = super().MIDDLEWARE
classes = list(classes)
classes.append('readthedocs.proxito.middleware.ProxitoMiddleware')
middleware_to_remove = ('csp.middleware.CSPMiddleware', 'django.middleware.clickjacking.XFrameOptionsMiddleware')
for mw in middleware_to_remove:
if mw in classes:
classes.remove(mw)
else:
log.warning('Failed to remove middleware: %s', mw)
return classes |
'''
This is the Settings File for the Mattermost-Octane Bridge.
You can change various variables here to customize and set up the client.
'''
'''----------------------Mattermost Webhook Configuration----------------------'''
#URL of the webhook from mattermost. To create one go to `Main Menu -> Integrations -> Incoming Webhooks` and press `Add Incoming Webhook`
mm_webhook_url = 'http://localhost:8065/hooks/yuro8xrfeffj787cj1bwc4ziue'
#Override the channel to send the notifications to, use the channel name as a String
mm_channel = None
#Set a custom Username to display in Mattermost
mm_username = 'Defect Notification'
#Set a custom Profile Image for the Client
mm_profileimage = 'https://i.imgur.com/7Wg3Tgs.png' #Telekom T Image
#The latter two need to be enabled in the settings.json of the Mattermost server
'''----------------------------Flask Configuration----------------------------'''
#set external IP for the Flask Server to create a Webhook for ALM Octane
#local: 127.0.0.1 / False
#default external: 0.0.0.0 (will default to only available external adress)
external_ip = False
#default: 5000
port = 5000
#external webhook verify token can be set here, if set as `None` it will be autogenerated & changed on each startup.
wh_token = None
| """
This is the Settings File for the Mattermost-Octane Bridge.
You can change various variables here to customize and set up the client.
"""
'----------------------Mattermost Webhook Configuration----------------------'
mm_webhook_url = 'http://localhost:8065/hooks/yuro8xrfeffj787cj1bwc4ziue'
mm_channel = None
mm_username = 'Defect Notification'
mm_profileimage = 'https://i.imgur.com/7Wg3Tgs.png'
'----------------------------Flask Configuration----------------------------'
external_ip = False
port = 5000
wh_token = None |
def hello_world(request):
request_json = request.get_json()
name = 'World'
if request_json and 'name' in request_json:
name = request_json['name']
headers = {
'Access-Control-Allow-Origin': 'https://furikuri.net',
'Access-Control-Allow-Methods': 'GET, POST',
'Access-Control-Allow-Headers': 'Content-Type'
}
return ('Hello ' + name + '! From GCP + Python', 200, headers)
| def hello_world(request):
request_json = request.get_json()
name = 'World'
if request_json and 'name' in request_json:
name = request_json['name']
headers = {'Access-Control-Allow-Origin': 'https://furikuri.net', 'Access-Control-Allow-Methods': 'GET, POST', 'Access-Control-Allow-Headers': 'Content-Type'}
return ('Hello ' + name + '! From GCP + Python', 200, headers) |
#Copyright ReportLab Europe Ltd. 2000-2016
#see license.txt for license details
#history http://www.reportlab.co.uk/cgi-bin/viewcvs.cgi/public/reportlab/trunk/reportlab/graphics/charts/__init__.py
__version__='3.3.0'
__doc__='''Business charts'''
| __version__ = '3.3.0'
__doc__ = 'Business charts' |
total_budget = 0
while True:
destination = input()
if destination == "End":
break
minimal_budget = float(input())
while True:
command = input()
if command == "End":
break
money = float(command)
total_budget += money
if total_budget >= minimal_budget:
print(f"Going to {destination}!")
total_budget = 0
break
| total_budget = 0
while True:
destination = input()
if destination == 'End':
break
minimal_budget = float(input())
while True:
command = input()
if command == 'End':
break
money = float(command)
total_budget += money
if total_budget >= minimal_budget:
print(f'Going to {destination}!')
total_budget = 0
break |
price = float(input())
puzzles = int(input())
dolls = int(input())
bears = int(input())
minions = int(input())
trucks = int(input())
total_toys = puzzles + dolls + bears + minions + trucks
price_puzzles = puzzles * 2.6
price_dolls = dolls * 3
price_bears = bears * 4.1
price_minions = minions * 8.2
price_trucks = trucks * 2
total_price = price_puzzles + price_dolls + price_bears + price_minions + price_trucks
if total_toys >= 50:
total_price = total_price - (total_price * 0.25)
rent = total_price * 0.1
total_price = total_price - rent
if total_price >= price:
print(f"Yes! {(total_price - price):.2f} lv left.")
else:
print(f"Not enough money! {(price - total_price):.2f} lv needed.")
| price = float(input())
puzzles = int(input())
dolls = int(input())
bears = int(input())
minions = int(input())
trucks = int(input())
total_toys = puzzles + dolls + bears + minions + trucks
price_puzzles = puzzles * 2.6
price_dolls = dolls * 3
price_bears = bears * 4.1
price_minions = minions * 8.2
price_trucks = trucks * 2
total_price = price_puzzles + price_dolls + price_bears + price_minions + price_trucks
if total_toys >= 50:
total_price = total_price - total_price * 0.25
rent = total_price * 0.1
total_price = total_price - rent
if total_price >= price:
print(f'Yes! {total_price - price:.2f} lv left.')
else:
print(f'Not enough money! {price - total_price:.2f} lv needed.') |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# This file is part of groupthink.
# https://github.com/emanuelfeld/groupthink
# This project is in the public domain within the United States.
# Additionally, the Government of the District of Columbia waives
# copyright and related rights in the work worldwide through the CC0 1.0
# Universal public domain dedication.
__version__ = '1.0.0' # NOQA
| __version__ = '1.0.0' |
load("//python:compile.bzl", "py_proto_compile", "py_grpc_compile")
load("@grpc_py_deps//:requirements.bzl", "all_requirements")
def py_proto_library(**kwargs):
name = kwargs.get("name")
deps = kwargs.get("deps")
verbose = kwargs.get("verbose")
visibility = kwargs.get("visibility")
name_pb = name + "_pb"
py_proto_compile(
name = name_pb,
deps = deps,
visibility = visibility,
verbose = verbose,
)
native.py_library(
name = name,
srcs = [name_pb],
deps = all_requirements, # fixme don't need grpc here
# This magically adds REPOSITORY_NAME/PACKAGE_NAME/{name_pb} to PYTHONPATH
imports = [name_pb],
visibility = visibility,
)
def py_grpc_library(**kwargs):
name = kwargs.get("name")
deps = kwargs.get("deps")
verbose = kwargs.get("verbose")
visibility = kwargs.get("visibility")
name_pb = name + "_pb"
py_grpc_compile(
name = name_pb,
deps = deps,
visibility = visibility,
verbose = verbose,
)
native.py_library(
name = name,
srcs = [name_pb],
deps = all_requirements,
# This magically adds REPOSITORY_NAME/PACKAGE_NAME/{name_pb} to PYTHONPATH
imports = [name_pb],
visibility = visibility,
) | load('//python:compile.bzl', 'py_proto_compile', 'py_grpc_compile')
load('@grpc_py_deps//:requirements.bzl', 'all_requirements')
def py_proto_library(**kwargs):
name = kwargs.get('name')
deps = kwargs.get('deps')
verbose = kwargs.get('verbose')
visibility = kwargs.get('visibility')
name_pb = name + '_pb'
py_proto_compile(name=name_pb, deps=deps, visibility=visibility, verbose=verbose)
native.py_library(name=name, srcs=[name_pb], deps=all_requirements, imports=[name_pb], visibility=visibility)
def py_grpc_library(**kwargs):
name = kwargs.get('name')
deps = kwargs.get('deps')
verbose = kwargs.get('verbose')
visibility = kwargs.get('visibility')
name_pb = name + '_pb'
py_grpc_compile(name=name_pb, deps=deps, visibility=visibility, verbose=verbose)
native.py_library(name=name, srcs=[name_pb], deps=all_requirements, imports=[name_pb], visibility=visibility) |
def indexof(listofnames, value):
if value in listofnames:
value_index = listofnames.index(value)
return(listofnames, value_index)
else: return(-1)
| def indexof(listofnames, value):
if value in listofnames:
value_index = listofnames.index(value)
return (listofnames, value_index)
else:
return -1 |
""" Page object file """
class Page():
""" Page object, it contains information about the pare we are refering, index, items per page, etc. """
page_index = 0
items_per_page = 0
def __init__(self, items_per_page, page_index):
""" Creates the page """
self.page_index = int(page_index)
self.items_per_page = int(items_per_page)
| """ Page object file """
class Page:
""" Page object, it contains information about the pare we are refering, index, items per page, etc. """
page_index = 0
items_per_page = 0
def __init__(self, items_per_page, page_index):
""" Creates the page """
self.page_index = int(page_index)
self.items_per_page = int(items_per_page) |
{
"cells": [
{
"cell_type": "code",
"execution_count": 64,
"metadata": {},
"outputs": [],
"source": [
"# Import libraries\n",
"import os, csv"
]
},
{
"cell_type": "code",
"execution_count": 65,
"metadata": {},
"outputs": [],
"source": [
"#variables for the script\n",
"months = [] #list of months\n",
"pl =[] #list of monthly PL\n",
"pl_changes = [] #list of P&L Changes\n",
"n_months = 0 #count of months\n",
"pl_total = 0 #total of P&L\n",
"plc = 0 #variable to track PL changes\n",
"avg_pl_change = 0 #average of changes in PL\n",
"maxpl = 0 #maximum increase in profits\n",
"minpl = 0 #maximum decrease in losses\n",
"max_i = 0 #index for max pl\n",
"min_i = 0 #index for min pl\n",
"\n",
"#read the resource file\n",
"bankcsv = os.path.join(\".\", \"Resources\", \"budget_data.csv\") #set path\n",
"\n",
"\n",
"#read file\n",
"with open(bankcsv, 'r') as csv_file:\n",
" csv_reader = csv.reader(csv_file,delimiter=\",\")\n",
" header = next(csv_reader)\n",
" \n",
" #for loop to update the counters and lists\n",
" for row in csv_reader:\n",
" n_months += 1\n",
" pl_total += int(row[1])\n",
" pl.append(row[1])\n",
" months.append(row[0])"
]
},
{
"cell_type": "code",
"execution_count": 66,
"metadata": {},
"outputs": [],
"source": [
"# loop to track the PL change values\n",
"pl_changes = [] \n",
"plc = int(pl[0])\n",
"for i in range(1, len(pl)):\n",
" pl_changes.append(int(pl[i]) - plc)\n",
" plc = int(pl[i])\n",
" i += 1\n",
"#print(pl_changes)"
]
},
{
"cell_type": "code",
"execution_count": 67,
"metadata": {},
"outputs": [],
"source": [
"#calculate the average PL Changes, max and min\n",
"avg_pl_change = sum(pl_changes) / len(pl_changes)\n",
"maxpl = max(pl_changes)\n",
"minpl = min(pl_changes)\n",
"#print(avg_pl_change, maxpl, minpl)\n",
"#print(pl_changes.index(maxpl))\n",
"#print(len(pl_changes))"
]
},
{
"cell_type": "code",
"execution_count": 68,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Financial Analysis\n",
"---------------------------------------------------------------------\n",
"Total Months: 86\n",
"Total: $38382578\n",
"Average Change: $-2315.12\n",
"Greatest Increase in Profits: Feb-2012 ($1926159)\n",
"Greatest Decrease in Profits: Sep-2013 ($-2196167)\n"
]
}
],
"source": [
"#find dates for max and min PL changes\n",
"max_i = pl_changes.index(maxpl) +1 #adding +1 since the changes are calculated one row above\n",
"min_i = pl_changes.index(minpl) +1\n",
"\n",
"maxmonth = months[max_i]\n",
"minmonth = months[min_i]\n",
"\n",
"#print output to the terminal\n",
"\n",
"print(\"Financial Analysis\")\n",
"print(\"-\"*69)\n",
"print(f\"Total Months: {n_months}\")\n",
"print(f\"Total: ${round(pl_total,2)}\")\n",
"print(f\"Average Change: ${round(avg_pl_change,2)}\")\n",
"print(f\"Greatest Increase in Profits: {maxmonth} (${maxpl})\")\n",
"print(f\"Greatest Decrease in Profits: {minmonth} (${minpl})\")\n"
]
},
{
"cell_type": "code",
"execution_count": 69,
"metadata": {},
"outputs": [],
"source": [
"# write summary to txt file\n",
"output = os.path.join(\".\",\"Analysis\", \"summary.txt\")\n",
"\n",
"# use \"\\n\" to create a new line\n",
"with open(output, 'w') as output:\n",
" output.write(\"Financial Analysis\\n\")\n",
" output.write(\"-\"*69 + \"\\n\")\n",
" output.write(f\"Total Months: {n_months}\\n\")\n",
" output.write(f\"Total: ${round(pl_total,2)}\\n\")\n",
" output.write(f\"Average Change: ${round(avg_pl_change,2)}\\n\")\n",
" output.write(f\"Greatest Increase in Profits: {maxmonth} (${maxpl})\\n\")\n",
" output.write(f\"Greatest Decrease in Profits: {minmonth} (${minpl})\\n\")"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.5"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
| {'cells': [{'cell_type': 'code', 'execution_count': 64, 'metadata': {}, 'outputs': [], 'source': ['# Import libraries\n', 'import os, csv']}, {'cell_type': 'code', 'execution_count': 65, 'metadata': {}, 'outputs': [], 'source': ['#variables for the script\n', 'months = [] #list of months\n', 'pl =[] #list of monthly PL\n', 'pl_changes = [] #list of P&L Changes\n', 'n_months = 0 #count of months\n', 'pl_total = 0 #total of P&L\n', 'plc = 0 #variable to track PL changes\n', 'avg_pl_change = 0 #average of changes in PL\n', 'maxpl = 0 #maximum increase in profits\n', 'minpl = 0 #maximum decrease in losses\n', 'max_i = 0 #index for max pl\n', 'min_i = 0 #index for min pl\n', '\n', '#read the resource file\n', 'bankcsv = os.path.join(".", "Resources", "budget_data.csv") #set path\n', '\n', '\n', '#read file\n', "with open(bankcsv, 'r') as csv_file:\n", ' csv_reader = csv.reader(csv_file,delimiter=",")\n', ' header = next(csv_reader)\n', ' \n', ' #for loop to update the counters and lists\n', ' for row in csv_reader:\n', ' n_months += 1\n', ' pl_total += int(row[1])\n', ' pl.append(row[1])\n', ' months.append(row[0])']}, {'cell_type': 'code', 'execution_count': 66, 'metadata': {}, 'outputs': [], 'source': ['# loop to track the PL change values\n', 'pl_changes = [] \n', 'plc = int(pl[0])\n', 'for i in range(1, len(pl)):\n', ' pl_changes.append(int(pl[i]) - plc)\n', ' plc = int(pl[i])\n', ' i += 1\n', '#print(pl_changes)']}, {'cell_type': 'code', 'execution_count': 67, 'metadata': {}, 'outputs': [], 'source': ['#calculate the average PL Changes, max and min\n', 'avg_pl_change = sum(pl_changes) / len(pl_changes)\n', 'maxpl = max(pl_changes)\n', 'minpl = min(pl_changes)\n', '#print(avg_pl_change, maxpl, minpl)\n', '#print(pl_changes.index(maxpl))\n', '#print(len(pl_changes))']}, {'cell_type': 'code', 'execution_count': 68, 'metadata': {}, 'outputs': [{'name': 'stdout', 'output_type': 'stream', 'text': ['Financial Analysis\n', '---------------------------------------------------------------------\n', 'Total Months: 86\n', 'Total: $38382578\n', 'Average Change: $-2315.12\n', 'Greatest Increase in Profits: Feb-2012 ($1926159)\n', 'Greatest Decrease in Profits: Sep-2013 ($-2196167)\n']}], 'source': ['#find dates for max and min PL changes\n', 'max_i = pl_changes.index(maxpl) +1 #adding +1 since the changes are calculated one row above\n', 'min_i = pl_changes.index(minpl) +1\n', '\n', 'maxmonth = months[max_i]\n', 'minmonth = months[min_i]\n', '\n', '#print output to the terminal\n', '\n', 'print("Financial Analysis")\n', 'print("-"*69)\n', 'print(f"Total Months: {n_months}")\n', 'print(f"Total: ${round(pl_total,2)}")\n', 'print(f"Average Change: ${round(avg_pl_change,2)}")\n', 'print(f"Greatest Increase in Profits: {maxmonth} (${maxpl})")\n', 'print(f"Greatest Decrease in Profits: {minmonth} (${minpl})")\n']}, {'cell_type': 'code', 'execution_count': 69, 'metadata': {}, 'outputs': [], 'source': ['# write summary to txt file\n', 'output = os.path.join(".","Analysis", "summary.txt")\n', '\n', '# use "\\n" to create a new line\n', "with open(output, 'w') as output:\n", ' output.write("Financial Analysis\\n")\n', ' output.write("-"*69 + "\\n")\n', ' output.write(f"Total Months: {n_months}\\n")\n', ' output.write(f"Total: ${round(pl_total,2)}\\n")\n', ' output.write(f"Average Change: ${round(avg_pl_change,2)}\\n")\n', ' output.write(f"Greatest Increase in Profits: {maxmonth} (${maxpl})\\n")\n', ' output.write(f"Greatest Decrease in Profits: {minmonth} (${minpl})\\n")']}], 'metadata': {'kernelspec': {'display_name': 'Python 3', 'language': 'python', 'name': 'python3'}, 'language_info': {'codemirror_mode': {'name': 'ipython', 'version': 3}, 'file_extension': '.py', 'mimetype': 'text/x-python', 'name': 'python', 'nbconvert_exporter': 'python', 'pygments_lexer': 'ipython3', 'version': '3.8.5'}}, 'nbformat': 4, 'nbformat_minor': 4} |
#!/usr/bin/env python
#-*- coding:utf-8 -*-
__all__ = ["args", "colors", "libcolors", "routine"]
__version__ = "0.96"
| __all__ = ['args', 'colors', 'libcolors', 'routine']
__version__ = '0.96' |
# -*- coding: utf-8 -*-
"""Module compliance_suite.exceptions.user_config_exception.py
This module contains class definition for user config file exceptions.
"""
class UserConfigException(Exception):
"""Exception for user config file-related errors"""
pass | """Module compliance_suite.exceptions.user_config_exception.py
This module contains class definition for user config file exceptions.
"""
class Userconfigexception(Exception):
"""Exception for user config file-related errors"""
pass |
"""Type stubs for _pytest._code."""
# This class actually has more functions than are specified here.
# We don't use these features, so I don't think its worth including
# them in our type stub. We can always change it later.
class ExceptionInfo:
@property
def value(self) -> Exception: ...
| """Type stubs for _pytest._code."""
class Exceptioninfo:
@property
def value(self) -> Exception:
... |
def get_primes(n):
primes = [] # stores the prime numbers within the reange of the number
sieve = [False] * (n + 1) # stores boolean values indicating whether a number is prime or not
sieve[0] = sieve[1] = True # marking 0 and 1 as not prime
for i in range(2, n + 1): # loops over all the numbers to check for prime numbers
if sieve[i]: # checks whether a number is not prime
continue # skips the loop if the number is not a prime number
primes.append(i) # adds a number into list if it is a prime number
for j in range(i ** 2, n + 1, i): # loops over all multiples of the prime number starting from the sqaure of the prime number
sieve[j] = True # marks the multiple of the prime number as not prime
return primes # returns the list containing prime numbers
def get_factorization(n):
prime_factors = [] # stores the prime factorization of the number
for prime in get_primes(n): # looping over all the prime numbers
while n != 1: # keeps diving the number by a certain prime number until the number is 1
if n % prime == 0: # checks if the number is divisible by a particular prime number
prime_factors.append(prime) # add the prime factor in the list if it divides the number
n /= prime # reducing the number after dividing it by the prime number
else:
break # if the number is not divisible by the paricular prime number then the inner loop breaks and the number is further divided by the next prime number until the number becomes 1
return prime_factors # returns the list containing the prime factorization of the number
if __name__ == "__main__":
n = int(input("Enter a number: "))
print(get_factorization(n))
| def get_primes(n):
primes = []
sieve = [False] * (n + 1)
sieve[0] = sieve[1] = True
for i in range(2, n + 1):
if sieve[i]:
continue
primes.append(i)
for j in range(i ** 2, n + 1, i):
sieve[j] = True
return primes
def get_factorization(n):
prime_factors = []
for prime in get_primes(n):
while n != 1:
if n % prime == 0:
prime_factors.append(prime)
n /= prime
else:
break
return prime_factors
if __name__ == '__main__':
n = int(input('Enter a number: '))
print(get_factorization(n)) |
"""
Module: 'urequests' on esp32 1.12.0
"""
# MCU: (sysname='esp32', nodename='esp32', release='1.12.0', version='v1.12 on 2019-12-20', machine='ESP32 module (spiram) with ESP32')
# Stubber: 1.3.2
class Response:
''
def close():
pass
content = None
def json():
pass
text = None
def delete():
pass
def get():
pass
def head():
pass
def patch():
pass
def post():
pass
def put():
pass
def request():
pass
usocket = None
| """
Module: 'urequests' on esp32 1.12.0
"""
class Response:
""""""
def close():
pass
content = None
def json():
pass
text = None
def delete():
pass
def get():
pass
def head():
pass
def patch():
pass
def post():
pass
def put():
pass
def request():
pass
usocket = None |
s = "([}}])"
stack = []
if len(s) % 2 == 1:
print(False)
exit()
for i in s:
if i == "(":
stack.append("(")
elif i == "[":
stack.append("[")
elif i == "{":
stack.append("{")
elif i == ")":
if len(stack) < 1:
print(False)
exit()
if stack[-1] == "(":
stack.pop()
else:
print(False)
exit()
elif i == "]":
if len(stack) < 1:
print(False)
exit()
if stack[-1] == "[":
stack.pop()
else:
print(False)
exit()
elif i == "}":
if len(stack) < 1:
print(False)
exit()
if stack[-1] == "{":
stack.pop()
else:
print(False)
exit()
if len(stack) == 0:
print(True)
else:
print(False)
| s = '([}}])'
stack = []
if len(s) % 2 == 1:
print(False)
exit()
for i in s:
if i == '(':
stack.append('(')
elif i == '[':
stack.append('[')
elif i == '{':
stack.append('{')
elif i == ')':
if len(stack) < 1:
print(False)
exit()
if stack[-1] == '(':
stack.pop()
else:
print(False)
exit()
elif i == ']':
if len(stack) < 1:
print(False)
exit()
if stack[-1] == '[':
stack.pop()
else:
print(False)
exit()
elif i == '}':
if len(stack) < 1:
print(False)
exit()
if stack[-1] == '{':
stack.pop()
else:
print(False)
exit()
if len(stack) == 0:
print(True)
else:
print(False) |
"""Day 07"""
def process(filename):
with open(filename) as infile:
positions = [int(x) for x in infile.readline().strip().split(',')]
min_x = min(positions)
max_x = max(positions)
costs = {x: 0 for x in range(min_x, max_x + 1)}
for pos in costs.keys():
for crab in positions:
distance = abs(pos - crab)
costs[pos] += ((distance * distance) + distance) // 2
print(f"Day 07: {min(costs.values())}")
if __name__ == '__main__':
process('test.txt')
process('input.txt')
| """Day 07"""
def process(filename):
with open(filename) as infile:
positions = [int(x) for x in infile.readline().strip().split(',')]
min_x = min(positions)
max_x = max(positions)
costs = {x: 0 for x in range(min_x, max_x + 1)}
for pos in costs.keys():
for crab in positions:
distance = abs(pos - crab)
costs[pos] += (distance * distance + distance) // 2
print(f'Day 07: {min(costs.values())}')
if __name__ == '__main__':
process('test.txt')
process('input.txt') |
class Foo:
pass
class Bar(Foo):
def __init__(self):
super(Bar, self).__init__() # [super-with-arguments]
class Baz(Foo):
def __init__(self):
super().__init__()
class Qux(Foo):
def __init__(self):
super(Bar, self).__init__()
class NotSuperCall(Foo):
def __init__(self):
super.test(Bar, self).__init__()
class InvalidSuperCall(Foo):
def __init__(self):
super(InvalidSuperCall.__class__, self).__init__()
def method_accepting_cls(cls, self):
# Using plain `super()` is not valid here, since there's no `__class__` cell found
# (Exact exception would be 'RuntimeError: super(): __class__ cell not found')
# Instead, we expect to *not* see a warning about `super-with-arguments`.
# Explicitly passing `cls`, and `self` to `super()` is what's required.
super(cls, self).__init__()
| class Foo:
pass
class Bar(Foo):
def __init__(self):
super(Bar, self).__init__()
class Baz(Foo):
def __init__(self):
super().__init__()
class Qux(Foo):
def __init__(self):
super(Bar, self).__init__()
class Notsupercall(Foo):
def __init__(self):
super.test(Bar, self).__init__()
class Invalidsupercall(Foo):
def __init__(self):
super(InvalidSuperCall.__class__, self).__init__()
def method_accepting_cls(cls, self):
super(cls, self).__init__() |
"""The Ray autoscaler uses tags/labels to associate metadata with instances."""
# Tag for the name of the node
TAG_RAY_NODE_NAME = "ray-node-name"
# Tag for the kind of node (e.g. Head, Worker). For legacy reasons, the tag
# value says 'type' instead of 'kind'.
TAG_RAY_NODE_KIND = "ray-node-type"
NODE_KIND_HEAD = "head"
NODE_KIND_WORKER = "worker"
NODE_KIND_UNMANAGED = "unmanaged"
# Tag for user defined node types (e.g., m4xl_spot). This is used for multi
# node type clusters.
TAG_RAY_USER_NODE_TYPE = "ray-user-node-type"
# Tag for autofilled node types for legacy cluster yamls without multi
# node type defined in the cluster configs.
NODE_TYPE_LEGACY_HEAD = "ray-legacy-head-node-type"
NODE_TYPE_LEGACY_WORKER = "ray-legacy-worker-node-type"
# Tag that reports the current state of the node (e.g. Updating, Up-to-date)
TAG_RAY_NODE_STATUS = "ray-node-status"
STATUS_UNINITIALIZED = "uninitialized"
STATUS_WAITING_FOR_SSH = "waiting-for-ssh"
STATUS_SYNCING_FILES = "syncing-files"
STATUS_SETTING_UP = "setting-up"
STATUS_UPDATE_FAILED = "update-failed"
STATUS_UP_TO_DATE = "up-to-date"
# Tag uniquely identifying all nodes of a cluster
TAG_RAY_CLUSTER_NAME = "ray-cluster-name"
# Hash of the node launch config, used to identify out-of-date nodes
TAG_RAY_LAUNCH_CONFIG = "ray-launch-config"
# Hash of the node runtime config, used to determine if updates are needed
TAG_RAY_RUNTIME_CONFIG = "ray-runtime-config"
# Hash of the contents of the directories specified by the file_mounts config
# if the node is a worker, this also hashes content of the directories
# specified by the cluster_synced_files config
TAG_RAY_FILE_MOUNTS_CONTENTS = "ray-file-mounts-contents"
| """The Ray autoscaler uses tags/labels to associate metadata with instances."""
tag_ray_node_name = 'ray-node-name'
tag_ray_node_kind = 'ray-node-type'
node_kind_head = 'head'
node_kind_worker = 'worker'
node_kind_unmanaged = 'unmanaged'
tag_ray_user_node_type = 'ray-user-node-type'
node_type_legacy_head = 'ray-legacy-head-node-type'
node_type_legacy_worker = 'ray-legacy-worker-node-type'
tag_ray_node_status = 'ray-node-status'
status_uninitialized = 'uninitialized'
status_waiting_for_ssh = 'waiting-for-ssh'
status_syncing_files = 'syncing-files'
status_setting_up = 'setting-up'
status_update_failed = 'update-failed'
status_up_to_date = 'up-to-date'
tag_ray_cluster_name = 'ray-cluster-name'
tag_ray_launch_config = 'ray-launch-config'
tag_ray_runtime_config = 'ray-runtime-config'
tag_ray_file_mounts_contents = 'ray-file-mounts-contents' |
_base_ = [
'../retinanet_r50_fpn_1x_coco.py',
'../../_base_/datasets/hdr_detection_minmax_glob_gamma.py',
]
# optimizer
# lr is set for a batch size of 8
optimizer = dict(type='SGD', lr=0.0005, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=None) # dict(grad_clip=dict(max_norm=35, norm_type=2))
# learning policy
lr_config = dict(
policy='step',
warmup='linear',
warmup_iters=500,
warmup_ratio=0.001,
step=[10])
runner = dict(
type='EpochBasedRunner', max_epochs=20)
| _base_ = ['../retinanet_r50_fpn_1x_coco.py', '../../_base_/datasets/hdr_detection_minmax_glob_gamma.py']
optimizer = dict(type='SGD', lr=0.0005, momentum=0.9, weight_decay=0.0001)
optimizer_config = dict(grad_clip=None)
lr_config = dict(policy='step', warmup='linear', warmup_iters=500, warmup_ratio=0.001, step=[10])
runner = dict(type='EpochBasedRunner', max_epochs=20) |
# solution 1:
class Solution1:
def convert(self, s: str, numRows: int) -> str:
if numRows == 1 or numRows >= len(s):
return s
L = [''] * numRows
index, step = 0, 1
for x in s:
L[index] += x
if index == 0:
step = 1
elif index == numRows - 1:
step = -1
index += step
return ''.join(L)
# Solution 2
class Solution:
def convert(self, s: str, numRows: int) -> str:
# If we have only one row then we can return the string as it is
if numRows < 2:
return s
# We will create an empty string for each row and then fill each element in each row
# from row = 0 to row = numRows-1, if we reach bottom (i.e. row = numRows-1)
# then we move up. Similarly if we reach top, we change direction and move down
# Finally after filling up all the four rows we join them row0 + row1 +.. numRows
row = 0
result = [""]*numRows
for character in s:
if row == 0:
move_down = True
elif row == numRows-1:
move_down = False
result[row] += character
row = (row+1) if move_down else row-1
return "".join(result)
if __name__ == '__main__':
# begin
s = Solution()
print(s.convert("PAYPALISHIRING", 3)) | class Solution1:
def convert(self, s: str, numRows: int) -> str:
if numRows == 1 or numRows >= len(s):
return s
l = [''] * numRows
(index, step) = (0, 1)
for x in s:
L[index] += x
if index == 0:
step = 1
elif index == numRows - 1:
step = -1
index += step
return ''.join(L)
class Solution:
def convert(self, s: str, numRows: int) -> str:
if numRows < 2:
return s
row = 0
result = [''] * numRows
for character in s:
if row == 0:
move_down = True
elif row == numRows - 1:
move_down = False
result[row] += character
row = row + 1 if move_down else row - 1
return ''.join(result)
if __name__ == '__main__':
s = solution()
print(s.convert('PAYPALISHIRING', 3)) |
MANIFEST = {
"hilt": {
"h1": {
"offsets": {"blade": 0, "button": {"x": (8, 9), "y": (110, 111)}},
"colours": {
"primary": (216, 216, 216), # d8d8d8
"secondary": (141, 141, 141), # 8d8d8d
"tertiary": (180, 97, 19), # b46113
},
"length": 24,
"materials": "Alloy metal/Salvaged materials",
},
"h2": {
"offsets": {"blade": 20, "button": {"x": (8, 8), "y": (100, 105)}},
"colours": {
"primary": (112, 112, 112), # 707070
"secondary": (0, 0, 0), # 000000
"tertiary": (212, 175, 55), # 000000
},
"length": 24,
"materials": "Alloy metal and carbon composite",
},
"h3": {
"offsets": {"blade": 0, "button": {"x": (10, 10), "y": (100, 118)}},
"colours": {
"primary": (157, 157, 157), # 707070
"secondary": (0, 0, 0), # 000000
"tertiary": (180, 97, 19), # b46113
},
"length": 24,
"materials": "Alloy metal",
},
"h4": {
"offsets": {"blade": 7, "button": {"x": (8, 9), "y": (92, 100)}},
"colours": {
"primary": (0, 0, 0), # 000000
"secondary": (157, 157, 157), # 9d9d9d
"tertiary": (180, 97, 19), # b46113
},
"length": 13,
"materials": "Alloy metal",
},
"h5": {
"offsets": {"blade": 0, "button": {"x": (8, 8), "y": (92, 105)}},
"colours": {
"primary": (111, 111, 111), # 6f6f6f
"secondary": (0, 0, 0), # 000000
"tertiary": (180, 97, 19), # b46113
},
"length": 24,
"materials": "Alloy metal",
},
"h6": {
"offsets": {"blade": 2, "button": {"x": (8, 9), "y": (112, 113)}},
"colours": {
"primary": (120, 120, 120), # 787878
"secondary": (0, 0, 0), # 000000
"tertiary": (180, 97, 19), # b46113
},
"length": 22,
"materials": "Alloy metal/Salvaged materials",
},
"h7": {
"offsets": {"blade": 0, "button": {"x": (8, 9), "y": (105, 113)}},
"colours": {
"primary": (192, 192, 192), # c0c0c0
"secondary": (255, 215, 0), # ffd700
"tertiary": (0, 0, 0), # 000000
},
"length": 22,
"materials": "Alloy metal and Gold",
},
"h8": {
"offsets": {"blade": 0, "button": {"x": (8, 9), "y": (100, 111)}},
"colours": {
"primary": (216, 216, 216), # d8d8d8
"secondary": (180, 97, 19), # b46113
"tertiary": (0, 0, 0), # 000000
},
"length": 24,
"materials": "Alloy metal/Copper",
},
},
"blade": {
"b1": {"colour": "Red", "crystal": "Adegan crystal", "type": "Sith"},
"b2": {"colour": "Blue", "crystal": "Zophis crystal", "type": "Jedi"},
"b3": {"colour": "Green", "crystal": "Nishalorite stone", "type": "Jedi"},
"b4": {"colour": "Yellow", "crystal": "Kimber stone", "type": "Jedi"},
"b5": {"colour": "White", "crystal": "Dragite gem", "type": "Jedi"},
"b6": {"colour": "Purple", "crystal": "Krayt dragon pearl", "type": "Jedi"},
"b7": {"colour": "Blue/Green", "crystal": "Dantari crystal", "type": "Jedi"},
"b8": {
"colour": "Orange",
"crystal": ["Ilum crystal", "Ultima Pearl"],
"type": "Sith",
},
"b9": {
"colour": "Black",
"crystal": "Obsidian",
"type": ["Jedi", "Mandalorian"],
},
},
"pommel": {
"p1": {"length": 5,},
"p2": {"length": 14,},
"p3": {"length": 3,},
"p4": {"length": 8,},
"p5": {"length": 5,},
"p6": {"length": 5,},
"p7": {"length": 8,},
},
# These are lightsabers for a specific Jedi or Sith. Should use their name instead of
"unique_urls": {""},
}
| manifest = {'hilt': {'h1': {'offsets': {'blade': 0, 'button': {'x': (8, 9), 'y': (110, 111)}}, 'colours': {'primary': (216, 216, 216), 'secondary': (141, 141, 141), 'tertiary': (180, 97, 19)}, 'length': 24, 'materials': 'Alloy metal/Salvaged materials'}, 'h2': {'offsets': {'blade': 20, 'button': {'x': (8, 8), 'y': (100, 105)}}, 'colours': {'primary': (112, 112, 112), 'secondary': (0, 0, 0), 'tertiary': (212, 175, 55)}, 'length': 24, 'materials': 'Alloy metal and carbon composite'}, 'h3': {'offsets': {'blade': 0, 'button': {'x': (10, 10), 'y': (100, 118)}}, 'colours': {'primary': (157, 157, 157), 'secondary': (0, 0, 0), 'tertiary': (180, 97, 19)}, 'length': 24, 'materials': 'Alloy metal'}, 'h4': {'offsets': {'blade': 7, 'button': {'x': (8, 9), 'y': (92, 100)}}, 'colours': {'primary': (0, 0, 0), 'secondary': (157, 157, 157), 'tertiary': (180, 97, 19)}, 'length': 13, 'materials': 'Alloy metal'}, 'h5': {'offsets': {'blade': 0, 'button': {'x': (8, 8), 'y': (92, 105)}}, 'colours': {'primary': (111, 111, 111), 'secondary': (0, 0, 0), 'tertiary': (180, 97, 19)}, 'length': 24, 'materials': 'Alloy metal'}, 'h6': {'offsets': {'blade': 2, 'button': {'x': (8, 9), 'y': (112, 113)}}, 'colours': {'primary': (120, 120, 120), 'secondary': (0, 0, 0), 'tertiary': (180, 97, 19)}, 'length': 22, 'materials': 'Alloy metal/Salvaged materials'}, 'h7': {'offsets': {'blade': 0, 'button': {'x': (8, 9), 'y': (105, 113)}}, 'colours': {'primary': (192, 192, 192), 'secondary': (255, 215, 0), 'tertiary': (0, 0, 0)}, 'length': 22, 'materials': 'Alloy metal and Gold'}, 'h8': {'offsets': {'blade': 0, 'button': {'x': (8, 9), 'y': (100, 111)}}, 'colours': {'primary': (216, 216, 216), 'secondary': (180, 97, 19), 'tertiary': (0, 0, 0)}, 'length': 24, 'materials': 'Alloy metal/Copper'}}, 'blade': {'b1': {'colour': 'Red', 'crystal': 'Adegan crystal', 'type': 'Sith'}, 'b2': {'colour': 'Blue', 'crystal': 'Zophis crystal', 'type': 'Jedi'}, 'b3': {'colour': 'Green', 'crystal': 'Nishalorite stone', 'type': 'Jedi'}, 'b4': {'colour': 'Yellow', 'crystal': 'Kimber stone', 'type': 'Jedi'}, 'b5': {'colour': 'White', 'crystal': 'Dragite gem', 'type': 'Jedi'}, 'b6': {'colour': 'Purple', 'crystal': 'Krayt dragon pearl', 'type': 'Jedi'}, 'b7': {'colour': 'Blue/Green', 'crystal': 'Dantari crystal', 'type': 'Jedi'}, 'b8': {'colour': 'Orange', 'crystal': ['Ilum crystal', 'Ultima Pearl'], 'type': 'Sith'}, 'b9': {'colour': 'Black', 'crystal': 'Obsidian', 'type': ['Jedi', 'Mandalorian']}}, 'pommel': {'p1': {'length': 5}, 'p2': {'length': 14}, 'p3': {'length': 3}, 'p4': {'length': 8}, 'p5': {'length': 5}, 'p6': {'length': 5}, 'p7': {'length': 8}}, 'unique_urls': {''}} |
# Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
# determine if the input string is valid.
# An input string is valid if:
# Open brackets must be closed by the same type of brackets.
# Open brackets must be closed in the correct order.
# Note that an empty string is also considered valid.
# Example 1:
# Input: "()"
# Output: true
# Example 2:
# Input: "()[]{}"
# Output: true
# Example 3:
# Input: "(]"
# Output: false
# Example 4:
# Input: "([)]"
# Output: false
# Example 5:
# Input: "{[]}"
# Output: true
class Solution(object):
def isValid(self, s):
"""
:type s: str
:rtype: bool
"""
dict = {')':'(',']':'[','}':'{'}
stack = []
for ch in s:
if ch in dict.values():
stack.append(ch)
elif ch in dict.keys():
if len(stack) == 0 or (stack.pop() != dict[ch]):
return False
return len(stack) == 0
def main():
s = Solution()
print(s.isValid("()"))
print(s.isValid("()[]{}"))
print(s.isValid("(]"))
print(s.isValid("([)]"))
print(s.isValid("{[]}"))
if __name__ == "__main__":
main()
| class Solution(object):
def is_valid(self, s):
"""
:type s: str
:rtype: bool
"""
dict = {')': '(', ']': '[', '}': '{'}
stack = []
for ch in s:
if ch in dict.values():
stack.append(ch)
elif ch in dict.keys():
if len(stack) == 0 or stack.pop() != dict[ch]:
return False
return len(stack) == 0
def main():
s = solution()
print(s.isValid('()'))
print(s.isValid('()[]{}'))
print(s.isValid('(]'))
print(s.isValid('([)]'))
print(s.isValid('{[]}'))
if __name__ == '__main__':
main() |
""" TW10: Words by Prefix
Team: Tam Tamura, Andrew Nalundasan
For: OMSBA 2061, Seattle University
Date: 11/3/2020
"""
def wordByPrefix(prefix_length, word):
my_dict = {}
for key in word:
for letter in word:
prefix_key = letter[:prefix_length]
letter = word[:prefix_length]
return prefix_key
return letter
question_2 = ['able', 'ability', 'apple', 'tryst', 'trial', 'tremendous', 'tree']
my_list = []
for elem in question_2:
prefix = elem[:2]
my_list.append(prefix)
print(my_list)
def question_3(prefix_length, word):
my_list = []
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
return my_list
def wordByPrefix(prefix_length, word):
my_list = []
#count = 0
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
count = {}
for letter in my_list:
if letter.isalpha():
if letter not in count:
count[letter] = 0
count[letter] += 1
return count
def wordByPrefix(prefix_length, word):
my_list = []
#count = 0
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
count = {}
for letter in my_list:
if letter.isalpha():
if letter not in count:
letter[count] = []
count.update(letter)
return count
| """ TW10: Words by Prefix
Team: Tam Tamura, Andrew Nalundasan
For: OMSBA 2061, Seattle University
Date: 11/3/2020
"""
def word_by_prefix(prefix_length, word):
my_dict = {}
for key in word:
for letter in word:
prefix_key = letter[:prefix_length]
letter = word[:prefix_length]
return prefix_key
return letter
question_2 = ['able', 'ability', 'apple', 'tryst', 'trial', 'tremendous', 'tree']
my_list = []
for elem in question_2:
prefix = elem[:2]
my_list.append(prefix)
print(my_list)
def question_3(prefix_length, word):
my_list = []
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
return my_list
def word_by_prefix(prefix_length, word):
my_list = []
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
count = {}
for letter in my_list:
if letter.isalpha():
if letter not in count:
count[letter] = 0
count[letter] += 1
return count
def word_by_prefix(prefix_length, word):
my_list = []
for key in word:
prefix = key[:prefix_length]
my_list.append(prefix)
count = {}
for letter in my_list:
if letter.isalpha():
if letter not in count:
letter[count] = []
count.update(letter)
return count |
"""Version information."""
# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.16.1"
| """Version information."""
__version__ = '0.16.1' |
## @file
# Standardized Error Hanlding infrastructures.
#
# Copyright (c) 2007 - 2015, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
FILE_OPEN_FAILURE = 1
FILE_WRITE_FAILURE = 2
FILE_PARSE_FAILURE = 3
FILE_READ_FAILURE = 4
FILE_CREATE_FAILURE = 5
FILE_CHECKSUM_FAILURE = 6
FILE_COMPRESS_FAILURE = 7
FILE_DECOMPRESS_FAILURE = 8
FILE_MOVE_FAILURE = 9
FILE_DELETE_FAILURE = 10
FILE_COPY_FAILURE = 11
FILE_POSITIONING_FAILURE = 12
FILE_ALREADY_EXIST = 13
FILE_NOT_FOUND = 14
FILE_TYPE_MISMATCH = 15
FILE_CASE_MISMATCH = 16
FILE_DUPLICATED = 17
FILE_UNKNOWN_ERROR = 0x0FFF
OPTION_UNKNOWN = 0x1000
OPTION_MISSING = 0x1001
OPTION_CONFLICT = 0x1002
OPTION_VALUE_INVALID = 0x1003
OPTION_DEPRECATED = 0x1004
OPTION_NOT_SUPPORTED = 0x1005
OPTION_UNKNOWN_ERROR = 0x1FFF
PARAMETER_INVALID = 0x2000
PARAMETER_MISSING = 0x2001
PARAMETER_UNKNOWN_ERROR =0x2FFF
FORMAT_INVALID = 0x3000
FORMAT_NOT_SUPPORTED = 0x3001
FORMAT_UNKNOWN = 0x3002
FORMAT_UNKNOWN_ERROR = 0x3FFF
RESOURCE_NOT_AVAILABLE = 0x4000
RESOURCE_ALLOCATE_FAILURE = 0x4001
RESOURCE_FULL = 0x4002
RESOURCE_OVERFLOW = 0x4003
RESOURCE_UNDERRUN = 0x4004
RESOURCE_UNKNOWN_ERROR = 0x4FFF
ATTRIBUTE_NOT_AVAILABLE = 0x5000
ATTRIBUTE_GET_FAILURE = 0x5001
ATTRIBUTE_SET_FAILURE = 0x5002
ATTRIBUTE_UPDATE_FAILURE = 0x5003
ATTRIBUTE_ACCESS_DENIED = 0x5004
ATTRIBUTE_UNKNOWN_ERROR = 0x5FFF
IO_NOT_READY = 0x6000
IO_BUSY = 0x6001
IO_TIMEOUT = 0x6002
IO_UNKNOWN_ERROR = 0x6FFF
COMMAND_FAILURE = 0x7000
PERMISSION_FAILURE = 0x8000
CODE_ERROR = 0xC0DE
AUTOGEN_ERROR = 0xF000
PARSER_ERROR = 0xF001
BUILD_ERROR = 0xF002
GENFDS_ERROR = 0xF003
ECC_ERROR = 0xF004
EOT_ERROR = 0xF005
DDC_ERROR = 0xF009
WARNING_AS_ERROR = 0xF006
MIGRATION_ERROR = 0xF010
PCD_VALIDATION_INFO_ERROR = 0xF011
PCD_VARIABLE_ATTRIBUTES_ERROR = 0xF012
PCD_VARIABLE_ATTRIBUTES_CONFLICT_ERROR = 0xF013
ABORT_ERROR = 0xFFFE
UNKNOWN_ERROR = 0xFFFF
## Error message of each error code
gErrorMessage = {
FILE_NOT_FOUND : "File/directory not found in workspace",
FILE_OPEN_FAILURE : "File open failure",
FILE_WRITE_FAILURE : "File write failure",
FILE_PARSE_FAILURE : "File parse failure",
FILE_READ_FAILURE : "File read failure",
FILE_CREATE_FAILURE : "File create failure",
FILE_CHECKSUM_FAILURE : "Invalid checksum of file",
FILE_COMPRESS_FAILURE : "File compress failure",
FILE_DECOMPRESS_FAILURE : "File decompress failure",
FILE_MOVE_FAILURE : "File move failure",
FILE_DELETE_FAILURE : "File delete failure",
FILE_COPY_FAILURE : "File copy failure",
FILE_POSITIONING_FAILURE: "Failed to seeking position",
FILE_ALREADY_EXIST : "File or directory already exists",
FILE_TYPE_MISMATCH : "Incorrect file type",
FILE_CASE_MISMATCH : "File name case mismatch",
FILE_DUPLICATED : "Duplicated file found",
FILE_UNKNOWN_ERROR : "Unknown error encountered on file",
OPTION_UNKNOWN : "Unknown option",
OPTION_MISSING : "Missing option",
OPTION_CONFLICT : "Conflict options",
OPTION_VALUE_INVALID : "Invalid value of option",
OPTION_DEPRECATED : "Deprecated option",
OPTION_NOT_SUPPORTED : "Unsupported option",
OPTION_UNKNOWN_ERROR : "Unknown error when processing options",
PARAMETER_INVALID : "Invalid parameter",
PARAMETER_MISSING : "Missing parameter",
PARAMETER_UNKNOWN_ERROR : "Unknown error in parameters",
FORMAT_INVALID : "Invalid syntax/format",
FORMAT_NOT_SUPPORTED : "Not supported syntax/format",
FORMAT_UNKNOWN : "Unknown format",
FORMAT_UNKNOWN_ERROR : "Unknown error in syntax/format ",
RESOURCE_NOT_AVAILABLE : "Not available",
RESOURCE_ALLOCATE_FAILURE : "Allocate failure",
RESOURCE_FULL : "Full",
RESOURCE_OVERFLOW : "Overflow",
RESOURCE_UNDERRUN : "Underrun",
RESOURCE_UNKNOWN_ERROR : "Unknown error",
ATTRIBUTE_NOT_AVAILABLE : "Not available",
ATTRIBUTE_GET_FAILURE : "Failed to retrieve",
ATTRIBUTE_SET_FAILURE : "Failed to set",
ATTRIBUTE_UPDATE_FAILURE: "Failed to update",
ATTRIBUTE_ACCESS_DENIED : "Access denied",
ATTRIBUTE_UNKNOWN_ERROR : "Unknown error when accessing",
COMMAND_FAILURE : "Failed to execute command",
IO_NOT_READY : "Not ready",
IO_BUSY : "Busy",
IO_TIMEOUT : "Timeout",
IO_UNKNOWN_ERROR : "Unknown error in IO operation",
UNKNOWN_ERROR : "Unknown error",
}
## Exception indicating a fatal error
class FatalError(Exception):
pass
if __name__ == "__main__":
pass
| file_open_failure = 1
file_write_failure = 2
file_parse_failure = 3
file_read_failure = 4
file_create_failure = 5
file_checksum_failure = 6
file_compress_failure = 7
file_decompress_failure = 8
file_move_failure = 9
file_delete_failure = 10
file_copy_failure = 11
file_positioning_failure = 12
file_already_exist = 13
file_not_found = 14
file_type_mismatch = 15
file_case_mismatch = 16
file_duplicated = 17
file_unknown_error = 4095
option_unknown = 4096
option_missing = 4097
option_conflict = 4098
option_value_invalid = 4099
option_deprecated = 4100
option_not_supported = 4101
option_unknown_error = 8191
parameter_invalid = 8192
parameter_missing = 8193
parameter_unknown_error = 12287
format_invalid = 12288
format_not_supported = 12289
format_unknown = 12290
format_unknown_error = 16383
resource_not_available = 16384
resource_allocate_failure = 16385
resource_full = 16386
resource_overflow = 16387
resource_underrun = 16388
resource_unknown_error = 20479
attribute_not_available = 20480
attribute_get_failure = 20481
attribute_set_failure = 20482
attribute_update_failure = 20483
attribute_access_denied = 20484
attribute_unknown_error = 24575
io_not_ready = 24576
io_busy = 24577
io_timeout = 24578
io_unknown_error = 28671
command_failure = 28672
permission_failure = 32768
code_error = 49374
autogen_error = 61440
parser_error = 61441
build_error = 61442
genfds_error = 61443
ecc_error = 61444
eot_error = 61445
ddc_error = 61449
warning_as_error = 61446
migration_error = 61456
pcd_validation_info_error = 61457
pcd_variable_attributes_error = 61458
pcd_variable_attributes_conflict_error = 61459
abort_error = 65534
unknown_error = 65535
g_error_message = {FILE_NOT_FOUND: 'File/directory not found in workspace', FILE_OPEN_FAILURE: 'File open failure', FILE_WRITE_FAILURE: 'File write failure', FILE_PARSE_FAILURE: 'File parse failure', FILE_READ_FAILURE: 'File read failure', FILE_CREATE_FAILURE: 'File create failure', FILE_CHECKSUM_FAILURE: 'Invalid checksum of file', FILE_COMPRESS_FAILURE: 'File compress failure', FILE_DECOMPRESS_FAILURE: 'File decompress failure', FILE_MOVE_FAILURE: 'File move failure', FILE_DELETE_FAILURE: 'File delete failure', FILE_COPY_FAILURE: 'File copy failure', FILE_POSITIONING_FAILURE: 'Failed to seeking position', FILE_ALREADY_EXIST: 'File or directory already exists', FILE_TYPE_MISMATCH: 'Incorrect file type', FILE_CASE_MISMATCH: 'File name case mismatch', FILE_DUPLICATED: 'Duplicated file found', FILE_UNKNOWN_ERROR: 'Unknown error encountered on file', OPTION_UNKNOWN: 'Unknown option', OPTION_MISSING: 'Missing option', OPTION_CONFLICT: 'Conflict options', OPTION_VALUE_INVALID: 'Invalid value of option', OPTION_DEPRECATED: 'Deprecated option', OPTION_NOT_SUPPORTED: 'Unsupported option', OPTION_UNKNOWN_ERROR: 'Unknown error when processing options', PARAMETER_INVALID: 'Invalid parameter', PARAMETER_MISSING: 'Missing parameter', PARAMETER_UNKNOWN_ERROR: 'Unknown error in parameters', FORMAT_INVALID: 'Invalid syntax/format', FORMAT_NOT_SUPPORTED: 'Not supported syntax/format', FORMAT_UNKNOWN: 'Unknown format', FORMAT_UNKNOWN_ERROR: 'Unknown error in syntax/format ', RESOURCE_NOT_AVAILABLE: 'Not available', RESOURCE_ALLOCATE_FAILURE: 'Allocate failure', RESOURCE_FULL: 'Full', RESOURCE_OVERFLOW: 'Overflow', RESOURCE_UNDERRUN: 'Underrun', RESOURCE_UNKNOWN_ERROR: 'Unknown error', ATTRIBUTE_NOT_AVAILABLE: 'Not available', ATTRIBUTE_GET_FAILURE: 'Failed to retrieve', ATTRIBUTE_SET_FAILURE: 'Failed to set', ATTRIBUTE_UPDATE_FAILURE: 'Failed to update', ATTRIBUTE_ACCESS_DENIED: 'Access denied', ATTRIBUTE_UNKNOWN_ERROR: 'Unknown error when accessing', COMMAND_FAILURE: 'Failed to execute command', IO_NOT_READY: 'Not ready', IO_BUSY: 'Busy', IO_TIMEOUT: 'Timeout', IO_UNKNOWN_ERROR: 'Unknown error in IO operation', UNKNOWN_ERROR: 'Unknown error'}
class Fatalerror(Exception):
pass
if __name__ == '__main__':
pass |
ELECTRUM_VERSION = '4.1.5-radc' # version of the client package
APK_VERSION = '4.1.5.0' # read by buildozer.spec
PROTOCOL_VERSION = '1.4' # protocol version requested
# The hash of the mnemonic seed must begin with this
SEED_PREFIX = '01' # Standard wallet
SEED_PREFIX_SW = '100' # Segwit wallet
SEED_PREFIX_2FA = '101' # Two-factor authentication
SEED_PREFIX_2FA_SW = '102' # Two-factor auth, using segwit
def seed_prefix(seed_type):
if seed_type == 'standard':
return SEED_PREFIX
elif seed_type == 'segwit':
return SEED_PREFIX_SW
elif seed_type == '2fa':
return SEED_PREFIX_2FA
elif seed_type == '2fa_segwit':
return SEED_PREFIX_2FA_SW
raise Exception(f"unknown seed_type: {seed_type}")
| electrum_version = '4.1.5-radc'
apk_version = '4.1.5.0'
protocol_version = '1.4'
seed_prefix = '01'
seed_prefix_sw = '100'
seed_prefix_2_fa = '101'
seed_prefix_2_fa_sw = '102'
def seed_prefix(seed_type):
if seed_type == 'standard':
return SEED_PREFIX
elif seed_type == 'segwit':
return SEED_PREFIX_SW
elif seed_type == '2fa':
return SEED_PREFIX_2FA
elif seed_type == '2fa_segwit':
return SEED_PREFIX_2FA_SW
raise exception(f'unknown seed_type: {seed_type}') |
"""
Class for all excpetions used in following scripts
- geocoder.py
- geocoder_input.py
"""
class OverlappingGeographyError(Exception):
def __init__(self, message):
self.message = message
# msg: geodataframe has overlapping polygons representing geographic features
# please how shapefiles are processed.
class NoOverlapSpatialJoinError(Exception):
def __init__(self, message):
self.message = message
# msg: geodataframe has overlapping polygons representing geographic features
# please how shapefiles are processed.
class NoParkingAvailableError(NoOverlapSpatialJoinError):
def __init__(self, message):
self.message = message
class NoUrbanVillageError(Exception):
def __init__(self, message):
self.message = message
class NotInSeattleError(Exception):
def __init__(self, message):
self.message = message | """
Class for all excpetions used in following scripts
- geocoder.py
- geocoder_input.py
"""
class Overlappinggeographyerror(Exception):
def __init__(self, message):
self.message = message
class Nooverlapspatialjoinerror(Exception):
def __init__(self, message):
self.message = message
class Noparkingavailableerror(NoOverlapSpatialJoinError):
def __init__(self, message):
self.message = message
class Nourbanvillageerror(Exception):
def __init__(self, message):
self.message = message
class Notinseattleerror(Exception):
def __init__(self, message):
self.message = message |
class Node(object):
def __init__(self, name, follow_list, intention, lane):
self.name = name
self.follow_list = follow_list
self.intention = intention
self.lane = lane
def __eq__(self, other):
if isinstance(other, Node):
if self.name == other.get_name() and self.follow_list == other.get_follow_list() \
and self.intention == other.get_intention() and self.lane == other.get_lane():
return True
return False
def get_name(self):
return self.name
def set_name(self, name):
self.name = name
def get_follow_list(self):
return self.follow_list
def set_follow_list(self, follow_list):
self.follow_list = follow_list
def get_intention(self):
return self.intention
def set_intention(self, intention):
self.intention = intention
def get_lane(self):
return self.lane
def set_lane(self, lane):
self.lane = lane
| class Node(object):
def __init__(self, name, follow_list, intention, lane):
self.name = name
self.follow_list = follow_list
self.intention = intention
self.lane = lane
def __eq__(self, other):
if isinstance(other, Node):
if self.name == other.get_name() and self.follow_list == other.get_follow_list() and (self.intention == other.get_intention()) and (self.lane == other.get_lane()):
return True
return False
def get_name(self):
return self.name
def set_name(self, name):
self.name = name
def get_follow_list(self):
return self.follow_list
def set_follow_list(self, follow_list):
self.follow_list = follow_list
def get_intention(self):
return self.intention
def set_intention(self, intention):
self.intention = intention
def get_lane(self):
return self.lane
def set_lane(self, lane):
self.lane = lane |
#!python
"""
ANNOTATE FUNCTIONS WITH TIME AND SPACE COMPLEXITY!!!!!
"""
def linear_search(array, item):
"""return the first index of item in array or None if item is not found"""
return linear_search_iterative(array, item)
# return linear_search_recursive(array, item)
def linear_search_iterative(array, item):
"""Time complexity: O(n) because you iterate through n amount of items in array
Space Complexity: O(n) because there are n amount of items"""
# loop over all array values until item is found
for index, value in enumerate(array): #O(n)
if item == value: #O(1)
return index # found O(1)
return None # not found O(1)
def linear_search_recursive(array, item, index=0):
"""Time complexity: O(n) because you are returning the function continuously until index equals to nth-item
"""
if len(array) <= index:
return index
if array[index] == item:
return index
else:
return linear_search_recursive(array, item, index + 1)
def binary_search(array, item):
"""return the index of item in sorted array or None if item is not found"""
return binary_search_iterative(array, item)
# return binary_search_recursive(array, item)
def binary_search_iterative(array, item):
"""Time Complexity: O(log*n) because you are constantly dividing the length of array by 2 until array length is 1
Space Complexity: O(1) """
left, right = 0, len(array) - 1
if len(array) == 0:
return None
while left <= right:
middle = left + (right - left) // 2
if item == array[middle]:
return middle
elif item > array[middle]:
left = middle + 1
else:
right = middle - 1
return None
def binary_search_recursive(array, item, left=None, right=None):
"""Time Complexity: O(log*n)
Space Complexity: 0(log*n) recursion call stack space"""
# TODO: implement binary search recursively here
if left is None and right is None:
left, right = 0, len(array) - 1
middle = left + (right - left) // 2
if left > right:
return None
if array[middle] == item:
return middle
elif item > array[middle]:
return binary_search_recursive(array, item, middle + 1, right)
else:
return binary_search_recursive(array, item, left, middle - 1)
| """
ANNOTATE FUNCTIONS WITH TIME AND SPACE COMPLEXITY!!!!!
"""
def linear_search(array, item):
"""return the first index of item in array or None if item is not found"""
return linear_search_iterative(array, item)
def linear_search_iterative(array, item):
"""Time complexity: O(n) because you iterate through n amount of items in array
Space Complexity: O(n) because there are n amount of items"""
for (index, value) in enumerate(array):
if item == value:
return index
return None
def linear_search_recursive(array, item, index=0):
"""Time complexity: O(n) because you are returning the function continuously until index equals to nth-item
"""
if len(array) <= index:
return index
if array[index] == item:
return index
else:
return linear_search_recursive(array, item, index + 1)
def binary_search(array, item):
"""return the index of item in sorted array or None if item is not found"""
return binary_search_iterative(array, item)
def binary_search_iterative(array, item):
"""Time Complexity: O(log*n) because you are constantly dividing the length of array by 2 until array length is 1
Space Complexity: O(1) """
(left, right) = (0, len(array) - 1)
if len(array) == 0:
return None
while left <= right:
middle = left + (right - left) // 2
if item == array[middle]:
return middle
elif item > array[middle]:
left = middle + 1
else:
right = middle - 1
return None
def binary_search_recursive(array, item, left=None, right=None):
"""Time Complexity: O(log*n)
Space Complexity: 0(log*n) recursion call stack space"""
if left is None and right is None:
(left, right) = (0, len(array) - 1)
middle = left + (right - left) // 2
if left > right:
return None
if array[middle] == item:
return middle
elif item > array[middle]:
return binary_search_recursive(array, item, middle + 1, right)
else:
return binary_search_recursive(array, item, left, middle - 1) |
class MikanException(Exception):
"""Generic Mikan exception"""
class ConversionError(MikanException, ValueError):
"""Cannot convert a string"""
| class Mikanexception(Exception):
"""Generic Mikan exception"""
class Conversionerror(MikanException, ValueError):
"""Cannot convert a string""" |
"""
Minimum edit distance computes the cost it takes to get from one string to another string.
This implementation uses the Levenshtein distance with a cost of 1 for insertions or deletions and a cost of 2 for substitutions.
Resource: https://en.wikipedia.org/wiki/Edit_distance
For example, getting from "intention" to "execution" is a cost of 8.
minimum_edit_distance("intention", "execution")
# 8
"""
def minimum_edit_distance(source, target):
n = len(source)
m = len(target)
D = {}
# Initialization
for i in range(0, n+1):
D[i,0] = i
for j in range(0, m+1):
D[0,j] = j
for i in range(1, n+1):
for j in range(1, m+1):
if source[i-1] == target[j-1]:
D[i,j] = D[i-1, j-1]
else:
D[i,j] = min(
D[i-1, j] + 1,
D[i, j-1] + 1,
D[i-1, j-1] + 2
)
return D[n-1, m-1]
| """
Minimum edit distance computes the cost it takes to get from one string to another string.
This implementation uses the Levenshtein distance with a cost of 1 for insertions or deletions and a cost of 2 for substitutions.
Resource: https://en.wikipedia.org/wiki/Edit_distance
For example, getting from "intention" to "execution" is a cost of 8.
minimum_edit_distance("intention", "execution")
# 8
"""
def minimum_edit_distance(source, target):
n = len(source)
m = len(target)
d = {}
for i in range(0, n + 1):
D[i, 0] = i
for j in range(0, m + 1):
D[0, j] = j
for i in range(1, n + 1):
for j in range(1, m + 1):
if source[i - 1] == target[j - 1]:
D[i, j] = D[i - 1, j - 1]
else:
D[i, j] = min(D[i - 1, j] + 1, D[i, j - 1] + 1, D[i - 1, j - 1] + 2)
return D[n - 1, m - 1] |
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Function to encrypt message using key is defined
def encrypt(msg, key):
# Defining empty strings and counters
hexadecimal = ''
iteration = 0
# Running for loop in the range of MSG and comparing the BITS
for i in range(len(msg)):
temp = ord(msg[i]) ^ ord(key[iteration])
# zfill will pad a single letter hex with 0, to make it two letter pair
hexadecimal += hex(temp)[2:].zfill(2)
# Checking if the iterations of the key are 1
iteration += 1
if iteration >= len(key):
# once all of the key's letters are used, repeat the key
iteration = 0
# Returning the final value
return hexadecimal
def decrypt(msg, key):
# Defining hex to uni string to store
hex_to_uni = ''
# Running for loop to the length of message
for i in range(0, len(msg), 2):
# Decoding each individual bytes from hex
hex_to_uni += bytes.fromhex(msg[i:i + 2]).decode('utf-8')
decryp_text = ''
iteration = 0
# For loop running for the length of the hex to unicode string
for i in range(len(hex_to_uni)):
# Comparing each individual bit
temp = ord(hex_to_uni[i]) ^ ord(key[iteration])
# zfill will pad a single letter hex with 0, to make it two letter pair
decryp_text += chr(temp)
iteration += 1
if iteration >= len(key):
# once all of the key's letters are used, repeat the key
iteration = 0
# FInally return the decrypted text string
return decryp_text
| def encrypt(msg, key):
hexadecimal = ''
iteration = 0
for i in range(len(msg)):
temp = ord(msg[i]) ^ ord(key[iteration])
hexadecimal += hex(temp)[2:].zfill(2)
iteration += 1
if iteration >= len(key):
iteration = 0
return hexadecimal
def decrypt(msg, key):
hex_to_uni = ''
for i in range(0, len(msg), 2):
hex_to_uni += bytes.fromhex(msg[i:i + 2]).decode('utf-8')
decryp_text = ''
iteration = 0
for i in range(len(hex_to_uni)):
temp = ord(hex_to_uni[i]) ^ ord(key[iteration])
decryp_text += chr(temp)
iteration += 1
if iteration >= len(key):
iteration = 0
return decryp_text |
number_of_participants, number_of_pens, number_of_notebooks = map(int, input().split())
if number_of_pens >= number_of_participants and number_of_notebooks >= number_of_participants:
print('Yes')
else:
print('No')
| (number_of_participants, number_of_pens, number_of_notebooks) = map(int, input().split())
if number_of_pens >= number_of_participants and number_of_notebooks >= number_of_participants:
print('Yes')
else:
print('No') |
"""
Custom exceptions for nflfastpy module
"""
class SeasonNotFoundError(Exception):
pass | """
Custom exceptions for nflfastpy module
"""
class Seasonnotfounderror(Exception):
pass |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Now write a program that calculates the minimum fixed monthly payment needed
in order pay off a credit card balance within 12 months.
By a fixed monthly payment, we mean a single number which does not change each month,
but instead is a constant amount that will be paid each month.
In this problem, we will not be dealing with a minimum monthly payment rate.
The following variables contain values as described below:
balance - the outstanding balance on the credit card
annualInterestRate - annual interest rate as a decimal
The program should print out one line: the lowest monthly payment
that will pay off all debt in under 1 year, for example:
Lowest Payment: 180
Assume that the interest is compounded monthly according to
the balance at the end of the month (after the payment for that month is made).
The monthly payment must be a multiple of $10 and is the same for all months.
Notice that it is possible for the balance to become negative
using this payment scheme, which is okay. A summary of the required math is found below:
Monthly interest rate = (Annual interest rate) / 12.0
Monthly unpaid balance = (Previous balance) - (Minimum fixed monthly payment)
Updated balance each month = (Monthly unpaid balance) + (Monthly interest rate x Monthly unpaid balance)
Test Case 1:
balance = 3329
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 310
Test Case 2:
balance = 4773
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 440
Test Case 3:
balance = 3926
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 360
"""
# Establish variables that we know / needed for the evaluation.
# Counter optional
balance = 3329
annualInterestRate = 0.2
monthlyInterestRate = annualInterestRate / 12
monthlyPayment = 0
updatedBalance = balance
counter = 0
# Will loop through everything until we find a rate that will reduce updatedBalance to 0.
while updatedBalance > 0:
# Was stated that payments needed to happen in increments of $10
monthlyPayment += 10
# To reset balance back to actual balance when loop inevitably fails.
updatedBalance = balance
month = 1
# For 12 months and while balance is not 0...
while month <= 12 and updatedBalance > 0:
# Subtract the ($10*n) amount
updatedBalance -= monthlyPayment
# Compound the interest AFTER making monthly payment
interest = monthlyInterestRate * updatedBalance
updatedBalance += interest
# Increase month counter
month += 1
counter += 1
print("Lowest Payment: ", monthlyPayment)
print("Number of iterations: ", counter)
| """
Now write a program that calculates the minimum fixed monthly payment needed
in order pay off a credit card balance within 12 months.
By a fixed monthly payment, we mean a single number which does not change each month,
but instead is a constant amount that will be paid each month.
In this problem, we will not be dealing with a minimum monthly payment rate.
The following variables contain values as described below:
balance - the outstanding balance on the credit card
annualInterestRate - annual interest rate as a decimal
The program should print out one line: the lowest monthly payment
that will pay off all debt in under 1 year, for example:
Lowest Payment: 180
Assume that the interest is compounded monthly according to
the balance at the end of the month (after the payment for that month is made).
The monthly payment must be a multiple of $10 and is the same for all months.
Notice that it is possible for the balance to become negative
using this payment scheme, which is okay. A summary of the required math is found below:
Monthly interest rate = (Annual interest rate) / 12.0
Monthly unpaid balance = (Previous balance) - (Minimum fixed monthly payment)
Updated balance each month = (Monthly unpaid balance) + (Monthly interest rate x Monthly unpaid balance)
Test Case 1:
balance = 3329
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 310
Test Case 2:
balance = 4773
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 440
Test Case 3:
balance = 3926
annualInterestRate = 0.2
Result Your Code Should Generate:
-------------------
Lowest Payment: 360
"""
balance = 3329
annual_interest_rate = 0.2
monthly_interest_rate = annualInterestRate / 12
monthly_payment = 0
updated_balance = balance
counter = 0
while updatedBalance > 0:
monthly_payment += 10
updated_balance = balance
month = 1
while month <= 12 and updatedBalance > 0:
updated_balance -= monthlyPayment
interest = monthlyInterestRate * updatedBalance
updated_balance += interest
month += 1
counter += 1
print('Lowest Payment: ', monthlyPayment)
print('Number of iterations: ', counter) |
# coding: utf-8
# Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
MEBIBYTE = 1024 * 1024
STREAMING_DEFAULT_PART_SIZE = 10 * MEBIBYTE
DEFAULT_PART_SIZE = 128 * MEBIBYTE
OBJECT_USE_MULTIPART_SIZE = 128 * MEBIBYTE
| mebibyte = 1024 * 1024
streaming_default_part_size = 10 * MEBIBYTE
default_part_size = 128 * MEBIBYTE
object_use_multipart_size = 128 * MEBIBYTE |
# Curbrock Summon 2
CURBROCK2 = 9400930 # MOD ID
CURBROCKS_ESCAPE_ROUTE_VER2 = 600050040 # MAP ID
CURBROCKS_ESCAPE_ROUTE_VER3 = 600050050 # MAP ID 2
sm.spawnMob(CURBROCK2, 190, -208, False)
sm.createClock(1800)
sm.addEvent(sm.invokeAfterDelay(1800000, "warp", CURBROCKS_ESCAPE_ROUTE_VER3, 0))
sm.waitForMobDeath(CURBROCK2)
sm.warp(CURBROCKS_ESCAPE_ROUTE_VER2)
sm.stopEvents() | curbrock2 = 9400930
curbrocks_escape_route_ver2 = 600050040
curbrocks_escape_route_ver3 = 600050050
sm.spawnMob(CURBROCK2, 190, -208, False)
sm.createClock(1800)
sm.addEvent(sm.invokeAfterDelay(1800000, 'warp', CURBROCKS_ESCAPE_ROUTE_VER3, 0))
sm.waitForMobDeath(CURBROCK2)
sm.warp(CURBROCKS_ESCAPE_ROUTE_VER2)
sm.stopEvents() |
def getNumBags(color):
if color=='':
return 0
numBags=1
for bag in rules[color]:
numBags+=bag[1]*getNumBags(bag[0])
return numBags
with open('day7/input.txt') as f:
rules=dict([l.split(' contain') for l in f.read().replace(' bags', '').replace(' bag', '').replace('.', '').replace(' no other', '0 ').splitlines()])
for key in rules:
rules[key]=[(d[2:].strip(), int(d[:2].strip())) for d in rules[key].split(', ')]
print(getNumBags('shiny gold')-1) #-1 cause shiny bag not included | def get_num_bags(color):
if color == '':
return 0
num_bags = 1
for bag in rules[color]:
num_bags += bag[1] * get_num_bags(bag[0])
return numBags
with open('day7/input.txt') as f:
rules = dict([l.split(' contain') for l in f.read().replace(' bags', '').replace(' bag', '').replace('.', '').replace(' no other', '0 ').splitlines()])
for key in rules:
rules[key] = [(d[2:].strip(), int(d[:2].strip())) for d in rules[key].split(', ')]
print(get_num_bags('shiny gold') - 1) |
class SVDError(Exception):
"""Generic errors."""
pass
| class Svderror(Exception):
"""Generic errors."""
pass |
'''
Largest rectangle area in a histogram::
Find the largest rectangular area possible in a given histogram where the largest rectangle can be made of a number of contiguous bars.
For simplicity, assume that all bars have same width and the width is 1 unit.
'''
def max_area_histogram(histogram):
stack = list()
max_area = 0 # Initialize max area
index = 0
while index < len(histogram):
if (not stack) or (histogram[stack[-1]] <= histogram[index]):
stack.append(index)
index += 1
else:
top_of_stack = stack.pop()
area = (histogram[top_of_stack] * ((index - stack[-1] - 1) if stack else index))
max_area = max(max_area, area)
while stack:
top_of_stack = stack.pop()
area = (histogram[top_of_stack] * ((index - stack[-1] - 1) if stack else index))
max_area = max(max_area, area)
return max_area
hist = [4, 7, 1, 8, 4, 9, 5]
print("Maximum area is",
max_area_histogram(hist))
| """
Largest rectangle area in a histogram::
Find the largest rectangular area possible in a given histogram where the largest rectangle can be made of a number of contiguous bars.
For simplicity, assume that all bars have same width and the width is 1 unit.
"""
def max_area_histogram(histogram):
stack = list()
max_area = 0
index = 0
while index < len(histogram):
if not stack or histogram[stack[-1]] <= histogram[index]:
stack.append(index)
index += 1
else:
top_of_stack = stack.pop()
area = histogram[top_of_stack] * (index - stack[-1] - 1 if stack else index)
max_area = max(max_area, area)
while stack:
top_of_stack = stack.pop()
area = histogram[top_of_stack] * (index - stack[-1] - 1 if stack else index)
max_area = max(max_area, area)
return max_area
hist = [4, 7, 1, 8, 4, 9, 5]
print('Maximum area is', max_area_histogram(hist)) |
def sort(arr):
# Start index 0.
start = 0
# End index
end = len(arr)-1
while start <= end:
# Swap all positive value with last index end & decrease end by 1.
if arr[start] >= 0:
arr[start], arr[end] = arr[end], arr[start]
end -= 1
else:
# If arr[start] is not positive then increase start by 1.
start += 1
if __name__ == "__main__":
arr = [-1, 2, -3, 4, 5, 6, -7, 8, 9]
sort(arr)
print(arr)
| def sort(arr):
start = 0
end = len(arr) - 1
while start <= end:
if arr[start] >= 0:
(arr[start], arr[end]) = (arr[end], arr[start])
end -= 1
else:
start += 1
if __name__ == '__main__':
arr = [-1, 2, -3, 4, 5, 6, -7, 8, 9]
sort(arr)
print(arr) |
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'variables': {
'chromium_code': 1,
},
'includes': [
'../build/win_precompile.gypi',
'base.gypi',
],
'targets': [
{
'target_name': 'base',
'type': '<(component)',
'toolsets': ['host', 'target'],
'variables': {
'base_target': 1,
'enable_wexit_time_destructors': 1,
'optimize': 'max',
},
'dependencies': [
'base_static',
'allocator/allocator.gyp:allocator_extension_thunks',
'../testing/gtest.gyp:gtest_prod',
'../third_party/modp_b64/modp_b64.gyp:modp_b64',
'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
],
# TODO(gregoryd): direct_dependent_settings should be shared with the
# 64-bit target, but it doesn't work due to a bug in gyp
'direct_dependent_settings': {
'include_dirs': [
'..',
],
},
'conditions': [
['desktop_linux == 1 or chromeos == 1', {
'conditions': [
['chromeos==1', {
'sources/': [ ['include', '_chromeos\\.cc$'] ]
}],
],
'dependencies': [
'symbolize',
'xdg_mime',
],
'defines': [
'USE_SYMBOLIZE',
],
}, { # desktop_linux == 0 and chromeos == 0
'sources/': [
['exclude', '/xdg_user_dirs/'],
['exclude', '_nss\\.cc$'],
],
}],
['use_glib==1', {
'dependencies': [
'../build/linux/system.gyp:glib',
],
'export_dependent_settings': [
'../build/linux/system.gyp:glib',
],
}],
['OS == "android" and _toolset == "host"', {
# Always build base as a static_library for host toolset, even if
# we're doing a component build. Specifically, we only care about the
# target toolset using components since that's what developers are
# focusing on. In theory we should do this more generally for all
# targets when building for host, but getting the gyp magic
# per-toolset for the "component" variable is hard, and we really only
# need base on host.
'type': 'static_library',
# Base for host support is the minimum required to run the
# ssl false start blacklist tool. It requires further changes
# to generically support host builds (and tests).
# Note: when building for host, gyp has OS == "android",
# hence the *_android.cc files are included but the actual code
# doesn't have OS_ANDROID / ANDROID defined.
'conditions': [
['host_os == "mac"', {
'sources/': [
['exclude', '^native_library_linux\\.cc$'],
['exclude', '^process_util_linux\\.cc$'],
['exclude', '^sys_info_linux\\.cc$'],
['exclude', '^sys_string_conversions_linux\\.cc$'],
['exclude', '^worker_pool_linux\\.cc$'],
],
}],
],
}],
['OS == "android" and _toolset == "target"', {
'dependencies': [
'base_java',
'base_jni_headers',
'../build/android/ndk.gyp:cpu_features',
'../third_party/ashmem/ashmem.gyp:ashmem',
],
'link_settings': {
'libraries': [
'-llog',
],
},
'sources!': [
'debug/stack_trace_posix.cc',
],
}],
['os_bsd==1', {
'include_dirs': [
'/usr/local/include',
],
'link_settings': {
'libraries': [
'-L/usr/local/lib -lexecinfo',
],
},
}],
['OS == "linux"', {
'link_settings': {
'libraries': [
# We need rt for clock_gettime().
'-lrt',
# For 'native_library_linux.cc'
'-ldl',
],
},
'conditions': [
['use_allocator!="tcmalloc"', {
'defines': [
'NO_TCMALLOC',
],
'direct_dependent_settings': {
'defines': [
'NO_TCMALLOC',
],
},
}],
],
}],
['OS == "win"', {
# Specify delayload for base.dll.
'msvs_settings': {
'VCLinkerTool': {
'DelayLoadDLLs': [
'cfgmgr32.dll',
'powrprof.dll',
'setupapi.dll',
],
'AdditionalDependencies': [
'cfgmgr32.lib',
'powrprof.lib',
'setupapi.lib',
],
},
},
# Specify delayload for components that link with base.lib.
'all_dependent_settings': {
'msvs_settings': {
'VCLinkerTool': {
'DelayLoadDLLs': [
'cfgmgr32.dll',
'powrprof.dll',
'setupapi.dll',
],
'AdditionalDependencies': [
'cfgmgr32.lib',
'powrprof.lib',
'setupapi.lib',
],
},
},
},
'copies': [
{
'destination': '<(PRODUCT_DIR)/',
'files': [
'../build/win/dbghelp_xp/dbghelp.dll',
],
},
],
'dependencies': [
'trace_event/etw_manifest/etw_manifest.gyp:etw_manifest',
],
}],
['OS == "mac" or (OS == "ios" and _toolset == "host")', {
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
'$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
'$(SDKROOT)/System/Library/Frameworks/Carbon.framework',
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
'$(SDKROOT)/System/Library/Frameworks/IOKit.framework',
'$(SDKROOT)/System/Library/Frameworks/Security.framework',
],
},
}],
['OS == "ios" and _toolset != "host"', {
'link_settings': {
'libraries': [
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
'$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
'$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
'$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
],
},
}],
['OS != "win" and (OS != "ios" or _toolset == "host")', {
'dependencies': ['../third_party/libevent/libevent.gyp:libevent'],
},],
['component=="shared_library"', {
'conditions': [
['OS=="win"', {
'sources!': [
'debug/debug_on_start_win.cc',
],
}],
],
}],
['OS=="ios"', {
'sources!': [
'sync_socket.h',
'sync_socket_posix.cc',
]
}],
],
'sources': [
'auto_reset.h',
'linux_util.cc',
'linux_util.h',
'message_loop/message_pump_android.cc',
'message_loop/message_pump_android.h',
'message_loop/message_pump_glib.cc',
'message_loop/message_pump_glib.h',
'message_loop/message_pump_io_ios.cc',
'message_loop/message_pump_io_ios.h',
'message_loop/message_pump_libevent.cc',
'message_loop/message_pump_libevent.h',
'message_loop/message_pump_mac.h',
'message_loop/message_pump_mac.mm',
'metrics/field_trial.cc',
'metrics/field_trial.h',
'posix/file_descriptor_shuffle.cc',
'posix/file_descriptor_shuffle.h',
'sync_socket.h',
'sync_socket_posix.cc',
'sync_socket_win.cc',
'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
{
'target_name': 'base_i18n',
'type': '<(component)',
'variables': {
'enable_wexit_time_destructors': 1,
'optimize': 'max',
'base_i18n_target': 1,
},
'dependencies': [
'base',
'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
],
'conditions': [
['OS == "win"', {
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [
4267,
],
}],
['icu_use_data_file_flag==1', {
'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE'],
}, { # else icu_use_data_file_flag !=1
'conditions': [
['OS=="win"', {
'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED'],
}, {
'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC'],
}],
],
}],
['OS == "ios"', {
'toolsets': ['host', 'target'],
}],
],
'export_dependent_settings': [
'base',
'../third_party/icu/icu.gyp:icuuc',
'../third_party/icu/icu.gyp:icui18n',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
{
'target_name': 'base_message_loop_tests',
'type': 'static_library',
'dependencies': [
'base',
'../testing/gtest.gyp:gtest',
],
'sources': [
'message_loop/message_loop_test.cc',
'message_loop/message_loop_test.h',
],
},
{
'target_name': 'base_prefs',
'type': '<(component)',
'variables': {
'enable_wexit_time_destructors': 1,
'optimize': 'max',
},
'dependencies': [
'base',
],
'export_dependent_settings': [
'base',
],
'defines': [
'BASE_PREFS_IMPLEMENTATION',
],
'sources': [
'prefs/base_prefs_export.h',
'prefs/default_pref_store.cc',
'prefs/default_pref_store.h',
'prefs/json_pref_store.cc',
'prefs/json_pref_store.h',
'prefs/overlay_user_pref_store.cc',
'prefs/overlay_user_pref_store.h',
'prefs/persistent_pref_store.h',
'prefs/pref_change_registrar.cc',
'prefs/pref_change_registrar.h',
'prefs/pref_filter.h',
'prefs/pref_member.cc',
'prefs/pref_member.h',
'prefs/pref_notifier.h',
'prefs/pref_notifier_impl.cc',
'prefs/pref_notifier_impl.h',
'prefs/pref_observer.h',
'prefs/pref_registry.cc',
'prefs/pref_registry.h',
'prefs/pref_registry_simple.cc',
'prefs/pref_registry_simple.h',
'prefs/pref_service.cc',
'prefs/pref_service.h',
'prefs/pref_service_factory.cc',
'prefs/pref_service_factory.h',
'prefs/pref_store.cc',
'prefs/pref_store.h',
'prefs/pref_value_map.cc',
'prefs/pref_value_map.h',
'prefs/pref_value_store.cc',
'prefs/pref_value_store.h',
'prefs/scoped_user_pref_update.cc',
'prefs/scoped_user_pref_update.h',
'prefs/value_map_pref_store.cc',
'prefs/value_map_pref_store.h',
'prefs/writeable_pref_store.h',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
{
'target_name': 'base_prefs_test_support',
'type': 'static_library',
'dependencies': [
'base',
'base_prefs',
'../testing/gmock.gyp:gmock',
],
'sources': [
'prefs/mock_pref_change_callback.cc',
'prefs/pref_store_observer_mock.cc',
'prefs/pref_store_observer_mock.h',
'prefs/testing_pref_service.cc',
'prefs/testing_pref_service.h',
'prefs/testing_pref_store.cc',
'prefs/testing_pref_store.h',
],
},
{
# This is the subset of files from base that should not be used with a
# dynamic library. Note that this library cannot depend on base because
# base depends on base_static.
'target_name': 'base_static',
'type': 'static_library',
'variables': {
'enable_wexit_time_destructors': 1,
'optimize': 'max',
},
'toolsets': ['host', 'target'],
'sources': [
'base_switches.cc',
'base_switches.h',
'win/pe_image.cc',
'win/pe_image.h',
],
'include_dirs': [
'..',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
# Include this target for a main() function that simply instantiates
# and runs a base::TestSuite.
{
'target_name': 'run_all_unittests',
'type': 'static_library',
'dependencies': [
'test_support_base',
],
'sources': [
'test/run_all_unittests.cc',
],
},
{
'target_name': 'base_unittests',
'type': '<(gtest_target_type)',
'sources': [
'android/application_status_listener_unittest.cc',
'android/content_uri_utils_unittest.cc',
'android/jni_android_unittest.cc',
'android/jni_array_unittest.cc',
'android/jni_string_unittest.cc',
'android/library_loader/library_prefetcher_unittest.cc',
'android/path_utils_unittest.cc',
'android/scoped_java_ref_unittest.cc',
'android/sys_utils_unittest.cc',
'at_exit_unittest.cc',
'atomicops_unittest.cc',
'barrier_closure_unittest.cc',
'base64_unittest.cc',
'base64url_unittest.cc',
'big_endian_unittest.cc',
'bind_unittest.cc',
'bind_unittest.nc',
'bits_unittest.cc',
'build_time_unittest.cc',
'callback_helpers_unittest.cc',
'callback_list_unittest.cc',
'callback_list_unittest.nc',
'callback_unittest.cc',
'callback_unittest.nc',
'cancelable_callback_unittest.cc',
'command_line_unittest.cc',
'containers/adapters_unittest.cc',
'containers/hash_tables_unittest.cc',
'containers/linked_list_unittest.cc',
'containers/mru_cache_unittest.cc',
'containers/scoped_ptr_hash_map_unittest.cc',
'containers/small_map_unittest.cc',
'containers/stack_container_unittest.cc',
'cpu_unittest.cc',
'debug/crash_logging_unittest.cc',
'debug/debugger_unittest.cc',
'debug/leak_tracker_unittest.cc',
'debug/proc_maps_linux_unittest.cc',
'debug/stack_trace_unittest.cc',
'debug/task_annotator_unittest.cc',
'deferred_sequenced_task_runner_unittest.cc',
'environment_unittest.cc',
'feature_list_unittest.cc',
'file_version_info_unittest.cc',
'files/dir_reader_posix_unittest.cc',
'files/file_path_unittest.cc',
'files/file_path_watcher_unittest.cc',
'files/file_proxy_unittest.cc',
'files/file_unittest.cc',
'files/file_util_proxy_unittest.cc',
'files/file_util_unittest.cc',
'files/important_file_writer_unittest.cc',
'files/memory_mapped_file_unittest.cc',
'files/scoped_temp_dir_unittest.cc',
'gmock_unittest.cc',
'guid_unittest.cc',
'hash_unittest.cc',
'i18n/break_iterator_unittest.cc',
'i18n/case_conversion_unittest.cc',
'i18n/char_iterator_unittest.cc',
'i18n/file_util_icu_unittest.cc',
'i18n/icu_string_conversions_unittest.cc',
'i18n/message_formatter_unittest.cc',
'i18n/number_formatting_unittest.cc',
'i18n/rtl_unittest.cc',
'i18n/streaming_utf8_validator_unittest.cc',
'i18n/string_search_unittest.cc',
'i18n/time_formatting_unittest.cc',
'i18n/timezone_unittest.cc',
'id_map_unittest.cc',
'ios/crb_protocol_observers_unittest.mm',
'ios/device_util_unittest.mm',
'ios/weak_nsobject_unittest.mm',
'json/json_parser_unittest.cc',
'json/json_reader_unittest.cc',
'json/json_value_converter_unittest.cc',
'json/json_value_serializer_unittest.cc',
'json/json_writer_unittest.cc',
'json/string_escape_unittest.cc',
'lazy_instance_unittest.cc',
'logging_unittest.cc',
'mac/bind_objc_block_unittest.mm',
'mac/call_with_eh_frame_unittest.mm',
'mac/dispatch_source_mach_unittest.cc',
'mac/foundation_util_unittest.mm',
'mac/libdispatch_task_runner_unittest.cc',
'mac/mac_util_unittest.mm',
'mac/objc_property_releaser_unittest.mm',
'mac/scoped_nsobject_unittest.mm',
'mac/scoped_objc_class_swizzler_unittest.mm',
'mac/scoped_sending_event_unittest.mm',
'md5_unittest.cc',
'memory/aligned_memory_unittest.cc',
'memory/discardable_shared_memory_unittest.cc',
'memory/linked_ptr_unittest.cc',
'memory/memory_pressure_listener_unittest.cc',
'memory/memory_pressure_monitor_chromeos_unittest.cc',
'memory/memory_pressure_monitor_mac_unittest.cc',
'memory/memory_pressure_monitor_win_unittest.cc',
'memory/ref_counted_memory_unittest.cc',
'memory/ref_counted_unittest.cc',
'memory/scoped_ptr_unittest.cc',
'memory/scoped_ptr_unittest.nc',
'memory/scoped_vector_unittest.cc',
'memory/shared_memory_unittest.cc',
'memory/shared_memory_mac_unittest.cc',
'memory/singleton_unittest.cc',
'memory/weak_ptr_unittest.cc',
'memory/weak_ptr_unittest.nc',
'message_loop/message_loop_task_runner_unittest.cc',
'message_loop/message_loop_unittest.cc',
'message_loop/message_pump_glib_unittest.cc',
'message_loop/message_pump_io_ios_unittest.cc',
'message_loop/message_pump_libevent_unittest.cc',
'metrics/bucket_ranges_unittest.cc',
'metrics/field_trial_unittest.cc',
'metrics/histogram_base_unittest.cc',
'metrics/histogram_delta_serialization_unittest.cc',
'metrics/histogram_macros_unittest.cc',
'metrics/histogram_snapshot_manager_unittest.cc',
'metrics/histogram_unittest.cc',
'metrics/metrics_hashes_unittest.cc',
'metrics/sample_map_unittest.cc',
'metrics/sample_vector_unittest.cc',
'metrics/sparse_histogram_unittest.cc',
'metrics/statistics_recorder_unittest.cc',
'native_library_unittest.cc',
'numerics/safe_numerics_unittest.cc',
'observer_list_unittest.cc',
'os_compat_android_unittest.cc',
'path_service_unittest.cc',
'pickle_unittest.cc',
'posix/file_descriptor_shuffle_unittest.cc',
'posix/unix_domain_socket_linux_unittest.cc',
'power_monitor/power_monitor_unittest.cc',
'prefs/default_pref_store_unittest.cc',
'prefs/json_pref_store_unittest.cc',
'prefs/mock_pref_change_callback.h',
'prefs/overlay_user_pref_store_unittest.cc',
'prefs/pref_change_registrar_unittest.cc',
'prefs/pref_member_unittest.cc',
'prefs/pref_notifier_impl_unittest.cc',
'prefs/pref_service_unittest.cc',
'prefs/pref_value_map_unittest.cc',
'prefs/pref_value_store_unittest.cc',
'prefs/scoped_user_pref_update_unittest.cc',
'process/memory_unittest.cc',
'process/memory_unittest_mac.h',
'process/memory_unittest_mac.mm',
'process/process_metrics_unittest.cc',
'process/process_metrics_unittest_ios.cc',
'process/process_unittest.cc',
'process/process_util_unittest.cc',
'profiler/stack_sampling_profiler_unittest.cc',
'profiler/tracked_time_unittest.cc',
'rand_util_unittest.cc',
'scoped_clear_errno_unittest.cc',
'scoped_generic_unittest.cc',
'scoped_native_library_unittest.cc',
'security_unittest.cc',
'sequence_checker_unittest.cc',
'sha1_unittest.cc',
'stl_util_unittest.cc',
'strings/nullable_string16_unittest.cc',
'strings/pattern_unittest.cc',
'strings/safe_sprintf_unittest.cc',
'strings/string16_unittest.cc',
'strings/string_number_conversions_unittest.cc',
'strings/string_piece_unittest.cc',
'strings/string_split_unittest.cc',
'strings/string_tokenizer_unittest.cc',
'strings/string_util_unittest.cc',
'strings/stringize_macros_unittest.cc',
'strings/stringprintf_unittest.cc',
'strings/sys_string_conversions_mac_unittest.mm',
'strings/sys_string_conversions_unittest.cc',
'strings/utf_offset_string_conversions_unittest.cc',
'strings/utf_string_conversions_unittest.cc',
'supports_user_data_unittest.cc',
'sync_socket_unittest.cc',
'synchronization/cancellation_flag_unittest.cc',
'synchronization/condition_variable_unittest.cc',
'synchronization/lock_unittest.cc',
'synchronization/waitable_event_unittest.cc',
'synchronization/waitable_event_watcher_unittest.cc',
'sys_info_unittest.cc',
'system_monitor/system_monitor_unittest.cc',
'task/cancelable_task_tracker_unittest.cc',
'task_runner_util_unittest.cc',
'template_util_unittest.cc',
'test/histogram_tester_unittest.cc',
'test/test_pending_task_unittest.cc',
'test/test_reg_util_win_unittest.cc',
'test/trace_event_analyzer_unittest.cc',
'test/user_action_tester_unittest.cc',
'threading/non_thread_safe_unittest.cc',
'threading/platform_thread_unittest.cc',
'threading/sequenced_worker_pool_unittest.cc',
'threading/sequenced_task_runner_handle_unittest.cc',
'threading/simple_thread_unittest.cc',
'threading/thread_checker_unittest.cc',
'threading/thread_collision_warner_unittest.cc',
'threading/thread_id_name_manager_unittest.cc',
'threading/thread_local_storage_unittest.cc',
'threading/thread_local_unittest.cc',
'threading/thread_unittest.cc',
'threading/watchdog_unittest.cc',
'threading/worker_pool_posix_unittest.cc',
'threading/worker_pool_unittest.cc',
'time/pr_time_unittest.cc',
'time/time_unittest.cc',
'time/time_win_unittest.cc',
'timer/hi_res_timer_manager_unittest.cc',
'timer/mock_timer_unittest.cc',
'timer/timer_unittest.cc',
'tools_sanity_unittest.cc',
'tracked_objects_unittest.cc',
'tuple_unittest.cc',
'values_unittest.cc',
'version_unittest.cc',
'vlog_unittest.cc',
'win/dllmain.cc',
'win/enum_variant_unittest.cc',
'win/event_trace_consumer_unittest.cc',
'win/event_trace_controller_unittest.cc',
'win/event_trace_provider_unittest.cc',
'win/i18n_unittest.cc',
'win/iunknown_impl_unittest.cc',
'win/message_window_unittest.cc',
'win/object_watcher_unittest.cc',
'win/pe_image_unittest.cc',
'win/registry_unittest.cc',
'win/scoped_bstr_unittest.cc',
'win/scoped_comptr_unittest.cc',
'win/scoped_handle_unittest.cc',
'win/scoped_process_information_unittest.cc',
'win/scoped_variant_unittest.cc',
'win/shortcut_unittest.cc',
'win/startup_information_unittest.cc',
'win/win_util_unittest.cc',
'win/wrapped_window_proc_unittest.cc',
'<@(trace_event_test_sources)',
],
'dependencies': [
'base',
'base_i18n',
'base_message_loop_tests',
'base_prefs',
'base_prefs_test_support',
'base_static',
'run_all_unittests',
'test_support_base',
'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'../testing/gmock.gyp:gmock',
'../testing/gtest.gyp:gtest',
'../third_party/icu/icu.gyp:icui18n',
'../third_party/icu/icu.gyp:icuuc',
],
'includes': ['../build/nocompile.gypi'],
'variables': {
# TODO(ajwong): Is there a way to autodetect this?
'module_dir': 'base'
},
'conditions': [
['OS == "android"', {
'dependencies': [
'android/jni_generator/jni_generator.gyp:jni_generator_tests',
'../testing/android/native_test.gyp:native_test_native_code',
],
}],
['OS == "ios" and _toolset != "host"', {
'sources/': [
# iOS does not support FilePathWatcher.
['exclude', '^files/file_path_watcher_unittest\\.cc$'],
# Only test the iOS-meaningful portion of memory and process_utils.
['exclude', '^memory/discardable_shared_memory_unittest\\.cc$'],
['exclude', '^memory/shared_memory_unittest\\.cc$'],
['exclude', '^process/memory_unittest'],
['exclude', '^process/process_unittest\\.cc$'],
['exclude', '^process/process_util_unittest\\.cc$'],
['include', '^process/process_util_unittest_ios\\.cc$'],
# iOS does not use message_pump_libevent.
['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$'],
],
'actions': [
{
'action_name': 'copy_test_data',
'variables': {
'test_data_files': [
'test/data',
],
'test_data_prefix': 'base',
},
'includes': [ '../build/copy_test_data_ios.gypi' ],
},
],
}],
['desktop_linux == 1 or chromeos == 1', {
'defines': [
'USE_SYMBOLIZE',
],
'sources!': [
'file_version_info_unittest.cc',
],
'conditions': [
[ 'desktop_linux==1', {
'sources': [
'nix/xdg_util_unittest.cc',
],
}],
],
}],
['use_glib == 1', {
'dependencies': [
'../build/linux/system.gyp:glib',
],
}, { # use_glib == 0
'sources!': [
'message_loop/message_pump_glib_unittest.cc',
]
}],
['use_ozone == 1', {
'sources!': [
'message_loop/message_pump_glib_unittest.cc',
]
}],
['OS == "linux"', {
'dependencies': [
'malloc_wrapper',
],
'conditions': [
['use_allocator!="none"', {
'dependencies': [
'allocator/allocator.gyp:allocator',
],
}],
]},
],
[ 'OS == "win" and target_arch == "x64"', {
'sources': [
'profiler/win32_stack_frame_unwinder_unittest.cc',
],
'dependencies': [
'base_profiler_test_support_library',
],
}],
['OS == "win"', {
'sources!': [
'file_descriptor_shuffle_unittest.cc',
'files/dir_reader_posix_unittest.cc',
'message_loop/message_pump_libevent_unittest.cc',
'threading/worker_pool_posix_unittest.cc',
],
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
'msvs_disabled_warnings': [
4267,
],
'conditions': [
# This is needed so base_unittests uses the allocator shim, as
# SecurityTest.MemoryAllocationRestriction* tests are dependent
# on tcmalloc.
# TODO(wfh): crbug.com/246278 Move tcmalloc specific tests into
# their own test suite.
['win_use_allocator_shim==1', {
'dependencies': [
'allocator/allocator.gyp:allocator',
],
}],
['icu_use_data_file_flag==0', {
# This is needed to trigger the dll copy step on windows.
# TODO(mark): This should not be necessary.
'dependencies': [
'../third_party/icu/icu.gyp:icudata',
],
}],
],
}, { # OS != "win"
'dependencies': [
'../third_party/libevent/libevent.gyp:libevent'
],
}],
], # conditions
'target_conditions': [
['OS == "ios" and _toolset != "host"', {
'sources/': [
# Pull in specific Mac files for iOS (which have been filtered out
# by file name rules).
['include', '^mac/bind_objc_block_unittest\\.mm$'],
['include', '^mac/foundation_util_unittest\\.mm$',],
['include', '^mac/objc_property_releaser_unittest\\.mm$'],
['include', '^mac/scoped_nsobject_unittest\\.mm$'],
['include', '^sys_string_conversions_mac_unittest\\.mm$'],
],
}],
['OS == "android"', {
'sources/': [
['include', '^debug/proc_maps_linux_unittest\\.cc$'],
],
}],
# Enable more direct string conversions on platforms with native utf8
# strings
['OS=="mac" or OS=="ios" or <(chromeos)==1 or <(chromecast)==1', {
'defines': ['SYSTEM_NATIVE_UTF8'],
}],
# SyncSocket isn't used on iOS
['OS=="ios"', {
'sources!': [
'sync_socket_unittest.cc',
],
}],
], # target_conditions
},
{
# GN: //base:base_perftests
'target_name': 'base_perftests',
'type': '<(gtest_target_type)',
'dependencies': [
'base',
'test_support_base',
'../testing/gtest.gyp:gtest',
],
'sources': [
'message_loop/message_pump_perftest.cc',
'test/run_all_unittests.cc',
'threading/thread_perftest.cc',
'../testing/perf/perf_test.cc'
],
'conditions': [
['OS == "android"', {
'dependencies': [
'../testing/android/native_test.gyp:native_test_native_code',
],
}],
],
},
{
# GN: //base:base_i18n_perftests
'target_name': 'base_i18n_perftests',
'type': '<(gtest_target_type)',
'dependencies': [
'test_support_base',
'test_support_perf',
'../testing/gtest.gyp:gtest',
'base_i18n',
'base',
],
'sources': [
'i18n/streaming_utf8_validator_perftest.cc',
],
},
{
# GN: //base/test:test_support
'target_name': 'test_support_base',
'type': 'static_library',
'dependencies': [
'base',
'base_static',
'base_i18n',
'../testing/gmock.gyp:gmock',
'../testing/gtest.gyp:gtest',
'../third_party/icu/icu.gyp:icuuc',
'../third_party/libxml/libxml.gyp:libxml',
'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
],
'export_dependent_settings': [
'base',
],
'conditions': [
['os_posix==0', {
'sources!': [
'test/scoped_locale.cc',
'test/scoped_locale.h',
],
}],
['os_bsd==1', {
'sources!': [
'test/test_file_util_linux.cc',
],
}],
['OS == "android"', {
'dependencies': [
'base_unittests_jni_headers',
'base_java_unittest_support',
],
}],
['OS == "ios"', {
'toolsets': ['host', 'target'],
}],
],
'sources': [
'test/gtest_util.cc',
'test/gtest_util.h',
'test/gtest_xml_unittest_result_printer.cc',
'test/gtest_xml_unittest_result_printer.h',
'test/gtest_xml_util.cc',
'test/gtest_xml_util.h',
'test/histogram_tester.cc',
'test/histogram_tester.h',
'test/icu_test_util.cc',
'test/icu_test_util.h',
'test/ios/wait_util.h',
'test/ios/wait_util.mm',
'test/launcher/test_launcher.cc',
'test/launcher/test_launcher.h',
'test/launcher/test_result.cc',
'test/launcher/test_result.h',
'test/launcher/test_results_tracker.cc',
'test/launcher/test_results_tracker.h',
'test/launcher/unit_test_launcher.cc',
'test/launcher/unit_test_launcher.h',
'test/launcher/unit_test_launcher_ios.cc',
'test/mock_chrome_application_mac.h',
'test/mock_chrome_application_mac.mm',
'test/mock_devices_changed_observer.cc',
'test/mock_devices_changed_observer.h',
'test/mock_entropy_provider.cc',
'test/mock_entropy_provider.h',
'test/mock_log.cc',
'test/mock_log.h',
'test/multiprocess_test.cc',
'test/multiprocess_test.h',
'test/multiprocess_test_android.cc',
'test/null_task_runner.cc',
'test/null_task_runner.h',
'test/opaque_ref_counted.cc',
'test/opaque_ref_counted.h',
'test/perf_log.cc',
'test/perf_log.h',
'test/perf_test_suite.cc',
'test/perf_test_suite.h',
'test/perf_time_logger.cc',
'test/perf_time_logger.h',
'test/power_monitor_test_base.cc',
'test/power_monitor_test_base.h',
'test/scoped_locale.cc',
'test/scoped_locale.h',
'test/scoped_path_override.cc',
'test/scoped_path_override.h',
'test/sequenced_task_runner_test_template.cc',
'test/sequenced_task_runner_test_template.h',
'test/sequenced_worker_pool_owner.cc',
'test/sequenced_worker_pool_owner.h',
'test/simple_test_clock.cc',
'test/simple_test_clock.h',
'test/simple_test_tick_clock.cc',
'test/simple_test_tick_clock.h',
'test/task_runner_test_template.cc',
'test/task_runner_test_template.h',
'test/test_discardable_memory_allocator.cc',
'test/test_discardable_memory_allocator.h',
'test/test_file_util.cc',
'test/test_file_util.h',
'test/test_file_util_android.cc',
'test/test_file_util_linux.cc',
'test/test_file_util_mac.cc',
'test/test_file_util_posix.cc',
'test/test_file_util_win.cc',
'test/test_io_thread.cc',
'test/test_io_thread.h',
'test/test_listener_ios.h',
'test/test_listener_ios.mm',
'test/test_mock_time_task_runner.cc',
'test/test_mock_time_task_runner.h',
'test/test_pending_task.cc',
'test/test_pending_task.h',
'test/test_reg_util_win.cc',
'test/test_reg_util_win.h',
'test/test_shortcut_win.cc',
'test/test_shortcut_win.h',
'test/test_simple_task_runner.cc',
'test/test_simple_task_runner.h',
'test/test_suite.cc',
'test/test_suite.h',
'test/test_support_android.cc',
'test/test_support_android.h',
'test/test_support_ios.h',
'test/test_support_ios.mm',
'test/test_switches.cc',
'test/test_switches.h',
'test/test_timeouts.cc',
'test/test_timeouts.h',
'test/test_ui_thread_android.cc',
'test/test_ui_thread_android.h',
'test/thread_test_helper.cc',
'test/thread_test_helper.h',
'test/trace_event_analyzer.cc',
'test/trace_event_analyzer.h',
'test/trace_to_file.cc',
'test/trace_to_file.h',
'test/user_action_tester.cc',
'test/user_action_tester.h',
'test/values_test_util.cc',
'test/values_test_util.h',
],
'target_conditions': [
['OS == "ios"', {
'sources/': [
# Pull in specific Mac files for iOS (which have been filtered out
# by file name rules).
['include', '^test/test_file_util_mac\\.cc$'],
],
}],
['OS == "ios" and _toolset == "target"', {
'sources!': [
# iOS uses its own unit test launcher.
'test/launcher/unit_test_launcher.cc',
],
}],
['OS == "ios" and _toolset == "host"', {
'sources!': [
'test/launcher/unit_test_launcher_ios.cc',
'test/test_support_ios.h',
'test/test_support_ios.mm',
],
}],
], # target_conditions
},
{
'target_name': 'test_support_perf',
'type': 'static_library',
'dependencies': [
'base',
'test_support_base',
'../testing/gtest.gyp:gtest',
],
'sources': [
'test/run_all_perftests.cc',
],
'direct_dependent_settings': {
'defines': [
'PERF_TEST',
],
},
},
{
'target_name': 'test_launcher_nacl_nonsfi',
'conditions': [
['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_test==1', {
'type': 'static_library',
'sources': [
'test/launcher/test_launcher_nacl_nonsfi.cc',
],
'dependencies': [
'test_support_base',
],
}, {
'type': 'none',
}],
],
},
],
'conditions': [
['OS=="ios" and "<(GENERATOR)"=="ninja"', {
'targets': [
{
'target_name': 'test_launcher',
'toolsets': ['host'],
'type': 'executable',
'dependencies': [
'test_support_base',
],
'sources': [
'test/launcher/test_launcher_ios.cc',
],
},
],
}],
['OS!="ios"', {
'targets': [
{
# GN: //base:check_example
'target_name': 'check_example',
'type': 'executable',
'sources': [
'check_example.cc',
],
'dependencies': [
'base',
],
},
{
'target_name': 'build_utf8_validator_tables',
'type': 'executable',
'toolsets': ['host'],
'dependencies': [
'base',
'../third_party/icu/icu.gyp:icuuc',
],
'sources': [
'i18n/build_utf8_validator_tables.cc'
],
},
],
}],
['OS == "win" and target_arch=="ia32"', {
'targets': [
# The base_win64 target here allows us to use base for Win64 targets
# (the normal build is 32 bits).
{
'target_name': 'base_win64',
'type': '<(component)',
'variables': {
'base_target': 1,
},
'dependencies': [
'base_static_win64',
'allocator/allocator.gyp:allocator_extension_thunks_win64',
'../third_party/modp_b64/modp_b64.gyp:modp_b64_win64',
'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64',
'trace_event/etw_manifest/etw_manifest.gyp:etw_manifest',
],
# TODO(gregoryd): direct_dependent_settings should be shared with the
# 32-bit target, but it doesn't work due to a bug in gyp
'direct_dependent_settings': {
'include_dirs': [
'..',
],
},
'defines': [
'BASE_WIN64',
'<@(nacl_win64_defines)',
],
'configurations': {
'Common_Base': {
'msvs_target_platform': 'x64',
},
},
'conditions': [
['component == "shared_library"', {
'sources!': [
'debug/debug_on_start_win.cc',
],
}],
],
# Specify delayload for base_win64.dll.
'msvs_settings': {
'VCLinkerTool': {
'DelayLoadDLLs': [
'cfgmgr32.dll',
'powrprof.dll',
'setupapi.dll',
],
'AdditionalDependencies': [
'cfgmgr32.lib',
'powrprof.lib',
'setupapi.lib',
],
},
},
# Specify delayload for components that link with base_win64.lib.
'all_dependent_settings': {
'msvs_settings': {
'VCLinkerTool': {
'DelayLoadDLLs': [
'cfgmgr32.dll',
'powrprof.dll',
'setupapi.dll',
],
'AdditionalDependencies': [
'cfgmgr32.lib',
'powrprof.lib',
'setupapi.lib',
],
},
},
},
# TODO(rvargas): Bug 78117. Remove this.
'msvs_disabled_warnings': [
4244,
4996,
4267,
],
'sources': [
'auto_reset.h',
'linux_util.cc',
'linux_util.h',
'md5.cc',
'md5.h',
'message_loop/message_pump_libevent.cc',
'message_loop/message_pump_libevent.h',
'metrics/field_trial.cc',
'metrics/field_trial.h',
'posix/file_descriptor_shuffle.cc',
'posix/file_descriptor_shuffle.h',
'sync_socket.h',
'sync_socket_posix.cc',
'sync_socket_win.cc',
'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc',
'third_party/xdg_user_dirs/xdg_user_dir_lookup.h',
],
},
{
'target_name': 'base_i18n_nacl_win64',
'type': '<(component)',
# TODO(gregoryd): direct_dependent_settings should be shared with the
# 32-bit target, but it doesn't work due to a bug in gyp
'direct_dependent_settings': {
'include_dirs': [
'..',
],
},
'defines': [
'<@(nacl_win64_defines)',
'BASE_I18N_IMPLEMENTATION',
],
'include_dirs': [
'..',
],
'sources': [
'i18n/icu_util_nacl_win64.cc',
],
'configurations': {
'Common_Base': {
'msvs_target_platform': 'x64',
},
},
},
{
# TODO(rvargas): Remove this when gyp finally supports a clean model.
# See bug 36232.
'target_name': 'base_static_win64',
'type': 'static_library',
'sources': [
'base_switches.cc',
'base_switches.h',
'win/pe_image.cc',
'win/pe_image.h',
],
'sources!': [
# base64.cc depends on modp_b64.
'base64.cc',
],
'include_dirs': [
'..',
],
'configurations': {
'Common_Base': {
'msvs_target_platform': 'x64',
},
},
'defines': [
'<@(nacl_win64_defines)',
],
# TODO(rvargas): Bug 78117. Remove this.
'msvs_disabled_warnings': [
4244,
],
},
],
}],
['OS == "win" and target_arch=="x64"', {
'targets': [
{
'target_name': 'base_profiler_test_support_library',
# Must be a shared library so that it can be unloaded during testing.
'type': 'shared_library',
'include_dirs': [
'..',
],
'sources': [
'profiler/test_support_library.cc',
],
},
]
}],
['os_posix==1 and OS!="mac" and OS!="ios"', {
'targets': [
{
'target_name': 'symbolize',
'type': 'static_library',
'toolsets': ['host', 'target'],
'variables': {
'chromium_code': 0,
},
'conditions': [
['OS == "solaris"', {
'include_dirs': [
'/usr/gnu/include',
'/usr/gnu/include/libelf',
],
},],
],
'cflags': [
'-Wno-sign-compare',
],
'cflags!': [
'-Wextra',
],
'defines': [
'GLOG_BUILD_CONFIG_INCLUDE="build/build_config.h"',
],
'sources': [
'third_party/symbolize/config.h',
'third_party/symbolize/demangle.cc',
'third_party/symbolize/demangle.h',
'third_party/symbolize/glog/logging.h',
'third_party/symbolize/glog/raw_logging.h',
'third_party/symbolize/symbolize.cc',
'third_party/symbolize/symbolize.h',
'third_party/symbolize/utilities.h',
],
'include_dirs': [
'..',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
{
'target_name': 'xdg_mime',
'type': 'static_library',
'toolsets': ['host', 'target'],
'variables': {
'chromium_code': 0,
},
'cflags!': [
'-Wextra',
],
'sources': [
'third_party/xdg_mime/xdgmime.c',
'third_party/xdg_mime/xdgmime.h',
'third_party/xdg_mime/xdgmimealias.c',
'third_party/xdg_mime/xdgmimealias.h',
'third_party/xdg_mime/xdgmimecache.c',
'third_party/xdg_mime/xdgmimecache.h',
'third_party/xdg_mime/xdgmimeglob.c',
'third_party/xdg_mime/xdgmimeglob.h',
'third_party/xdg_mime/xdgmimeicon.c',
'third_party/xdg_mime/xdgmimeicon.h',
'third_party/xdg_mime/xdgmimeint.c',
'third_party/xdg_mime/xdgmimeint.h',
'third_party/xdg_mime/xdgmimemagic.c',
'third_party/xdg_mime/xdgmimemagic.h',
'third_party/xdg_mime/xdgmimeparent.c',
'third_party/xdg_mime/xdgmimeparent.h',
],
'includes': [
'../build/android/increase_size_for_speed.gypi',
],
},
],
}],
['OS == "linux"', {
'targets': [
{
'target_name': 'malloc_wrapper',
'type': 'shared_library',
'dependencies': [
'base',
],
'sources': [
'test/malloc_wrapper.cc',
],
}
],
}],
['OS == "android"', {
'targets': [
{
# GN: //base:base_jni_headers
'target_name': 'base_jni_headers',
'type': 'none',
'sources': [
'android/java/src/org/chromium/base/ApkAssets.java',
'android/java/src/org/chromium/base/ApplicationStatus.java',
'android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java',
'android/java/src/org/chromium/base/BuildInfo.java',
'android/java/src/org/chromium/base/CommandLine.java',
'android/java/src/org/chromium/base/ContentUriUtils.java',
'android/java/src/org/chromium/base/ContextUtils.java',
'android/java/src/org/chromium/base/CpuFeatures.java',
'android/java/src/org/chromium/base/EventLog.java',
'android/java/src/org/chromium/base/FieldTrialList.java',
'android/java/src/org/chromium/base/ImportantFileWriterAndroid.java',
'android/java/src/org/chromium/base/JNIUtils.java',
'android/java/src/org/chromium/base/JavaHandlerThread.java',
'android/java/src/org/chromium/base/LocaleUtils.java',
'android/java/src/org/chromium/base/MemoryPressureListener.java',
'android/java/src/org/chromium/base/PathService.java',
'android/java/src/org/chromium/base/PathUtils.java',
'android/java/src/org/chromium/base/PowerMonitor.java',
'android/java/src/org/chromium/base/SysUtils.java',
'android/java/src/org/chromium/base/SystemMessageHandler.java',
'android/java/src/org/chromium/base/ThreadUtils.java',
'android/java/src/org/chromium/base/TraceEvent.java',
'android/java/src/org/chromium/base/library_loader/LibraryLoader.java',
'android/java/src/org/chromium/base/metrics/RecordHistogram.java',
'android/java/src/org/chromium/base/metrics/RecordUserAction.java',
],
'variables': {
'jni_gen_package': 'base',
},
'dependencies': [
'android_runtime_jni_headers',
],
'includes': [ '../build/jni_generator.gypi' ],
},
{
# GN: //base:android_runtime_jni_headers
'target_name': 'android_runtime_jni_headers',
'type': 'none',
'variables': {
'jni_gen_package': 'base',
'input_java_class': 'java/lang/Runtime.class',
},
'includes': [ '../build/jar_file_jni_generator.gypi' ],
},
{
# GN: //base:base_unittests_jni_headers
'target_name': 'base_unittests_jni_headers',
'type': 'none',
'sources': [
'test/android/java/src/org/chromium/base/ContentUriTestUtils.java',
'test/android/java/src/org/chromium/base/TestUiThread.java',
],
'variables': {
'jni_gen_package': 'base',
},
'includes': [ '../build/jni_generator.gypi' ],
},
{
# GN: //base:base_native_libraries_gen
'target_name': 'base_native_libraries_gen',
'type': 'none',
'sources': [
'android/java/templates/NativeLibraries.template',
],
'variables': {
'package_name': 'org/chromium/base/library_loader',
'template_deps': [],
},
'includes': [ '../build/android/java_cpp_template.gypi' ],
},
{
# GN: //base:base_multidex_gen
'target_name': 'base_multidex_gen',
'type': 'none',
'sources': [
'android/java/templates/ChromiumMultiDex.template',
],
'variables': {
'package_name': 'org/chromium/base/multidex',
'template_deps': [],
'additional_gcc_preprocess_options': [
'--defines', 'MULTIDEX_CONFIGURATION_<(CONFIGURATION_NAME)',
],
},
'includes': ['../build/android/java_cpp_template.gypi'],
},
{
# GN: //base:base_android_java_enums_srcjar
'target_name': 'base_java_library_process_type',
'type': 'none',
'variables': {
'source_file': 'android/library_loader/library_loader_hooks.h',
},
'includes': [ '../build/android/java_cpp_enum.gypi' ],
},
{
# GN: //base:base_java
'target_name': 'base_java',
'type': 'none',
'variables': {
'java_in_dir': 'android/java',
'jar_excluded_classes': [ '*/NativeLibraries.class' ],
},
'dependencies': [
'base_java_application_state',
'base_java_library_load_from_apk_status_codes',
'base_java_library_process_type',
'base_java_memory_pressure_level',
'base_multidex_gen',
'base_native_libraries_gen',
'../third_party/android_tools/android_tools.gyp:android_support_multidex_javalib',
'../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib',
],
'includes': [ '../build/java.gypi' ],
},
{
# GN: //base:base_java_unittest_support
'target_name': 'base_java_unittest_support',
'type': 'none',
'dependencies': [
'base_java',
],
'variables': {
'java_in_dir': '../base/test/android/java',
},
'includes': [ '../build/java.gypi' ],
},
{
# GN: //base:base_android_java_enums_srcjar
'target_name': 'base_java_application_state',
'type': 'none',
'variables': {
'source_file': 'android/application_status_listener.h',
},
'includes': [ '../build/android/java_cpp_enum.gypi' ],
},
{
# GN: //base:base_android_java_enums_srcjar
'target_name': 'base_java_library_load_from_apk_status_codes',
'type': 'none',
'variables': {
'source_file': 'android/library_loader/library_load_from_apk_status_codes.h'
},
'includes': [ '../build/android/java_cpp_enum.gypi' ],
},
{
# GN: //base:base_android_java_enums_srcjar
'target_name': 'base_java_memory_pressure_level',
'type': 'none',
'variables': {
'source_file': 'memory/memory_pressure_listener.h',
},
'includes': [ '../build/android/java_cpp_enum.gypi' ],
},
{
# GN: //base:base_java_test_support
'target_name': 'base_java_test_support',
'type': 'none',
'dependencies': [
'base_java',
'../testing/android/on_device_instrumentation.gyp:reporter_java',
],
'variables': {
'java_in_dir': '../base/test/android/javatests',
},
'includes': [ '../build/java.gypi' ],
},
{
# TODO(jbudorick): Remove this once we roll to robolectric 3.0 and pull
# in the multidex shadow library. crbug.com/522043
# GN: //base:base_junit_test_support
'target_name': 'base_junit_test_support',
'type': 'none',
'dependencies': [
'../testing/android/junit/junit_test.gyp:junit_test_support',
'../third_party/android_tools/android_tools.gyp:android_support_multidex_javalib',
],
'variables': {
'src_paths': [
'../base/test/android/junit/',
],
},
'includes': [ '../build/host_jar.gypi' ]
},
{
# GN: //base:base_junit_tests
'target_name': 'base_junit_tests',
'type': 'none',
'dependencies': [
'base_java',
'base_java_test_support',
'base_junit_test_support',
'../testing/android/junit/junit_test.gyp:junit_test_support',
],
'variables': {
'main_class': 'org.chromium.testing.local.JunitTestMain',
'src_paths': [
'../base/android/junit/',
],
},
'includes': [ '../build/host_jar.gypi' ],
},
{
# GN: //base:base_javatests
'target_name': 'base_javatests',
'type': 'none',
'dependencies': [
'base_java',
'base_java_test_support',
],
'variables': {
'java_in_dir': '../base/android/javatests',
},
'includes': [ '../build/java.gypi' ],
},
{
# GN: //base/android/linker:chromium_android_linker
'target_name': 'chromium_android_linker',
'type': 'shared_library',
'sources': [
'android/linker/android_dlext.h',
'android/linker/legacy_linker_jni.cc',
'android/linker/legacy_linker_jni.h',
'android/linker/linker_jni.cc',
'android/linker/linker_jni.h',
'android/linker/modern_linker_jni.cc',
'android/linker/modern_linker_jni.h',
],
# The crazy linker is never instrumented.
'cflags!': [
'-finstrument-functions',
],
'dependencies': [
# The NDK contains the crazy_linker here:
# '<(android_ndk_root)/crazy_linker.gyp:crazy_linker'
# However, we use our own fork. See bug 384700.
'../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker',
],
},
{
# GN: //base:base_perftests_apk
'target_name': 'base_perftests_apk',
'type': 'none',
'dependencies': [
'base_perftests',
],
'variables': {
'test_suite_name': 'base_perftests',
},
'includes': [ '../build/apk_test.gypi' ],
},
{
# GN: //base:base_unittests_apk
'target_name': 'base_unittests_apk',
'type': 'none',
'dependencies': [
'base_java',
'base_unittests',
],
'variables': {
'test_suite_name': 'base_unittests',
'isolate_file': 'base_unittests.isolate',
},
'includes': [ '../build/apk_test.gypi' ],
},
],
'conditions': [
['test_isolation_mode != "noop"',
{
'targets': [
{
'target_name': 'base_unittests_apk_run',
'type': 'none',
'dependencies': [
'base_unittests_apk',
],
'includes': [
'../build/isolate.gypi',
],
'sources': [
'base_unittests_apk.isolate',
],
},
]
}
],
],
}],
['OS == "win"', {
'targets': [
{
# Target to manually rebuild pe_image_test.dll which is checked into
# base/test/data/pe_image.
'target_name': 'pe_image_test',
'type': 'shared_library',
'sources': [
'win/pe_image_test.cc',
],
'msvs_settings': {
'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
'DelayLoadDLLs': [
'cfgmgr32.dll',
'shell32.dll',
],
'AdditionalDependencies': [
'cfgmgr32.lib',
'shell32.lib',
],
},
},
},
],
}],
['test_isolation_mode != "noop"', {
'targets': [
{
'target_name': 'base_unittests_run',
'type': 'none',
'dependencies': [
'base_unittests',
],
'includes': [
'../build/isolate.gypi',
],
'sources': [
'base_unittests.isolate',
],
},
],
}],
],
}
| {'variables': {'chromium_code': 1}, 'includes': ['../build/win_precompile.gypi', 'base.gypi'], 'targets': [{'target_name': 'base', 'type': '<(component)', 'toolsets': ['host', 'target'], 'variables': {'base_target': 1, 'enable_wexit_time_destructors': 1, 'optimize': 'max'}, 'dependencies': ['base_static', 'allocator/allocator.gyp:allocator_extension_thunks', '../testing/gtest.gyp:gtest_prod', '../third_party/modp_b64/modp_b64.gyp:modp_b64', 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations'], 'direct_dependent_settings': {'include_dirs': ['..']}, 'conditions': [['desktop_linux == 1 or chromeos == 1', {'conditions': [['chromeos==1', {'sources/': [['include', '_chromeos\\.cc$']]}]], 'dependencies': ['symbolize', 'xdg_mime'], 'defines': ['USE_SYMBOLIZE']}, {'sources/': [['exclude', '/xdg_user_dirs/'], ['exclude', '_nss\\.cc$']]}], ['use_glib==1', {'dependencies': ['../build/linux/system.gyp:glib'], 'export_dependent_settings': ['../build/linux/system.gyp:glib']}], ['OS == "android" and _toolset == "host"', {'type': 'static_library', 'conditions': [['host_os == "mac"', {'sources/': [['exclude', '^native_library_linux\\.cc$'], ['exclude', '^process_util_linux\\.cc$'], ['exclude', '^sys_info_linux\\.cc$'], ['exclude', '^sys_string_conversions_linux\\.cc$'], ['exclude', '^worker_pool_linux\\.cc$']]}]]}], ['OS == "android" and _toolset == "target"', {'dependencies': ['base_java', 'base_jni_headers', '../build/android/ndk.gyp:cpu_features', '../third_party/ashmem/ashmem.gyp:ashmem'], 'link_settings': {'libraries': ['-llog']}, 'sources!': ['debug/stack_trace_posix.cc']}], ['os_bsd==1', {'include_dirs': ['/usr/local/include'], 'link_settings': {'libraries': ['-L/usr/local/lib -lexecinfo']}}], ['OS == "linux"', {'link_settings': {'libraries': ['-lrt', '-ldl']}, 'conditions': [['use_allocator!="tcmalloc"', {'defines': ['NO_TCMALLOC'], 'direct_dependent_settings': {'defines': ['NO_TCMALLOC']}}]]}], ['OS == "win"', {'msvs_settings': {'VCLinkerTool': {'DelayLoadDLLs': ['cfgmgr32.dll', 'powrprof.dll', 'setupapi.dll'], 'AdditionalDependencies': ['cfgmgr32.lib', 'powrprof.lib', 'setupapi.lib']}}, 'all_dependent_settings': {'msvs_settings': {'VCLinkerTool': {'DelayLoadDLLs': ['cfgmgr32.dll', 'powrprof.dll', 'setupapi.dll'], 'AdditionalDependencies': ['cfgmgr32.lib', 'powrprof.lib', 'setupapi.lib']}}}, 'copies': [{'destination': '<(PRODUCT_DIR)/', 'files': ['../build/win/dbghelp_xp/dbghelp.dll']}], 'dependencies': ['trace_event/etw_manifest/etw_manifest.gyp:etw_manifest']}], ['OS == "mac" or (OS == "ios" and _toolset == "host")', {'link_settings': {'libraries': ['$(SDKROOT)/System/Library/Frameworks/AppKit.framework', '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework', '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', '$(SDKROOT)/System/Library/Frameworks/Security.framework']}}], ['OS == "ios" and _toolset != "host"', {'link_settings': {'libraries': ['$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', '$(SDKROOT)/System/Library/Frameworks/CoreText.framework', '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', '$(SDKROOT)/System/Library/Frameworks/UIKit.framework']}}], ['OS != "win" and (OS != "ios" or _toolset == "host")', {'dependencies': ['../third_party/libevent/libevent.gyp:libevent']}], ['component=="shared_library"', {'conditions': [['OS=="win"', {'sources!': ['debug/debug_on_start_win.cc']}]]}], ['OS=="ios"', {'sources!': ['sync_socket.h', 'sync_socket_posix.cc']}]], 'sources': ['auto_reset.h', 'linux_util.cc', 'linux_util.h', 'message_loop/message_pump_android.cc', 'message_loop/message_pump_android.h', 'message_loop/message_pump_glib.cc', 'message_loop/message_pump_glib.h', 'message_loop/message_pump_io_ios.cc', 'message_loop/message_pump_io_ios.h', 'message_loop/message_pump_libevent.cc', 'message_loop/message_pump_libevent.h', 'message_loop/message_pump_mac.h', 'message_loop/message_pump_mac.mm', 'metrics/field_trial.cc', 'metrics/field_trial.h', 'posix/file_descriptor_shuffle.cc', 'posix/file_descriptor_shuffle.h', 'sync_socket.h', 'sync_socket_posix.cc', 'sync_socket_win.cc', 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h'], 'includes': ['../build/android/increase_size_for_speed.gypi']}, {'target_name': 'base_i18n', 'type': '<(component)', 'variables': {'enable_wexit_time_destructors': 1, 'optimize': 'max', 'base_i18n_target': 1}, 'dependencies': ['base', 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc'], 'conditions': [['OS == "win"', {'msvs_disabled_warnings': [4267]}], ['icu_use_data_file_flag==1', {'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE']}, {'conditions': [['OS=="win"', {'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_SHARED']}, {'defines': ['ICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_STATIC']}]]}], ['OS == "ios"', {'toolsets': ['host', 'target']}]], 'export_dependent_settings': ['base', '../third_party/icu/icu.gyp:icuuc', '../third_party/icu/icu.gyp:icui18n'], 'includes': ['../build/android/increase_size_for_speed.gypi']}, {'target_name': 'base_message_loop_tests', 'type': 'static_library', 'dependencies': ['base', '../testing/gtest.gyp:gtest'], 'sources': ['message_loop/message_loop_test.cc', 'message_loop/message_loop_test.h']}, {'target_name': 'base_prefs', 'type': '<(component)', 'variables': {'enable_wexit_time_destructors': 1, 'optimize': 'max'}, 'dependencies': ['base'], 'export_dependent_settings': ['base'], 'defines': ['BASE_PREFS_IMPLEMENTATION'], 'sources': ['prefs/base_prefs_export.h', 'prefs/default_pref_store.cc', 'prefs/default_pref_store.h', 'prefs/json_pref_store.cc', 'prefs/json_pref_store.h', 'prefs/overlay_user_pref_store.cc', 'prefs/overlay_user_pref_store.h', 'prefs/persistent_pref_store.h', 'prefs/pref_change_registrar.cc', 'prefs/pref_change_registrar.h', 'prefs/pref_filter.h', 'prefs/pref_member.cc', 'prefs/pref_member.h', 'prefs/pref_notifier.h', 'prefs/pref_notifier_impl.cc', 'prefs/pref_notifier_impl.h', 'prefs/pref_observer.h', 'prefs/pref_registry.cc', 'prefs/pref_registry.h', 'prefs/pref_registry_simple.cc', 'prefs/pref_registry_simple.h', 'prefs/pref_service.cc', 'prefs/pref_service.h', 'prefs/pref_service_factory.cc', 'prefs/pref_service_factory.h', 'prefs/pref_store.cc', 'prefs/pref_store.h', 'prefs/pref_value_map.cc', 'prefs/pref_value_map.h', 'prefs/pref_value_store.cc', 'prefs/pref_value_store.h', 'prefs/scoped_user_pref_update.cc', 'prefs/scoped_user_pref_update.h', 'prefs/value_map_pref_store.cc', 'prefs/value_map_pref_store.h', 'prefs/writeable_pref_store.h'], 'includes': ['../build/android/increase_size_for_speed.gypi']}, {'target_name': 'base_prefs_test_support', 'type': 'static_library', 'dependencies': ['base', 'base_prefs', '../testing/gmock.gyp:gmock'], 'sources': ['prefs/mock_pref_change_callback.cc', 'prefs/pref_store_observer_mock.cc', 'prefs/pref_store_observer_mock.h', 'prefs/testing_pref_service.cc', 'prefs/testing_pref_service.h', 'prefs/testing_pref_store.cc', 'prefs/testing_pref_store.h']}, {'target_name': 'base_static', 'type': 'static_library', 'variables': {'enable_wexit_time_destructors': 1, 'optimize': 'max'}, 'toolsets': ['host', 'target'], 'sources': ['base_switches.cc', 'base_switches.h', 'win/pe_image.cc', 'win/pe_image.h'], 'include_dirs': ['..'], 'includes': ['../build/android/increase_size_for_speed.gypi']}, {'target_name': 'run_all_unittests', 'type': 'static_library', 'dependencies': ['test_support_base'], 'sources': ['test/run_all_unittests.cc']}, {'target_name': 'base_unittests', 'type': '<(gtest_target_type)', 'sources': ['android/application_status_listener_unittest.cc', 'android/content_uri_utils_unittest.cc', 'android/jni_android_unittest.cc', 'android/jni_array_unittest.cc', 'android/jni_string_unittest.cc', 'android/library_loader/library_prefetcher_unittest.cc', 'android/path_utils_unittest.cc', 'android/scoped_java_ref_unittest.cc', 'android/sys_utils_unittest.cc', 'at_exit_unittest.cc', 'atomicops_unittest.cc', 'barrier_closure_unittest.cc', 'base64_unittest.cc', 'base64url_unittest.cc', 'big_endian_unittest.cc', 'bind_unittest.cc', 'bind_unittest.nc', 'bits_unittest.cc', 'build_time_unittest.cc', 'callback_helpers_unittest.cc', 'callback_list_unittest.cc', 'callback_list_unittest.nc', 'callback_unittest.cc', 'callback_unittest.nc', 'cancelable_callback_unittest.cc', 'command_line_unittest.cc', 'containers/adapters_unittest.cc', 'containers/hash_tables_unittest.cc', 'containers/linked_list_unittest.cc', 'containers/mru_cache_unittest.cc', 'containers/scoped_ptr_hash_map_unittest.cc', 'containers/small_map_unittest.cc', 'containers/stack_container_unittest.cc', 'cpu_unittest.cc', 'debug/crash_logging_unittest.cc', 'debug/debugger_unittest.cc', 'debug/leak_tracker_unittest.cc', 'debug/proc_maps_linux_unittest.cc', 'debug/stack_trace_unittest.cc', 'debug/task_annotator_unittest.cc', 'deferred_sequenced_task_runner_unittest.cc', 'environment_unittest.cc', 'feature_list_unittest.cc', 'file_version_info_unittest.cc', 'files/dir_reader_posix_unittest.cc', 'files/file_path_unittest.cc', 'files/file_path_watcher_unittest.cc', 'files/file_proxy_unittest.cc', 'files/file_unittest.cc', 'files/file_util_proxy_unittest.cc', 'files/file_util_unittest.cc', 'files/important_file_writer_unittest.cc', 'files/memory_mapped_file_unittest.cc', 'files/scoped_temp_dir_unittest.cc', 'gmock_unittest.cc', 'guid_unittest.cc', 'hash_unittest.cc', 'i18n/break_iterator_unittest.cc', 'i18n/case_conversion_unittest.cc', 'i18n/char_iterator_unittest.cc', 'i18n/file_util_icu_unittest.cc', 'i18n/icu_string_conversions_unittest.cc', 'i18n/message_formatter_unittest.cc', 'i18n/number_formatting_unittest.cc', 'i18n/rtl_unittest.cc', 'i18n/streaming_utf8_validator_unittest.cc', 'i18n/string_search_unittest.cc', 'i18n/time_formatting_unittest.cc', 'i18n/timezone_unittest.cc', 'id_map_unittest.cc', 'ios/crb_protocol_observers_unittest.mm', 'ios/device_util_unittest.mm', 'ios/weak_nsobject_unittest.mm', 'json/json_parser_unittest.cc', 'json/json_reader_unittest.cc', 'json/json_value_converter_unittest.cc', 'json/json_value_serializer_unittest.cc', 'json/json_writer_unittest.cc', 'json/string_escape_unittest.cc', 'lazy_instance_unittest.cc', 'logging_unittest.cc', 'mac/bind_objc_block_unittest.mm', 'mac/call_with_eh_frame_unittest.mm', 'mac/dispatch_source_mach_unittest.cc', 'mac/foundation_util_unittest.mm', 'mac/libdispatch_task_runner_unittest.cc', 'mac/mac_util_unittest.mm', 'mac/objc_property_releaser_unittest.mm', 'mac/scoped_nsobject_unittest.mm', 'mac/scoped_objc_class_swizzler_unittest.mm', 'mac/scoped_sending_event_unittest.mm', 'md5_unittest.cc', 'memory/aligned_memory_unittest.cc', 'memory/discardable_shared_memory_unittest.cc', 'memory/linked_ptr_unittest.cc', 'memory/memory_pressure_listener_unittest.cc', 'memory/memory_pressure_monitor_chromeos_unittest.cc', 'memory/memory_pressure_monitor_mac_unittest.cc', 'memory/memory_pressure_monitor_win_unittest.cc', 'memory/ref_counted_memory_unittest.cc', 'memory/ref_counted_unittest.cc', 'memory/scoped_ptr_unittest.cc', 'memory/scoped_ptr_unittest.nc', 'memory/scoped_vector_unittest.cc', 'memory/shared_memory_unittest.cc', 'memory/shared_memory_mac_unittest.cc', 'memory/singleton_unittest.cc', 'memory/weak_ptr_unittest.cc', 'memory/weak_ptr_unittest.nc', 'message_loop/message_loop_task_runner_unittest.cc', 'message_loop/message_loop_unittest.cc', 'message_loop/message_pump_glib_unittest.cc', 'message_loop/message_pump_io_ios_unittest.cc', 'message_loop/message_pump_libevent_unittest.cc', 'metrics/bucket_ranges_unittest.cc', 'metrics/field_trial_unittest.cc', 'metrics/histogram_base_unittest.cc', 'metrics/histogram_delta_serialization_unittest.cc', 'metrics/histogram_macros_unittest.cc', 'metrics/histogram_snapshot_manager_unittest.cc', 'metrics/histogram_unittest.cc', 'metrics/metrics_hashes_unittest.cc', 'metrics/sample_map_unittest.cc', 'metrics/sample_vector_unittest.cc', 'metrics/sparse_histogram_unittest.cc', 'metrics/statistics_recorder_unittest.cc', 'native_library_unittest.cc', 'numerics/safe_numerics_unittest.cc', 'observer_list_unittest.cc', 'os_compat_android_unittest.cc', 'path_service_unittest.cc', 'pickle_unittest.cc', 'posix/file_descriptor_shuffle_unittest.cc', 'posix/unix_domain_socket_linux_unittest.cc', 'power_monitor/power_monitor_unittest.cc', 'prefs/default_pref_store_unittest.cc', 'prefs/json_pref_store_unittest.cc', 'prefs/mock_pref_change_callback.h', 'prefs/overlay_user_pref_store_unittest.cc', 'prefs/pref_change_registrar_unittest.cc', 'prefs/pref_member_unittest.cc', 'prefs/pref_notifier_impl_unittest.cc', 'prefs/pref_service_unittest.cc', 'prefs/pref_value_map_unittest.cc', 'prefs/pref_value_store_unittest.cc', 'prefs/scoped_user_pref_update_unittest.cc', 'process/memory_unittest.cc', 'process/memory_unittest_mac.h', 'process/memory_unittest_mac.mm', 'process/process_metrics_unittest.cc', 'process/process_metrics_unittest_ios.cc', 'process/process_unittest.cc', 'process/process_util_unittest.cc', 'profiler/stack_sampling_profiler_unittest.cc', 'profiler/tracked_time_unittest.cc', 'rand_util_unittest.cc', 'scoped_clear_errno_unittest.cc', 'scoped_generic_unittest.cc', 'scoped_native_library_unittest.cc', 'security_unittest.cc', 'sequence_checker_unittest.cc', 'sha1_unittest.cc', 'stl_util_unittest.cc', 'strings/nullable_string16_unittest.cc', 'strings/pattern_unittest.cc', 'strings/safe_sprintf_unittest.cc', 'strings/string16_unittest.cc', 'strings/string_number_conversions_unittest.cc', 'strings/string_piece_unittest.cc', 'strings/string_split_unittest.cc', 'strings/string_tokenizer_unittest.cc', 'strings/string_util_unittest.cc', 'strings/stringize_macros_unittest.cc', 'strings/stringprintf_unittest.cc', 'strings/sys_string_conversions_mac_unittest.mm', 'strings/sys_string_conversions_unittest.cc', 'strings/utf_offset_string_conversions_unittest.cc', 'strings/utf_string_conversions_unittest.cc', 'supports_user_data_unittest.cc', 'sync_socket_unittest.cc', 'synchronization/cancellation_flag_unittest.cc', 'synchronization/condition_variable_unittest.cc', 'synchronization/lock_unittest.cc', 'synchronization/waitable_event_unittest.cc', 'synchronization/waitable_event_watcher_unittest.cc', 'sys_info_unittest.cc', 'system_monitor/system_monitor_unittest.cc', 'task/cancelable_task_tracker_unittest.cc', 'task_runner_util_unittest.cc', 'template_util_unittest.cc', 'test/histogram_tester_unittest.cc', 'test/test_pending_task_unittest.cc', 'test/test_reg_util_win_unittest.cc', 'test/trace_event_analyzer_unittest.cc', 'test/user_action_tester_unittest.cc', 'threading/non_thread_safe_unittest.cc', 'threading/platform_thread_unittest.cc', 'threading/sequenced_worker_pool_unittest.cc', 'threading/sequenced_task_runner_handle_unittest.cc', 'threading/simple_thread_unittest.cc', 'threading/thread_checker_unittest.cc', 'threading/thread_collision_warner_unittest.cc', 'threading/thread_id_name_manager_unittest.cc', 'threading/thread_local_storage_unittest.cc', 'threading/thread_local_unittest.cc', 'threading/thread_unittest.cc', 'threading/watchdog_unittest.cc', 'threading/worker_pool_posix_unittest.cc', 'threading/worker_pool_unittest.cc', 'time/pr_time_unittest.cc', 'time/time_unittest.cc', 'time/time_win_unittest.cc', 'timer/hi_res_timer_manager_unittest.cc', 'timer/mock_timer_unittest.cc', 'timer/timer_unittest.cc', 'tools_sanity_unittest.cc', 'tracked_objects_unittest.cc', 'tuple_unittest.cc', 'values_unittest.cc', 'version_unittest.cc', 'vlog_unittest.cc', 'win/dllmain.cc', 'win/enum_variant_unittest.cc', 'win/event_trace_consumer_unittest.cc', 'win/event_trace_controller_unittest.cc', 'win/event_trace_provider_unittest.cc', 'win/i18n_unittest.cc', 'win/iunknown_impl_unittest.cc', 'win/message_window_unittest.cc', 'win/object_watcher_unittest.cc', 'win/pe_image_unittest.cc', 'win/registry_unittest.cc', 'win/scoped_bstr_unittest.cc', 'win/scoped_comptr_unittest.cc', 'win/scoped_handle_unittest.cc', 'win/scoped_process_information_unittest.cc', 'win/scoped_variant_unittest.cc', 'win/shortcut_unittest.cc', 'win/startup_information_unittest.cc', 'win/win_util_unittest.cc', 'win/wrapped_window_proc_unittest.cc', '<@(trace_event_test_sources)'], 'dependencies': ['base', 'base_i18n', 'base_message_loop_tests', 'base_prefs', 'base_prefs_test_support', 'base_static', 'run_all_unittests', 'test_support_base', 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations', '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', '../third_party/icu/icu.gyp:icui18n', '../third_party/icu/icu.gyp:icuuc'], 'includes': ['../build/nocompile.gypi'], 'variables': {'module_dir': 'base'}, 'conditions': [['OS == "android"', {'dependencies': ['android/jni_generator/jni_generator.gyp:jni_generator_tests', '../testing/android/native_test.gyp:native_test_native_code']}], ['OS == "ios" and _toolset != "host"', {'sources/': [['exclude', '^files/file_path_watcher_unittest\\.cc$'], ['exclude', '^memory/discardable_shared_memory_unittest\\.cc$'], ['exclude', '^memory/shared_memory_unittest\\.cc$'], ['exclude', '^process/memory_unittest'], ['exclude', '^process/process_unittest\\.cc$'], ['exclude', '^process/process_util_unittest\\.cc$'], ['include', '^process/process_util_unittest_ios\\.cc$'], ['exclude', '^message_loop/message_pump_libevent_unittest\\.cc$']], 'actions': [{'action_name': 'copy_test_data', 'variables': {'test_data_files': ['test/data'], 'test_data_prefix': 'base'}, 'includes': ['../build/copy_test_data_ios.gypi']}]}], ['desktop_linux == 1 or chromeos == 1', {'defines': ['USE_SYMBOLIZE'], 'sources!': ['file_version_info_unittest.cc'], 'conditions': [['desktop_linux==1', {'sources': ['nix/xdg_util_unittest.cc']}]]}], ['use_glib == 1', {'dependencies': ['../build/linux/system.gyp:glib']}, {'sources!': ['message_loop/message_pump_glib_unittest.cc']}], ['use_ozone == 1', {'sources!': ['message_loop/message_pump_glib_unittest.cc']}], ['OS == "linux"', {'dependencies': ['malloc_wrapper'], 'conditions': [['use_allocator!="none"', {'dependencies': ['allocator/allocator.gyp:allocator']}]]}], ['OS == "win" and target_arch == "x64"', {'sources': ['profiler/win32_stack_frame_unwinder_unittest.cc'], 'dependencies': ['base_profiler_test_support_library']}], ['OS == "win"', {'sources!': ['file_descriptor_shuffle_unittest.cc', 'files/dir_reader_posix_unittest.cc', 'message_loop/message_pump_libevent_unittest.cc', 'threading/worker_pool_posix_unittest.cc'], 'msvs_disabled_warnings': [4267], 'conditions': [['win_use_allocator_shim==1', {'dependencies': ['allocator/allocator.gyp:allocator']}], ['icu_use_data_file_flag==0', {'dependencies': ['../third_party/icu/icu.gyp:icudata']}]]}, {'dependencies': ['../third_party/libevent/libevent.gyp:libevent']}]], 'target_conditions': [['OS == "ios" and _toolset != "host"', {'sources/': [['include', '^mac/bind_objc_block_unittest\\.mm$'], ['include', '^mac/foundation_util_unittest\\.mm$'], ['include', '^mac/objc_property_releaser_unittest\\.mm$'], ['include', '^mac/scoped_nsobject_unittest\\.mm$'], ['include', '^sys_string_conversions_mac_unittest\\.mm$']]}], ['OS == "android"', {'sources/': [['include', '^debug/proc_maps_linux_unittest\\.cc$']]}], ['OS=="mac" or OS=="ios" or <(chromeos)==1 or <(chromecast)==1', {'defines': ['SYSTEM_NATIVE_UTF8']}], ['OS=="ios"', {'sources!': ['sync_socket_unittest.cc']}]]}, {'target_name': 'base_perftests', 'type': '<(gtest_target_type)', 'dependencies': ['base', 'test_support_base', '../testing/gtest.gyp:gtest'], 'sources': ['message_loop/message_pump_perftest.cc', 'test/run_all_unittests.cc', 'threading/thread_perftest.cc', '../testing/perf/perf_test.cc'], 'conditions': [['OS == "android"', {'dependencies': ['../testing/android/native_test.gyp:native_test_native_code']}]]}, {'target_name': 'base_i18n_perftests', 'type': '<(gtest_target_type)', 'dependencies': ['test_support_base', 'test_support_perf', '../testing/gtest.gyp:gtest', 'base_i18n', 'base'], 'sources': ['i18n/streaming_utf8_validator_perftest.cc']}, {'target_name': 'test_support_base', 'type': 'static_library', 'dependencies': ['base', 'base_static', 'base_i18n', '../testing/gmock.gyp:gmock', '../testing/gtest.gyp:gtest', '../third_party/icu/icu.gyp:icuuc', '../third_party/libxml/libxml.gyp:libxml', 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations'], 'export_dependent_settings': ['base'], 'conditions': [['os_posix==0', {'sources!': ['test/scoped_locale.cc', 'test/scoped_locale.h']}], ['os_bsd==1', {'sources!': ['test/test_file_util_linux.cc']}], ['OS == "android"', {'dependencies': ['base_unittests_jni_headers', 'base_java_unittest_support']}], ['OS == "ios"', {'toolsets': ['host', 'target']}]], 'sources': ['test/gtest_util.cc', 'test/gtest_util.h', 'test/gtest_xml_unittest_result_printer.cc', 'test/gtest_xml_unittest_result_printer.h', 'test/gtest_xml_util.cc', 'test/gtest_xml_util.h', 'test/histogram_tester.cc', 'test/histogram_tester.h', 'test/icu_test_util.cc', 'test/icu_test_util.h', 'test/ios/wait_util.h', 'test/ios/wait_util.mm', 'test/launcher/test_launcher.cc', 'test/launcher/test_launcher.h', 'test/launcher/test_result.cc', 'test/launcher/test_result.h', 'test/launcher/test_results_tracker.cc', 'test/launcher/test_results_tracker.h', 'test/launcher/unit_test_launcher.cc', 'test/launcher/unit_test_launcher.h', 'test/launcher/unit_test_launcher_ios.cc', 'test/mock_chrome_application_mac.h', 'test/mock_chrome_application_mac.mm', 'test/mock_devices_changed_observer.cc', 'test/mock_devices_changed_observer.h', 'test/mock_entropy_provider.cc', 'test/mock_entropy_provider.h', 'test/mock_log.cc', 'test/mock_log.h', 'test/multiprocess_test.cc', 'test/multiprocess_test.h', 'test/multiprocess_test_android.cc', 'test/null_task_runner.cc', 'test/null_task_runner.h', 'test/opaque_ref_counted.cc', 'test/opaque_ref_counted.h', 'test/perf_log.cc', 'test/perf_log.h', 'test/perf_test_suite.cc', 'test/perf_test_suite.h', 'test/perf_time_logger.cc', 'test/perf_time_logger.h', 'test/power_monitor_test_base.cc', 'test/power_monitor_test_base.h', 'test/scoped_locale.cc', 'test/scoped_locale.h', 'test/scoped_path_override.cc', 'test/scoped_path_override.h', 'test/sequenced_task_runner_test_template.cc', 'test/sequenced_task_runner_test_template.h', 'test/sequenced_worker_pool_owner.cc', 'test/sequenced_worker_pool_owner.h', 'test/simple_test_clock.cc', 'test/simple_test_clock.h', 'test/simple_test_tick_clock.cc', 'test/simple_test_tick_clock.h', 'test/task_runner_test_template.cc', 'test/task_runner_test_template.h', 'test/test_discardable_memory_allocator.cc', 'test/test_discardable_memory_allocator.h', 'test/test_file_util.cc', 'test/test_file_util.h', 'test/test_file_util_android.cc', 'test/test_file_util_linux.cc', 'test/test_file_util_mac.cc', 'test/test_file_util_posix.cc', 'test/test_file_util_win.cc', 'test/test_io_thread.cc', 'test/test_io_thread.h', 'test/test_listener_ios.h', 'test/test_listener_ios.mm', 'test/test_mock_time_task_runner.cc', 'test/test_mock_time_task_runner.h', 'test/test_pending_task.cc', 'test/test_pending_task.h', 'test/test_reg_util_win.cc', 'test/test_reg_util_win.h', 'test/test_shortcut_win.cc', 'test/test_shortcut_win.h', 'test/test_simple_task_runner.cc', 'test/test_simple_task_runner.h', 'test/test_suite.cc', 'test/test_suite.h', 'test/test_support_android.cc', 'test/test_support_android.h', 'test/test_support_ios.h', 'test/test_support_ios.mm', 'test/test_switches.cc', 'test/test_switches.h', 'test/test_timeouts.cc', 'test/test_timeouts.h', 'test/test_ui_thread_android.cc', 'test/test_ui_thread_android.h', 'test/thread_test_helper.cc', 'test/thread_test_helper.h', 'test/trace_event_analyzer.cc', 'test/trace_event_analyzer.h', 'test/trace_to_file.cc', 'test/trace_to_file.h', 'test/user_action_tester.cc', 'test/user_action_tester.h', 'test/values_test_util.cc', 'test/values_test_util.h'], 'target_conditions': [['OS == "ios"', {'sources/': [['include', '^test/test_file_util_mac\\.cc$']]}], ['OS == "ios" and _toolset == "target"', {'sources!': ['test/launcher/unit_test_launcher.cc']}], ['OS == "ios" and _toolset == "host"', {'sources!': ['test/launcher/unit_test_launcher_ios.cc', 'test/test_support_ios.h', 'test/test_support_ios.mm']}]]}, {'target_name': 'test_support_perf', 'type': 'static_library', 'dependencies': ['base', 'test_support_base', '../testing/gtest.gyp:gtest'], 'sources': ['test/run_all_perftests.cc'], 'direct_dependent_settings': {'defines': ['PERF_TEST']}}, {'target_name': 'test_launcher_nacl_nonsfi', 'conditions': [['disable_nacl==0 and disable_nacl_untrusted==0 and enable_nacl_nonsfi_test==1', {'type': 'static_library', 'sources': ['test/launcher/test_launcher_nacl_nonsfi.cc'], 'dependencies': ['test_support_base']}, {'type': 'none'}]]}], 'conditions': [['OS=="ios" and "<(GENERATOR)"=="ninja"', {'targets': [{'target_name': 'test_launcher', 'toolsets': ['host'], 'type': 'executable', 'dependencies': ['test_support_base'], 'sources': ['test/launcher/test_launcher_ios.cc']}]}], ['OS!="ios"', {'targets': [{'target_name': 'check_example', 'type': 'executable', 'sources': ['check_example.cc'], 'dependencies': ['base']}, {'target_name': 'build_utf8_validator_tables', 'type': 'executable', 'toolsets': ['host'], 'dependencies': ['base', '../third_party/icu/icu.gyp:icuuc'], 'sources': ['i18n/build_utf8_validator_tables.cc']}]}], ['OS == "win" and target_arch=="ia32"', {'targets': [{'target_name': 'base_win64', 'type': '<(component)', 'variables': {'base_target': 1}, 'dependencies': ['base_static_win64', 'allocator/allocator.gyp:allocator_extension_thunks_win64', '../third_party/modp_b64/modp_b64.gyp:modp_b64_win64', 'third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations_win64', 'trace_event/etw_manifest/etw_manifest.gyp:etw_manifest'], 'direct_dependent_settings': {'include_dirs': ['..']}, 'defines': ['BASE_WIN64', '<@(nacl_win64_defines)'], 'configurations': {'Common_Base': {'msvs_target_platform': 'x64'}}, 'conditions': [['component == "shared_library"', {'sources!': ['debug/debug_on_start_win.cc']}]], 'msvs_settings': {'VCLinkerTool': {'DelayLoadDLLs': ['cfgmgr32.dll', 'powrprof.dll', 'setupapi.dll'], 'AdditionalDependencies': ['cfgmgr32.lib', 'powrprof.lib', 'setupapi.lib']}}, 'all_dependent_settings': {'msvs_settings': {'VCLinkerTool': {'DelayLoadDLLs': ['cfgmgr32.dll', 'powrprof.dll', 'setupapi.dll'], 'AdditionalDependencies': ['cfgmgr32.lib', 'powrprof.lib', 'setupapi.lib']}}}, 'msvs_disabled_warnings': [4244, 4996, 4267], 'sources': ['auto_reset.h', 'linux_util.cc', 'linux_util.h', 'md5.cc', 'md5.h', 'message_loop/message_pump_libevent.cc', 'message_loop/message_pump_libevent.h', 'metrics/field_trial.cc', 'metrics/field_trial.h', 'posix/file_descriptor_shuffle.cc', 'posix/file_descriptor_shuffle.h', 'sync_socket.h', 'sync_socket_posix.cc', 'sync_socket_win.cc', 'third_party/xdg_user_dirs/xdg_user_dir_lookup.cc', 'third_party/xdg_user_dirs/xdg_user_dir_lookup.h']}, {'target_name': 'base_i18n_nacl_win64', 'type': '<(component)', 'direct_dependent_settings': {'include_dirs': ['..']}, 'defines': ['<@(nacl_win64_defines)', 'BASE_I18N_IMPLEMENTATION'], 'include_dirs': ['..'], 'sources': ['i18n/icu_util_nacl_win64.cc'], 'configurations': {'Common_Base': {'msvs_target_platform': 'x64'}}}, {'target_name': 'base_static_win64', 'type': 'static_library', 'sources': ['base_switches.cc', 'base_switches.h', 'win/pe_image.cc', 'win/pe_image.h'], 'sources!': ['base64.cc'], 'include_dirs': ['..'], 'configurations': {'Common_Base': {'msvs_target_platform': 'x64'}}, 'defines': ['<@(nacl_win64_defines)'], 'msvs_disabled_warnings': [4244]}]}], ['OS == "win" and target_arch=="x64"', {'targets': [{'target_name': 'base_profiler_test_support_library', 'type': 'shared_library', 'include_dirs': ['..'], 'sources': ['profiler/test_support_library.cc']}]}], ['os_posix==1 and OS!="mac" and OS!="ios"', {'targets': [{'target_name': 'symbolize', 'type': 'static_library', 'toolsets': ['host', 'target'], 'variables': {'chromium_code': 0}, 'conditions': [['OS == "solaris"', {'include_dirs': ['/usr/gnu/include', '/usr/gnu/include/libelf']}]], 'cflags': ['-Wno-sign-compare'], 'cflags!': ['-Wextra'], 'defines': ['GLOG_BUILD_CONFIG_INCLUDE="build/build_config.h"'], 'sources': ['third_party/symbolize/config.h', 'third_party/symbolize/demangle.cc', 'third_party/symbolize/demangle.h', 'third_party/symbolize/glog/logging.h', 'third_party/symbolize/glog/raw_logging.h', 'third_party/symbolize/symbolize.cc', 'third_party/symbolize/symbolize.h', 'third_party/symbolize/utilities.h'], 'include_dirs': ['..'], 'includes': ['../build/android/increase_size_for_speed.gypi']}, {'target_name': 'xdg_mime', 'type': 'static_library', 'toolsets': ['host', 'target'], 'variables': {'chromium_code': 0}, 'cflags!': ['-Wextra'], 'sources': ['third_party/xdg_mime/xdgmime.c', 'third_party/xdg_mime/xdgmime.h', 'third_party/xdg_mime/xdgmimealias.c', 'third_party/xdg_mime/xdgmimealias.h', 'third_party/xdg_mime/xdgmimecache.c', 'third_party/xdg_mime/xdgmimecache.h', 'third_party/xdg_mime/xdgmimeglob.c', 'third_party/xdg_mime/xdgmimeglob.h', 'third_party/xdg_mime/xdgmimeicon.c', 'third_party/xdg_mime/xdgmimeicon.h', 'third_party/xdg_mime/xdgmimeint.c', 'third_party/xdg_mime/xdgmimeint.h', 'third_party/xdg_mime/xdgmimemagic.c', 'third_party/xdg_mime/xdgmimemagic.h', 'third_party/xdg_mime/xdgmimeparent.c', 'third_party/xdg_mime/xdgmimeparent.h'], 'includes': ['../build/android/increase_size_for_speed.gypi']}]}], ['OS == "linux"', {'targets': [{'target_name': 'malloc_wrapper', 'type': 'shared_library', 'dependencies': ['base'], 'sources': ['test/malloc_wrapper.cc']}]}], ['OS == "android"', {'targets': [{'target_name': 'base_jni_headers', 'type': 'none', 'sources': ['android/java/src/org/chromium/base/ApkAssets.java', 'android/java/src/org/chromium/base/ApplicationStatus.java', 'android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java', 'android/java/src/org/chromium/base/BuildInfo.java', 'android/java/src/org/chromium/base/CommandLine.java', 'android/java/src/org/chromium/base/ContentUriUtils.java', 'android/java/src/org/chromium/base/ContextUtils.java', 'android/java/src/org/chromium/base/CpuFeatures.java', 'android/java/src/org/chromium/base/EventLog.java', 'android/java/src/org/chromium/base/FieldTrialList.java', 'android/java/src/org/chromium/base/ImportantFileWriterAndroid.java', 'android/java/src/org/chromium/base/JNIUtils.java', 'android/java/src/org/chromium/base/JavaHandlerThread.java', 'android/java/src/org/chromium/base/LocaleUtils.java', 'android/java/src/org/chromium/base/MemoryPressureListener.java', 'android/java/src/org/chromium/base/PathService.java', 'android/java/src/org/chromium/base/PathUtils.java', 'android/java/src/org/chromium/base/PowerMonitor.java', 'android/java/src/org/chromium/base/SysUtils.java', 'android/java/src/org/chromium/base/SystemMessageHandler.java', 'android/java/src/org/chromium/base/ThreadUtils.java', 'android/java/src/org/chromium/base/TraceEvent.java', 'android/java/src/org/chromium/base/library_loader/LibraryLoader.java', 'android/java/src/org/chromium/base/metrics/RecordHistogram.java', 'android/java/src/org/chromium/base/metrics/RecordUserAction.java'], 'variables': {'jni_gen_package': 'base'}, 'dependencies': ['android_runtime_jni_headers'], 'includes': ['../build/jni_generator.gypi']}, {'target_name': 'android_runtime_jni_headers', 'type': 'none', 'variables': {'jni_gen_package': 'base', 'input_java_class': 'java/lang/Runtime.class'}, 'includes': ['../build/jar_file_jni_generator.gypi']}, {'target_name': 'base_unittests_jni_headers', 'type': 'none', 'sources': ['test/android/java/src/org/chromium/base/ContentUriTestUtils.java', 'test/android/java/src/org/chromium/base/TestUiThread.java'], 'variables': {'jni_gen_package': 'base'}, 'includes': ['../build/jni_generator.gypi']}, {'target_name': 'base_native_libraries_gen', 'type': 'none', 'sources': ['android/java/templates/NativeLibraries.template'], 'variables': {'package_name': 'org/chromium/base/library_loader', 'template_deps': []}, 'includes': ['../build/android/java_cpp_template.gypi']}, {'target_name': 'base_multidex_gen', 'type': 'none', 'sources': ['android/java/templates/ChromiumMultiDex.template'], 'variables': {'package_name': 'org/chromium/base/multidex', 'template_deps': [], 'additional_gcc_preprocess_options': ['--defines', 'MULTIDEX_CONFIGURATION_<(CONFIGURATION_NAME)']}, 'includes': ['../build/android/java_cpp_template.gypi']}, {'target_name': 'base_java_library_process_type', 'type': 'none', 'variables': {'source_file': 'android/library_loader/library_loader_hooks.h'}, 'includes': ['../build/android/java_cpp_enum.gypi']}, {'target_name': 'base_java', 'type': 'none', 'variables': {'java_in_dir': 'android/java', 'jar_excluded_classes': ['*/NativeLibraries.class']}, 'dependencies': ['base_java_application_state', 'base_java_library_load_from_apk_status_codes', 'base_java_library_process_type', 'base_java_memory_pressure_level', 'base_multidex_gen', 'base_native_libraries_gen', '../third_party/android_tools/android_tools.gyp:android_support_multidex_javalib', '../third_party/jsr-305/jsr-305.gyp:jsr_305_javalib'], 'includes': ['../build/java.gypi']}, {'target_name': 'base_java_unittest_support', 'type': 'none', 'dependencies': ['base_java'], 'variables': {'java_in_dir': '../base/test/android/java'}, 'includes': ['../build/java.gypi']}, {'target_name': 'base_java_application_state', 'type': 'none', 'variables': {'source_file': 'android/application_status_listener.h'}, 'includes': ['../build/android/java_cpp_enum.gypi']}, {'target_name': 'base_java_library_load_from_apk_status_codes', 'type': 'none', 'variables': {'source_file': 'android/library_loader/library_load_from_apk_status_codes.h'}, 'includes': ['../build/android/java_cpp_enum.gypi']}, {'target_name': 'base_java_memory_pressure_level', 'type': 'none', 'variables': {'source_file': 'memory/memory_pressure_listener.h'}, 'includes': ['../build/android/java_cpp_enum.gypi']}, {'target_name': 'base_java_test_support', 'type': 'none', 'dependencies': ['base_java', '../testing/android/on_device_instrumentation.gyp:reporter_java'], 'variables': {'java_in_dir': '../base/test/android/javatests'}, 'includes': ['../build/java.gypi']}, {'target_name': 'base_junit_test_support', 'type': 'none', 'dependencies': ['../testing/android/junit/junit_test.gyp:junit_test_support', '../third_party/android_tools/android_tools.gyp:android_support_multidex_javalib'], 'variables': {'src_paths': ['../base/test/android/junit/']}, 'includes': ['../build/host_jar.gypi']}, {'target_name': 'base_junit_tests', 'type': 'none', 'dependencies': ['base_java', 'base_java_test_support', 'base_junit_test_support', '../testing/android/junit/junit_test.gyp:junit_test_support'], 'variables': {'main_class': 'org.chromium.testing.local.JunitTestMain', 'src_paths': ['../base/android/junit/']}, 'includes': ['../build/host_jar.gypi']}, {'target_name': 'base_javatests', 'type': 'none', 'dependencies': ['base_java', 'base_java_test_support'], 'variables': {'java_in_dir': '../base/android/javatests'}, 'includes': ['../build/java.gypi']}, {'target_name': 'chromium_android_linker', 'type': 'shared_library', 'sources': ['android/linker/android_dlext.h', 'android/linker/legacy_linker_jni.cc', 'android/linker/legacy_linker_jni.h', 'android/linker/linker_jni.cc', 'android/linker/linker_jni.h', 'android/linker/modern_linker_jni.cc', 'android/linker/modern_linker_jni.h'], 'cflags!': ['-finstrument-functions'], 'dependencies': ['../third_party/android_crazy_linker/crazy_linker.gyp:crazy_linker']}, {'target_name': 'base_perftests_apk', 'type': 'none', 'dependencies': ['base_perftests'], 'variables': {'test_suite_name': 'base_perftests'}, 'includes': ['../build/apk_test.gypi']}, {'target_name': 'base_unittests_apk', 'type': 'none', 'dependencies': ['base_java', 'base_unittests'], 'variables': {'test_suite_name': 'base_unittests', 'isolate_file': 'base_unittests.isolate'}, 'includes': ['../build/apk_test.gypi']}], 'conditions': [['test_isolation_mode != "noop"', {'targets': [{'target_name': 'base_unittests_apk_run', 'type': 'none', 'dependencies': ['base_unittests_apk'], 'includes': ['../build/isolate.gypi'], 'sources': ['base_unittests_apk.isolate']}]}]]}], ['OS == "win"', {'targets': [{'target_name': 'pe_image_test', 'type': 'shared_library', 'sources': ['win/pe_image_test.cc'], 'msvs_settings': {'VCLinkerTool': {'SubSystem': '2', 'DelayLoadDLLs': ['cfgmgr32.dll', 'shell32.dll'], 'AdditionalDependencies': ['cfgmgr32.lib', 'shell32.lib']}}}]}], ['test_isolation_mode != "noop"', {'targets': [{'target_name': 'base_unittests_run', 'type': 'none', 'dependencies': ['base_unittests'], 'includes': ['../build/isolate.gypi'], 'sources': ['base_unittests.isolate']}]}]]} |
"""Define mixins to easily compose custom FilterDefinition classes."""
class TermsQueryMixin:
"""A mixin for filter definitions that need to apply term queries."""
def get_query_fragment(self, data):
"""Build the query fragments as term queries for each selected value."""
value_list = data.get(self.name)
# For terms filters, as the name implies, it's a simple terms fragment
return (
[{"key": self.name, "fragment": [{"terms": {self.term: value_list}}]}]
if value_list
else []
)
class ChoicesQueryMixin:
"""A mixin for filter definitions that need to apply predefined queries."""
def get_query_fragment(self, data):
"""Pick the hardcoded query fragment for each selected value."""
fragment_map = self.get_fragment_map()
return [
{"key": self.name, "fragment": fragment_map[value]}
for value in data.get(self.name, [])
]
class ChoicesAggsMixin:
"""A mixin for filter definitions that need to apply aggregations for predefined choices."""
# pylint: disable=unused-argument
def get_aggs_fragment(self, queries, *args, **kwargs):
"""
Build the aggregations as a set of filters, one for each possible value of the field.
"""
return {
# Create a custom aggregation for each possible choice for this filter
# eg `availability@coming_soon` & `availability@current` & `availability@open`
"{:s}@{:s}".format(self.name, choice_key): {
"filter": {
"bool": {
# Use all the query fragments from the queries *but* the one(s) that
# filter on the current filter: we manually add back the only one that
# is relevant to the current choice.
"must": choice_fragment
+ [
clause
for kf_pair in queries
for clause in kf_pair["fragment"]
if kf_pair["key"] is not self.name
]
}
}
}
for choice_key, choice_fragment in self.get_fragment_map().items()
}
class NestedChoicesAggsMixin:
"""
A mixin for filter definitions that are related to a nested field. The aggregation filter can
only be recomputed at the level of the parent because it should group all queries of fields
nested below the parent.
"""
# pylint: disable=unused-argument
def get_aggs_fragment(self, queries, data, parent, *args, **kwargs):
"""
Computing aggregations for a nested field is DIFFICULT because query fragments related to
nested fields are grouped under their common path. For example combined filters on
availability and languages would lead to a query like:
{
"query": {
"nested": {
"path": "course_runs",
"query": {
"bool": {
"must": [
{"range": {"course_runs.end": {"lte": "01-01-2019"}}},
{"terms": {"course_runs.languages": ["de", "en", fr"]}},
]
}
},
}
}
}
In this example, computing the facet count for the French filter, is done with the
following filter (excluding the filter on English and German so we only count French):
{
"query": {
"nested": {
"path": "course_runs",
"query": {
"bool": {
"must": [
{"range": {"course_runs.end": {"lte": "01-01-2019"}}},
{"terms": {"course_runs.languages": ["fr"]}},
]
}
},
}
}
}
This can only be built by calling the parent NestingWrapper with customized filter data.
"""
return {
# Create a custom aggregation for each possible choice for this filter
# eg `availability@coming_soon` & `availability@current` & `availability@open`
"{:s}@{:s}".format(self.name, choice_key): {
"filter": {
"bool": {
# Use all the query fragments from the queries (the nesting parent is
# responsible for excluding the queries related to nested fields so we
# have to manually add them, making sure to apply on the current field
# only the current choice.
"must": [
clause
for kf_pair in (
queries
+ parent.get_query_fragment(
# override data with only the current choice
{**data, self.name: [choice_key]}
)
)
for clause in kf_pair["fragment"]
]
}
}
}
for choice_key, choice_fragment in self.get_fragment_map().items()
}
| """Define mixins to easily compose custom FilterDefinition classes."""
class Termsquerymixin:
"""A mixin for filter definitions that need to apply term queries."""
def get_query_fragment(self, data):
"""Build the query fragments as term queries for each selected value."""
value_list = data.get(self.name)
return [{'key': self.name, 'fragment': [{'terms': {self.term: value_list}}]}] if value_list else []
class Choicesquerymixin:
"""A mixin for filter definitions that need to apply predefined queries."""
def get_query_fragment(self, data):
"""Pick the hardcoded query fragment for each selected value."""
fragment_map = self.get_fragment_map()
return [{'key': self.name, 'fragment': fragment_map[value]} for value in data.get(self.name, [])]
class Choicesaggsmixin:
"""A mixin for filter definitions that need to apply aggregations for predefined choices."""
def get_aggs_fragment(self, queries, *args, **kwargs):
"""
Build the aggregations as a set of filters, one for each possible value of the field.
"""
return {'{:s}@{:s}'.format(self.name, choice_key): {'filter': {'bool': {'must': choice_fragment + [clause for kf_pair in queries for clause in kf_pair['fragment'] if kf_pair['key'] is not self.name]}}} for (choice_key, choice_fragment) in self.get_fragment_map().items()}
class Nestedchoicesaggsmixin:
"""
A mixin for filter definitions that are related to a nested field. The aggregation filter can
only be recomputed at the level of the parent because it should group all queries of fields
nested below the parent.
"""
def get_aggs_fragment(self, queries, data, parent, *args, **kwargs):
"""
Computing aggregations for a nested field is DIFFICULT because query fragments related to
nested fields are grouped under their common path. For example combined filters on
availability and languages would lead to a query like:
{
"query": {
"nested": {
"path": "course_runs",
"query": {
"bool": {
"must": [
{"range": {"course_runs.end": {"lte": "01-01-2019"}}},
{"terms": {"course_runs.languages": ["de", "en", fr"]}},
]
}
},
}
}
}
In this example, computing the facet count for the French filter, is done with the
following filter (excluding the filter on English and German so we only count French):
{
"query": {
"nested": {
"path": "course_runs",
"query": {
"bool": {
"must": [
{"range": {"course_runs.end": {"lte": "01-01-2019"}}},
{"terms": {"course_runs.languages": ["fr"]}},
]
}
},
}
}
}
This can only be built by calling the parent NestingWrapper with customized filter data.
"""
return {'{:s}@{:s}'.format(self.name, choice_key): {'filter': {'bool': {'must': [clause for kf_pair in queries + parent.get_query_fragment({**data, self.name: [choice_key]}) for clause in kf_pair['fragment']]}}} for (choice_key, choice_fragment) in self.get_fragment_map().items()} |
# Look at the charactercreator_character table
# GET_CHARACTERS = """
# SELECT *
# FROM charactercreator_character;
# """
# How many total Characters are there? (302)
TOTAL_CHARACTERS = """
SELECT COUNT(*) as number_of_characters
FROM charactercreator_character;
"""
# How many of each specific subclass?
# TOTAL_SUBCLASS = """
# SELECT
# (SELECT COUNT(*) FROM charactercreator_necromancer) AS necros,
# (SELECT COUNT(*) FROM charactercreator_mage) AS mages,
# (SELECT COUNT(*) FROM charactercreator_thief) AS thiefs,
# (SELECT COUNT(*) FROM charactercreator_cleric) AS clerics,
# (SELECT COUNT(*) FROM charactercreator_fighter) AS fighters;
# """
CLASS = "SELECT COUNT(*) FROM charactercreator_"
# How many total Items? (174)
TOTAL_ITEMS = """
SELECT COUNT(item_id) as items
FROM armory_item;
"""
# How many of the Items are weapons? (37)
WEAPONS = """
SELECT COUNT(item_ptr_id)
FROM armory_weapon;
"""
# How many of the items are not weapons? (137)
NON_WEAPONS = """
SELECT COUNT(items.name)
FROM armory_item as items
WHERE items.item_id NOT IN(
SELECT armory_weapon.item_ptr_id
FROM armory_weapon);
"""
# How many Items does each character have? (Return first 20 rows)
CHARACTER_ITEMS = """
SELECT character.name as "character_name", COUNT(inventory.id) as "#_of_items"
FROM charactercreator_character AS character, charactercreator_character_inventory AS inventory
WHERE character.character_id = inventory.character_id
GROUP BY character.name
ORDER BY character.name
LIMIT 20;
"""
# How many Weapons does each character have? (Return first 20 rows)
CHARACTER_WEAPONS = """
SELECT character.name as "character_name", COUNT(weapon.item_ptr_id) as "#_of_weapons"
FROM charactercreator_character AS character, charactercreator_character_inventory AS inventory, armory_weapon as weapon
WHERE character.character_id = inventory.character_id AND inventory.item_id = weapon.item_ptr_id
GROUP BY character.name
ORDER BY character.name
LIMIT 20;
"""
# On average, how many Items does each Character have? (3.02)
AVG_CHARACTER_ITEMS = """
SELECT
AVG("#_of_items") as "avg_#_of_items"
FROM
(
SELECT
COUNT(inventory.id) AS "#_of_items"
FROM
charactercreator_character AS character,
charactercreator_character_inventory AS inventory
WHERE
character.character_id = inventory.character_id
GROUP BY character.name
);
"""
# On average, how many Weapons does each character have? (0.67)
AVG_CHARACTER_WEAPONS = """
SELECT
AVG(weapon_count) as avg_weapons_per_char
FROM (
SELECT
character.character_id,
COUNT(DISTINCT weapon.item_ptr_id) as weapon_count
FROM
charactercreator_character AS character
LEFT JOIN charactercreator_character_inventory inventory -- characters may have zero items
ON character.character_id = inventory.character_id
LEFT JOIN armory_weapon weapon -- many items are not weapons, so only retain weapons
ON inventory.item_id = weapon.item_ptr_id
GROUP BY character.character_id
) subq;
"""
| total_characters = '\nSELECT COUNT(*) as number_of_characters\nFROM charactercreator_character;\n'
class = 'SELECT COUNT(*) FROM charactercreator_'
total_items = '\nSELECT COUNT(item_id) as items\nFROM armory_item;\n'
weapons = '\nSELECT COUNT(item_ptr_id)\nFROM armory_weapon;\n'
non_weapons = '\nSELECT COUNT(items.name)\nFROM armory_item as items\nWHERE items.item_id NOT IN(\nSELECT armory_weapon.item_ptr_id\nFROM armory_weapon);\n'
character_items = '\nSELECT character.name as "character_name", COUNT(inventory.id) as "#_of_items"\nFROM charactercreator_character AS character, charactercreator_character_inventory AS inventory\nWHERE character.character_id = inventory.character_id\nGROUP BY character.name\nORDER BY character.name\nLIMIT 20;\n'
character_weapons = '\nSELECT character.name as "character_name", COUNT(weapon.item_ptr_id) as "#_of_weapons"\nFROM charactercreator_character AS character, charactercreator_character_inventory AS inventory, armory_weapon as weapon\nWHERE character.character_id = inventory.character_id AND inventory.item_id = weapon.item_ptr_id\nGROUP BY character.name\nORDER BY character.name\nLIMIT 20;\n'
avg_character_items = '\nSELECT\n\tAVG("#_of_items") as "avg_#_of_items"\nFROM\n(\n\tSELECT\n\t\tCOUNT(inventory.id) AS "#_of_items"\n\tFROM\n\t\tcharactercreator_character AS character,\n\t\tcharactercreator_character_inventory AS inventory\n\t\tWHERE\n\t\t\tcharacter.character_id = inventory.character_id\n\t\tGROUP BY character.name\n);\n'
avg_character_weapons = '\nSELECT\n\tAVG(weapon_count) as avg_weapons_per_char\nFROM (\n\tSELECT\n\t\tcharacter.character_id,\n\t\tCOUNT(DISTINCT weapon.item_ptr_id) as weapon_count\n\tFROM\n\t\tcharactercreator_character AS character\n\t\tLEFT JOIN charactercreator_character_inventory inventory -- characters may have zero items\n\t\t\tON character.character_id = inventory.character_id\n\t\tLEFT JOIN armory_weapon weapon -- many items are not weapons, so only retain weapons\n\t\t\tON inventory.item_id = weapon.item_ptr_id\n\t\tGROUP BY character.character_id\n) subq;\n' |
def translate_bbox(bbox, y_offset=0, x_offset=0):
"""Translate bounding boxes.
This method is mainly used together with image transforms, such as padding
and cropping, which translates the left top point of the image from
coordinate :math:`(0, 0)` to coordinate
:math:`(y, x) = (y_{offset}, x_{offset})`.
The bounding boxes are expected to be packed into a two dimensional
tensor of shape :math:`(R, 4)`, where :math:`R` is the number of
bounding boxes in the image. The second axis represents attributes of
the bounding box. They are :math:`(y_{min}, x_{min}, y_{max}, x_{max})`,
where the four attributes are coordinates of the top left and the
bottom right vertices.
Args:
bbox (~numpy.ndarray): Bounding boxes to be transformed. The shape is
:math:`(R, 4)`. :math:`R` is the number of bounding boxes.
y_offset (int or float): The offset along y axis.
x_offset (int or float): The offset along x axis.
Returns:
~numpy.ndarray:
Bounding boxes translated according to the given offsets.
"""
out_bbox = bbox.copy()
out_bbox[:, :2] += (y_offset, x_offset)
out_bbox[:, 2:] += (y_offset, x_offset)
return out_bbox
| def translate_bbox(bbox, y_offset=0, x_offset=0):
"""Translate bounding boxes.
This method is mainly used together with image transforms, such as padding
and cropping, which translates the left top point of the image from
coordinate :math:`(0, 0)` to coordinate
:math:`(y, x) = (y_{offset}, x_{offset})`.
The bounding boxes are expected to be packed into a two dimensional
tensor of shape :math:`(R, 4)`, where :math:`R` is the number of
bounding boxes in the image. The second axis represents attributes of
the bounding box. They are :math:`(y_{min}, x_{min}, y_{max}, x_{max})`,
where the four attributes are coordinates of the top left and the
bottom right vertices.
Args:
bbox (~numpy.ndarray): Bounding boxes to be transformed. The shape is
:math:`(R, 4)`. :math:`R` is the number of bounding boxes.
y_offset (int or float): The offset along y axis.
x_offset (int or float): The offset along x axis.
Returns:
~numpy.ndarray:
Bounding boxes translated according to the given offsets.
"""
out_bbox = bbox.copy()
out_bbox[:, :2] += (y_offset, x_offset)
out_bbox[:, 2:] += (y_offset, x_offset)
return out_bbox |
k=0
while k!=1:
print(k)
k+=1
| k = 0
while k != 1:
print(k)
k += 1 |
class Some_enum(Enum):
some_literal = "some_literal"
class Something(Some_enum):
pass
class Reference:
pass
__book_url__ = "dummy"
__book_version__ = "dummy"
associate_ref_with(Reference)
| class Some_Enum(Enum):
some_literal = 'some_literal'
class Something(Some_enum):
pass
class Reference:
pass
__book_url__ = 'dummy'
__book_version__ = 'dummy'
associate_ref_with(Reference) |
def orangesRotting(elemnts):
if not elemnts or len(elemnts) == 0:
return 0
n = len(elemnts)
m = len(elemnts[0])
rotten = []
for i in range(n):
for j in range(m):
if elemnts[i][j] == 2:
rotten.append((i, j))
mins = 0
def dfs(rotten):
count = []
for i, j in rotten:
if i > 0 and rotten[i - 1][j] == 1:
count.append((i - 1, j))
elemnts[i - 1][j] = 2
if j > 0 and rotten[i][j - 1] == 1:
count.append((i, j - 1))
elemnts[i][j - 1] = 2
if i < n - 1 and rotten[i][j] == 1:
count.append((i, j))
elemnts[i][j] = 2
if j < m - 1 and rotten[i][j] == 1:
count.append((i, j))
elemnts[i][j] = 2
return count
while rotten:
rotten = dfs(rotten)
if not rotten:
break
mins += 1
for i in range(n):
for j in range(m):
if elemnts[i][j] == 1:
return -1
return mins
| def oranges_rotting(elemnts):
if not elemnts or len(elemnts) == 0:
return 0
n = len(elemnts)
m = len(elemnts[0])
rotten = []
for i in range(n):
for j in range(m):
if elemnts[i][j] == 2:
rotten.append((i, j))
mins = 0
def dfs(rotten):
count = []
for (i, j) in rotten:
if i > 0 and rotten[i - 1][j] == 1:
count.append((i - 1, j))
elemnts[i - 1][j] = 2
if j > 0 and rotten[i][j - 1] == 1:
count.append((i, j - 1))
elemnts[i][j - 1] = 2
if i < n - 1 and rotten[i][j] == 1:
count.append((i, j))
elemnts[i][j] = 2
if j < m - 1 and rotten[i][j] == 1:
count.append((i, j))
elemnts[i][j] = 2
return count
while rotten:
rotten = dfs(rotten)
if not rotten:
break
mins += 1
for i in range(n):
for j in range(m):
if elemnts[i][j] == 1:
return -1
return mins |
input = """
2 18 3 0 3 19 20 21
1 1 1 0 18
2 23 3 0 3 19 24 25
1 1 2 1 21 23
3 5 21 19 20 24 25 0 0
6 0 5 5 21 19 20 24 25 1 1 1 1 1
0
21 a
19 b
20 c
24 d
25 e
28 f
0
B+
0
B-
1
0
1
"""
output = """
COST 1@1
"""
| input = '\n2 18 3 0 3 19 20 21\n1 1 1 0 18\n2 23 3 0 3 19 24 25\n1 1 2 1 21 23\n3 5 21 19 20 24 25 0 0\n6 0 5 5 21 19 20 24 25 1 1 1 1 1\n0\n21 a\n19 b\n20 c\n24 d\n25 e\n28 f\n0\nB+\n0\nB-\n1\n0\n1\n'
output = '\nCOST 1@1\n' |
class TaskA:
def run(self):
V, A, B, C = map(int, input().split())
pass
class TaskB:
def run(self):
A = int(input())
B = int(input())
C = int(input())
X = int(input())
counter = 0
for a in range(A+1):
for b in range(B+1):
for c in range(C+1):
total = 500 * a + 100 * b + 50 * c
if total == X:
counter += 1
print(counter)
class TaskC:
def run(self):
pass
if __name__ == "__main__":
task = TaskB()
task.run() | class Taska:
def run(self):
(v, a, b, c) = map(int, input().split())
pass
class Taskb:
def run(self):
a = int(input())
b = int(input())
c = int(input())
x = int(input())
counter = 0
for a in range(A + 1):
for b in range(B + 1):
for c in range(C + 1):
total = 500 * a + 100 * b + 50 * c
if total == X:
counter += 1
print(counter)
class Taskc:
def run(self):
pass
if __name__ == '__main__':
task = task_b()
task.run() |
def banner_text(text):
screen_width = 80
if len(text) > screen_width - 4:
print("EEK!!")
print("THE TEXT IS TOO LONG TO FIT IN THE SPECIFIED WIDTH")
if text == "*":
print("*" * screen_width)
else:
centred_text = text.center(screen_width - 4)
output_string = "**{0}**".format(centred_text)
print(output_string)
banner_text("*")
banner_text("Always look on the bright side of life...")
banner_text("If life seems jolly rotten,")
banner_text("There's something you've forgotten!")
banner_text("And that's to laugh and smile and dance and sing,")
banner_text(" ")
banner_text("When you're feeling in the dumps,")
banner_text("Don't be silly chumps,")
banner_text("Just purse your lips and whistle - that's the thing!")
banner_text("And... always look on the bright side of life...")
banner_text("*")
result = banner_text("Nothing is returned")
print(result)
numbers = [4, 2, 7, 5, 8, 3, 9, 6, 1]
print(numbers.sort())
| def banner_text(text):
screen_width = 80
if len(text) > screen_width - 4:
print('EEK!!')
print('THE TEXT IS TOO LONG TO FIT IN THE SPECIFIED WIDTH')
if text == '*':
print('*' * screen_width)
else:
centred_text = text.center(screen_width - 4)
output_string = '**{0}**'.format(centred_text)
print(output_string)
banner_text('*')
banner_text('Always look on the bright side of life...')
banner_text('If life seems jolly rotten,')
banner_text("There's something you've forgotten!")
banner_text("And that's to laugh and smile and dance and sing,")
banner_text(' ')
banner_text("When you're feeling in the dumps,")
banner_text("Don't be silly chumps,")
banner_text("Just purse your lips and whistle - that's the thing!")
banner_text('And... always look on the bright side of life...')
banner_text('*')
result = banner_text('Nothing is returned')
print(result)
numbers = [4, 2, 7, 5, 8, 3, 9, 6, 1]
print(numbers.sort()) |
######################################################## FLASK SETTINGS ##############################################################
#Variable used to securly sign cookies
##THIS IS SET IN DEV ENVIRONMENT FOR CONVENIENCE BUT SHOULD BE SET AS AN ENVIRONMENT VARIABLE IN PROD
SECRET_KEY = "dev"
######################################################## DATABSE SETTINGS ####################################################
#Neo4j Database URI used by the Neomodel OGM
## THIS SHOULD BE SET AS AN ENVIRONMENT VARIABLE IN PRODUCTION ##
DATABASE_URI = "bolt://test:test@localhost:7687"
| secret_key = 'dev'
database_uri = 'bolt://test:test@localhost:7687' |
def init():
global brightness
global calibration_mode
brightness = 500
calibration_mode = False
| def init():
global brightness
global calibration_mode
brightness = 500
calibration_mode = False |
class Node:
def __init__(self, data):
self.data = data
self.prev = None
self.next = None
class SingleLinkedList:
def __init__(self):
self.head = None
def add(self, ele):
new_node = Node(ele)
if self.head is None:
self.head = new_node
return
temp_head = self.head
while temp_head.next is not None:
temp_head = temp_head.next;
temp_head.next = new_node;
def contains(self, ele):
temp_head = self.head
while temp_head is not None:
if temp_head.data == ele:
return True
temp_head = temp_head.next
return False
def remove(self, ele):
if self.head is None:
return;
if self.head.data == ele:
self.head = self.head.next
return True
temp_head = self.head.next
prev_node = temp_head
is_node_deleted = False
while temp_head is not None:
if temp_head.data == ele:
is_node_deleted = True
prev_node.next = temp_head.next
break
prev_node = temp_head
temp_head = temp_head.next
return is_node_deleted
def print_list(self):
temp_head = self.head
while temp_head is not None:
print(temp_head.data)
temp_head = temp_head.next
if __name__ == '__main__':
list = SingleLinkedList();
list.add(5)
list.add(4)
list.add(12)
list.add(13)
list.add(19)
list.print_list();
print("List contains element 4", list.contains(4))
print("List contains element 6", list.contains(6))
print("Removing element 13", list.remove(13))
list.print_list();
print("List contains element 13", list.contains(13))
| class Node:
def __init__(self, data):
self.data = data
self.prev = None
self.next = None
class Singlelinkedlist:
def __init__(self):
self.head = None
def add(self, ele):
new_node = node(ele)
if self.head is None:
self.head = new_node
return
temp_head = self.head
while temp_head.next is not None:
temp_head = temp_head.next
temp_head.next = new_node
def contains(self, ele):
temp_head = self.head
while temp_head is not None:
if temp_head.data == ele:
return True
temp_head = temp_head.next
return False
def remove(self, ele):
if self.head is None:
return
if self.head.data == ele:
self.head = self.head.next
return True
temp_head = self.head.next
prev_node = temp_head
is_node_deleted = False
while temp_head is not None:
if temp_head.data == ele:
is_node_deleted = True
prev_node.next = temp_head.next
break
prev_node = temp_head
temp_head = temp_head.next
return is_node_deleted
def print_list(self):
temp_head = self.head
while temp_head is not None:
print(temp_head.data)
temp_head = temp_head.next
if __name__ == '__main__':
list = single_linked_list()
list.add(5)
list.add(4)
list.add(12)
list.add(13)
list.add(19)
list.print_list()
print('List contains element 4', list.contains(4))
print('List contains element 6', list.contains(6))
print('Removing element 13', list.remove(13))
list.print_list()
print('List contains element 13', list.contains(13)) |
def solution(A):
total = sum(A)
m = float('inf')
left_sum = 0
for n in A[:-1]:
left_sum += n
v = abs(total - 2*left_sum)
if v < m:
m = v
return m
| def solution(A):
total = sum(A)
m = float('inf')
left_sum = 0
for n in A[:-1]:
left_sum += n
v = abs(total - 2 * left_sum)
if v < m:
m = v
return m |
#! /usr/bin/env python3
"""
constants.py - Contains all constants used by the device manager
Author:
- Pablo Caruana (pablo dot caruana at gmail dot com)
Date: 12/3/2016
"""
number_of_rows = 3 # total number rows of Index Servers
number_of_links = 5 # number of links to be sent to Crawler
number_of_chunks = 5 # number of chunks to be sent to Index Builder
number_of_comps = 10 # number of components managed by each watchdog
| """
constants.py - Contains all constants used by the device manager
Author:
- Pablo Caruana (pablo dot caruana at gmail dot com)
Date: 12/3/2016
"""
number_of_rows = 3
number_of_links = 5
number_of_chunks = 5
number_of_comps = 10 |
#!/usr/bin/python2
#
# Copyright (c) 2012 The Native Client Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
"""
Some common boilerplates and helper functions for source code generation
in files dgen_test_output.py and dgen_decode_output.py.
"""
HEADER_BOILERPLATE ="""/*
* Copyright 2013 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can
* be found in the LICENSE file.
*/
// DO NOT EDIT: GENERATED CODE
"""
NOT_TCB_BOILERPLATE="""#ifndef NACL_TRUSTED_BUT_NOT_TCB
#error This file is not meant for use in the TCB
#endif
"""
NEWLINE_STR="""
"""
COMMENTED_NEWLINE_STR="""
//"""
"""Adds comment '// ' string after newlines."""
def commented_string(str, indent=''):
sep = NEWLINE_STR + indent + '//'
str = str.replace(NEWLINE_STR, sep)
# This second line is a hack to fix that sometimes newlines are
# represented as '\n'.
# TODO(karl) Find the cause of this hack, and fix it.
return str.replace('\\n', sep)
def ifdef_name(filename):
""" Generates the ifdef name to use for the given filename"""
return filename.replace("/", "_").replace(".", "_").upper() + "_"
def GetNumberCodeBlocks(separators):
"""Gets the number of code blocks to break classes into."""
num_blocks = len(separators) + 1
assert num_blocks >= 2
return num_blocks
def FindBlockIndex(filename, format, num_blocks):
"""Returns true if the filename matches the format with an
index in the range [1, num_blocks]."""
for block in range(1, num_blocks+1):
suffix = format % block
if filename.endswith(suffix):
return block
raise Exception("Can't find block index: %s" % filename)
def GetDecodersBlock(n, separators, decoders, name_fcn):
"""Returns the (sorted) list of decoders to include
in block n, assuming decoders are split using
the list of separators."""
num_blocks = GetNumberCodeBlocks(separators)
assert n > 0 and n <= num_blocks
return [decoder for decoder in decoders
if ((n == 1
or IsPrefixLeDecoder(separators[n-2], decoder, name_fcn)) and
(n == num_blocks or
not IsPrefixLeDecoder(separators[n-1], decoder, name_fcn)))]
def IsPrefixLeDecoder(prefix, decoder, name_fcn):
"""Returns true if the prefix is less than or equal to the
corresponding prefix length of the decoder name."""
decoder_name = name_fcn(decoder)
prefix_len = len(prefix)
decoder_len = len(decoder_name)
decoder_prefix = (decoder_name[0:prefix_len]
if prefix_len < decoder_len
else decoder_name)
return prefix <= decoder_prefix
| """
Some common boilerplates and helper functions for source code generation
in files dgen_test_output.py and dgen_decode_output.py.
"""
header_boilerplate = '/*\n * Copyright 2013 The Native Client Authors. All rights reserved.\n * Use of this source code is governed by a BSD-style license that can\n * be found in the LICENSE file.\n */\n\n// DO NOT EDIT: GENERATED CODE\n'
not_tcb_boilerplate = '#ifndef NACL_TRUSTED_BUT_NOT_TCB\n#error This file is not meant for use in the TCB\n#endif\n'
newline_str = '\n'
commented_newline_str = '\n//'
"Adds comment '// ' string after newlines."
def commented_string(str, indent=''):
sep = NEWLINE_STR + indent + '//'
str = str.replace(NEWLINE_STR, sep)
return str.replace('\\n', sep)
def ifdef_name(filename):
""" Generates the ifdef name to use for the given filename"""
return filename.replace('/', '_').replace('.', '_').upper() + '_'
def get_number_code_blocks(separators):
"""Gets the number of code blocks to break classes into."""
num_blocks = len(separators) + 1
assert num_blocks >= 2
return num_blocks
def find_block_index(filename, format, num_blocks):
"""Returns true if the filename matches the format with an
index in the range [1, num_blocks]."""
for block in range(1, num_blocks + 1):
suffix = format % block
if filename.endswith(suffix):
return block
raise exception("Can't find block index: %s" % filename)
def get_decoders_block(n, separators, decoders, name_fcn):
"""Returns the (sorted) list of decoders to include
in block n, assuming decoders are split using
the list of separators."""
num_blocks = get_number_code_blocks(separators)
assert n > 0 and n <= num_blocks
return [decoder for decoder in decoders if (n == 1 or is_prefix_le_decoder(separators[n - 2], decoder, name_fcn)) and (n == num_blocks or not is_prefix_le_decoder(separators[n - 1], decoder, name_fcn))]
def is_prefix_le_decoder(prefix, decoder, name_fcn):
"""Returns true if the prefix is less than or equal to the
corresponding prefix length of the decoder name."""
decoder_name = name_fcn(decoder)
prefix_len = len(prefix)
decoder_len = len(decoder_name)
decoder_prefix = decoder_name[0:prefix_len] if prefix_len < decoder_len else decoder_name
return prefix <= decoder_prefix |
def matrix_form():
r = int(input("Enter the no of rows"))
c = int(input("Enter the no of columns"))
matrix=[]
print("Enter the enteries")
for i in range(r):
a = []
for j in range(c):
a.append(int(input()))
matrix.append(a)
return(matrix)
def check_matrix(first_matrix,sec_matrix):
if(first_matrix==sec_matrix):
print("same")
else:
print("not same")
print("Enter the 1st matrix")
first_matrix = matrix_form()
print(first_matrix)
print("Enter the 2nd matrix")
sec_matrix = matrix_form()
print(sec_matrix)
check_matrix(first_matrix,sec_matrix) | def matrix_form():
r = int(input('Enter the no of rows'))
c = int(input('Enter the no of columns'))
matrix = []
print('Enter the enteries')
for i in range(r):
a = []
for j in range(c):
a.append(int(input()))
matrix.append(a)
return matrix
def check_matrix(first_matrix, sec_matrix):
if first_matrix == sec_matrix:
print('same')
else:
print('not same')
print('Enter the 1st matrix')
first_matrix = matrix_form()
print(first_matrix)
print('Enter the 2nd matrix')
sec_matrix = matrix_form()
print(sec_matrix)
check_matrix(first_matrix, sec_matrix) |
description = 'PGAA setup with XYZOmega sample table'
group = 'basic'
sysconfig = dict(
datasinks = ['mcasink', 'chnsink', 'csvsink', 'livesink']
)
includes = [
'system',
'reactor',
'nl4b',
'pressure',
'sampletable',
'pilz',
'detector',
'collimation',
]
devices = dict(
mcasink = device('nicos_mlz.pgaa.devices.MCASink',
settypes = {'point'},
detectors = ['_60p', 'LEGe'],
),
chnsink = device('nicos_mlz.pgaa.devices.CHNSink',
settypes = {'point'},
detectors = ['_60p', 'LEGe'],
),
csvsink = device('nicos_mlz.pgaa.devices.CSVDataSink',
settypes = {'point'},
),
)
startupcode = """
SetDetectors('_60p', 'LEGe')
SetEnvironment(chamber_pressure)
printinfo("============================================================")
printinfo("Welcome to the NICOS PGAI demo setup.")
printinfo("============================================================")
"""
| description = 'PGAA setup with XYZOmega sample table'
group = 'basic'
sysconfig = dict(datasinks=['mcasink', 'chnsink', 'csvsink', 'livesink'])
includes = ['system', 'reactor', 'nl4b', 'pressure', 'sampletable', 'pilz', 'detector', 'collimation']
devices = dict(mcasink=device('nicos_mlz.pgaa.devices.MCASink', settypes={'point'}, detectors=['_60p', 'LEGe']), chnsink=device('nicos_mlz.pgaa.devices.CHNSink', settypes={'point'}, detectors=['_60p', 'LEGe']), csvsink=device('nicos_mlz.pgaa.devices.CSVDataSink', settypes={'point'}))
startupcode = '\nSetDetectors(\'_60p\', \'LEGe\')\nSetEnvironment(chamber_pressure)\nprintinfo("============================================================")\nprintinfo("Welcome to the NICOS PGAI demo setup.")\nprintinfo("============================================================")\n' |
"""Queue represented by a pseudo stack (represented by a list with pop and append)"""
class Queue:
def __init__(self):
self.stack = []
self.length = 0
def __str__(self):
printed = "<" + str(self.stack)[1:-1] + ">"
return printed
"""Enqueues {@code item}
@param item
item to enqueue"""
def put(self, item):
self.stack.append(item)
self.length = self.length + 1
"""Dequeues {@code item}
@requirement: |self.length| > 0
@return dequeued
item that was dequeued"""
def get(self):
self.rotate(1)
dequeued = self.stack[self.length - 1]
self.stack = self.stack[:-1]
self.rotate(self.length - 1)
self.length = self.length - 1
return dequeued
"""Rotates the queue {@code rotation} times
@param rotation
number of times to rotate queue"""
def rotate(self, rotation):
for i in range(rotation):
temp = self.stack[0]
self.stack = self.stack[1:]
self.put(temp)
self.length = self.length - 1
"""Reports item at the front of self
@return item at front of self.stack"""
def front(self):
front = self.get()
self.put(front)
self.rotate(self.length - 1)
return front
"""Returns the length of this.stack"""
def size(self):
return self.length
| """Queue represented by a pseudo stack (represented by a list with pop and append)"""
class Queue:
def __init__(self):
self.stack = []
self.length = 0
def __str__(self):
printed = '<' + str(self.stack)[1:-1] + '>'
return printed
'Enqueues {@code item}\n @param item\n item to enqueue'
def put(self, item):
self.stack.append(item)
self.length = self.length + 1
'Dequeues {@code item}\n @requirement: |self.length| > 0\n @return dequeued\n item that was dequeued'
def get(self):
self.rotate(1)
dequeued = self.stack[self.length - 1]
self.stack = self.stack[:-1]
self.rotate(self.length - 1)
self.length = self.length - 1
return dequeued
'Rotates the queue {@code rotation} times\n @param rotation\n number of times to rotate queue'
def rotate(self, rotation):
for i in range(rotation):
temp = self.stack[0]
self.stack = self.stack[1:]
self.put(temp)
self.length = self.length - 1
'Reports item at the front of self\n @return item at front of self.stack'
def front(self):
front = self.get()
self.put(front)
self.rotate(self.length - 1)
return front
'Returns the length of this.stack'
def size(self):
return self.length |
# Assignment 1 Day 8
# write a decorator function for taking input for you
# any kind of function you want to build
def getInput(calculate_arg_fuc):
def wrap_function():
print("Enter two numbers ")
a=int(input("Enter first number = "))
b=int(input("Enter second number = "))
calculate_arg_fuc(a,b)
return wrap_function
@getInput
def addition(num1,num2):
print("Addition = ",num1+num2)
@getInput
def subtraction(num1,num2):
print("Subtraction = ",num1-num2)
@getInput
def multiplication(num1,num2):
print("Multiplication = ",num1*num2)
@getInput
def division(num1,num2):
print("Division = ",num1/num2)
addition()
subtraction()
multiplication()
division()
# Assignment 2 day 8
# you need to develop a python program to open a file in read only mode and
# try writing something to it and handlethe subsequent errorusing Exception Handling
try:
f=open("abc.txt","r");
f.write("Heyy, i am prajval");
f.close();
except:
print("File is in read only mode...")
| def get_input(calculate_arg_fuc):
def wrap_function():
print('Enter two numbers ')
a = int(input('Enter first number = '))
b = int(input('Enter second number = '))
calculate_arg_fuc(a, b)
return wrap_function
@getInput
def addition(num1, num2):
print('Addition = ', num1 + num2)
@getInput
def subtraction(num1, num2):
print('Subtraction = ', num1 - num2)
@getInput
def multiplication(num1, num2):
print('Multiplication = ', num1 * num2)
@getInput
def division(num1, num2):
print('Division = ', num1 / num2)
addition()
subtraction()
multiplication()
division()
try:
f = open('abc.txt', 'r')
f.write('Heyy, i am prajval')
f.close()
except:
print('File is in read only mode...') |
def unlock(m):
return m.lower().translate(
str.maketrans(
'abcdefghijklmnopqrstuvwxyz',
'22233344455566677778889999'
)
)
| def unlock(m):
return m.lower().translate(str.maketrans('abcdefghijklmnopqrstuvwxyz', '22233344455566677778889999')) |
"""
A Token is a button or other object on the table that represents a position, a game state, layer state, or some other piece of info
"""
class Token(object):
def __init__(self, name, table):
self.table = table
self.name = name
self.seat = None
| """
A Token is a button or other object on the table that represents a position, a game state, layer state, or some other piece of info
"""
class Token(object):
def __init__(self, name, table):
self.table = table
self.name = name
self.seat = None |
nis=get('nis')
q1="xpto1"
q2=nis + "xpto2"
query=query1.q2
koneksi=0
q=execute(query,koneksi)
| nis = get('nis')
q1 = 'xpto1'
q2 = nis + 'xpto2'
query = query1.q2
koneksi = 0
q = execute(query, koneksi) |
def nearest_mid(input_list, lower_bound_index, upper_bound_index, search_value):
return lower_bound_index + (
(upper_bound_index - lower_bound_index)
// (input_list[upper_bound_index] - input_list[lower_bound_index])
) * (search_value - input_list[lower_bound_index])
def interpolation_search(ordered_list, term):
size_of_list = len(ordered_list) - 1
index_of_first_element = 0
index_of_last_element = size_of_list
while index_of_first_element <= index_of_last_element:
mid_point = nearest_mid(
ordered_list, index_of_first_element, index_of_last_element, term
)
if mid_point > index_of_last_element or mid_point < index_of_first_element:
return None
if ordered_list[mid_point] == term:
return mid_point
if term > ordered_list[mid_point]:
index_of_first_element = mid_point + 1
else:
index_of_last_element = mid_point - 1
store = [2, 4, 5, 12, 43, 54, 60, 77]
a = interpolation_search(store, 2)
print("Index position of value 2 is ", a)
| def nearest_mid(input_list, lower_bound_index, upper_bound_index, search_value):
return lower_bound_index + (upper_bound_index - lower_bound_index) // (input_list[upper_bound_index] - input_list[lower_bound_index]) * (search_value - input_list[lower_bound_index])
def interpolation_search(ordered_list, term):
size_of_list = len(ordered_list) - 1
index_of_first_element = 0
index_of_last_element = size_of_list
while index_of_first_element <= index_of_last_element:
mid_point = nearest_mid(ordered_list, index_of_first_element, index_of_last_element, term)
if mid_point > index_of_last_element or mid_point < index_of_first_element:
return None
if ordered_list[mid_point] == term:
return mid_point
if term > ordered_list[mid_point]:
index_of_first_element = mid_point + 1
else:
index_of_last_element = mid_point - 1
store = [2, 4, 5, 12, 43, 54, 60, 77]
a = interpolation_search(store, 2)
print('Index position of value 2 is ', a) |
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Provide function to calculate SDE distance
@auth: Jungang Zou
@date: 2021/05/05
"""
def SDE(front, values1, values2):
shifted_dict = {}
for i in front:
shifted_dict[i] = [(values1[i], values2[i])]
shifted_list = []
for j in front:
if i == j:
continue
else:
shifted_list.append((min(values1[i], values1[j]), min(values2[i], values2[j])))
shifted_dict[i].append(shifted_list)
return shifted_dict
| """
Provide function to calculate SDE distance
@auth: Jungang Zou
@date: 2021/05/05
"""
def sde(front, values1, values2):
shifted_dict = {}
for i in front:
shifted_dict[i] = [(values1[i], values2[i])]
shifted_list = []
for j in front:
if i == j:
continue
else:
shifted_list.append((min(values1[i], values1[j]), min(values2[i], values2[j])))
shifted_dict[i].append(shifted_list)
return shifted_dict |
#!/usr/bin/env python
# coding: utf-8
# In[ ]:
#List and function
# In[6]:
# empty list
my_list = []
# list of integers
my_list = [1, 2, 3]
# list with mixed data types
my_list = [1, "Hello", 3.4]
# In[7]:
# nested list
my_list = ["mouse", [8, 4, 6], ['a']]
# In[11]:
# List indexing
my_list = ['p', 'r', 'o', 'b', 'e']
# Output: p
print(my_list[0])
# Output: o
print(my_list[2])
# Output: e
print(my_list[4])
# Nested List
n_list = ["Happy", [2, 0, 1, 5]]
# Nested indexing
print(n_list[0][1])
print(n_list[1][3])
# Error! Only integer can be used for indexing
print(my_list[4])
# In[9]:
# Appending and Extending lists in Python
odd = [1, 3, 5]
odd.append(7)
print(odd)
odd.extend([9, 11, 13])
print(odd)
# In[13]:
# Deleting list items
my_list = ['p', 'r', 'o', 'b', 'l', 'e', 'm']
# delete one item
del my_list[2]
print(my_list)
# delete multiple items
del my_list[1:5]
print(my_list)
# delete entire list
del my_list
# In[14]:
# Appending and Extending lists in Python
odd = [1, 3, 5]
odd.append(7)
print(odd)
odd.extend([9, 11, 13])
print(odd)
# In[15]:
#Dictionary and function
# In[18]:
y_dict = {}
# dictionary with integer keys
my_dict = {1: 'apple', 2: 'ball'}
# dictionary with mixed keys
my_dict = {'name': 'John', 1: [2, 4, 3]}
# using dict()
my_dict = dict({1:'apple', 2:'ball'})
# from sequence having each item as a pair
my_dict = dict([(1,'apple'), (2,'ball')])
# In[20]:
# get vs [] for retrieving elements
my_dict = {'name': 'Jack', 'age': 26}
# Output: Jack
print(my_dict['name'])
# Output: 26
print(my_dict.get('age'))
# In[21]:
# Changing and adding Dictionary Elements
my_dict = {'name': 'Jack', 'age': 26}
# update value
my_dict['age'] = 27
#Output: {'age': 27, 'name': 'Jack'}
print(my_dict)
# add item
my_dict['address'] = 'Downtown'
# Output: {'address': 'Downtown', 'age': 27, 'name': 'Jack'}
print(my_dict)
# In[22]:
#Sets and its function
# In[23]:
my_set = {1, 2, 3}
print(my_set)
# In[24]:
my_set = {1.0, "Hello", (1, 2, 3)}
print(my_set)
# In[25]:
# set cannot have duplicates
my_set = {1, 2, 3, 4, 3, 2}
print(my_set)
# In[26]:
#Tuple and its method
# In[27]:
# Tuple having integers
my_tuple = (1, 2, 3)
print(my_tuple)
# In[28]:
my_tuple = ("hello")
print(type(my_tuple))
# In[30]:
# Accessing tuple elements using indexing
my_tuple = ('p','e','r','m','i','t')
print(my_tuple[0])
print(my_tuple[5])
# In[31]:
print(my_tuple[-1])
# In[32]:
print(my_tuple[-6])
# In[36]:
# Changing tuple values
my_tuple = (4, 2, 3, [6, 5])
# TypeError: 'tuple' object does not support item assignment
# my_tuple[1] = 9
# However, item of mutable element can be changed
my_tuple[3][0] = 9 # Output: (4, 2, 3, [9, 5])
print(my_tuple)
# Tuples can be reassigned
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z')
# Output: ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z')
print(my_tuple)
# In[37]:
#String and its function
# In[38]:
# Python string examples - all assignments are identical.
String_var = 'Python'
String_var = "Python"
String_var = """Python"""
# with Triple quotes Strings can extend to multiple lines
String_var = """ This document will help you to
explore all the concepts
of Python Strings!!! """
# Replace "document" with "tutorial" and store in another variable
substr_var = String_var.replace("document", "tutorial")
print (substr_var)
# In[ ]:
| my_list = []
my_list = [1, 2, 3]
my_list = [1, 'Hello', 3.4]
my_list = ['mouse', [8, 4, 6], ['a']]
my_list = ['p', 'r', 'o', 'b', 'e']
print(my_list[0])
print(my_list[2])
print(my_list[4])
n_list = ['Happy', [2, 0, 1, 5]]
print(n_list[0][1])
print(n_list[1][3])
print(my_list[4])
odd = [1, 3, 5]
odd.append(7)
print(odd)
odd.extend([9, 11, 13])
print(odd)
my_list = ['p', 'r', 'o', 'b', 'l', 'e', 'm']
del my_list[2]
print(my_list)
del my_list[1:5]
print(my_list)
del my_list
odd = [1, 3, 5]
odd.append(7)
print(odd)
odd.extend([9, 11, 13])
print(odd)
y_dict = {}
my_dict = {1: 'apple', 2: 'ball'}
my_dict = {'name': 'John', 1: [2, 4, 3]}
my_dict = dict({1: 'apple', 2: 'ball'})
my_dict = dict([(1, 'apple'), (2, 'ball')])
my_dict = {'name': 'Jack', 'age': 26}
print(my_dict['name'])
print(my_dict.get('age'))
my_dict = {'name': 'Jack', 'age': 26}
my_dict['age'] = 27
print(my_dict)
my_dict['address'] = 'Downtown'
print(my_dict)
my_set = {1, 2, 3}
print(my_set)
my_set = {1.0, 'Hello', (1, 2, 3)}
print(my_set)
my_set = {1, 2, 3, 4, 3, 2}
print(my_set)
my_tuple = (1, 2, 3)
print(my_tuple)
my_tuple = 'hello'
print(type(my_tuple))
my_tuple = ('p', 'e', 'r', 'm', 'i', 't')
print(my_tuple[0])
print(my_tuple[5])
print(my_tuple[-1])
print(my_tuple[-6])
my_tuple = (4, 2, 3, [6, 5])
my_tuple[3][0] = 9
print(my_tuple)
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z')
print(my_tuple)
string_var = 'Python'
string_var = 'Python'
string_var = 'Python'
string_var = ' This document will help you to\nexplore all the concepts\nof Python Strings!!! '
substr_var = String_var.replace('document', 'tutorial')
print(substr_var) |
def pickingNumbers(a):
# Write your code here
max = 0
for i in a:
c = a.count(i)
d = a.count(i-1)
e = c+d
if e>max:
max = e
return max
| def picking_numbers(a):
max = 0
for i in a:
c = a.count(i)
d = a.count(i - 1)
e = c + d
if e > max:
max = e
return max |
expected_output = {
"vrf": {
"VRF1": {
"address_family": {
"ipv6": {
"instance": {
"rip ripng": {
"redistribute": {
"static": {"route_policy": "static-to-rip"},
"connected": {},
},
"interfaces": {
"GigabitEthernet3.200": {},
"GigabitEthernet2.200": {},
},
}
}
}
}
}
}
}
| expected_output = {'vrf': {'VRF1': {'address_family': {'ipv6': {'instance': {'rip ripng': {'redistribute': {'static': {'route_policy': 'static-to-rip'}, 'connected': {}}, 'interfaces': {'GigabitEthernet3.200': {}, 'GigabitEthernet2.200': {}}}}}}}}} |
#!/usr/bin/env python
sw1_show_cdp_neighbors = '''
SW1>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone
Device ID Local Intrfce Holdtme Capability Platform Port ID
R1 Fas 0/11 153 R S I 881 Fas 1
R2 Fas 0/12 123 R S I 881 Fas 1
R3 Fas 0/13 129 R S I 881 Fas 1
R4 Fas 0/14 173 R S I 881 Fas 1
R5 Fas 0/15 144 R S I 881 Fas 1
'''
sw1_show_cdp_neighbors_detail = '''
SW1> show cdp neighbors detail
--------------------------
Device ID: R1
Entry address(es):
IP address: 10.1.1.1
Platform: Cisco 881, Capabilities: Router Switch IGMP
Interface: FastEthernet0/11, Port ID (outgoing port): FastEthernet1
Holdtime: 153 sec
Version :
Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2010 by Cisco Systems, Inc.
Compiled Fri 29-Oct-10 00:02 by prod_rel_team
advertisement version: 2
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
Management address(es):
--------------------------
Device ID: R2
Entry address(es):
IP address: 10.1.1.2
Platform: Cisco 881, Capabilities: Router Switch IGMP
Interface: FastEthernet0/12, Port ID (outgoing port): FastEthernet1
Holdtime: 123 sec
Version :
Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2010 by Cisco Systems, Inc.
Compiled Fri 29-Oct-10 00:02 by prod_rel_team
advertisement version: 2
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
Management address(es):
--------------------------
Device ID: R3
Entry address(es):
IP address: 10.1.1.3
Platform: Cisco 881, Capabilities: Router Switch IGMP
Interface: FastEthernet0/13, Port ID (outgoing port): FastEthernet1
Holdtime: 129 sec
Version :
Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2010 by Cisco Systems, Inc.
Compiled Fri 29-Oct-10 00:02 by prod_rel_team
advertisement version: 2
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
Management address(es):
--------------------------
Device ID: R4
Entry address(es):
IP address: 10.1.1.4
Platform: Cisco 881, Capabilities: Router Switch IGMP
Interface: FastEthernet0/14, Port ID (outgoing port): FastEthernet1
Holdtime: 173 sec
Version :
Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2010 by Cisco Systems, Inc.
Compiled Fri 29-Oct-10 00:02 by prod_rel_team
advertisement version: 2
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
Management address(es):
--------------------------
Device ID: R5
Entry address(es):
IP address: 10.1.1.5
Platform: Cisco 881, Capabilities: Router Switch IGMP
Interface: FastEthernet0/15, Port ID (outgoing port): FastEthernet1
Holdtime: 144 sec
Version :
Cisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)
Technical Support: http://www.cisco.com/techsupport
Copyright (c) 1986-2010 by Cisco Systems, Inc.
Compiled Fri 29-Oct-10 00:02 by prod_rel_team
advertisement version: 2
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
Management address(es):
'''
r1_show_cdp_neighbors = '''
R1>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
SW1 Fas 1 150 S I WS-C2950- Fas 0/11
'''
r1_show_cdp_neighbors_detail = '''
R1>show cdp neighbors detail
-------------------------
Device ID: SW1
Entry address(es):
IP address: 10.1.1.22
Platform: cisco WS-C2950-24, Capabilities: Switch IGMP
Interface: FastEthernet1, Port ID (outgoing port): FastEthernet0/11
Holdtime : 145 sec
Version :
Cisco Internetwork Operating System Software
IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 28-Jul-06 15:16 by weiliu
advertisement version: 2
Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
'''
r2_show_cdp_neighbors = '''
R2>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
SW1 Fas 1 150 S I WS-C2950- Fas 0/12
'''
r2_show_cdp_neighbors_detail = '''
R2>show cdp neighbors detail
-------------------------
Device ID: SW1
Entry address(es):
IP address: 10.1.1.22
Platform: cisco WS-C2950-24, Capabilities: Switch IGMP
Interface: FastEthernet1, Port ID (outgoing port): FastEthernet0/12
Holdtime : 145 sec
Version :
Cisco Internetwork Operating System Software
IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 28-Jul-06 15:16 by weiliu
advertisement version: 2
Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
'''
r3_show_cdp_neighbors = '''
R3>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
SW1 Fas 1 150 S I WS-C2950- Fas 0/13
'''
r3_show_cdp_neighbors_detail = '''
R3>show cdp neighbors detail
-------------------------
Device ID: SW1
Entry address(es):
IP address: 10.1.1.22
Platform: cisco WS-C2950-24, Capabilities: Switch IGMP
Interface: FastEthernet1, Port ID (outgoing port): FastEthernet0/13
Holdtime : 145 sec
Version :
Cisco Internetwork Operating System Software
IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 28-Jul-06 15:16 by weiliu
advertisement version: 2
Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
'''
r4_show_cdp_neighbors = '''
R4>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
SW1 Fas 1 150 S I WS-C2950- Fas 0/14
'''
r4_show_cdp_neighbors_detail = '''
R4>show cdp neighbors detail
-------------------------
Device ID: SW1
Entry address(es):
IP address: 10.1.1.22
Platform: cisco WS-C2950-24, Capabilities: Switch IGMP
Interface: FastEthernet1, Port ID (outgoing port): FastEthernet0/14
Holdtime : 145 sec
Version :
Cisco Internetwork Operating System Software
IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 28-Jul-06 15:16 by weiliu
advertisement version: 2
Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
'''
r5_show_cdp_neighbors = '''
R5>show cdp neighbors
Capability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge
S - Switch, H - Host, I - IGMP, r - Repeater
Device ID Local Intrfce Holdtme Capability Platform Port ID
SW1 Fas 1 150 S I WS-C2950- Fas 0/15
'''
r5_show_cdp_neighbors_detail = '''
R5>show cdp neighbors detail
-------------------------
Device ID: SW1
Entry address(es):
IP address: 10.1.1.22
Platform: cisco WS-C2950-24, Capabilities: Switch IGMP
Interface: FastEthernet1, Port ID (outgoing port): FastEthernet0/15
Holdtime : 145 sec
Version :
Cisco Internetwork Operating System Software
IOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by cisco Systems, Inc.
Compiled Fri 28-Jul-06 15:16 by weiliu
advertisement version: 2
Protocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000
VTP Management Domain: ''
Native VLAN: 1
Duplex: full
'''
| sw1_show_cdp_neighbors = '\nSW1>show cdp neighbors\nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater, P - Phone\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nR1 Fas 0/11 153 R S I 881 Fas 1\nR2 Fas 0/12 123 R S I 881 Fas 1\nR3 Fas 0/13 129 R S I 881 Fas 1\nR4 Fas 0/14 173 R S I 881 Fas 1\nR5 Fas 0/15 144 R S I 881 Fas 1\n'
sw1_show_cdp_neighbors_detail = "\nSW1> show cdp neighbors detail\n--------------------------\nDevice ID: R1\nEntry address(es):\n IP address: 10.1.1.1\nPlatform: Cisco 881, Capabilities: Router Switch IGMP\nInterface: FastEthernet0/11, Port ID (outgoing port): FastEthernet1\nHoldtime: 153 sec\nVersion :\nCisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2010 by Cisco Systems, Inc.\nCompiled Fri 29-Oct-10 00:02 by prod_rel_team\nadvertisement version: 2\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\nManagement address(es):\n--------------------------\nDevice ID: R2\nEntry address(es):\n IP address: 10.1.1.2\nPlatform: Cisco 881, Capabilities: Router Switch IGMP\nInterface: FastEthernet0/12, Port ID (outgoing port): FastEthernet1\nHoldtime: 123 sec\nVersion :\nCisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2010 by Cisco Systems, Inc.\nCompiled Fri 29-Oct-10 00:02 by prod_rel_team\nadvertisement version: 2\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\nManagement address(es):\n--------------------------\nDevice ID: R3\nEntry address(es):\n IP address: 10.1.1.3\nPlatform: Cisco 881, Capabilities: Router Switch IGMP\nInterface: FastEthernet0/13, Port ID (outgoing port): FastEthernet1\nHoldtime: 129 sec\nVersion :\nCisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2010 by Cisco Systems, Inc.\nCompiled Fri 29-Oct-10 00:02 by prod_rel_team\nadvertisement version: 2\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\nManagement address(es):\n--------------------------\nDevice ID: R4\nEntry address(es):\n IP address: 10.1.1.4\nPlatform: Cisco 881, Capabilities: Router Switch IGMP\nInterface: FastEthernet0/14, Port ID (outgoing port): FastEthernet1\nHoldtime: 173 sec\nVersion :\nCisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2010 by Cisco Systems, Inc.\nCompiled Fri 29-Oct-10 00:02 by prod_rel_team\nadvertisement version: 2\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\nManagement address(es):\n--------------------------\nDevice ID: R5\nEntry address(es):\n IP address: 10.1.1.5\nPlatform: Cisco 881, Capabilities: Router Switch IGMP\nInterface: FastEthernet0/15, Port ID (outgoing port): FastEthernet1\nHoldtime: 144 sec\nVersion :\nCisco IOS Software, C880 Software (C880DATA-UNIVERSALK9-M), Version 15.0(1)M4, RELEASE SOFTWARE (fc1)\nTechnical Support: http://www.cisco.com/techsupport\nCopyright (c) 1986-2010 by Cisco Systems, Inc.\nCompiled Fri 29-Oct-10 00:02 by prod_rel_team\nadvertisement version: 2\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\nManagement address(es):\n"
r1_show_cdp_neighbors = '\nR1>show cdp neighbors \nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nSW1 Fas 1 150 S I WS-C2950- Fas 0/11\n'
r1_show_cdp_neighbors_detail = "\nR1>show cdp neighbors detail \n-------------------------\nDevice ID: SW1\nEntry address(es): \n IP address: 10.1.1.22\nPlatform: cisco WS-C2950-24, Capabilities: Switch IGMP \nInterface: FastEthernet1, Port ID (outgoing port): FastEthernet0/11\nHoldtime : 145 sec\nVersion :\nCisco Internetwork Operating System Software \nIOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)\nCopyright (c) 1986-2006 by cisco Systems, Inc.\nCompiled Fri 28-Jul-06 15:16 by weiliu\nadvertisement version: 2\nProtocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\n"
r2_show_cdp_neighbors = '\nR2>show cdp neighbors \nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nSW1 Fas 1 150 S I WS-C2950- Fas 0/12\n'
r2_show_cdp_neighbors_detail = "\nR2>show cdp neighbors detail \n-------------------------\nDevice ID: SW1\nEntry address(es): \n IP address: 10.1.1.22\nPlatform: cisco WS-C2950-24, Capabilities: Switch IGMP \nInterface: FastEthernet1, Port ID (outgoing port): FastEthernet0/12\nHoldtime : 145 sec\nVersion :\nCisco Internetwork Operating System Software \nIOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)\nCopyright (c) 1986-2006 by cisco Systems, Inc.\nCompiled Fri 28-Jul-06 15:16 by weiliu\nadvertisement version: 2\nProtocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\n"
r3_show_cdp_neighbors = '\nR3>show cdp neighbors \nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nSW1 Fas 1 150 S I WS-C2950- Fas 0/13\n'
r3_show_cdp_neighbors_detail = "\nR3>show cdp neighbors detail \n-------------------------\nDevice ID: SW1\nEntry address(es): \n IP address: 10.1.1.22\nPlatform: cisco WS-C2950-24, Capabilities: Switch IGMP \nInterface: FastEthernet1, Port ID (outgoing port): FastEthernet0/13\nHoldtime : 145 sec\nVersion :\nCisco Internetwork Operating System Software \nIOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)\nCopyright (c) 1986-2006 by cisco Systems, Inc.\nCompiled Fri 28-Jul-06 15:16 by weiliu\nadvertisement version: 2\nProtocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\n"
r4_show_cdp_neighbors = '\nR4>show cdp neighbors \nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nSW1 Fas 1 150 S I WS-C2950- Fas 0/14\n'
r4_show_cdp_neighbors_detail = "\nR4>show cdp neighbors detail \n-------------------------\nDevice ID: SW1\nEntry address(es): \n IP address: 10.1.1.22\nPlatform: cisco WS-C2950-24, Capabilities: Switch IGMP \nInterface: FastEthernet1, Port ID (outgoing port): FastEthernet0/14\nHoldtime : 145 sec\nVersion :\nCisco Internetwork Operating System Software \nIOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)\nCopyright (c) 1986-2006 by cisco Systems, Inc.\nCompiled Fri 28-Jul-06 15:16 by weiliu\nadvertisement version: 2\nProtocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\n"
r5_show_cdp_neighbors = '\nR5>show cdp neighbors \nCapability Codes: R - Router, T - Trans Bridge, B - Source Route Bridge\n S - Switch, H - Host, I - IGMP, r - Repeater\nDevice ID Local Intrfce Holdtme Capability Platform Port ID\nSW1 Fas 1 150 S I WS-C2950- Fas 0/15\n'
r5_show_cdp_neighbors_detail = "\nR5>show cdp neighbors detail \n-------------------------\nDevice ID: SW1\nEntry address(es): \n IP address: 10.1.1.22\nPlatform: cisco WS-C2950-24, Capabilities: Switch IGMP \nInterface: FastEthernet1, Port ID (outgoing port): FastEthernet0/15\nHoldtime : 145 sec\nVersion :\nCisco Internetwork Operating System Software \nIOS (tm) C2950 Software (C2950-I6Q4L2-M), Version 12.1(22)EA8a, RELEASE SOFTWARE (fc1)\nCopyright (c) 1986-2006 by cisco Systems, Inc.\nCompiled Fri 28-Jul-06 15:16 by weiliu\nadvertisement version: 2\nProtocol Hello: OUI=0x00000C, Protocol ID=0x0112; payload len=27, value=00000000FFFFFFFF010221FF0000000000000019E845CE80FF0000\nVTP Management Domain: ''\nNative VLAN: 1\nDuplex: full\n" |
EVENT_SCHEDULER_STARTED = EVENT_SCHEDULER_START = 2 ** 0
EVENT_SCHEDULER_SHUTDOWN = 2 ** 1
EVENT_SCHEDULER_PAUSED = 2 ** 2
EVENT_SCHEDULER_RESUMED = 2 ** 3
EVENT_EXECUTOR_ADDED = 2 ** 4
EVENT_EXECUTOR_REMOVED = 2 ** 5
EVENT_JOBSTORE_ADDED = 2 ** 6
EVENT_JOBSTORE_REMOVED = 2 ** 7
EVENT_ALL_JOBS_REMOVED = 2 ** 8
EVENT_JOB_ADDED = 2 ** 9
EVENT_JOB_REMOVED = 2 ** 10
EVENT_JOB_MODIFIED = 2 ** 11
EVENT_JOB_EXECUTED = 2 ** 12
EVENT_JOB_ERROR = 2 ** 13
EVENT_JOB_MISSED = 2 ** 14
EVENT_JOB_SUBMITTED = 2 ** 15
EVENT_JOB_MAX_INSTANCES = 2 ** 16
EVENT_ALL = (EVENT_SCHEDULER_STARTED | EVENT_SCHEDULER_SHUTDOWN | EVENT_SCHEDULER_PAUSED |
EVENT_SCHEDULER_RESUMED | EVENT_EXECUTOR_ADDED | EVENT_EXECUTOR_REMOVED |
EVENT_JOBSTORE_ADDED | EVENT_JOBSTORE_REMOVED | EVENT_ALL_JOBS_REMOVED |
EVENT_JOB_ADDED | EVENT_JOB_REMOVED | EVENT_JOB_MODIFIED | EVENT_JOB_EXECUTED |
EVENT_JOB_ERROR | EVENT_JOB_MISSED | EVENT_JOB_SUBMITTED | EVENT_JOB_MAX_INSTANCES) | event_scheduler_started = event_scheduler_start = 2 ** 0
event_scheduler_shutdown = 2 ** 1
event_scheduler_paused = 2 ** 2
event_scheduler_resumed = 2 ** 3
event_executor_added = 2 ** 4
event_executor_removed = 2 ** 5
event_jobstore_added = 2 ** 6
event_jobstore_removed = 2 ** 7
event_all_jobs_removed = 2 ** 8
event_job_added = 2 ** 9
event_job_removed = 2 ** 10
event_job_modified = 2 ** 11
event_job_executed = 2 ** 12
event_job_error = 2 ** 13
event_job_missed = 2 ** 14
event_job_submitted = 2 ** 15
event_job_max_instances = 2 ** 16
event_all = EVENT_SCHEDULER_STARTED | EVENT_SCHEDULER_SHUTDOWN | EVENT_SCHEDULER_PAUSED | EVENT_SCHEDULER_RESUMED | EVENT_EXECUTOR_ADDED | EVENT_EXECUTOR_REMOVED | EVENT_JOBSTORE_ADDED | EVENT_JOBSTORE_REMOVED | EVENT_ALL_JOBS_REMOVED | EVENT_JOB_ADDED | EVENT_JOB_REMOVED | EVENT_JOB_MODIFIED | EVENT_JOB_EXECUTED | EVENT_JOB_ERROR | EVENT_JOB_MISSED | EVENT_JOB_SUBMITTED | EVENT_JOB_MAX_INSTANCES |
"""
@Time : 201/21/19 10:47
@Author : TaylorMei
@Email : mhy845879017@gmail.com
@Project : iccv
@File : base3_plus.py
@Function:
""" | """
@Time : 201/21/19 10:47
@Author : TaylorMei
@Email : mhy845879017@gmail.com
@Project : iccv
@File : base3_plus.py
@Function:
""" |
# -*- coding: utf-8 -*-
"""
pyRofex.components.messages
Defines APIs messages templates
"""
# Template for a Market Data Subscription message
MARKET_DATA_SUBSCRIPTION = '{{"type":"smd","level":1, "entries":[{entries}],"products":[{symbols}]}}'
# Template for an Order Subscription message
ORDER_SUBSCRIPTION = '{{"type":"os","account":{{"id":"{a}"}},"snapshotOnlyActive":{snapshot}}}'
# Template to specify an instrument in a market data subscription message
INSTRUMENT = '{{"symbol":"{ticker}","marketId":"{market}"}}'
# Template to insert a Double Quote
DOUBLE_QUOTES = '"{item}"'
| """
pyRofex.components.messages
Defines APIs messages templates
"""
market_data_subscription = '{{"type":"smd","level":1, "entries":[{entries}],"products":[{symbols}]}}'
order_subscription = '{{"type":"os","account":{{"id":"{a}"}},"snapshotOnlyActive":{snapshot}}}'
instrument = '{{"symbol":"{ticker}","marketId":"{market}"}}'
double_quotes = '"{item}"' |
__author__ = 'Elias Haroun'
class BinaryNode(object):
def __init__(self, data, left, right):
self.data = data
self.left = left
self.right = right
def getData(self):
return self.data
def getLeft(self):
return self.left
def getRight(self):
return self.right
def setData(self, data):
self.data = data
def setLeft(self, aNode):
self.left = aNode
def setRight(self, aNode):
self.right = aNode
def hasLeft(self):
return self.getLeft() is not None
def hasRight(self):
return self.getRight() is not None
def isLeaf(self):
return not(self.hasLeft() | self.hasRight())
| __author__ = 'Elias Haroun'
class Binarynode(object):
def __init__(self, data, left, right):
self.data = data
self.left = left
self.right = right
def get_data(self):
return self.data
def get_left(self):
return self.left
def get_right(self):
return self.right
def set_data(self, data):
self.data = data
def set_left(self, aNode):
self.left = aNode
def set_right(self, aNode):
self.right = aNode
def has_left(self):
return self.getLeft() is not None
def has_right(self):
return self.getRight() is not None
def is_leaf(self):
return not self.hasLeft() | self.hasRight() |
# The isBadVersion API is already defined for you.
# @param version, an integer
# @return a bool
# def isBadVersion(version):
class Solution(object):
def firstBadVersion(self, n):
start = 1
end = n
while start + 1 < end:
mid = start + (end - start) / 2
if isBadVersion(mid):
end = mid
else:
start = mid
if isBadVersion(start):
return start
elif isBadVersion(end):
return end
| class Solution(object):
def first_bad_version(self, n):
start = 1
end = n
while start + 1 < end:
mid = start + (end - start) / 2
if is_bad_version(mid):
end = mid
else:
start = mid
if is_bad_version(start):
return start
elif is_bad_version(end):
return end |
# -*- coding: utf-8; -*-
"""Define error strings raised by the application."""
MISSING_CONFIG_VALUE = """
'{0}' is not specified or invalid in the config file!
""".strip()
| """Define error strings raised by the application."""
missing_config_value = "\n'{0}' is not specified or invalid in the config file!\n".strip() |
# python version 1.0 DO NOT EDIT
#
# Generated by smidump version 0.4.8:
#
# smidump -f python ZYXEL-GS4012F-MIB
FILENAME = "mibs/ZyXEL/zyxel-GS4012F.mib"
MIB = {
"moduleName" : "ZYXEL-GS4012F-MIB",
"ZYXEL-GS4012F-MIB" : {
"nodetype" : "module",
"language" : "SMIv2",
"organization" :
"""ZyXEL""",
"contact" :
"""""",
"description" :
"""Fault event trap definitions""",
"revisions" : (
{
"date" : "2004-11-03 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
{
"date" : "2004-11-01 12:00",
"description" :
"""[Revision added by libsmi due to a LAST-UPDATED clause.]""",
},
),
"identity node" : "faultTrapsMIB",
},
"imports" : (
{"module" : "RFC1155-SMI", "name" : "enterprises"},
{"module" : "SNMPv2-SMI", "name" : "OBJECT-TYPE"},
{"module" : "SNMPv2-TC", "name" : "RowStatus"},
{"module" : "SNMPv2-TC", "name" : "DateAndTime"},
{"module" : "SNMPv2-TC", "name" : "TruthValue"},
{"module" : "SNMPv2-TC", "name" : "StorageType"},
{"module" : "SNMPv2-TC", "name" : "MacAddress"},
{"module" : "RFC1213-MIB", "name" : "DisplayString"},
{"module" : "P-BRIDGE-MIB", "name" : "EnabledStatus"},
{"module" : "Q-BRIDGE-MIB", "name" : "PortList"},
{"module" : "BRIDGE-MIB", "name" : "dot1dBasePort"},
{"module" : "IF-MIB", "name" : "InterfaceIndexOrZero"},
{"module" : "SNMP-FRAMEWORK-MIB", "name" : "SnmpAdminString"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddressType"},
{"module" : "INET-ADDRESS-MIB", "name" : "InetAddress"},
{"module" : "DISMAN-PING-MIB", "name" : "OperationResponseStatus"},
{"module" : "OSPF-MIB", "name" : "ospfIfIpAddress"},
{"module" : "OSPF-MIB", "name" : "ospfAddressLessIf"},
{"module" : "OSPF-MIB", "name" : "ospfAreaId"},
{"module" : "OSPF-MIB", "name" : "ospfNbrIpAddr"},
{"module" : "OSPF-MIB", "name" : "ospfNbrAddressLessIndex"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbAreaId"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbType"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbLSID"},
{"module" : "OSPF-MIB", "name" : "ospfLsdbRouterId"},
{"module" : "OSPF-MIB", "name" : "ospfVirtIfAreaID"},
{"module" : "OSPF-MIB", "name" : "ospfVirtIfNeighbor"},
{"module" : "BRIDGE-MIB", "name" : "BridgeId"},
{"module" : "BRIDGE-MIB", "name" : "Timeout"},
),
"typedefs" : {
"UtcTimeStamp" : {
"basetype" : "Unsigned32",
"status" : "current",
"description" :
"""Universal Time Coordinated as a 32-bit value that designates
the number of seconds since Jan 1, 1970 12:00AM.""",
},
"EventIdNumber" : {
"basetype" : "Integer32",
"status" : "current",
"description" :
"""This textual convention describes the index that uniquely
identifies a fault event type in the entire system. Every fault
event type, e.g. link down, has a unique EventIdNumber.""",
},
"EventSeverity" : {
"basetype" : "Enumeration",
"status" : "current",
"critical" : {
"nodetype" : "namednumber",
"number" : "1"
},
"major" : {
"nodetype" : "namednumber",
"number" : "2"
},
"minor" : {
"nodetype" : "namednumber",
"number" : "3"
},
"informational" : {
"nodetype" : "namednumber",
"number" : "4"
},
"description" :
"""This textual convention describes the severity of a fault event.
The decreasing order of severity is shown in the textual
convention.""",
},
"EventServiceAffective" : {
"basetype" : "Enumeration",
"status" : "current",
"noServiceAffected" : {
"nodetype" : "namednumber",
"number" : "1"
},
"serviceAffected" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether an event is immediately
service affecting or not.""",
},
"InstanceType" : {
"basetype" : "Enumeration",
"status" : "current",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"node" : {
"nodetype" : "namednumber",
"number" : "2"
},
"shelf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"line" : {
"nodetype" : "namednumber",
"number" : "4"
},
"switch" : {
"nodetype" : "namednumber",
"number" : "5"
},
"lsp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"l2Interface" : {
"nodetype" : "namednumber",
"number" : "7"
},
"l3Interface" : {
"nodetype" : "namednumber",
"number" : "8"
},
"rowIndex" : {
"nodetype" : "namednumber",
"number" : "9"
},
"description" :
"""This textual convention describes the type of an instanceId
associated with each event and by that means specifies how
the instanceId variable should be intepreted.
Various instanceId types are specified below to enable fault
monitoring for different kind of devices from fixed
configuration pizza boxes to multi chassis nodes. All
instanceId types may not need to be used in every device
type.
Note also that instanceId semantics are element type dependent
(e.g. different kind of interface naming conventions may be used)
and thus instanceId usage may vary from element to element.
=========================================================================
Type Description Example form
of InstanceId
=========================================================================
unknown (1) unknown type - Irrelevant-
-------------------------------------------------------------------------
node (2) Associated with events originating from 1
the node. Used for general events that (Node number)
can not be associated with any specific
block. InstanceId value 1 is used for
single node equipment.
-------------------------------------------------------------------------
shelf (3) Associated with events originating from 1
the shelf. In the case of fixed (shelf number)
configuration devices this type is used
for events that are associated with the
physical enclosure, e.g. faults related
to fan etc. InstanceId value 1 is used
for single self equipment.
-------------------------------------------------------------------------
line (4) Associated with events originating from
physical interfaces or associated
components such as line cards.
InstanceId usage examples for faults
originating from:
- Physical port: Simply port number, e.g. .......1
-------------------------------------------------------------------------
switch (5) Associated with events originating from 1
from a switch chip or a switch card. (switch number)
For single switch equipment InstanceId
value 1 is used, for multi swich nodes
InstanceId semantics if for further
study.
-------------------------------------------------------------------------
lsp (6) Associated with events originating from 1
a particular lsp. (lsp index)
NOTE: In this case the InstanceName
contains the lsp name and InstanceId
contains lsp index.
-------------------------------------------------------------------------
l2Interface(7) Associated with events originating from - TBD -
a particular layer 2 interface. Used for
layer 2 related events such as L2 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
l3Interface(8) Associated with events originating from - TBD -
a particular layer 3 interface. Used for
layer 3 related events such as L3 control
protocol faults. InstanceId semantics is
for further study.
-------------------------------------------------------------------------
rowIndex (9) Associated with events reporting about a
'logical' or conceptual table that consists
of rows. The Instance Id is the index/key
for a row in the table. The format of the
Instance Id will simply be a series of decimal
numbers seperated by a '.':
=========================================================================""",
},
"EventPersistence" : {
"basetype" : "Enumeration",
"status" : "current",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"delta" : {
"nodetype" : "namednumber",
"number" : "2"
},
"description" :
"""This textual convention indicates whether the event is delta
(automatically and immediately cleared) or normal (not
automatically cleared).""",
},
"MstiOrCistInstanceIndex" : {
"basetype" : "Integer32",
"status" : "current",
"ranges" : [
{
"min" : "0",
"max" : "16"
},
],
"range" : {
"min" : "0",
"max" : "16"
},
"description" :
"""This textual convention is an extension of the
MstiInstanceIndex convention. This extension permits the
additional value of zero, which means Common and Internal
Spanning Tree (CIST).""",
},
}, # typedefs
"nodes" : {
"zyxel" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890",
}, # node
"products" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1",
}, # node
"accessSwitch" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5",
}, # node
"esSeries" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8",
}, # node
"gs4012f" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20",
}, # node
"sysInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1",
}, # node
"sysSwPlatformMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform major version, e.g. 3.""",
}, # scalar
"sysSwPlatformMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW platform minor version, e.g. 50.""",
}, # scalar
"sysSwModelString" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Model letters, e.g. TJ""",
}, # scalar
"sysSwVersionControlNbr" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Version control number, e.g. 0.""",
}, # scalar
"sysSwDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation day, e.g. 19.""",
}, # scalar
"sysSwMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation month, e.g. 8.""",
}, # scalar
"sysSwYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""SW compilation year, e.g. 2004.""",
}, # scalar
"sysHwMajorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW major version number, e.g. 1.""",
}, # scalar
"sysHwMinorVers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""HW minor version number, e.g. 0.""",
}, # scalar
"sysSerialNumber" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""Serial number""",
}, # scalar
"rateLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2",
}, # node
"rateLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled for the switch.""",
}, # scalar
"rateLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"rateLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in rateLimitPortTable.""",
}, # row
"rateLimitPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress/egress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortCommitRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Commit rate in Kbit/s. The range of FE port is between 0 and 100,000. For GE port, the range is between 0 and 1000,000.""",
}, # column
"rateLimitPortPeakRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Peak rate in Kbit/s. The range of FE port is between 1 and 100,000. For GE port, the range is between 1 and 1000,000.""",
}, # column
"rateLimitPortEgrRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Egress rate in Mbit/s. The granularity of FE port is between 1 and 100. For GE port, the granularity is between 1 and 1000.""",
}, # column
"rateLimitPortPeakState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress peak rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortEgrState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Egress rate limiting enabled/disabled on the port.""",
}, # column
"rateLimitPortCommitState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.2.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Ingress commit rate limiting enabled/disabled on the port.""",
}, # column
"brLimitSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3",
}, # node
"brLimitState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Broadcast/multicast/DLF rate limiting enabled/disabled for the switch.""",
}, # scalar
"brLimitPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2",
"status" : "current",
"description" :
"""""",
}, # table
"brLimitPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in brLimitPortTable.""",
}, # row
"brLimitPortBrState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Broadcast rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortBrRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed broadcast rate in pkts/s. For FE port,
the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"brLimitPortMcState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Multicast rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortMcRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""AAllowed mullticast rate in pkts/s. For FE port,
the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"brLimitPortDlfState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Destination lookup failure frames rate limiting enabled/disabled on the port.""",
}, # column
"brLimitPortDlfRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.3.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed destination lookup failure frames rate in pkts/s.
For FE port, the maximum value is 148800. For GE port, the maximum value is 262143.""",
}, # column
"portSecuritySetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4",
}, # node
"portSecurityState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"portSecurityPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.2",
"status" : "current",
"description" :
"""""",
}, # table
"portSecurityPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portSecurityPortTable.""",
}, # row
"portSecurityPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Port Security enabled/disabled on the port.
Active(1) means this port only accept frames from static MAC addresses that are configured for the port,
and dynamic MAC address frames up to the number specified by portSecurityPortCount object.""",
}, # column
"portSecurityPortLearnState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""MAC address learning enabled/disable on the port.""",
}, # column
"portSecurityPortCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Number of (dynamic) MAC addresses that may be learned on the port.""",
}, # column
"portSecurityMacFreeze" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"vlanTrunkSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.5",
}, # node
"vlanTrunkPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.5.1",
"status" : "current",
"description" :
"""""",
}, # table
"vlanTrunkPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.5.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in vlanTrunkPortTable.""",
}, # row
"vlanTrunkPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.5.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""VlanTrunking enabled/disabled on the port.
Active(1) to allow frames belonging to unknown
VLAN groups to pass through the switch.""",
}, # column
"ctlProtTransSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6",
}, # node
"ctlProtTransState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Bridge control protocol transparency enabled/disabled for the switch""",
}, # scalar
"ctlProtTransTunnelPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.2",
"status" : "current",
"description" :
"""""",
}, # table
"ctlProtTransTunnelPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in ctlProtTransTunnelPortTable.""",
}, # row
"ctlProtTransTunnelMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.6.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"peer" : {
"nodetype" : "namednumber",
"number" : "0"
},
"tunnel" : {
"nodetype" : "namednumber",
"number" : "1"
},
"discard" : {
"nodetype" : "namednumber",
"number" : "2"
},
"network" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Bridge control protocol transparency mode for the port.
Modes: Peer(0), Tunnel(1), Discard(2), Network(3)""",
}, # column
"vlanStackSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7",
}, # node
"vlanStackState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""VLAN Stacking enabled/disabled for the switch.""",
}, # scalar
"vlanStackTpid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""SP TPID in hex format, e.g. 8100.""",
}, # scalar
"vlanStackPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.3",
"status" : "current",
"description" :
"""""",
}, # table
"vlanStackPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in vlanStackPortTable.""",
}, # row
"vlanStackPortMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"normal" : {
"nodetype" : "namednumber",
"number" : "1"
},
"access" : {
"nodetype" : "namednumber",
"number" : "2"
},
"tunnel" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Mode of the port.Set Access mode to have the switch add the SP TPID tag to all incoming
frames received on this port. Set Access mode for ingress ports at the
edge of the service provider's network. Set Tunnel mode (available for
Gigabit ports only) for egress ports at the edge of the service provider's
network. In order to support VLAN stacking on a port, the port must be able
to allow frames of 1526 Bytes (1522 Bytes + 4 Bytes for the second tag)
to pass through it. Access (0), tunnel (1)""",
}, # column
"vlanStackPortVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""VLAN ID used in service provider tag.""",
}, # column
"vlanStackPortPrio" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.7.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"prioriry-0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"prioriry-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"prioriry-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"prioriry-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"prioriry-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"prioriry-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"prioriry-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"prioriry-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""Priority value for service provider tag.
0 is the lowest priority level and 7 is the highest.""",
}, # column
"dot1xSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8",
}, # node
"portAuthState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled/disabled for the switch.""",
}, # scalar
"portAuthTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.4",
"status" : "current",
"description" :
"""""",
}, # table
"portAuthEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portAuthTable.""",
}, # row
"portAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""802.1x port re-authentication enabled or disabled on the port.""",
}, # column
"portReAuthEntryTimer" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.8.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Re-authentication timer in seconds.""",
}, # column
"hwMonitorInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9",
}, # node
"fanRpmTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1",
"status" : "current",
"description" :
"""""",
}, # table
"fanRpmEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1",
"status" : "current",
"linkage" : [
"fanRpmIndex",
],
"description" :
"""An entry in fanRpmTable.""",
}, # row
"fanRpmIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of FAN.""",
}, # column
"fanRpmCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Current speed in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Maximum speed measured in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Minimum speed measured in Revolutions Per Minute (RPM) on the fan.""",
}, # column
"fanRpmLowThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum speed at which a normal fan should work.""",
}, # column
"fanRpmDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates that this fan is functioning above the minimum speed.
'Error' indicates that this fan is functioning below the minimum speed.""",
}, # column
"tempTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2",
"status" : "current",
"description" :
"""""",
}, # table
"tempEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1",
"status" : "current",
"linkage" : [
"tempIndex",
],
"description" :
"""An entry in tempTable.""",
}, # row
"tempIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"mac" : {
"nodetype" : "namednumber",
"number" : "1"
},
"cpu" : {
"nodetype" : "namednumber",
"number" : "2"
},
"phy" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""Index of temperature unit. 1:MAC, 2:CPU, 3:PHY""",
}, # column
"tempCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current temperature measured at this sensor.""",
}, # column
"tempMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum temperature measured at this sensor.""",
}, # column
"tempMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum temperature measured at this sensor.""",
}, # column
"tempHighThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The upper temperature limit at this sensor.""",
}, # column
"tempDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates temperatures below the threshold and 'Error' for those above.""",
}, # column
"voltageTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3",
"status" : "current",
"description" :
"""""",
}, # table
"voltageEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1",
"status" : "current",
"linkage" : [
"voltageIndex",
],
"description" :
"""An entry in voltageTable.""",
}, # row
"voltageIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of voltage.""",
}, # column
"voltageCurValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The current voltage reading.""",
}, # column
"voltageMaxValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum voltage measured at this point.""",
}, # column
"voltageMinValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum voltage measured at this point.""",
}, # column
"voltageNominalValue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The normal voltage at wchich the switch work.""",
}, # column
"voltageLowThresh" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The minimum voltage at which the switch should work.""",
}, # column
"voltageDescr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.9.3.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""'Normal' indicates that the voltage is within an acceptable operating range
at this point; otherwise 'Error' is displayed.""",
}, # column
"snmpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10",
}, # node
"snmpGetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpSetCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapCommunity" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"snmpTrapDestTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapDestEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapDestTable.""",
}, # row
"snmpTrapDestIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""IP address of trap destination.""",
}, # column
"snmpTrapDestRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapDestPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The UDP port of the trap destination.""",
}, # column
"snmpTrapVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v2c" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP protocol version to send traps.""",
}, # column
"snmpTrapUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The user name for sending SNMPv3 traps.""",
}, # column
"snmpVersion" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v2c" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v3" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v3v2c" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The SNMP version to be used. v3v2c means that the manager
can get/set by SNMPv3 and can get by SNMPv2c.""",
}, # scalar
"snmpUserTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6",
"status" : "current",
"description" :
"""A table that contains SNMPv3 user information.""",
}, # table
"snmpUserEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6.1",
"status" : "current",
"linkage" : [
"snmpUserName",
],
"description" :
"""An entry of snmpUserTable.""",
}, # row
"snmpUserName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""The user name.""",
}, # column
"snmpUserSecurityLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"noAuthNoPriv" : {
"nodetype" : "namednumber",
"number" : "0"
},
"authNoPriv" : {
"nodetype" : "namednumber",
"number" : "1"
},
"authPriv" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The level of security at which SNMP messages can be sent or
with which operations are being processed.""",
}, # column
"snmpUserAuthProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"md5" : {
"nodetype" : "namednumber",
"number" : "0"
},
"sha" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of authentication protocol to be used.""",
}, # column
"snmpUserPrivProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.6.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"des" : {
"nodetype" : "namednumber",
"number" : "0"
},
"aes" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""The type of privacy protocol to be used.""",
}, # column
"snmpTrapGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7",
"status" : "current",
"description" :
"""""",
}, # table
"snmpTrapGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1",
"status" : "current",
"linkage" : [
"snmpTrapDestIP",
],
"description" :
"""An entry in snmpTrapGroupTable.""",
}, # row
"snmpTrapSystemGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"coldStart" : {
"nodetype" : "namednumber",
"number" : "0"
},
"warmStart" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fanSpeed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"temperature" : {
"nodetype" : "namednumber",
"number" : "3"
},
"voltage" : {
"nodetype" : "namednumber",
"number" : "4"
},
"reset" : {
"nodetype" : "namednumber",
"number" : "5"
},
"timeSync" : {
"nodetype" : "namednumber",
"number" : "6"
},
"intrusionlock" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapInterfaceGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"linkup" : {
"nodetype" : "namednumber",
"number" : "0"
},
"linkdown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"autonegotiation" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapAAAGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"authentication" : {
"nodetype" : "namednumber",
"number" : "0"
},
"accounting" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapIPGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"ping" : {
"nodetype" : "namednumber",
"number" : "0"
},
"traceroute" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"snmpTrapSwitchGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.10.7.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"stp" : {
"nodetype" : "namednumber",
"number" : "0"
},
"mactable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"rmon" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dateTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11",
}, # node
"dateTimeServerType" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"daytime" : {
"nodetype" : "namednumber",
"number" : "2"
},
"time" : {
"nodetype" : "namednumber",
"number" : "3"
},
"ntp" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""The time service protocol.""",
}, # scalar
"dateTimeServerIP" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""IP address of time server.""",
}, # scalar
"dateTimeZone" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The time difference between UTC. Ex: +01""",
}, # scalar
"dateTimeNewDateYear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in year.""",
}, # scalar
"dateTimeNewDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in month.""",
}, # scalar
"dateTimeNewDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new date in day.""",
}, # scalar
"dateTimeNewTimeHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in hour.""",
}, # scalar
"dateTimeNewTimeMinute" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in minute.""",
}, # scalar
"dateTimeNewTimeSecond" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""The new time in second.""",
}, # scalar
"dateTimeDaylightSavingTimeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10",
}, # node
"daylightSavingTimeState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service enabled/disabled for the switch.""",
}, # scalar
"daylightSavingTimeStartDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start week.""",
}, # scalar
"daylightSavingTimeStartDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start day.""",
}, # scalar
"daylightSavingTimeStartDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start month.""",
}, # scalar
"daylightSavingTimeStartDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service start time.""",
}, # scalar
"daylightSavingTimeEndDateWeek" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"first" : {
"nodetype" : "namednumber",
"number" : "1"
},
"second" : {
"nodetype" : "namednumber",
"number" : "2"
},
"third" : {
"nodetype" : "namednumber",
"number" : "3"
},
"fourth" : {
"nodetype" : "namednumber",
"number" : "4"
},
"last" : {
"nodetype" : "namednumber",
"number" : "5"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end week.""",
}, # scalar
"daylightSavingTimeEndDateDay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"sunday" : {
"nodetype" : "namednumber",
"number" : "0"
},
"monday" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tuesday" : {
"nodetype" : "namednumber",
"number" : "2"
},
"wednesday" : {
"nodetype" : "namednumber",
"number" : "3"
},
"thursday" : {
"nodetype" : "namednumber",
"number" : "4"
},
"friday" : {
"nodetype" : "namednumber",
"number" : "5"
},
"saturday" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end day.""",
}, # scalar
"daylightSavingTimeEndDateMonth" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"january" : {
"nodetype" : "namednumber",
"number" : "1"
},
"february" : {
"nodetype" : "namednumber",
"number" : "2"
},
"march" : {
"nodetype" : "namednumber",
"number" : "3"
},
"april" : {
"nodetype" : "namednumber",
"number" : "4"
},
"may" : {
"nodetype" : "namednumber",
"number" : "5"
},
"june" : {
"nodetype" : "namednumber",
"number" : "6"
},
"july" : {
"nodetype" : "namednumber",
"number" : "7"
},
"august" : {
"nodetype" : "namednumber",
"number" : "8"
},
"september" : {
"nodetype" : "namednumber",
"number" : "9"
},
"october" : {
"nodetype" : "namednumber",
"number" : "10"
},
"november" : {
"nodetype" : "namednumber",
"number" : "11"
},
"december" : {
"nodetype" : "namednumber",
"number" : "12"
},
},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end month.""",
}, # scalar
"daylightSavingTimeEndDateHour" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.11.10.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Daylight saving time service end time.""",
}, # scalar
"sysMgmt" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12",
}, # node
"sysMgmtConfigSave" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config_1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"config_2" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""If setting value is given, the variable write index will be set and running-config will be written to the assigned configuration file.
If not, running-config will be written to the booting one.""",
}, # scalar
"sysMgmtBootupConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"config_1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"config_2" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The setting value (read index) will be written into non-volatile memory.
While rebooting, the variable write index is equal to read index initially.
You can change the value of write index by CLI / MIB.""",
}, # scalar
"sysMgmtReboot" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reboot" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Reboot switch from SNMP. 1:Reboot, 0:Nothing""",
}, # scalar
"sysMgmtDefaultConfig" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"nothing" : {
"nodetype" : "namednumber",
"number" : "0"
},
"reset_to_default" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""Erase running config and reset to default.""",
}, # scalar
"sysMgmtLastActionStatus" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"success" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""Display status of last mgmt action.""",
}, # scalar
"sysMgmtSystemStatus" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"sysAlarmDetected" : {
"nodetype" : "namednumber",
"number" : "0"
},
"sysTemperatureError" : {
"nodetype" : "namednumber",
"number" : "1"
},
"sysFanRPMError" : {
"nodetype" : "namednumber",
"number" : "2"
},
"sysVoltageRangeError" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This variable indicates the status of the system.
The sysMgmtAlarmStatus is a bit map represented
a sum, therefore, it can represent multiple defects
simultaneously. The sysNoDefect should be set if and only if
no other flag is set.
The various bit positions are:
0 sysAlarmDetected
1 sysTemperatureError
2 sysFanRPMError
3 sysVoltageRangeError""",
}, # scalar
"sysMgmtCPUUsage" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Show device CPU load in %, it's the snapshot of CPU load when
getting the values.""",
}, # scalar
"sysMgmtCounterReset" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""Reset all port counters.""",
}, # scalar
"sysMgmtTftpServiceSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.10",
}, # node
"sysMgmtTftpServerIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.10.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
""" IP address of TFTP server""",
}, # scalar
"sysMgmtTftpRemoteFileName" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.12.10.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The file name that you want to backup to or restore from TFTP server""",
}, # scalar
"layer2Setup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13",
}, # node
"vlanTypeSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dot1Q" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port_based" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpSnoopingStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tagVlanPortIsolationState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"stpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpFilteringStateSetup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"unknownMulticastFrameForwarding" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flooding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"multicastGrpHostTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specify host timeout for all multicast groups when the specific port is in auto mode.""",
}, # scalar
"multicastGrpLeaveTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Specify leave timeout for all multicast groups.""",
}, # scalar
"reservedMulticastFrameForwarding" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"flooding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"drop" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnp8021pPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages for igmp-snooping(0~8, 8-No Change)""",
}, # scalar
"igmpsnpVlanMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.11",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"stpMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.12",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rstp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mrstp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"mstp" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"igmpsnpVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13",
"status" : "current",
"description" :
"""""",
}, # table
"igmpsnpVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpsnpVid",
],
"description" :
"""An entry in IgmpsnpVlanTable.""",
}, # row
"igmpsnpVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpsnpVlanName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"igmpsnpVlanRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.13.13.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14",
}, # node
"dnsIpAddress" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultMgmt" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"in_band" : {
"nodetype" : "namednumber",
"number" : "0"
},
"out_of_band" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"defaultGateway" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandIpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.4",
}, # node
"outOfBandIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.4.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandSubnetMask" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"outOfBandGateway" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"maxNumOfInbandIp" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"inbandIpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6",
"status" : "current",
"description" :
"""""",
}, # table
"inbandIpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"inbandEntryIp",
"inbandEntrySubnetMask",
],
"description" :
"""An entry in inbandIpTable.""",
}, # row
"inbandEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntrySubnetMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"inbandEntryRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.14.6.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15",
}, # node
"filterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1",
"status" : "current",
"description" :
"""""",
}, # table
"filterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"filterMacAddr",
"filterVid",
],
"description" :
"""An entry in filterTable.""",
}, # row
"filterName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterActionState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"discard_source" : {
"nodetype" : "namednumber",
"number" : "1"
},
"discard_destination" : {
"nodetype" : "namednumber",
"number" : "2"
},
"both" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"filterMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"filterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"filterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.15.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16",
}, # node
"mirrorState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorMonitorPort" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mirrorTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.3",
"status" : "current",
"description" :
"""""",
}, # table
"mirrorEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in mirrorTable.""",
}, # row
"mirrorMirroredState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mirrorDirection" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.16.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"ingress" : {
"nodetype" : "namednumber",
"number" : "0"
},
"egress" : {
"nodetype" : "namednumber",
"number" : "1"
},
"both" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17",
}, # node
"aggrState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrSystemPriority" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"aggrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.3",
"status" : "current",
"description" :
"""""",
}, # table
"aggrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.3.1",
"status" : "current",
"linkage" : [
"aggrGroupIndex",
],
"description" :
"""An entry in aggrGroupTable.""",
}, # row
"aggrGroupIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"aggrGroupState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrGroupDynamicState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.4",
"status" : "current",
"description" :
"""""",
}, # table
"aggrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.4.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in aggrPortTable.""",
}, # row
"aggrPortGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"t1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"t2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"t3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"t4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"t5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"t6" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aggrPortDynamicStateTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.17.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18",
}, # node
"accessCtlTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1",
"status" : "current",
"description" :
"""""",
}, # table
"accessCtlEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1",
"status" : "current",
"linkage" : [
"accessCtlService",
],
"description" :
"""An entry in accessCtlTable.""",
}, # row
"accessCtlService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"telnet" : {
"nodetype" : "namednumber",
"number" : "1"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"http" : {
"nodetype" : "namednumber",
"number" : "4"
},
"https" : {
"nodetype" : "namednumber",
"number" : "5"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "6"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accessCtlEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlServicePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accessCtlTimeout" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2",
"status" : "current",
"description" :
"""""",
}, # table
"securedClientEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1",
"status" : "current",
"linkage" : [
"securedClientIndex",
],
"description" :
"""An entry in securedClientTable.""",
}, # row
"securedClientIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"securedClientEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientStartIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientEndIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"securedClientService" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.18.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Bits",
"telnet" : {
"nodetype" : "namednumber",
"number" : "0"
},
"ftp" : {
"nodetype" : "namednumber",
"number" : "1"
},
"http" : {
"nodetype" : "namednumber",
"number" : "2"
},
"icmp" : {
"nodetype" : "namednumber",
"number" : "3"
},
"snmp" : {
"nodetype" : "namednumber",
"number" : "4"
},
"ssh" : {
"nodetype" : "namednumber",
"number" : "5"
},
"https" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"queuingMethodSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19",
}, # node
"portQueuingMethodTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19.1",
"status" : "current",
"description" :
"""""",
}, # table
"portQueuingMethodEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
"portQueuingMethodQueue",
],
"description" :
"""An entry in portQueuingMethodTable.""",
}, # row
"portQueuingMethodQueue" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0...7""",
}, # column
"portQueuingMethodWeight" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.19.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0...15""",
}, # column
"dhcpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20",
}, # node
"globalDhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1",
}, # node
"globalDhcpRelayEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayOption82Enable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"globalDhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfGlobalDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"globalDhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.6",
"status" : "current",
"description" :
"""""",
}, # table
"globalDhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.6.1",
"create" : "true",
"status" : "current",
"linkage" : [
"globalDhcpRelayRemoteServerIp",
],
"description" :
"""An entry in globalDhcpRelayRemoteServerTable.""",
}, # row
"globalDhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"globalDhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.1.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServer" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2",
}, # node
"maxNumberOfDhcpServers" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of DHCP server entries that can be created.
A value of 0 for this object implies that there exists settings for
global DHCP relay.""",
}, # scalar
"dhcpServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpServerVid",
],
"description" :
"""An entry in dhcpServerTable.""",
}, # row
"dhcpServerVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpServerStartAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerPoolSize" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerPrimaryDNS" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerSecondaryDNS" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelay" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3",
}, # node
"dhcpRelayInfoData" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"maxNumberOfDhcpRelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The maximum number of DHCP relay entries that can be created.
A value of 0 for this object implies that there exists settings for
global DHCP relay.""",
}, # scalar
"maxNumberOfDhcpRelayRemoteServer" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpRelayRemoteServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.4",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayRemoteServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.4.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
"dhcpRelayRemoteServerIp",
],
"description" :
"""An entry in dhcpRelayRemoteServerTable.""",
}, # row
"dhcpRelayVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpRelayRemoteServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.5",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpRelayEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.5.1",
"status" : "current",
"linkage" : [
"dhcpRelayVid",
],
"description" :
"""An entry in dhcpRelayTable.""",
}, # row
"dhcpRelayOption82Enable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpRelayInfoEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.20.3.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21",
}, # node
"maxNumberOfStaticRoutes" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"staticRouteTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2",
"status" : "current",
"description" :
"""""",
}, # table
"staticRouteEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"staticRouteIp",
"staticRouteMask",
],
"description" :
"""An entry in staticRouteTable.""",
}, # row
"staticRouteName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"staticRouteMask" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"staticRouteGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"staticRouteRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.21.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInfo" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22",
}, # node
"arpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1",
"status" : "current",
"description" :
"""""",
}, # table
"arpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1",
"status" : "current",
"linkage" : [
"arpIpAddr",
"arpMacVid",
],
"description" :
"""An entry in arpTable.""",
}, # row
"arpIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpMacVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.22.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""1-static, 2-dynamic""",
}, # column
"portOpModeSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23",
}, # node
"portOpModePortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1",
"status" : "current",
"description" :
"""""",
}, # table
"portOpModePortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portOpModePortTable.""",
}, # row
"portOpModePortFlowCntl" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"off" : {
"nodetype" : "namednumber",
"number" : "0"
},
"on" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "32"
},
],
"range" : {
"min" : "0",
"max" : "32"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortLinkUpType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"down" : {
"nodetype" : "namednumber",
"number" : "0"
},
"copper" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fiber" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"portOpModePortIntrusionLock" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"portOpModePortLBTestStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"underTesting" : {
"nodetype" : "namednumber",
"number" : "1"
},
"success" : {
"nodetype" : "namednumber",
"number" : "2"
},
"fail" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""This entry display latest loopback test status of port while performing loopback test.""",
}, # column
"portOpModePortCounterReset" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.23.1.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enable" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disable" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""This entry resets port counter.""",
}, # column
"portBasedVlanSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24",
}, # node
"portBasedVlanPortListTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1",
"status" : "current",
"description" :
"""""",
}, # table
"portBasedVlanPortListEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in portBasedVlanPortListTable.""",
}, # row
"portBasedVlanPortListMembers" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.24.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25",
}, # node
"multicastPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in multicastPortTable.""",
}, # row
"multicastPortImmediateLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortMaxGroupLimited" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortMaxOfGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0..255""",
}, # column
"multicastPortIgmpFilteringProfile" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"multicastPortQuerierMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.25.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"auto" : {
"nodetype" : "namednumber",
"number" : "1"
},
"fixed" : {
"nodetype" : "namednumber",
"number" : "2"
},
"edge" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""Specify query mode for each port""",
}, # column
"multicastStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26",
}, # node
"multicastStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1",
"status" : "current",
"description" :
"""""",
}, # table
"multicastStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1",
"status" : "current",
"linkage" : [
"multicastStatusVlanID",
"multicastStatusPort",
"multicastStatusGroup",
],
"description" :
"""An entry in multicastStatusTable.""",
}, # row
"multicastStatusIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastStatusGroup" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2",
"status" : "current",
"description" :
"""A count table of igmp query/report/leave message.""",
}, # table
"igmpCountEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1",
"status" : "current",
"linkage" : [
"igmpCountIndex",
],
"description" :
"""An entry in igmpCountTable.""",
}, # row
"igmpCountIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Index of IgmpCountEntry. 0 means total count in whole system""",
}, # column
"igmpCountInQuery" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInReport" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInQueryDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInReportDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountInLeaveDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutQuery" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutReport" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpCountOutLeave" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.2.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.3",
"status" : "current",
"description" :
"""""",
}, # table
"multicastVlanStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.3.1",
"status" : "current",
"linkage" : [
"multicastVlanStatusVlanID",
],
"description" :
"""An entry in multicastVlanStatusTable.""",
}, # row
"multicastVlanStatusVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "1"
},
"mvr" : {
"nodetype" : "namednumber",
"number" : "2"
},
"static" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"multicastVlanQueryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.26.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"Q-BRIDGE-MIB", "name" : "PortList"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27",
}, # node
"igmpFilteringMaxNumberOfProfile" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"igmpFilteringProfileTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2",
"status" : "current",
"description" :
"""""",
}, # table
"igmpFilteringProfileEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"igmpFilteringProfileName",
"igmpFilteringProfileStartAddress",
"igmpFilteringProfileEndAddress",
],
"description" :
"""An entry in igmpFilteringProfileTable.""",
}, # row
"igmpFilteringProfileName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"igmpFilteringProfileRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.27.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28",
}, # node
"maxNumberOfMVR" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2",
"status" : "current",
"description" :
"""""",
}, # table
"mvrEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
],
"description" :
"""An entry in mvrTable.""",
}, # row
"mvrVlanID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""1..4094""",
}, # column
"mvrName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "0"
},
"compatible" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvr8021pPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Set the 802.1p priority of control messages within MVR (0~7)""",
}, # column
"mvrPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.3",
"status" : "current",
"description" :
"""""",
}, # table
"mvrPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.3.1",
"status" : "current",
"linkage" : [
"mvrVlanID",
"dot1dBasePort",
],
"description" :
"""An entry in mvrPortTable.""",
}, # row
"mvrPortRole" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "1"
},
"source_port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"receiver_port" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrPortTagging" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"maxNumberOfMvrGroup" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"mvrGroupTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5",
"status" : "current",
"description" :
"""""",
}, # table
"mvrGroupEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mvrVlanID",
"mvrGroupName",
],
"description" :
"""An entry in mvrGroupTable.""",
}, # row
"mvrGroupName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"mvrGroupStartAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupEndAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mvrGroupRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.28.5.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"layer3Setup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.29",
}, # node
"routerRipState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.29.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerIgmpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.29.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerDvmrpState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.29.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerDvmrpThreshold" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.29.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"routerIpmcPortSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.30",
}, # node
"routerIpmcPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.30.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerIpmcPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.30.1.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in routerIpmcPortTable.""",
}, # row
"routerIpmcPortEgressUntagVlan" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.30.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31",
}, # node
"routerVrrpMaxNumber" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Always set it as 14.""",
}, # scalar
"routerVrrpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
"routerVrrpVirtualID",
"routerVrrpUplinkGateway",
],
"description" :
"""An entry in routerVrrpTable.""",
}, # row
"routerVrrpVirtualID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpUplinkGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpPreempt" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpInterval" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""1-255""",
}, # column
"routerVrrpPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""1-254""",
}, # column
"routerVrrpPrimaryVirtualIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpSecondaryVirtualIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"rpVrrpRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.2.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpDomainTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.3",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpDomainEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.3.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerVrrpTable.""",
}, # row
"routerVrrpAuthType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"simple" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpAuthKey" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.31.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerVrrpStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32",
}, # node
"routerVrrpStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerVrrpStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1",
"status" : "current",
"linkage" : [
"routerVrrpStatusIpAddress",
"routerVrrpStatusIpMaskBits",
"routerVrrpStatusVirtualID",
],
"description" :
""" """,
}, # row
"routerVrrpStatusIpAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusIpMaskBits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusVirtualID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusVRStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerVrrpStatusUpLinkStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.32.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33",
}, # node
"routerDomainTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1",
"status" : "current",
"description" :
"""""",
}, # table
"routerDomainEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerDomainTable.""",
}, # row
"routerDomainIpAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainIpMaskBits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routerDomainIpTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2",
"status" : "current",
"description" :
"""""",
}, # table
"routerDomainIpEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2.1",
"status" : "current",
"linkage" : [
"routerDomainIpAddress",
"routerDomainIpMaskBits",
],
"description" :
"""An entry in routerDomainIpTable.""",
}, # row
"routerDomainIpRipDirection" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"outgoing" : {
"nodetype" : "namednumber",
"number" : "1"
},
"incoming" : {
"nodetype" : "namednumber",
"number" : "2"
},
"both" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpRipVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"v1" : {
"nodetype" : "namednumber",
"number" : "0"
},
"v2b" : {
"nodetype" : "namednumber",
"number" : "1"
},
"v2m" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpIgmpVersion" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"igmp_v1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"igmp_v2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"igmp_v3" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"routerDomainIpDvmrp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.33.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"diffservSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34",
}, # node
"diffservState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"diffservMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.2",
"status" : "current",
"description" :
"""""",
}, # table
"diffservMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.2.1",
"status" : "current",
"linkage" : [
"diffservMapDscp",
],
"description" :
"""An entry in diffservMapTable.""",
}, # row
"diffservMapDscp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""0-63""",
}, # column
"diffservMapPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-7""",
}, # column
"diffservPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.3",
"status" : "current",
"description" :
"""""",
}, # table
"diffservPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.3.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in diffservPortTable.""",
}, # row
"diffservPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.34.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35",
}, # node
"clusterManager" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1",
}, # node
"clusterMaxNumOfManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterManagerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterManagerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterManagerVid",
],
"description" :
"""An entry in clusterManagerTable.""",
}, # row
"clusterManagerVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterManagerName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterManagerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMembers" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2",
}, # node
"clusterMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"clusterMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1",
"create" : "true",
"status" : "current",
"linkage" : [
"clusterMemberMac",
],
"description" :
"""An entry in clusterMemberTable.""",
}, # row
"clusterMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"clusterMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterMemberPassword" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterMemberRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"clusterCandidates" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3",
}, # node
"clusterCandidateTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1",
"status" : "current",
"description" :
"""""",
}, # table
"clusterCandidateEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1",
"status" : "current",
"linkage" : [
"clusterCandidateMac",
],
"description" :
"""An entry in clusterCandidateTable.""",
}, # row
"clusterCandidateMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterCandidateModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4",
}, # node
"clusterStatusRole" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"none" : {
"nodetype" : "namednumber",
"number" : "0"
},
"manager" : {
"nodetype" : "namednumber",
"number" : "1"
},
"member" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusManager" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clsuterStatusMaxNumOfMember" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"clusterStatusMemberTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4",
"status" : "current",
"description" :
"""""",
}, # table
"clusterStatusMemberEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1",
"status" : "current",
"linkage" : [
"clusterStatusMemberMac",
],
"description" :
"""An entry in clusterStatusMemberTable.""",
}, # row
"clusterStatusMemberMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberModel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"clusterStatusMemberStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"error" : {
"nodetype" : "namednumber",
"number" : "0"
},
"online" : {
"nodetype" : "namednumber",
"number" : "1"
},
"offline" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"faultMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36",
"status" : "current",
}, # node
"eventObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1",
}, # node
"eventTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1",
"status" : "current",
"description" :
"""A list of currently active fault events. All faults
of normal type regardless of their severity level
are recorded in the event table. When a normal
type fault is cleared it is deleted from the event
table.""",
}, # table
"eventEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1",
"status" : "current",
"linkage" : [
"eventSeqNum",
],
"description" :
"""An entry containing information about an
event in the event table.""",
}, # row
"eventSeqNum" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This variable represents the sequence number of an event.
Sequence number is incremented monotonically starting
from 0 until it reaches its maximum and wraps around back
to 0.
Sequence number is incremented when
- the state of a normal type fault is set on (the same sequence
number is present in the events table as well as in the trap
that is sent to notify about the fault on event)
- delta event occurs (sequence number present in trap message)
- the state of a normal type fault is set off (sequence number
present in trap that is sent to notify for clearing).""",
}, # column
"eventEventId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventIdNumber"},
},
"access" : "readonly",
"description" :
"""This variable represents the event ID which uniquely
identifies the event in the entire system.""",
}, # column
"eventName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "40"
},
],
"range" : {
"min" : "0",
"max" : "40"
},
},
},
"access" : "readonly",
"description" :
"""This variable represents the name of the event, for
example 'Ethernet Link Down'""",
}, # column
"eventInstanceType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "InstanceType"},
},
"access" : "readonly",
"description" :
"""This variable represents the type of InstanceId of a
particular event in the event table. In brief
the instanceType refers to the type of sub-component
generating this event in the system, for example
switch (5). For more details see the textual
conventions section.
AFFECTS: eventInstanceId,
eventInstanceName""",
}, # column
"eventInstanceId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable represents the InstanceId of a particular
event in the event current table. In brief the instanceId
refers to the sub-component generating this event in the
system, for example '1' for port 1. For more details see
the textual conventions section.
DEPENDS ON: eventInstanceType""",
}, # column
"eventInstanceName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""This variable is mainly used to store additional information
about the sub-component that is generating an event. For
example this field may specify what cooling fan is faulty.
DEPENDS ON: eventInstanceType""",
}, # column
"eventSeverity" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventSeverity"},
},
"access" : "readonly",
"description" :
"""This variable dictates the urgency of action when a event
occurs. There are four severity levels - Critical, Major,
Minor, and Informational. Critical events are those, which
require immediate operator intervention to prevent/reduce
system down time. Major events require quick attention and
Minor events possibly require some attention. Informational
events indicate the occurrence of events that may need to be
investigated.""",
}, # column
"eventSetTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "UtcTimeStamp"},
},
"access" : "readonly",
"description" :
"""This table contains only normal events and this variable
represents the time when the event become active, i.e. the
number of seconds since Jan 1, 1970 12:00AM.""",
}, # column
"eventDescription" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readonly",
"description" :
"""This variable contains a description of the event and reasons
behind the event. This is a free format alpha-numeric string
that is set by the entity generating this event. This variable
may be empty if there is no usefull information to report.
The maximum length of this string is 255 characters.""",
}, # column
"eventServAffective" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventServiceAffective"},
},
"access" : "readonly",
"description" :
"""This variable indicates whether the event is service affective or not""",
}, # column
"faultTrapsMIB" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37",
"status" : "current",
}, # node
"trapInfoObjects" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.1",
}, # node
"trapRefSeqNum" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Indicates the former sequence number of a cleared event
in the event table. Not intended to read but only used in
trap notifications.""",
}, # scalar
"trapPersistence" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "EventPersistence"},
},
"access" : "readonly",
"description" :
"""Indicates whether the event is delta (automatically and
immediately cleared) or normal (not automatically cleared).
Not intended to read but only used in trap notifications.""",
}, # scalar
"trapSenderNodeId" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Represents the node ID of the sending network element. If not
supported should be set to 0. Not intended to read but only
used in trap notifications.""",
}, # scalar
"trapNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.2",
}, # node
"ipStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38",
}, # node
"ipStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1",
"status" : "current",
"description" :
"""""",
}, # table
"ipStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1.1",
"status" : "current",
"linkage" : [
"ipStatusIPAddress",
"ipStatusVid",
],
"description" :
"""""",
}, # row
"ipStatusIPAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.38.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39",
}, # node
"routingStatusTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1",
"status" : "current",
"description" :
"""""",
}, # table
"routingStatusEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1",
"status" : "current",
"linkage" : [
"routingStatusDestAddress",
],
"description" :
"""""",
}, # row
"routingStatusDestAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusDestMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusGateway" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusInterface" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"routingStatusType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.39.1.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rip" : {
"nodetype" : "namednumber",
"number" : "1"
},
"bgp" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ospf" : {
"nodetype" : "namednumber",
"number" : "3"
},
"static" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfExt" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40",
}, # node
"ospfInterfaceTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1",
"status" : "current",
"description" :
"""""",
}, # table
"ospfInterfaceEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1",
"status" : "current",
"linkage" : [
"ospfIfIpAddress",
"ospfAddressLessIf",
],
"description" :
"""""",
}, # row
"ospfIfKeyId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfIfMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfDesignatedRouterID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfBackupDesignatedRouterID" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfNbrCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfAdjacentNbrCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfIfHelloDueTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfAreaExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2",
"status" : "current",
"description" :
"""""",
}, # table
"ospfAreaExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2.1",
"status" : "current",
"linkage" : [
"ospfAreaId",
],
"description" :
"""""",
}, # row
"ospfAreaExtName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3",
"status" : "current",
"description" :
"""""",
}, # table
"ospfRedistributeRouteEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3.1",
"status" : "current",
"linkage" : [
"ospfRedistributeRouteProtocol",
],
"description" :
"""""",
}, # row
"ospfRedistributeRouteProtocol" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"rip" : {
"nodetype" : "namednumber",
"number" : "1"
},
"static" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfRedistributeRouteState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfRedistributeRouteMetric" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfNbrExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4",
"status" : "current",
"description" :
"""""",
}, # table
"ospfNbrExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1",
"status" : "current",
"linkage" : [
"ospfNbrIpAddr",
"ospfNbrAddressLessIndex",
],
"description" :
"""""",
}, # row
"ospfNbrExtRole" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dr" : {
"nodetype" : "namednumber",
"number" : "1"
},
"backup" : {
"nodetype" : "namednumber",
"number" : "2"
},
"dr_other" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtDeadtime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtInterface" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtRXmtL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtRqstL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfNbrExtDBsmL" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.4.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5",
"status" : "current",
"description" :
"""""",
}, # table
"ospfLsdbExtEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5.1",
"status" : "current",
"linkage" : [
"ospfLsdbAreaId",
"ospfLsdbType",
"ospfLsdbLSID",
"ospfLsdbRouterId",
],
"description" :
"""""",
}, # row
"ospfLsdbExtLinkCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtRouteAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfLsdbExtRouteMaskbits" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.5.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ospfVirtualLinkTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.6",
"status" : "current",
"description" :
"""""",
}, # table
"ospfVirtualLinkEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.6.1",
"status" : "current",
"linkage" : [
"ospfVirtIfAreaID",
"ospfVirtIfNeighbor",
],
"description" :
"""""",
}, # row
"ospfVirtualLinkName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.6.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ospfVirtualLinkKeyId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.40.6.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41",
}, # node
"sysLogState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""sysLog enabled/disabled for the switch.""",
}, # scalar
"sysLogTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2.1",
"status" : "current",
"linkage" : [
"sysLogTypeIndex",
],
"description" :
"""An entry in sysLogTypeTable.""",
}, # row
"sysLogTypeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"sysLogTypeState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogTypeFacility" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"local_user0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"local_user1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"local_user2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"local_user3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"local_user4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"local_user5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"local_user6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"local_user7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.3",
"status" : "current",
"description" :
"""""",
}, # table
"sysLogServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"sysLogServerAddress",
],
"description" :
"""An entry in sysLogServerTable.""",
}, # row
"sysLogServerAddress" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"sysLogServerLogLevel" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"level0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"level0-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"level0-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"level0-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"level0-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"level0-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"level0-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"level0-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"sysLogServerRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.41.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mrstp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42",
}, # node
"mrstpSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1",
}, # node
"mrstpBridgeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"mrstpBridgeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1",
"status" : "current",
"linkage" : [
"mrstpBridgeIndex",
],
"description" :
"""An entry in mrstpBridgeTable.""",
}, # row
"mrstpBridgeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The tree index of the MRSTP.""",
}, # column
"mrstpState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Enabled/disabled on the mrstp bridge.""",
}, # column
"mrstpProtocolSpecification" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"unknown" : {
"nodetype" : "namednumber",
"number" : "1"
},
"decLb100" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ieee8021d" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""An indication of what version of the Spanning
Tree Protocol is being run. The value
'decLb100(2)' indicates the DEC LANbridge 100
Spanning Tree protocol. IEEE 802.1d
implementations will return 'ieee8021d(3)'. If
future versions of the IEEE Spanning Tree Protocol
are released that are incompatible with the
current version a new value will be defined.""",
}, # column
"mrstpPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "65535"
},
],
"range" : {
"min" : "0",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the write-able portion of the Bridge
ID, i.e., the first two octets of the (8 octet
long) Bridge ID. The other (last) 6 octets of the
Bridge ID are given by the value of
dot1dBaseBridgeAddress.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.7""",
}, # column
"mrstpTimeSinceTopologyChange" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
"""The time (in hundredths of a second) since the
last time a topology change was detected by the
bridge entity.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.1.1.3""",
}, # column
"mrstpTopChanges" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.6",
"status" : "current",
"access" : "readonly",
"description" :
"""The total number of topology changes detected by
this bridge since the management entity was last
reset or initialized.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.1.1.3""",
}, # column
"mrstpDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The bridge identifier of the root of the spanning
tree as determined by the Spanning Tree Protocol
as executed by this node. This value is used as
the Root Identifier parameter in all Configuration
Bridge PDUs originated by this node.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.1""",
}, # column
"mrstpRootCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The cost of the path to the root as seen from
this bridge.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.2""",
}, # column
"mrstpRootPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The port number of the port which offers the
lowest cost path from this bridge to the root
bridge.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.3""",
}, # column
"mrstpMaxAge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The maximum age of Spanning Tree Protocol
information learned from the network on any port
before it is discarded, in units of hundredths of
a second. This is the actual value that this
bridge is currently using.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.4""",
}, # column
"mrstpHelloTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""The amount of time between the transmission of
Configuration bridge PDUs by this node on any port
when it is the root of the spanning tree or trying
to become so, in units of hundredths of a second.
This is the actual value that this bridge is
currently using.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.5""",
}, # column
"mrstpHoldTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""This time value determines the interval length
during which no more than two Configuration bridge
PDUs shall be transmitted by this node, in units
of hundredths of a second.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.14""",
}, # column
"mrstpForwardDelay" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "Timeout"},
},
"access" : "readonly",
"description" :
"""This time value, measured in units of hundredths
of a second, controls how fast a port changes its
spanning state when moving towards the Forwarding
state. The value determines how long the port
stays in each of the Listening and Learning
states, which precede the Forwarding state. This
value is also used, when a topology change has
been detected and is underway, to age all dynamic
entries in the Forwarding Database. [Note that
this value is the one that this bridge is
currently using, in contrast to
mrstpBridgeForwardDelay which is the value that
this bridge and all others would start using
if/when this bridge were to become the root.]""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.6""",
}, # column
"mrstpBridgeMaxAge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.14",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "600",
"max" : "4000"
},
],
"range" : {
"min" : "600",
"max" : "4000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for MaxAge when
this bridge is acting as the root. Note that
802.1D-1990 specifies that the range for this
parameter is related to the value of
mrstpBridgeHelloTime. The granularity of this
timer is specified by 802.1D-1990 to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.8""",
}, # column
"mrstpBridgeHelloTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.15",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "100",
"max" : "1000"
},
],
"range" : {
"min" : "100",
"max" : "1000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for HelloTime when
this bridge is acting as the root. The
granularity of this timer is specified by 802.1D-
1990 to be 1 second. An agent may return a
badValue error if a set is attempted to a value
which is not a whole number of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.9""",
}, # column
"mrstpBridgeForwardDelay" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.16",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "400",
"max" : "3000"
},
],
"range" : {
"min" : "400",
"max" : "3000"
},
},
},
"access" : "readwrite",
"description" :
"""The value that all bridges use for ForwardDelay
when this bridge is acting as the root. Note that
802.1D-1990 specifies that the range for this
parameter is related to the value of
mrstpBridgeMaxAge. The granularity of this
timer is specified by 802.1D-1990 to be 1 second.
An agent may return a badValue error if a set is
attempted to a value which is not a whole number
of seconds.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.3.10""",
}, # column
"mrstpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2",
"status" : "current",
"description" :
"""A table that contains port-specific information
for the Spanning Tree Protocol.""",
}, # table
"mrstpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1",
"status" : "current",
"linkage" : [
"mrstpPort",
],
"description" :
"""A list of information maintained by every port
about the Spanning Tree Protocol state for that
port.""",
}, # row
"mrstpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The port number of the port for which this entry
contains Spanning Tree Protocol management
information.""",
"reference>" :
"""IEEE 802.1D-1990: Section 6.8.2.1.2""",
}, # column
"mrstpPortPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""The value of the priority field which is
contained in the first (in network byte order)
octet of the (2 octet long) Port ID. The other
octet of the Port ID is given by the value of
mrstpPort.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.1""",
}, # column
"mrstpPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"blocking" : {
"nodetype" : "namednumber",
"number" : "2"
},
"listening" : {
"nodetype" : "namednumber",
"number" : "3"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "4"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "5"
},
"broken" : {
"nodetype" : "namednumber",
"number" : "6"
},
},
},
"access" : "readonly",
"description" :
"""The port's current state as defined by
application of the Spanning Tree Protocol. This
state controls what action a port takes on
reception of a frame. If the bridge has detected
a port that is malfunctioning it will place that
port into the broken(6) state. For ports which
are disabled (see mrstpPortEnable), this object
will have a value of disabled(1).""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.2""",
}, # column
"mrstpPortEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""The enabled/disabled status of the port.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.2""",
}, # column
"mrstpPortPathCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""The contribution of this port to the path cost of
paths towards the spanning tree root which include
this port. 802.1D-1990 recommends that the
default value of this parameter be in inverse
proportion to the speed of the attached LAN.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.3""",
}, # column
"mrstpPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The unique Bridge Identifier of the Bridge
recorded as the Root in the Configuration BPDUs
transmitted by the Designated Bridge for the
segment to which the port is attached.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.4""",
}, # column
"mrstpPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""The path cost of the Designated Port of the
segment connected to this port. This value is
compared to the Root Path Cost field in received
bridge PDUs.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.5""",
}, # column
"mrstpPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
"""The Bridge Identifier of the bridge which this
port considers to be the Designated Bridge for
this port's segment.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.6""",
}, # column
"mrstpPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.9",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "2",
"max" : "2"
},
],
"range" : {
"min" : "2",
"max" : "2"
},
},
},
"access" : "readonly",
"description" :
"""The Port Identifier of the port on the Designated
Bridge for this port's segment.""",
"reference>" :
"""IEEE 802.1D-1990: Section 4.5.5.7""",
}, # column
"mrstpPortForwardTransitions" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.10",
"status" : "current",
"access" : "readonly",
"description" :
"""The number of times this port has transitioned
from the Learning state to the Forwarding state.""",
}, # column
"mrstpPortOnBridgeIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Indetify the bridge index that this port joined to in MRSTP.""",
}, # column
"mrstpNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.2",
}, # node
"radiusServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43",
}, # node
"radiusAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1",
}, # node
"radiusAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1",
"status" : "current",
"linkage" : [
"radiusAuthServerIndex",
],
"description" :
"""An entry in radiusAuthServerTable.""",
}, # row
"radiusAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2",
}, # node
"radiusAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"radiusAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"radiusAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1",
"status" : "current",
"linkage" : [
"radiusAcctServerIndex",
],
"description" :
"""An entry in radiusAcctServerTable.""",
}, # row
"radiusAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"radiusAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerUdpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"radiusAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44",
}, # node
"tacacsAuthServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1",
}, # node
"tacacsAuthServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAuthServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAuthServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1",
"status" : "current",
"linkage" : [
"tacacsAuthServerIndex",
],
"description" :
"""An entry in tacacsAuthServerTable.""",
}, # row
"tacacsAuthServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAuthServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAuthServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2",
}, # node
"tacacsAcctServerTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"tacacsAcctServerTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"tacacsAcctServerEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1",
"status" : "current",
"linkage" : [
"tacacsAcctServerIndex",
],
"description" :
"""An entry in tacacsAcctServerTable.""",
}, # row
"tacacsAcctServerIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "noaccess",
"description" :
"""""",
}, # column
"tacacsAcctServerIpAddr" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerTcpPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"tacacsAcctServerSharedSecret" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"aaaSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45",
}, # node
"authenticationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1",
}, # node
"authenticationTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1.1",
"status" : "current",
"description" :
"""""",
}, # table
"authenticationTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1.1.1",
"status" : "current",
"linkage" : [
"authenticationTypeName",
],
"description" :
"""An entry in authenticationTypeTable.""",
}, # row
"authenticationTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"authenticationTypeMethodList" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.1.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "OctetString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2",
}, # node
"accountingUpdatePeriod" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"accountingTypeTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2",
"status" : "current",
"description" :
"""""",
}, # table
"accountingTypeEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1",
"status" : "current",
"linkage" : [
"accountingTypeName",
],
"description" :
"""An entry in accountingTypeTable.""",
}, # row
"accountingTypeName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"accountingTypeActive" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeBroadcast" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMode" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"start-stop" : {
"nodetype" : "namednumber",
"number" : "1"
},
"stop-only" : {
"nodetype" : "namednumber",
"number" : "2"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypeMethod" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"radius" : {
"nodetype" : "namednumber",
"number" : "1"
},
"tacacs" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"accountingTypePrivilege" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"privilege-0" : {
"nodetype" : "namednumber",
"number" : "0"
},
"privilege-1" : {
"nodetype" : "namednumber",
"number" : "1"
},
"privilege-2" : {
"nodetype" : "namednumber",
"number" : "2"
},
"privilege-3" : {
"nodetype" : "namednumber",
"number" : "3"
},
"privilege-4" : {
"nodetype" : "namednumber",
"number" : "4"
},
"privilege-5" : {
"nodetype" : "namednumber",
"number" : "5"
},
"privilege-6" : {
"nodetype" : "namednumber",
"number" : "6"
},
"privilege-7" : {
"nodetype" : "namednumber",
"number" : "7"
},
"privilege-8" : {
"nodetype" : "namednumber",
"number" : "8"
},
"privilege-9" : {
"nodetype" : "namednumber",
"number" : "9"
},
"privilege-10" : {
"nodetype" : "namednumber",
"number" : "10"
},
"privilege-11" : {
"nodetype" : "namednumber",
"number" : "11"
},
"privilege-12" : {
"nodetype" : "namednumber",
"number" : "12"
},
"privilege-13" : {
"nodetype" : "namednumber",
"number" : "13"
},
"privilege-14" : {
"nodetype" : "namednumber",
"number" : "14"
},
"not-available" : {
"nodetype" : "namednumber",
"number" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100",
}, # node
"dhcpSnpVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1.1",
"status" : "current",
"linkage" : [
"dhcpSnpVlanEntryVid",
],
"description" :
"""""",
}, # row
"dhcpSnpVlanEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryOption82Enable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpVlanEntryInfo" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2.1",
"status" : "current",
"linkage" : [
"dhcpSnpPortEntryPort",
],
"description" :
"""""",
}, # row
"dhcpSnpPortEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpPortEntryTrust" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"dhcpSnpPortEntryRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.2.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2048"
},
],
"range" : {
"min" : "0",
"max" : "2048"
},
},
},
"access" : "readwrite",
"description" :
"""0 means unlimited""",
}, # column
"dhcpSnpBindTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3",
"status" : "current",
"description" :
"""""",
}, # table
"dhcpSnpBindEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1",
"status" : "current",
"linkage" : [
"dhcpSnpBindEntryMac",
"dhcpSnpBindEntryVid",
],
"description" :
"""""",
}, # row
"dhcpSnpBindEntryMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryIP" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryLease" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"dynamic" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpBindEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"dhcpSnpEnable" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDb" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5",
}, # node
"dhcpSnpDbAbort" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbWriteDelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbUrl" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbUrlRenew" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStat" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5",
}, # node
"dhcpSnpDbStatClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatDelayExpiry" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatAbortExpiry" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastSuccTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastFailTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastFailReason" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatTotalAttempt" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatStartupFail" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccTrans" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailTrans" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.11",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccRead" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.12",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailRead" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.13",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatSuccWrite" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.14",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatFailWrite" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.15",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDbStatLastIgnoreBindCol" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.17",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: binding collision""",
}, # scalar
"dhcpSnpDbStatLastIgnoreExpireLease" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.18",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: expired leases""",
}, # scalar
"dhcpSnpDbStatLastIgnoreInvalidIntf" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.19",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: invalid interface""",
}, # scalar
"dhcpSnpDbStatLastIgnoreUnsuppVlan" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.20",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: unsupported vlans""",
}, # scalar
"dhcpSnpDbStatLastIgnoreParse" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.21",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Last ignored: parsing error""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreBindCol" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.22",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: binding collision""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreExpireLease" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.23",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: expired leases""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreInvalidIntf" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.24",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: invalid interface""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreUnsuppVlan" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.25",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: unsupported vlans""",
}, # scalar
"dhcpSnpDbStatTotalIgnoreParse" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.26",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""Total ignored: parsing error""",
}, # scalar
"dhcpSnpDbStatLastIgnoreTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.5.5.27",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readonly",
"description" :
"""""",
}, # scalar
"dhcpSnpDhcpVlan" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.6",
}, # node
"dhcpSnpDhcpVlanVid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.100.6.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "4094"
},
],
"range" : {
"min" : "0",
"max" : "4094"
},
},
},
"access" : "readwrite",
"description" :
"""0: disable DHCP VLAN.""",
}, # scalar
"ipsg" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101",
}, # node
"ipsgTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1",
"status" : "current",
"description" :
"""""",
}, # table
"ipsgEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1",
"create" : "true",
"status" : "current",
"linkage" : [
"ipsgEntryMac",
"ipsgEntryVid",
],
"description" :
"""""",
}, # row
"ipsgEntryMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"ipsgEntryLease" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""second""",
}, # column
"ipsgEntryType" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"static" : {
"nodetype" : "namednumber",
"number" : "1"
},
"dhcp" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"ipsgEntryPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0 means any port""",
}, # column
"ipsgEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.101.1.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspect" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102",
}, # node
"arpInspectSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1",
}, # node
"arpInspectState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterAgingTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLog" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.3",
}, # node
"arpInspectLogEntries" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.3.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogRate" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.3.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "1024"
},
],
"range" : {
"min" : "0",
"max" : "1024"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogInterval" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.3.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2147483647"
},
],
"range" : {
"min" : "0",
"max" : "2147483647"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1",
"status" : "current",
"linkage" : [
"arpInspectVlanVid",
],
"description" :
"""""",
}, # row
"arpInspectVlanVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectVlanLog" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"all" : {
"nodetype" : "namednumber",
"number" : "1"
},
"none" : {
"nodetype" : "namednumber",
"number" : "2"
},
"permit" : {
"nodetype" : "namednumber",
"number" : "3"
},
"deny" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectVlanStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"enabled" : {
"nodetype" : "namednumber",
"number" : "1"
},
"disabled" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5.1",
"status" : "current",
"linkage" : [
"arpInspectPortIndex",
],
"description" :
"""""",
}, # row
"arpInspectPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectPortTrust" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"trusted" : {
"nodetype" : "namednumber",
"number" : "1"
},
"untrusted" : {
"nodetype" : "namednumber",
"number" : "2"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortRate" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "2048"
},
],
"range" : {
"min" : "0",
"max" : "2048"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectPortInterval" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "15"
},
],
"range" : {
"min" : "1",
"max" : "15"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectStatus" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2",
}, # node
"arpInspectFilterClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectLogClear" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"arpInspectFilterTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectFilterEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"arpInspectFilterMac",
"arpInspectFilterVid",
],
"description" :
"""""",
}, # row
"arpInspectFilterMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterExpiry" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterReason" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"macVid" : {
"nodetype" : "namednumber",
"number" : "1"
},
"port" : {
"nodetype" : "namednumber",
"number" : "2"
},
"ip" : {
"nodetype" : "namednumber",
"number" : "3"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectFilterRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"arpInspectLogTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectLogEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1",
"status" : "current",
"linkage" : [
"arpInspectLogMac",
"arpInspectLogVid",
"arpInspectLogPort",
"arpInspectLogIp",
],
"description" :
"""""",
}, # row
"arpInspectLogMac" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "MacAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogNumPkt" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectLogTime" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "DateAndTime"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5",
"status" : "current",
"description" :
"""""",
}, # table
"arpInspectStatisticsEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1",
"status" : "current",
"linkage" : [
"arpInspectStatisticsVid",
],
"description" :
"""""",
}, # row
"arpInspectStatisticsVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsReceived" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.2",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsRequest" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.3",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsReply" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.4",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsForward" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.5",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsDrop" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.6",
"status" : "current",
"access" : "readonly",
"description" :
"""""",
}, # column
"arpInspectStatisticsClear" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"trTCMSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103",
}, # node
"trTCMState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Two-rate three color marker enabled/disabled for the switch.""",
}, # scalar
"trTCMMode" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"color-aware" : {
"nodetype" : "namednumber",
"number" : "0"
},
"color-blind" : {
"nodetype" : "namednumber",
"number" : "1"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"trTCMPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3",
"status" : "current",
"description" :
"""""",
}, # table
"trTCMPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in trTCMPortTable.""",
}, # row
"trTCMPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""Two-rate three color marker enabled/disabled on the port.""",
}, # column
"trTCMPortCIR" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed CIR in pkts/s.""",
}, # column
"trTCMPortPIR" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""Allowed PIR in pkts/s.""",
}, # column
"trTCMPortDscpGreen" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"trTCMPortDscpYellow" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"trTCMPortDscpRed" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.103.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""0-63""",
}, # column
"loopGuardSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104",
}, # node
"loopGuardState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"loopGuardPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104.2",
"status" : "current",
"description" :
"""""",
}, # table
"loopGuardPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104.2.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in loopGuardPortTable.""",
}, # row
"loopGuardPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.104.2.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"subnetBasedVlanSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105",
}, # node
"subnetBasedVlanState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""subnet-based vlan feature enabled/disabled for the switch.""",
}, # scalar
"dhcpVlanOverrideState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""dhcp vlan override enabled/disabled when subnet-based vlan is enabled.""",
}, # scalar
"subnetBasedVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3",
"status" : "current",
"description" :
"""""",
}, # table
"subnetBasedVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1",
"create" : "true",
"status" : "current",
"linkage" : [
"subnetBasedVlanSrcIp",
"subnetBasedVlanSrcMaskBit",
],
"description" :
"""An entry in subnetBasedVlanTable.""",
}, # row
"subnetBasedVlanSrcIp" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "IpAddress"},
},
"access" : "readonly",
"description" :
"""source ip for subnet-based vlan entry""",
}, # column
"subnetBasedVlanSrcMaskBit" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "32"
},
],
"range" : {
"min" : "1",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
"""source ip mask-bits for subnet-based vlan entry""",
}, # column
"subnetBasedVlanName" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"parent module" : {
"name" : "RFC1213-MIB",
"type" : "DisplayString",
},
"ranges" : [
{
"min" : "0",
"max" : "31"
},
],
"range" : {
"min" : "0",
"max" : "31"
},
},
},
"access" : "readwrite",
"description" :
"""name for subnet-based vlan entry""",
}, # column
"subnetBasedVlanVid" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "readwrite",
"description" :
"""vid for subnet-based vlan entry""",
}, # column
"subnetBasedVlanPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "7"
},
],
"range" : {
"min" : "0",
"max" : "7"
},
},
},
"access" : "readwrite",
"description" :
"""priority for subnet-based vlan entry""",
}, # column
"subnetBasedVlanEntryState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.105.3.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"macAuthenticationSetup" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106",
}, # node
"macAuthenticationState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationNamePrefix" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationPassword" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationTimeout" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"macAuthenticationPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.5",
"status" : "current",
"description" :
"""""",
}, # table
"macAuthenticationPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.5.1",
"status" : "current",
"linkage" : [
"dot1dBasePort",
],
"description" :
"""An entry in macAuthenticationPortTable.""",
}, # row
"macAuthenticationPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.106.5.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstp" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107",
}, # node
"mstpGen" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1",
}, # node
"mstpGenState" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
"""Enabled/disabled on the mrstp bridge.""",
}, # scalar
"mstpGenCfgIdName" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"RFC1213-MIB", "name" : "DisplayString"},
},
"access" : "readwrite",
"description" :
"""The configuration name that identifies the MST
region and is used as one of the inputs in the
computation of the MST Configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.b)""",
}, # scalar
"mstpGenCfgIdRevLevel" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readwrite",
"description" :
"""This object identifies the MST revision that
identifies the MST region and is used as one
of the inputs in the computation of the MST
configuration Identifier.""",
"reference>" :
"""12.12.3.4.2.c)""",
}, # scalar
"mstpGenCfgIdCfgDigest" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "16",
"max" : "16"
},
],
"range" : {
"min" : "16",
"max" : "16"
},
},
},
"access" : "readonly",
"description" :
"""Configuration Digest.""",
"reference>" :
"""12.12.3.3.3.a.4""",
}, # scalar
"mstpGenHelloTime" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "1",
"max" : "10"
},
],
"range" : {
"min" : "1",
"max" : "10"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxAge" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "6",
"max" : "40"
},
],
"range" : {
"min" : "6",
"max" : "40"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenForwardDelay" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.7",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"parent module" : {
"name" : "BRIDGE-MIB",
"type" : "Timeout",
},
"ranges" : [
{
"min" : "4",
"max" : "30"
},
],
"range" : {
"min" : "4",
"max" : "30"
},
},
},
"access" : "readwrite",
"description" :
"""""",
}, # scalar
"mstpGenMaxHops" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.8",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "4",
"max" : "30"
},
],
"range" : {
"min" : "4",
"max" : "30"
},
},
},
"access" : "readwrite",
"description" :
"""13.22.f)""",
}, # scalar
"mstpGenCistRootPathCost" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstpGenCistRootBrid" : {
"nodetype" : "scalar",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.1.10",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "32",
"max" : "32"
},
],
"range" : {
"min" : "32",
"max" : "32"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # scalar
"mstMapTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20",
"status" : "current",
"description" :
"""This table contains one entry for each instance of MSTP.""",
}, # table
"mstMapEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1",
"create" : "true",
"status" : "current",
"linkage" : [
"mstMapIndex",
],
"description" :
"""A conceptual row containing the status of the MSTP instance.""",
}, # row
"mstMapIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""Uniquely identifies an instance. The entry of this table with index 0
presents always, represents CIST. When SET operation """,
}, # column
"mstMapVlans1k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN. The
first octet corresponds to VLANs with VlanIndex values
1 through 8; the second octet to VLANs 9 through
16 etc. The most significant bit of each octet
corresponds to the lowest VlanIndex value in that octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans2k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.3",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 1024 through 2047. The
first octet corresponds to VLANs with VlanIndex values
1024 through 1031; the second octet to VLANs 1032
through 1039 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans3k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 2048 through 3071. The
first octet corresponds to VLANs with VlanIndex values
of 2048 through 2055; the second octet to VLANs 2056
through 2063 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapVlans4k" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "OctetString",
"ranges" : [
{
"min" : "0",
"max" : "128"
},
],
"range" : {
"min" : "0",
"max" : "128"
},
},
},
"access" : "readwrite",
"description" :
"""A string of octets containing one bit per VLAN for
VLANS with VlanIndex values 3072 through 4095. The
first octet corresponds to VLANs with VlanIndex values
3072 through 3079; the second octet to VLANs 3080
through 3087 etc. The most significant bit of each
octet corresponds to the lowest VlanIndex value in that
octet.
For each VLAN that is mapped to this MSTP instance,
the bit corresponding to that VLAN is set to '1'.
Empty (zero) most significant octes are not mandatory.""",
}, # column
"mstMapRowStatus" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.20.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "RowStatus"},
},
"access" : "readwrite",
"description" :
"""""",
}, # column
"mstVlanTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.30",
"status" : "current",
"description" :
"""This table contains one entry for each VlanId.""",
}, # table
"mstVlanEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.30.1",
"status" : "current",
"linkage" : [
"mstVlanIndex",
],
"description" :
"""Information regarding the instance to which each Vlan is mapped.""",
}, # row
"mstVlanIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.30.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "4094"
},
],
"range" : {
"min" : "1",
"max" : "4094"
},
},
},
"access" : "noaccess",
"description" :
"""The VlanId for which this entry contains the instance mapped.""",
}, # column
"mstVlanMstIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.30.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""An integer with values ranging from 0 to 64 that identify a
the CIST/MSTI instance to which this VLAN is mapped""",
}, # column
"mstpPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.40",
"status" : "current",
"description" :
"""A table that contains generic information about
every port that is associated with this bridge.""",
}, # table
"mstpPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.40.1",
"status" : "current",
"linkage" : [
"mstpPortIndex",
],
"description" :
"""A list of information for each port of the
bridge.""",
}, # row
"mstpPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.40.1.1",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "noaccess",
"description" :
"""A unique value, greater than zero, for each Port.
The value for each interface sub-layer
must remain constant at least from one re-initialization
of the entity's network management system to the next re-
initialization.""",
}, # column
"mstpPortOperEdgePort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.40.1.2",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpPortOperPointToPointMAC" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.40.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-TC", "name" : "TruthValue"},
},
"access" : "readonly",
"description" :
"""""",
"reference>" :
"""""",
}, # column
"mstpXstTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1",
"status" : "current",
"linkage" : [
"mstpXstId",
],
"description" :
""".""",
}, # row
"mstpXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "readonly",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstBridgePriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "61440"
},
],
"range" : {
"min" : "0",
"max" : "61440"
},
},
},
"access" : "readwrite",
"default" : "32768",
"description" :
"""Bridge priority, in steps of 4096.""",
}, # column
"mstpXstBridgeId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstInternalRootCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.4",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstRootPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.5",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTimeSinceTopologyChange" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.6",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "TimeTicks"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstTopologyChangesCount" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.50.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"SNMPv2-SMI", "name" : "Counter32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortTable" : {
"nodetype" : "table",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60",
"status" : "current",
"description" :
""".""",
}, # table
"mstpXstPortEntry" : {
"nodetype" : "row",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1",
"status" : "current",
"linkage" : [
"mstpXstPortXstId",
"mstpXstPortIndex",
],
"description" :
""".""",
"reference>" :
""".""",
}, # row
"mstpXstPortXstId" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.1",
"status" : "current",
"syntax" : {
"type" : { "module" :"ZYXEL-GS4012F-MIB", "name" : "MstiOrCistInstanceIndex"},
},
"access" : "noaccess",
"description" :
"""0 means CIST.""",
}, # column
"mstpXstPortIndex" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.2",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readonly",
"description" :
"""The value of mstpPortIndex of the Port
in mstpPortTable.""",
}, # column
"mstpXstPortEnable" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.3",
"status" : "current",
"syntax" : {
"type" : { "module" :"P-BRIDGE-MIB", "name" : "EnabledStatus"},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortPriority" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.4",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "0",
"max" : "255"
},
],
"range" : {
"min" : "0",
"max" : "255"
},
},
},
"access" : "readwrite",
"default" : "128",
"description" :
"""Port priority, in steps of 16.""",
}, # column
"mstpXstPortPathCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.5",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Integer32",
"ranges" : [
{
"min" : "1",
"max" : "65535"
},
],
"range" : {
"min" : "1",
"max" : "65535"
},
},
},
"access" : "readwrite",
"description" :
""".""",
}, # column
"mstpXstPortState" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.6",
"status" : "current",
"syntax" : {
"type" : {
"basetype" : "Enumeration",
"disabled" : {
"nodetype" : "namednumber",
"number" : "0"
},
"discarding" : {
"nodetype" : "namednumber",
"number" : "1"
},
"learning" : {
"nodetype" : "namednumber",
"number" : "2"
},
"forwarding" : {
"nodetype" : "namednumber",
"number" : "3"
},
"unknown" : {
"nodetype" : "namednumber",
"number" : "4"
},
},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedRoot" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.7",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedCost" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.8",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedBridge" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.9",
"status" : "current",
"syntax" : {
"type" : { "module" :"BRIDGE-MIB", "name" : "BridgeId"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpXstPortDesignatedPort" : {
"nodetype" : "column",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.60.1.10",
"status" : "current",
"syntax" : {
"type" : { "module" :"", "name" : "Integer32"},
},
"access" : "readonly",
"description" :
""".""",
}, # column
"mstpNotifications" : {
"nodetype" : "node",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.70",
}, # node
}, # nodes
"notifications" : {
"eventOnTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.2.1",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventName" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSeverity" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceName" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventServAffective" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventDescription" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapPersistence" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a delta
fault event (events that are automatically cleared) has occured
or a normal fault event (not automatically cleared) state has
been set on.
Objects are used as follows:
- eventSeqNum is the sequence number of the event. For normal
type of events must equal to the sequence number of the event
in the events table.
- eventEventId specifies what fault event has occured.
- eventName specifies the name of the fault event.
- eventSetTime indicates when fault event has occured
(delta events) or when fault has been set on (normal events).
- eventSeverity reports the severity level of the event.
- eventInstanceType indicates what kind of object is faulty.
- eventInstanceId specifies what instance is faulty.
- eventInstanceName may contain textual description for
the faulty object.
- eventServAffective specifies whether the event is
immediately service affcetive.
- eventDescription reports possible additional information about the event.
- trapPersistence tells whether this event is a delta or normal event.
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the fault event.
For more information see the eventTable specification""",
}, # notification
"eventClearedTrap" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.37.2.2",
"status" : "current",
"objects" : {
"eventSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventEventId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventSetTime" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceType" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"eventInstanceId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapRefSeqNum" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"trapSenderNodeId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
"sysObjectID" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""This trap is used to inform network management system that a normal
type fault event has been cleared (state set off).
Objects are used as follows:
- eventSeqNum is the sequence number of the this clearing event. Note that
the sequence number of the cleared event is reported in the trapRefSeqNum
object.
- eventEventId specifies what event has been cleared.
- eventSetTime indicates when fault event has been cleared.
- eventInstanceType indicates what kind of object has been
faulty.
- eventInstanceId specifies what instance has been faulty.
- trapRefSeqNum specifies the sequence number of the cleared event (i.e.
the sequence number was assigned for the event in the events table).
- trapSenderNodeId specifies the node ID of the sending network element if
configuring it is supported for the network element, otherwise 0.
- sysObjectID specifies what kind of equipment reports the clearing event.
For more information see the eventTable specification""",
}, # notification
"newRoot" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.2.1",
"status" : "current",
"objects" : {
"mrstpBridgeIndex" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.42.2.2",
"status" : "current",
"objects" : {
"mrstpBridgeIndex" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"newRoot" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.70.1",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
"topologyChange" : {
"nodetype" : "notification",
"moduleName" : "ZYXEL-GS4012F-MIB",
"oid" : "1.3.6.1.4.1.890.1.5.8.20.107.70.2",
"status" : "current",
"objects" : {
"mstpXstId" : {
"nodetype" : "object",
"module" : "ZYXEL-GS4012F-MIB"
},
},
"description" :
"""""",
}, # notification
}, # notifications
}
| filename = 'mibs/ZyXEL/zyxel-GS4012F.mib'
mib = {'moduleName': 'ZYXEL-GS4012F-MIB', 'ZYXEL-GS4012F-MIB': {'nodetype': 'module', 'language': 'SMIv2', 'organization': 'ZyXEL', 'contact': '', 'description': 'Fault event trap definitions', 'revisions': ({'date': '2004-11-03 12:00', 'description': '[Revision added by libsmi due to a LAST-UPDATED clause.]'}, {'date': '2004-11-01 12:00', 'description': '[Revision added by libsmi due to a LAST-UPDATED clause.]'}), 'identity node': 'faultTrapsMIB'}, 'imports': ({'module': 'RFC1155-SMI', 'name': 'enterprises'}, {'module': 'SNMPv2-SMI', 'name': 'OBJECT-TYPE'}, {'module': 'SNMPv2-TC', 'name': 'RowStatus'}, {'module': 'SNMPv2-TC', 'name': 'DateAndTime'}, {'module': 'SNMPv2-TC', 'name': 'TruthValue'}, {'module': 'SNMPv2-TC', 'name': 'StorageType'}, {'module': 'SNMPv2-TC', 'name': 'MacAddress'}, {'module': 'RFC1213-MIB', 'name': 'DisplayString'}, {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}, {'module': 'Q-BRIDGE-MIB', 'name': 'PortList'}, {'module': 'BRIDGE-MIB', 'name': 'dot1dBasePort'}, {'module': 'IF-MIB', 'name': 'InterfaceIndexOrZero'}, {'module': 'SNMP-FRAMEWORK-MIB', 'name': 'SnmpAdminString'}, {'module': 'INET-ADDRESS-MIB', 'name': 'InetAddressType'}, {'module': 'INET-ADDRESS-MIB', 'name': 'InetAddress'}, {'module': 'DISMAN-PING-MIB', 'name': 'OperationResponseStatus'}, {'module': 'OSPF-MIB', 'name': 'ospfIfIpAddress'}, {'module': 'OSPF-MIB', 'name': 'ospfAddressLessIf'}, {'module': 'OSPF-MIB', 'name': 'ospfAreaId'}, {'module': 'OSPF-MIB', 'name': 'ospfNbrIpAddr'}, {'module': 'OSPF-MIB', 'name': 'ospfNbrAddressLessIndex'}, {'module': 'OSPF-MIB', 'name': 'ospfLsdbAreaId'}, {'module': 'OSPF-MIB', 'name': 'ospfLsdbType'}, {'module': 'OSPF-MIB', 'name': 'ospfLsdbLSID'}, {'module': 'OSPF-MIB', 'name': 'ospfLsdbRouterId'}, {'module': 'OSPF-MIB', 'name': 'ospfVirtIfAreaID'}, {'module': 'OSPF-MIB', 'name': 'ospfVirtIfNeighbor'}, {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}, {'module': 'BRIDGE-MIB', 'name': 'Timeout'}), 'typedefs': {'UtcTimeStamp': {'basetype': 'Unsigned32', 'status': 'current', 'description': 'Universal Time Coordinated as a 32-bit value that designates\nthe number of seconds since Jan 1, 1970 12:00AM.'}, 'EventIdNumber': {'basetype': 'Integer32', 'status': 'current', 'description': 'This textual convention describes the index that uniquely \nidentifies a fault event type in the entire system. Every fault \nevent type, e.g. link down, has a unique EventIdNumber.'}, 'EventSeverity': {'basetype': 'Enumeration', 'status': 'current', 'critical': {'nodetype': 'namednumber', 'number': '1'}, 'major': {'nodetype': 'namednumber', 'number': '2'}, 'minor': {'nodetype': 'namednumber', 'number': '3'}, 'informational': {'nodetype': 'namednumber', 'number': '4'}, 'description': 'This textual convention describes the severity of a fault event.\nThe decreasing order of severity is shown in the textual \nconvention.'}, 'EventServiceAffective': {'basetype': 'Enumeration', 'status': 'current', 'noServiceAffected': {'nodetype': 'namednumber', 'number': '1'}, 'serviceAffected': {'nodetype': 'namednumber', 'number': '2'}, 'description': 'This textual convention indicates whether an event is immediately \nservice affecting or not.'}, 'InstanceType': {'basetype': 'Enumeration', 'status': 'current', 'unknown': {'nodetype': 'namednumber', 'number': '1'}, 'node': {'nodetype': 'namednumber', 'number': '2'}, 'shelf': {'nodetype': 'namednumber', 'number': '3'}, 'line': {'nodetype': 'namednumber', 'number': '4'}, 'switch': {'nodetype': 'namednumber', 'number': '5'}, 'lsp': {'nodetype': 'namednumber', 'number': '6'}, 'l2Interface': {'nodetype': 'namednumber', 'number': '7'}, 'l3Interface': {'nodetype': 'namednumber', 'number': '8'}, 'rowIndex': {'nodetype': 'namednumber', 'number': '9'}, 'description': "This textual convention describes the type of an instanceId\nassociated with each event and by that means specifies how \nthe instanceId variable should be intepreted.\n\nVarious instanceId types are specified below to enable fault \nmonitoring for different kind of devices from fixed \nconfiguration pizza boxes to multi chassis nodes. All \ninstanceId types may not need to be used in every device \ntype. \n\nNote also that instanceId semantics are element type dependent\n(e.g. different kind of interface naming conventions may be used)\nand thus instanceId usage may vary from element to element. \n\n=========================================================================\nType Description Example form \n of InstanceId\n=========================================================================\nunknown (1) unknown type - Irrelevant-\n-------------------------------------------------------------------------\nnode (2) Associated with events originating from 1\n the node. Used for general events that (Node number)\n can not be associated with any specific \n block. InstanceId value 1 is used for \n single node equipment. \n-------------------------------------------------------------------------\nshelf (3) Associated with events originating from 1\n the shelf. In the case of fixed \t(shelf number)\n configuration devices this type is used \n for events that are associated with the\n physical enclosure, e.g. faults related \n to fan etc. InstanceId value 1 is used \n for single self equipment.\n------------------------------------------------------------------------- \nline (4) Associated with events originating from\n physical interfaces or associated \n components such as line cards. \n InstanceId usage examples for faults \n originating from: \n - Physical port: Simply port number, e.g. .......1 \n-------------------------------------------------------------------------\nswitch (5) Associated with events originating from 1\n from a switch chip or a switch card. (switch number) \n For single switch equipment InstanceId \n value 1 is used, for multi swich nodes \n InstanceId semantics if for further \n study. \n-------------------------------------------------------------------------\nlsp (6) Associated with events originating from 1\n a particular lsp. (lsp index)\n NOTE: In this case the InstanceName \n contains the lsp name and InstanceId \n contains lsp index.\n-------------------------------------------------------------------------\nl2Interface(7) Associated with events originating from - TBD - \n a particular layer 2 interface. Used for\n layer 2 related events such as L2 control \n protocol faults. InstanceId semantics is \n for further study. \n-------------------------------------------------------------------------\nl3Interface(8) Associated with events originating from - TBD - \n a particular layer 3 interface. Used for\n layer 3 related events such as L3 control \n protocol faults. InstanceId semantics is \n for further study.\n-------------------------------------------------------------------------\nrowIndex (9) Associated with events reporting about a \n 'logical' or conceptual table that consists \n of rows. The Instance Id is the index/key\n for a row in the table. The format of the \n Instance Id will simply be a series of decimal \n numbers seperated by a '.': \n========================================================================="}, 'EventPersistence': {'basetype': 'Enumeration', 'status': 'current', 'normal': {'nodetype': 'namednumber', 'number': '1'}, 'delta': {'nodetype': 'namednumber', 'number': '2'}, 'description': 'This textual convention indicates whether the event is delta \n(automatically and immediately cleared) or normal (not \nautomatically cleared).'}, 'MstiOrCistInstanceIndex': {'basetype': 'Integer32', 'status': 'current', 'ranges': [{'min': '0', 'max': '16'}], 'range': {'min': '0', 'max': '16'}, 'description': 'This textual convention is an extension of the\nMstiInstanceIndex convention. This extension permits the\nadditional value of zero, which means Common and Internal\nSpanning Tree (CIST).'}}, 'nodes': {'zyxel': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890'}, 'products': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1'}, 'accessSwitch': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5'}, 'esSeries': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8'}, 'gs4012f': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20'}, 'sysInfo': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1'}, 'sysSwPlatformMajorVers': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'SW platform major version, e.g. 3.'}, 'sysSwPlatformMinorVers': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'SW platform minor version, e.g. 50.'}, 'sysSwModelString': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': 'Model letters, e.g. TJ'}, 'sysSwVersionControlNbr': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Version control number, e.g. 0.'}, 'sysSwDay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'SW compilation day, e.g. 19.'}, 'sysSwMonth': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'SW compilation month, e.g. 8.'}, 'sysSwYear': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'SW compilation year, e.g. 2004.'}, 'sysHwMajorVers': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'HW major version number, e.g. 1.'}, 'sysHwMinorVers': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'HW minor version number, e.g. 0.'}, 'sysSerialNumber': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.1.10', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': 'Serial number'}, 'rateLimitSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2'}, 'rateLimitState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Ingress/egress rate limiting enabled/disabled for the switch.'}, 'rateLimitPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2', 'status': 'current', 'description': ''}, 'rateLimitPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in rateLimitPortTable.'}, 'rateLimitPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Ingress/egress rate limiting enabled/disabled on the port.'}, 'rateLimitPortCommitRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Commit rate in Kbit/s. The range of FE port is between 0 and 100,000. For GE port, the range is between 0 and 1000,000.'}, 'rateLimitPortPeakRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Peak rate in Kbit/s. The range of FE port is between 1 and 100,000. For GE port, the range is between 1 and 1000,000.'}, 'rateLimitPortEgrRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Egress rate in Mbit/s. The granularity of FE port is between 1 and 100. For GE port, the granularity is between 1 and 1000.'}, 'rateLimitPortPeakState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.5', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Ingress peak rate limiting enabled/disabled on the port.'}, 'rateLimitPortEgrState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Egress rate limiting enabled/disabled on the port.'}, 'rateLimitPortCommitState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.2.2.1.7', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Ingress commit rate limiting enabled/disabled on the port.'}, 'brLimitSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3'}, 'brLimitState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Broadcast/multicast/DLF rate limiting enabled/disabled for the switch.'}, 'brLimitPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2', 'status': 'current', 'description': ''}, 'brLimitPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in brLimitPortTable.'}, 'brLimitPortBrState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Broadcast rate limiting enabled/disabled on the port.'}, 'brLimitPortBrRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Allowed broadcast rate in pkts/s. For FE port, \nthe maximum value is 148800. For GE port, the maximum value is 262143.'}, 'brLimitPortMcState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Multicast rate limiting enabled/disabled on the port.'}, 'brLimitPortMcRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'AAllowed mullticast rate in pkts/s. For FE port, \nthe maximum value is 148800. For GE port, the maximum value is 262143.'}, 'brLimitPortDlfState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.5', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Destination lookup failure frames rate limiting enabled/disabled on the port.'}, 'brLimitPortDlfRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.3.2.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Allowed destination lookup failure frames rate in pkts/s. \nFor FE port, the maximum value is 148800. For GE port, the maximum value is 262143.'}, 'portSecuritySetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4'}, 'portSecurityState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'portSecurityPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.2', 'status': 'current', 'description': ''}, 'portSecurityPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.2.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in portSecurityPortTable.'}, 'portSecurityPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Port Security enabled/disabled on the port. \nActive(1) means this port only accept frames from static MAC addresses that are configured for the port, \nand dynamic MAC address frames up to the number specified by portSecurityPortCount object.'}, 'portSecurityPortLearnState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'MAC address learning enabled/disable on the port.'}, 'portSecurityPortCount': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Number of (dynamic) MAC addresses that may be learned on the port.'}, 'portSecurityMacFreeze': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.4.3', 'status': 'current', 'syntax': {'type': {'module': 'Q-BRIDGE-MIB', 'name': 'PortList'}}, 'access': 'readwrite', 'description': ''}, 'vlanTrunkSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.5'}, 'vlanTrunkPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.5.1', 'status': 'current', 'description': ''}, 'vlanTrunkPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.5.1.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in vlanTrunkPortTable.'}, 'vlanTrunkPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.5.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'VlanTrunking enabled/disabled on the port. \nActive(1) to allow frames belonging to unknown \nVLAN groups to pass through the switch.'}, 'ctlProtTransSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.6'}, 'ctlProtTransState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.6.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Bridge control protocol transparency enabled/disabled for the switch'}, 'ctlProtTransTunnelPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.6.2', 'status': 'current', 'description': ''}, 'ctlProtTransTunnelPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.6.2.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in ctlProtTransTunnelPortTable.'}, 'ctlProtTransTunnelMode': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.6.2.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'peer': {'nodetype': 'namednumber', 'number': '0'}, 'tunnel': {'nodetype': 'namednumber', 'number': '1'}, 'discard': {'nodetype': 'namednumber', 'number': '2'}, 'network': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': 'Bridge control protocol transparency mode for the port. \nModes: Peer(0), Tunnel(1), Discard(2), Network(3)'}, 'vlanStackSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7'}, 'vlanStackState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'VLAN Stacking enabled/disabled for the switch.'}, 'vlanStackTpid': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'SP TPID in hex format, e.g. 8100.'}, 'vlanStackPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.3', 'status': 'current', 'description': ''}, 'vlanStackPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.3.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in vlanStackPortTable.'}, 'vlanStackPortMode': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.3.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'normal': {'nodetype': 'namednumber', 'number': '1'}, 'access': {'nodetype': 'namednumber', 'number': '2'}, 'tunnel': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': "Mode of the port.Set Access mode to have the switch add the SP TPID tag to all incoming \nframes received on this port. Set Access mode for ingress ports at the \nedge of the service provider's network. Set Tunnel mode (available for \nGigabit ports only) for egress ports at the edge of the service provider's \nnetwork. In order to support VLAN stacking on a port, the port must be able \nto allow frames of 1526 Bytes (1522 Bytes + 4 Bytes for the second tag) \nto pass through it. Access (0), tunnel (1)"}, 'vlanStackPortVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.3.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'VLAN ID used in service provider tag.'}, 'vlanStackPortPrio': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.7.3.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'prioriry-0': {'nodetype': 'namednumber', 'number': '0'}, 'prioriry-1': {'nodetype': 'namednumber', 'number': '1'}, 'prioriry-2': {'nodetype': 'namednumber', 'number': '2'}, 'prioriry-3': {'nodetype': 'namednumber', 'number': '3'}, 'prioriry-4': {'nodetype': 'namednumber', 'number': '4'}, 'prioriry-5': {'nodetype': 'namednumber', 'number': '5'}, 'prioriry-6': {'nodetype': 'namednumber', 'number': '6'}, 'prioriry-7': {'nodetype': 'namednumber', 'number': '7'}}}, 'access': 'readwrite', 'description': 'Priority value for service provider tag. \n0 is the lowest priority level and 7 is the highest.'}, 'dot1xSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8'}, 'portAuthState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': '802.1x port authentication enabled/disabled for the switch.'}, 'portAuthTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.4', 'status': 'current', 'description': ''}, 'portAuthEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.4.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in portAuthTable.'}, 'portAuthEntryState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.4.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': '802.1x port authentication enabled or disabled on the port.'}, 'portReAuthEntryState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.4.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': '802.1x port re-authentication enabled or disabled on the port.'}, 'portReAuthEntryTimer': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.8.4.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Re-authentication timer in seconds.'}, 'hwMonitorInfo': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9'}, 'fanRpmTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1', 'status': 'current', 'description': ''}, 'fanRpmEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1', 'status': 'current', 'linkage': ['fanRpmIndex'], 'description': 'An entry in fanRpmTable.'}, 'fanRpmIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Index of FAN.'}, 'fanRpmCurValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Current speed in Revolutions Per Minute (RPM) on the fan.'}, 'fanRpmMaxValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Maximum speed measured in Revolutions Per Minute (RPM) on the fan.'}, 'fanRpmMinValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Minimum speed measured in Revolutions Per Minute (RPM) on the fan.'}, 'fanRpmLowThresh': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The minimum speed at which a normal fan should work.'}, 'fanRpmDescr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.1.1.6', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': "'Normal' indicates that this fan is functioning above the minimum speed. \n'Error' indicates that this fan is functioning below the minimum speed."}, 'tempTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2', 'status': 'current', 'description': ''}, 'tempEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1', 'status': 'current', 'linkage': ['tempIndex'], 'description': 'An entry in tempTable.'}, 'tempIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'mac': {'nodetype': 'namednumber', 'number': '1'}, 'cpu': {'nodetype': 'namednumber', 'number': '2'}, 'phy': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': 'Index of temperature unit. 1:MAC, 2:CPU, 3:PHY'}, 'tempCurValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The current temperature measured at this sensor.'}, 'tempMaxValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The maximum temperature measured at this sensor.'}, 'tempMinValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The minimum temperature measured at this sensor.'}, 'tempHighThresh': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The upper temperature limit at this sensor.'}, 'tempDescr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': "'Normal' indicates temperatures below the threshold and 'Error' for those above."}, 'voltageTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3', 'status': 'current', 'description': ''}, 'voltageEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1', 'status': 'current', 'linkage': ['voltageIndex'], 'description': 'An entry in voltageTable.'}, 'voltageIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Index of voltage.'}, 'voltageCurValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The current voltage reading.'}, 'voltageMaxValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The maximum voltage measured at this point.'}, 'voltageMinValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The minimum voltage measured at this point.'}, 'voltageNominalValue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The normal voltage at wchich the switch work.'}, 'voltageLowThresh': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The minimum voltage at which the switch should work.'}, 'voltageDescr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.9.3.1.7', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': "'Normal' indicates that the voltage is within an acceptable operating range \nat this point; otherwise 'Error' is displayed."}, 'snmpSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10'}, 'snmpGetCommunity': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'snmpSetCommunity': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapCommunity': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapDestTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4', 'status': 'current', 'description': ''}, 'snmpTrapDestEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1', 'create': 'true', 'status': 'current', 'linkage': ['snmpTrapDestIP'], 'description': 'An entry in snmpTrapDestTable.'}, 'snmpTrapDestIP': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'noaccess', 'description': 'IP address of trap destination.'}, 'snmpTrapDestRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapDestPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The UDP port of the trap destination.'}, 'snmpTrapVersion': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'v1': {'nodetype': 'namednumber', 'number': '0'}, 'v2c': {'nodetype': 'namednumber', 'number': '1'}, 'v3': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'The SNMP protocol version to send traps.'}, 'snmpTrapUserName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.4.1.5', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': 'The user name for sending SNMPv3 traps.'}, 'snmpVersion': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'v2c': {'nodetype': 'namednumber', 'number': '0'}, 'v3': {'nodetype': 'namednumber', 'number': '1'}, 'v3v2c': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'The SNMP version to be used. v3v2c means that the manager \ncan get/set by SNMPv3 and can get by SNMPv2c.'}, 'snmpUserTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6', 'status': 'current', 'description': 'A table that contains SNMPv3 user information.'}, 'snmpUserEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6.1', 'status': 'current', 'linkage': ['snmpUserName'], 'description': 'An entry of snmpUserTable.'}, 'snmpUserName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': 'The user name.'}, 'snmpUserSecurityLevel': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'noAuthNoPriv': {'nodetype': 'namednumber', 'number': '0'}, 'authNoPriv': {'nodetype': 'namednumber', 'number': '1'}, 'authPriv': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'The level of security at which SNMP messages can be sent or \nwith which operations are being processed.'}, 'snmpUserAuthProtocol': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'md5': {'nodetype': 'namednumber', 'number': '0'}, 'sha': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': 'The type of authentication protocol to be used.'}, 'snmpUserPrivProtocol': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.6.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'des': {'nodetype': 'namednumber', 'number': '0'}, 'aes': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': 'The type of privacy protocol to be used.'}, 'snmpTrapGroupTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7', 'status': 'current', 'description': ''}, 'snmpTrapGroupEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1', 'status': 'current', 'linkage': ['snmpTrapDestIP'], 'description': 'An entry in snmpTrapGroupTable.'}, 'snmpTrapSystemGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'coldStart': {'nodetype': 'namednumber', 'number': '0'}, 'warmStart': {'nodetype': 'namednumber', 'number': '1'}, 'fanSpeed': {'nodetype': 'namednumber', 'number': '2'}, 'temperature': {'nodetype': 'namednumber', 'number': '3'}, 'voltage': {'nodetype': 'namednumber', 'number': '4'}, 'reset': {'nodetype': 'namednumber', 'number': '5'}, 'timeSync': {'nodetype': 'namednumber', 'number': '6'}, 'intrusionlock': {'nodetype': 'namednumber', 'number': '7'}}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapInterfaceGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'linkup': {'nodetype': 'namednumber', 'number': '0'}, 'linkdown': {'nodetype': 'namednumber', 'number': '1'}, 'autonegotiation': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapAAAGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'authentication': {'nodetype': 'namednumber', 'number': '0'}, 'accounting': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapIPGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'ping': {'nodetype': 'namednumber', 'number': '0'}, 'traceroute': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'snmpTrapSwitchGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.10.7.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'stp': {'nodetype': 'namednumber', 'number': '0'}, 'mactable': {'nodetype': 'namednumber', 'number': '1'}, 'rmon': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'dateTimeSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11'}, 'dateTimeServerType': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '1'}, 'daytime': {'nodetype': 'namednumber', 'number': '2'}, 'time': {'nodetype': 'namednumber', 'number': '3'}, 'ntp': {'nodetype': 'namednumber', 'number': '4'}}}, 'access': 'readwrite', 'description': 'The time service protocol.'}, 'dateTimeServerIP': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': 'IP address of time server.'}, 'dateTimeZone': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The time difference between UTC. Ex: +01'}, 'dateTimeNewDateYear': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new date in year.'}, 'dateTimeNewDateMonth': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new date in month.'}, 'dateTimeNewDateDay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new date in day.'}, 'dateTimeNewTimeHour': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new time in hour.'}, 'dateTimeNewTimeMinute': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new time in minute.'}, 'dateTimeNewTimeSecond': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'The new time in second.'}, 'dateTimeDaylightSavingTimeSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10'}, 'daylightSavingTimeState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Daylight saving time service enabled/disabled for the switch.'}, 'daylightSavingTimeStartDateWeek': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'first': {'nodetype': 'namednumber', 'number': '1'}, 'second': {'nodetype': 'namednumber', 'number': '2'}, 'third': {'nodetype': 'namednumber', 'number': '3'}, 'fourth': {'nodetype': 'namednumber', 'number': '4'}, 'last': {'nodetype': 'namednumber', 'number': '5'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service start week.'}, 'daylightSavingTimeStartDateDay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'sunday': {'nodetype': 'namednumber', 'number': '0'}, 'monday': {'nodetype': 'namednumber', 'number': '1'}, 'tuesday': {'nodetype': 'namednumber', 'number': '2'}, 'wednesday': {'nodetype': 'namednumber', 'number': '3'}, 'thursday': {'nodetype': 'namednumber', 'number': '4'}, 'friday': {'nodetype': 'namednumber', 'number': '5'}, 'saturday': {'nodetype': 'namednumber', 'number': '6'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service start day.'}, 'daylightSavingTimeStartDateMonth': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'january': {'nodetype': 'namednumber', 'number': '1'}, 'february': {'nodetype': 'namednumber', 'number': '2'}, 'march': {'nodetype': 'namednumber', 'number': '3'}, 'april': {'nodetype': 'namednumber', 'number': '4'}, 'may': {'nodetype': 'namednumber', 'number': '5'}, 'june': {'nodetype': 'namednumber', 'number': '6'}, 'july': {'nodetype': 'namednumber', 'number': '7'}, 'august': {'nodetype': 'namednumber', 'number': '8'}, 'september': {'nodetype': 'namednumber', 'number': '9'}, 'october': {'nodetype': 'namednumber', 'number': '10'}, 'november': {'nodetype': 'namednumber', 'number': '11'}, 'december': {'nodetype': 'namednumber', 'number': '12'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service start month.'}, 'daylightSavingTimeStartDateHour': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Daylight saving time service start time.'}, 'daylightSavingTimeEndDateWeek': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'first': {'nodetype': 'namednumber', 'number': '1'}, 'second': {'nodetype': 'namednumber', 'number': '2'}, 'third': {'nodetype': 'namednumber', 'number': '3'}, 'fourth': {'nodetype': 'namednumber', 'number': '4'}, 'last': {'nodetype': 'namednumber', 'number': '5'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service end week.'}, 'daylightSavingTimeEndDateDay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.7', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'sunday': {'nodetype': 'namednumber', 'number': '0'}, 'monday': {'nodetype': 'namednumber', 'number': '1'}, 'tuesday': {'nodetype': 'namednumber', 'number': '2'}, 'wednesday': {'nodetype': 'namednumber', 'number': '3'}, 'thursday': {'nodetype': 'namednumber', 'number': '4'}, 'friday': {'nodetype': 'namednumber', 'number': '5'}, 'saturday': {'nodetype': 'namednumber', 'number': '6'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service end day.'}, 'daylightSavingTimeEndDateMonth': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.8', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'january': {'nodetype': 'namednumber', 'number': '1'}, 'february': {'nodetype': 'namednumber', 'number': '2'}, 'march': {'nodetype': 'namednumber', 'number': '3'}, 'april': {'nodetype': 'namednumber', 'number': '4'}, 'may': {'nodetype': 'namednumber', 'number': '5'}, 'june': {'nodetype': 'namednumber', 'number': '6'}, 'july': {'nodetype': 'namednumber', 'number': '7'}, 'august': {'nodetype': 'namednumber', 'number': '8'}, 'september': {'nodetype': 'namednumber', 'number': '9'}, 'october': {'nodetype': 'namednumber', 'number': '10'}, 'november': {'nodetype': 'namednumber', 'number': '11'}, 'december': {'nodetype': 'namednumber', 'number': '12'}}}, 'access': 'readwrite', 'description': 'Daylight saving time service end month.'}, 'daylightSavingTimeEndDateHour': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.11.10.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Daylight saving time service end time.'}, 'sysMgmt': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12'}, 'sysMgmtConfigSave': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'config_1': {'nodetype': 'namednumber', 'number': '1'}, 'config_2': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'If setting value is given, the variable write index will be set and running-config will be written to the assigned configuration file. \nIf not, running-config will be written to the booting one.'}, 'sysMgmtBootupConfig': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'config_1': {'nodetype': 'namednumber', 'number': '1'}, 'config_2': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'The setting value (read index) will be written into non-volatile memory. \nWhile rebooting, the variable write index is equal to read index initially. \nYou can change the value of write index by CLI / MIB.'}, 'sysMgmtReboot': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'nothing': {'nodetype': 'namednumber', 'number': '0'}, 'reboot': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': 'Reboot switch from SNMP. 1:Reboot, 0:Nothing'}, 'sysMgmtDefaultConfig': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'nothing': {'nodetype': 'namednumber', 'number': '0'}, 'reset_to_default': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': 'Erase running config and reset to default.'}, 'sysMgmtLastActionStatus': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'success': {'nodetype': 'namednumber', 'number': '1'}, 'fail': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': 'Display status of last mgmt action.'}, 'sysMgmtSystemStatus': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'sysAlarmDetected': {'nodetype': 'namednumber', 'number': '0'}, 'sysTemperatureError': {'nodetype': 'namednumber', 'number': '1'}, 'sysFanRPMError': {'nodetype': 'namednumber', 'number': '2'}, 'sysVoltageRangeError': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': 'This variable indicates the status of the system.\nThe sysMgmtAlarmStatus is a bit map represented\na sum, therefore, it can represent multiple defects\nsimultaneously. The sysNoDefect should be set if and only if\nno other flag is set.\n\nThe various bit positions are:\n\t0 sysAlarmDetected\n\t1 sysTemperatureError\n\t2 sysFanRPMError\n\t3 sysVoltageRangeError'}, 'sysMgmtCPUUsage': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': "Show device CPU load in %, it's the snapshot of CPU load when \ngetting the values."}, 'sysMgmtCounterReset': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.9', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'enable': {'nodetype': 'namednumber', 'number': '1'}, 'disable': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'Reset all port counters.'}, 'sysMgmtTftpServiceSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.10'}, 'sysMgmtTftpServerIp': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.10.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ' IP address of TFTP server'}, 'sysMgmtTftpRemoteFileName': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.12.10.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': 'The file name that you want to backup to or restore from TFTP server'}, 'layer2Setup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13'}, 'vlanTypeSetup': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'dot1Q': {'nodetype': 'namednumber', 'number': '1'}, 'port_based': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'igmpSnoopingStateSetup': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'tagVlanPortIsolationState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'stpState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.4', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'igmpFilteringStateSetup': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.5', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'unknownMulticastFrameForwarding': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'flooding': {'nodetype': 'namednumber', 'number': '1'}, 'drop': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'multicastGrpHostTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Specify host timeout for all multicast groups when the specific port is in auto mode.'}, 'multicastGrpLeaveTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Specify leave timeout for all multicast groups.'}, 'reservedMulticastFrameForwarding': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.9', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'flooding': {'nodetype': 'namednumber', 'number': '1'}, 'drop': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'igmpsnp8021pPriority': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.10', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Set the 802.1p priority of control messages for igmp-snooping(0~8, 8-No Change)'}, 'igmpsnpVlanMode': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.11', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'auto': {'nodetype': 'namednumber', 'number': '1'}, 'fixed': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'stpMode': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.12', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'rstp': {'nodetype': 'namednumber', 'number': '1'}, 'mrstp': {'nodetype': 'namednumber', 'number': '2'}, 'mstp': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': ''}, 'igmpsnpVlanTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.13', 'status': 'current', 'description': ''}, 'igmpsnpVlanEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.13.1', 'create': 'true', 'status': 'current', 'linkage': ['igmpsnpVid'], 'description': 'An entry in IgmpsnpVlanTable.'}, 'igmpsnpVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.13.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpsnpVlanName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.13.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'igmpsnpVlanRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.13.13.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'ipSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14'}, 'dnsIpAddress': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'defaultMgmt': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'in_band': {'nodetype': 'namednumber', 'number': '0'}, 'out_of_band': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'defaultGateway': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'outOfBandIpSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.4'}, 'outOfBandIp': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.4.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'outOfBandSubnetMask': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.4.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'outOfBandGateway': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.4.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'maxNumOfInbandIp': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'inbandIpTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6', 'status': 'current', 'description': ''}, 'inbandIpEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6.1', 'create': 'true', 'status': 'current', 'linkage': ['inbandEntryIp', 'inbandEntrySubnetMask'], 'description': 'An entry in inbandIpTable.'}, 'inbandEntryIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'inbandEntrySubnetMask': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'inbandEntryVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'inbandEntryRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.14.6.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'filterSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15'}, 'filterTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1', 'status': 'current', 'description': ''}, 'filterEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1', 'create': 'true', 'status': 'current', 'linkage': ['filterMacAddr', 'filterVid'], 'description': 'An entry in filterTable.'}, 'filterName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'filterActionState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'discard_source': {'nodetype': 'namednumber', 'number': '1'}, 'discard_destination': {'nodetype': 'namednumber', 'number': '2'}, 'both': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': ''}, 'filterMacAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'filterVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'filterRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.15.1.1.5', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'mirrorSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16'}, 'mirrorState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'mirrorMonitorPort': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'mirrorTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.3', 'status': 'current', 'description': ''}, 'mirrorEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.3.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in mirrorTable.'}, 'mirrorMirroredState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'mirrorDirection': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.16.3.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'ingress': {'nodetype': 'namednumber', 'number': '0'}, 'egress': {'nodetype': 'namednumber', 'number': '1'}, 'both': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'aggrSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17'}, 'aggrState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'aggrSystemPriority': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'aggrGroupTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.3', 'status': 'current', 'description': ''}, 'aggrGroupEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.3.1', 'status': 'current', 'linkage': ['aggrGroupIndex'], 'description': 'An entry in aggrGroupTable.'}, 'aggrGroupIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.3.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'aggrGroupState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'aggrGroupDynamicState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.3.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'aggrPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.4', 'status': 'current', 'description': ''}, 'aggrPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.4.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in aggrPortTable.'}, 'aggrPortGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.4.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 't1': {'nodetype': 'namednumber', 'number': '1'}, 't2': {'nodetype': 'namednumber', 'number': '2'}, 't3': {'nodetype': 'namednumber', 'number': '3'}, 't4': {'nodetype': 'namednumber', 'number': '4'}, 't5': {'nodetype': 'namednumber', 'number': '5'}, 't6': {'nodetype': 'namednumber', 'number': '6'}}}, 'access': 'readwrite', 'description': ''}, 'aggrPortDynamicStateTimeout': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.17.4.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'accessCtlSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18'}, 'accessCtlTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1', 'status': 'current', 'description': ''}, 'accessCtlEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1.1', 'status': 'current', 'linkage': ['accessCtlService'], 'description': 'An entry in accessCtlTable.'}, 'accessCtlService': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'telnet': {'nodetype': 'namednumber', 'number': '1'}, 'ssh': {'nodetype': 'namednumber', 'number': '2'}, 'ftp': {'nodetype': 'namednumber', 'number': '3'}, 'http': {'nodetype': 'namednumber', 'number': '4'}, 'https': {'nodetype': 'namednumber', 'number': '5'}, 'icmp': {'nodetype': 'namednumber', 'number': '6'}, 'snmp': {'nodetype': 'namednumber', 'number': '7'}}}, 'access': 'readonly', 'description': ''}, 'accessCtlEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'accessCtlServicePort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'accessCtlTimeout': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.1.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'securedClientTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2', 'status': 'current', 'description': ''}, 'securedClientEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1', 'status': 'current', 'linkage': ['securedClientIndex'], 'description': 'An entry in securedClientTable.'}, 'securedClientIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'securedClientEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'securedClientStartIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'securedClientEndIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'securedClientService': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.18.2.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Bits', 'telnet': {'nodetype': 'namednumber', 'number': '0'}, 'ftp': {'nodetype': 'namednumber', 'number': '1'}, 'http': {'nodetype': 'namednumber', 'number': '2'}, 'icmp': {'nodetype': 'namednumber', 'number': '3'}, 'snmp': {'nodetype': 'namednumber', 'number': '4'}, 'ssh': {'nodetype': 'namednumber', 'number': '5'}, 'https': {'nodetype': 'namednumber', 'number': '6'}}}, 'access': 'readwrite', 'description': ''}, 'queuingMethodSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.19'}, 'portQueuingMethodTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.19.1', 'status': 'current', 'description': ''}, 'portQueuingMethodEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.19.1.1', 'status': 'current', 'linkage': ['dot1dBasePort', 'portQueuingMethodQueue'], 'description': 'An entry in portQueuingMethodTable.'}, 'portQueuingMethodQueue': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.19.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '0...7'}, 'portQueuingMethodWeight': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.19.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0...15'}, 'dhcpSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20'}, 'globalDhcpRelay': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1'}, 'globalDhcpRelayEnable': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'globalDhcpRelayOption82Enable': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'globalDhcpRelayInfoEnable': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'globalDhcpRelayInfoData': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'maxNumberOfGlobalDhcpRelayRemoteServer': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'globalDhcpRelayRemoteServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.6', 'status': 'current', 'description': ''}, 'globalDhcpRelayRemoteServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.6.1', 'create': 'true', 'status': 'current', 'linkage': ['globalDhcpRelayRemoteServerIp'], 'description': 'An entry in globalDhcpRelayRemoteServerTable.'}, 'globalDhcpRelayRemoteServerIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.6.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'globalDhcpRelayRemoteServerRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.1.6.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServer': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2'}, 'maxNumberOfDhcpServers': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The maximum number of DHCP server entries that can be created. \nA value of 0 for this object implies that there exists settings for \nglobal DHCP relay.'}, 'dhcpServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2', 'status': 'current', 'description': ''}, 'dhcpServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1', 'create': 'true', 'status': 'current', 'linkage': ['dhcpServerVid'], 'description': 'An entry in dhcpServerTable.'}, 'dhcpServerVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpServerStartAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerPoolSize': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerMask': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerGateway': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.5', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerPrimaryDNS': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerSecondaryDNS': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.7', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'dhcpServerRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.2.2.1.8', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpRelay': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3'}, 'dhcpRelayInfoData': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'maxNumberOfDhcpRelay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The maximum number of DHCP relay entries that can be created. \nA value of 0 for this object implies that there exists settings for \nglobal DHCP relay.'}, 'maxNumberOfDhcpRelayRemoteServer': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpRelayRemoteServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.4', 'status': 'current', 'description': ''}, 'dhcpRelayRemoteServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.4.1', 'create': 'true', 'status': 'current', 'linkage': ['dhcpRelayVid', 'dhcpRelayRemoteServerIp'], 'description': 'An entry in dhcpRelayRemoteServerTable.'}, 'dhcpRelayVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpRelayRemoteServerIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'dhcpRelayRemoteServerRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.4.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpRelayTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.5', 'status': 'current', 'description': ''}, 'dhcpRelayEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.5.1', 'status': 'current', 'linkage': ['dhcpRelayVid'], 'description': 'An entry in dhcpRelayTable.'}, 'dhcpRelayOption82Enable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.5.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpRelayInfoEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.20.3.5.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'staticRouteSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21'}, 'maxNumberOfStaticRoutes': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'staticRouteTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2', 'status': 'current', 'description': ''}, 'staticRouteEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1', 'create': 'true', 'status': 'current', 'linkage': ['staticRouteIp', 'staticRouteMask'], 'description': 'An entry in staticRouteTable.'}, 'staticRouteName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'staticRouteIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'staticRouteMask': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'staticRouteGateway': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'staticRouteMetric': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'staticRouteRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.21.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInfo': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22'}, 'arpTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1', 'status': 'current', 'description': ''}, 'arpEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1', 'status': 'current', 'linkage': ['arpIpAddr', 'arpMacVid'], 'description': 'An entry in arpTable.'}, 'arpIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpIpAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'arpMacAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'arpMacVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.22.1.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'static': {'nodetype': 'namednumber', 'number': '1'}, 'dynamic': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': '1-static, 2-dynamic'}, 'portOpModeSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23'}, 'portOpModePortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1', 'status': 'current', 'description': ''}, 'portOpModePortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in portOpModePortTable.'}, 'portOpModePortFlowCntl': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'off': {'nodetype': 'namednumber', 'number': '0'}, 'on': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'portOpModePortName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '0', 'max': '32'}], 'range': {'min': '0', 'max': '32'}}}, 'access': 'readwrite', 'description': ''}, 'portOpModePortLinkUpType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'down': {'nodetype': 'namednumber', 'number': '0'}, 'copper': {'nodetype': 'namednumber', 'number': '1'}, 'fiber': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'portOpModePortIntrusionLock': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.6', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'portOpModePortLBTestStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.7', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'underTesting': {'nodetype': 'namednumber', 'number': '1'}, 'success': {'nodetype': 'namednumber', 'number': '2'}, 'fail': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': 'This entry display latest loopback test status of port while performing loopback test.'}, 'portOpModePortCounterReset': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.23.1.1.8', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'enable': {'nodetype': 'namednumber', 'number': '1'}, 'disable': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'This entry resets port counter.'}, 'portBasedVlanSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.24'}, 'portBasedVlanPortListTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.24.1', 'status': 'current', 'description': ''}, 'portBasedVlanPortListEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.24.1.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in portBasedVlanPortListTable.'}, 'portBasedVlanPortListMembers': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.24.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'Q-BRIDGE-MIB', 'name': 'PortList'}}, 'access': 'readwrite', 'description': ''}, 'multicastPortSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25'}, 'multicastPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1', 'status': 'current', 'description': ''}, 'multicastPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in multicastPortTable.'}, 'multicastPortImmediateLeave': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'multicastPortMaxGroupLimited': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'multicastPortMaxOfGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0..255'}, 'multicastPortIgmpFilteringProfile': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'multicastPortQuerierMode': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.25.1.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'auto': {'nodetype': 'namednumber', 'number': '1'}, 'fixed': {'nodetype': 'namednumber', 'number': '2'}, 'edge': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': 'Specify query mode for each port'}, 'multicastStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26'}, 'multicastStatusTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1', 'status': 'current', 'description': ''}, 'multicastStatusEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1.1', 'status': 'current', 'linkage': ['multicastStatusVlanID', 'multicastStatusPort', 'multicastStatusGroup'], 'description': 'An entry in multicastStatusTable.'}, 'multicastStatusIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'multicastStatusVlanID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'multicastStatusPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'multicastStatusGroup': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'igmpCountTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2', 'status': 'current', 'description': 'A count table of igmp query/report/leave message.'}, 'igmpCountEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1', 'status': 'current', 'linkage': ['igmpCountIndex'], 'description': 'An entry in igmpCountTable.'}, 'igmpCountIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Index of IgmpCountEntry. 0 means total count in whole system'}, 'igmpCountInQuery': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountInReport': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountInLeave': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountInQueryDrop': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountInReportDrop': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountInLeaveDrop': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountOutQuery': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountOutReport': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpCountOutLeave': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.2.1.10', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'multicastVlanStatusTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.3', 'status': 'current', 'description': ''}, 'multicastVlanStatusEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.3.1', 'status': 'current', 'linkage': ['multicastVlanStatusVlanID'], 'description': 'An entry in multicastVlanStatusTable.'}, 'multicastVlanStatusVlanID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.3.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'multicastVlanStatusType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.3.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'dynamic': {'nodetype': 'namednumber', 'number': '1'}, 'mvr': {'nodetype': 'namednumber', 'number': '2'}, 'static': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': ''}, 'multicastVlanQueryPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.26.3.1.3', 'status': 'current', 'syntax': {'type': {'module': 'Q-BRIDGE-MIB', 'name': 'PortList'}}, 'access': 'readonly', 'description': ''}, 'igmpFilteringProfileSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27'}, 'igmpFilteringMaxNumberOfProfile': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'igmpFilteringProfileTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2', 'status': 'current', 'description': ''}, 'igmpFilteringProfileEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2.1', 'create': 'true', 'status': 'current', 'linkage': ['igmpFilteringProfileName', 'igmpFilteringProfileStartAddress', 'igmpFilteringProfileEndAddress'], 'description': 'An entry in igmpFilteringProfileTable.'}, 'igmpFilteringProfileName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'igmpFilteringProfileStartAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'igmpFilteringProfileEndAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'igmpFilteringProfileRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.27.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'mvrSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28'}, 'maxNumberOfMVR': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'mvrTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2', 'status': 'current', 'description': ''}, 'mvrEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1', 'create': 'true', 'status': 'current', 'linkage': ['mvrVlanID'], 'description': 'An entry in mvrTable.'}, 'mvrVlanID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '1..4094'}, 'mvrName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'mvrMode': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'dynamic': {'nodetype': 'namednumber', 'number': '0'}, 'compatible': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'mvrRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'mvr8021pPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.2.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Set the 802.1p priority of control messages within MVR (0~7)'}, 'mvrPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.3', 'status': 'current', 'description': ''}, 'mvrPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.3.1', 'status': 'current', 'linkage': ['mvrVlanID', 'dot1dBasePort'], 'description': 'An entry in mvrPortTable.'}, 'mvrPortRole': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.3.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '1'}, 'source_port': {'nodetype': 'namednumber', 'number': '2'}, 'receiver_port': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': ''}, 'mvrPortTagging': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'maxNumberOfMvrGroup': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'mvrGroupTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5', 'status': 'current', 'description': ''}, 'mvrGroupEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5.1', 'create': 'true', 'status': 'current', 'linkage': ['mvrVlanID', 'mvrGroupName'], 'description': 'An entry in mvrGroupTable.'}, 'mvrGroupName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'mvrGroupStartAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'mvrGroupEndAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'mvrGroupRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.28.5.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'layer3Setup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.29'}, 'routerRipState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.29.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'routerIgmpState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.29.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'routerDvmrpState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.29.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'routerDvmrpThreshold': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.29.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'routerIpmcPortSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.30'}, 'routerIpmcPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.30.1', 'status': 'current', 'description': ''}, 'routerIpmcPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.30.1.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in routerIpmcPortTable.'}, 'routerIpmcPortEgressUntagVlan': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.30.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31'}, 'routerVrrpMaxNumber': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Always set it as 14.'}, 'routerVrrpTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2', 'status': 'current', 'description': ''}, 'routerVrrpEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1', 'create': 'true', 'status': 'current', 'linkage': ['routerDomainIpAddress', 'routerDomainIpMaskBits', 'routerVrrpVirtualID', 'routerVrrpUplinkGateway'], 'description': 'An entry in routerVrrpTable.'}, 'routerVrrpVirtualID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpUplinkGateway': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpPreempt': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpInterval': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '1-255'}, 'routerVrrpPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '1-254'}, 'routerVrrpPrimaryVirtualIP': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.7', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpSecondaryVirtualIP': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.8', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'rpVrrpRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.2.1.9', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpDomainTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.3', 'status': 'current', 'description': ''}, 'routerVrrpDomainEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.3.1', 'status': 'current', 'linkage': ['routerDomainIpAddress', 'routerDomainIpMaskBits'], 'description': 'An entry in routerVrrpTable.'}, 'routerVrrpAuthType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.3.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'simple': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpAuthKey': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.31.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'routerVrrpStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32'}, 'routerVrrpStatusTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1', 'status': 'current', 'description': ''}, 'routerVrrpStatusEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1', 'status': 'current', 'linkage': ['routerVrrpStatusIpAddress', 'routerVrrpStatusIpMaskBits', 'routerVrrpStatusVirtualID'], 'description': ' '}, 'routerVrrpStatusIpAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpStatusIpMaskBits': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpStatusVirtualID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpStatusVRStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'routerVrrpStatusUpLinkStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.32.1.1.5', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'routerDomainSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33'}, 'routerDomainTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.1', 'status': 'current', 'description': ''}, 'routerDomainEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.1.1', 'status': 'current', 'linkage': ['routerDomainIpAddress', 'routerDomainIpMaskBits'], 'description': 'An entry in routerDomainTable.'}, 'routerDomainIpAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routerDomainIpMaskBits': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routerDomainVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.1.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routerDomainIpTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2', 'status': 'current', 'description': ''}, 'routerDomainIpEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2.1', 'status': 'current', 'linkage': ['routerDomainIpAddress', 'routerDomainIpMaskBits'], 'description': 'An entry in routerDomainIpTable.'}, 'routerDomainIpRipDirection': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'outgoing': {'nodetype': 'namednumber', 'number': '1'}, 'incoming': {'nodetype': 'namednumber', 'number': '2'}, 'both': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': ''}, 'routerDomainIpRipVersion': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'v1': {'nodetype': 'namednumber', 'number': '0'}, 'v2b': {'nodetype': 'namednumber', 'number': '1'}, 'v2m': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'routerDomainIpIgmpVersion': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'igmp_v1': {'nodetype': 'namednumber', 'number': '1'}, 'igmp_v2': {'nodetype': 'namednumber', 'number': '2'}, 'igmp_v3': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readwrite', 'description': ''}, 'routerDomainIpDvmrp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.33.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'diffservSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34'}, 'diffservState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'diffservMapTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.2', 'status': 'current', 'description': ''}, 'diffservMapEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.2.1', 'status': 'current', 'linkage': ['diffservMapDscp'], 'description': 'An entry in diffservMapTable.'}, 'diffservMapDscp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '0-63'}, 'diffservMapPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.2.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0-7'}, 'diffservPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.3', 'status': 'current', 'description': ''}, 'diffservPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.3.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in diffservPortTable.'}, 'diffservPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.34.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'clusterSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35'}, 'clusterManager': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1'}, 'clusterMaxNumOfManager': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'clusterManagerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.2', 'status': 'current', 'description': ''}, 'clusterManagerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.2.1', 'create': 'true', 'status': 'current', 'linkage': ['clusterManagerVid'], 'description': 'An entry in clusterManagerTable.'}, 'clusterManagerVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'clusterManagerName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'clusterManagerRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.1.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'clusterMembers': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2'}, 'clusterMaxNumOfMember': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'clusterMemberTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2', 'status': 'current', 'description': ''}, 'clusterMemberEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1', 'create': 'true', 'status': 'current', 'linkage': ['clusterMemberMac'], 'description': 'An entry in clusterMemberTable.'}, 'clusterMemberMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'noaccess', 'description': ''}, 'clusterMemberName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterMemberModel': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterMemberPassword': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'clusterMemberRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.2.2.1.5', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'clusterCandidates': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3'}, 'clusterCandidateTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3.1', 'status': 'current', 'description': ''}, 'clusterCandidateEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3.1.1', 'status': 'current', 'linkage': ['clusterCandidateMac'], 'description': 'An entry in clusterCandidateTable.'}, 'clusterCandidateMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterCandidateName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterCandidateModel': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.3.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4'}, 'clusterStatusRole': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'none': {'nodetype': 'namednumber', 'number': '0'}, 'manager': {'nodetype': 'namednumber', 'number': '1'}, 'member': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'clusterStatusManager': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clsuterStatusMaxNumOfMember': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'clusterStatusMemberTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4', 'status': 'current', 'description': ''}, 'clusterStatusMemberEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4.1', 'status': 'current', 'linkage': ['clusterStatusMemberMac'], 'description': 'An entry in clusterStatusMemberTable.'}, 'clusterStatusMemberMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterStatusMemberName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterStatusMemberModel': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'clusterStatusMemberStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.35.4.4.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'error': {'nodetype': 'namednumber', 'number': '0'}, 'online': {'nodetype': 'namednumber', 'number': '1'}, 'offline': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'faultMIB': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36', 'status': 'current'}, 'eventObjects': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1'}, 'eventTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1', 'status': 'current', 'description': 'A list of currently active fault events. All faults \nof normal type regardless of their severity level \nare recorded in the event table. When a normal \ntype fault is cleared it is deleted from the event \ntable.'}, 'eventEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1', 'status': 'current', 'linkage': ['eventSeqNum'], 'description': 'An entry containing information about an\nevent in the event table.'}, 'eventSeqNum': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'This variable represents the sequence number of an event. \nSequence number is incremented monotonically starting \nfrom 0 until it reaches its maximum and wraps around back \nto 0.\n\nSequence number is incremented when \n- the state of a normal type fault is set on (the same sequence \nnumber is present in the events table as well as in the trap \nthat is sent to notify about the fault on event)\n- delta event occurs (sequence number present in trap message)\n- the state of a normal type fault is set off (sequence number \npresent in trap that is sent to notify for clearing).'}, 'eventEventId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'EventIdNumber'}}, 'access': 'readonly', 'description': 'This variable represents the event ID which uniquely \nidentifies the event in the entire system.'}, 'eventName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'parent module': {'name': 'RFC1213-MIB', 'type': 'DisplayString'}, 'ranges': [{'min': '0', 'max': '40'}], 'range': {'min': '0', 'max': '40'}}}, 'access': 'readonly', 'description': "This variable represents the name of the event, for \nexample 'Ethernet Link Down'"}, 'eventInstanceType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'InstanceType'}}, 'access': 'readonly', 'description': 'This variable represents the type of InstanceId of a \nparticular event in the event table. In brief \nthe instanceType refers to the type of sub-component\ngenerating this event in the system, for example \nswitch (5). For more details see the textual \nconventions section.\n\nAFFECTS: eventInstanceId, \n eventInstanceName'}, 'eventInstanceId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.5', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': "This variable represents the InstanceId of a particular \nevent in the event current table. In brief the instanceId \nrefers to the sub-component generating this event in the \nsystem, for example '1' for port 1. For more details see \nthe textual conventions section.\n\nDEPENDS ON: eventInstanceType"}, 'eventInstanceName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.6', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': 'This variable is mainly used to store additional information\nabout the sub-component that is generating an event. For \nexample this field may specify what cooling fan is faulty.\n\nDEPENDS ON: eventInstanceType'}, 'eventSeverity': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.7', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'EventSeverity'}}, 'access': 'readonly', 'description': 'This variable dictates the urgency of action when a event\noccurs. There are four severity levels - Critical, Major, \nMinor, and Informational. Critical events are those, which \nrequire immediate operator intervention to prevent/reduce \nsystem down time. Major events require quick attention and \nMinor events possibly require some attention. Informational \nevents indicate the occurrence of events that may need to be \ninvestigated.'}, 'eventSetTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.8', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'UtcTimeStamp'}}, 'access': 'readonly', 'description': 'This table contains only normal events and this variable \nrepresents the time when the event become active, i.e. the \nnumber of seconds since Jan 1, 1970 12:00AM.'}, 'eventDescription': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.9', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'parent module': {'name': 'RFC1213-MIB', 'type': 'DisplayString'}, 'ranges': [{'min': '0', 'max': '255'}], 'range': {'min': '0', 'max': '255'}}}, 'access': 'readonly', 'description': 'This variable contains a description of the event and reasons \nbehind the event. This is a free format alpha-numeric string \nthat is set by the entity generating this event. This variable \nmay be empty if there is no usefull information to report. \nThe maximum length of this string is 255 characters.'}, 'eventServAffective': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.36.1.1.1.10', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'EventServiceAffective'}}, 'access': 'readonly', 'description': 'This variable indicates whether the event is service affective or not'}, 'faultTrapsMIB': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37', 'status': 'current'}, 'trapInfoObjects': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.1'}, 'trapRefSeqNum': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Indicates the former sequence number of a cleared event \nin the event table. Not intended to read but only used in \ntrap notifications.'}, 'trapPersistence': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.1.2', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'EventPersistence'}}, 'access': 'readonly', 'description': 'Indicates whether the event is delta (automatically and \nimmediately cleared) or normal (not automatically cleared). \nNot intended to read but only used in trap notifications.'}, 'trapSenderNodeId': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Represents the node ID of the sending network element. If not \nsupported should be set to 0. Not intended to read but only \nused in trap notifications.'}, 'trapNotifications': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.2'}, 'ipStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38'}, 'ipStatusTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1', 'status': 'current', 'description': ''}, 'ipStatusEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1.1', 'status': 'current', 'linkage': ['ipStatusIPAddress', 'ipStatusVid'], 'description': ''}, 'ipStatusIPAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'ipStatusVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ipStatusPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'ipStatusType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.38.1.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'static': {'nodetype': 'namednumber', 'number': '1'}, 'dynamic': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'routingStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39'}, 'routingStatusTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1', 'status': 'current', 'description': ''}, 'routingStatusEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1', 'status': 'current', 'linkage': ['routingStatusDestAddress'], 'description': ''}, 'routingStatusDestAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routingStatusDestMaskbits': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routingStatusGateway': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routingStatusInterface': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'routingStatusMetric': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'routingStatusType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.39.1.1.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'rip': {'nodetype': 'namednumber', 'number': '1'}, 'bgp': {'nodetype': 'namednumber', 'number': '2'}, 'ospf': {'nodetype': 'namednumber', 'number': '3'}, 'static': {'nodetype': 'namednumber', 'number': '4'}}}, 'access': 'readonly', 'description': ''}, 'ospfExt': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40'}, 'ospfInterfaceTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1', 'status': 'current', 'description': ''}, 'ospfInterfaceEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1', 'status': 'current', 'linkage': ['ospfIfIpAddress', 'ospfAddressLessIf'], 'description': ''}, 'ospfIfKeyId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'ospfIfMaskbits': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfIfDesignatedRouterID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'ospfIfBackupDesignatedRouterID': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'ospfIfNbrCount': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfIfAdjacentNbrCount': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfIfHelloDueTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.1.1.7', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'ospfAreaExtTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.2', 'status': 'current', 'description': ''}, 'ospfAreaExtEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.2.1', 'status': 'current', 'linkage': ['ospfAreaId'], 'description': ''}, 'ospfAreaExtName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'ospfRedistributeRouteTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3', 'status': 'current', 'description': ''}, 'ospfRedistributeRouteEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3.1', 'status': 'current', 'linkage': ['ospfRedistributeRouteProtocol'], 'description': ''}, 'ospfRedistributeRouteProtocol': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'rip': {'nodetype': 'namednumber', 'number': '1'}, 'static': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'ospfRedistributeRouteState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'ospfRedistributeRouteType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'ospfRedistributeRouteMetric': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.3.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'ospfNbrExtTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4', 'status': 'current', 'description': ''}, 'ospfNbrExtEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1', 'status': 'current', 'linkage': ['ospfNbrIpAddr', 'ospfNbrAddressLessIndex'], 'description': ''}, 'ospfNbrExtRole': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'dr': {'nodetype': 'namednumber', 'number': '1'}, 'backup': {'nodetype': 'namednumber', 'number': '2'}, 'dr_other': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': ''}, 'ospfNbrExtDeadtime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'ospfNbrExtInterface': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'ospfNbrExtRXmtL': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfNbrExtRqstL': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfNbrExtDBsmL': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.4.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfLsdbExtTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.5', 'status': 'current', 'description': ''}, 'ospfLsdbExtEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.5.1', 'status': 'current', 'linkage': ['ospfLsdbAreaId', 'ospfLsdbType', 'ospfLsdbLSID', 'ospfLsdbRouterId'], 'description': ''}, 'ospfLsdbExtLinkCount': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.5.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfLsdbExtRouteAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.5.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'ospfLsdbExtRouteMaskbits': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.5.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'ospfVirtualLinkTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.6', 'status': 'current', 'description': ''}, 'ospfVirtualLinkEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.6.1', 'status': 'current', 'linkage': ['ospfVirtIfAreaID', 'ospfVirtIfNeighbor'], 'description': ''}, 'ospfVirtualLinkName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.6.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'ospfVirtualLinkKeyId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.40.6.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'sysLogSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41'}, 'sysLogState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'sysLog enabled/disabled for the switch.'}, 'sysLogTypeTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2', 'status': 'current', 'description': ''}, 'sysLogTypeEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2.1', 'status': 'current', 'linkage': ['sysLogTypeIndex'], 'description': 'An entry in sysLogTypeTable.'}, 'sysLogTypeIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'noaccess', 'description': ''}, 'sysLogTypeName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'sysLogTypeState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'sysLogTypeFacility': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.2.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'local_user0': {'nodetype': 'namednumber', 'number': '0'}, 'local_user1': {'nodetype': 'namednumber', 'number': '1'}, 'local_user2': {'nodetype': 'namednumber', 'number': '2'}, 'local_user3': {'nodetype': 'namednumber', 'number': '3'}, 'local_user4': {'nodetype': 'namednumber', 'number': '4'}, 'local_user5': {'nodetype': 'namednumber', 'number': '5'}, 'local_user6': {'nodetype': 'namednumber', 'number': '6'}, 'local_user7': {'nodetype': 'namednumber', 'number': '7'}}}, 'access': 'readwrite', 'description': ''}, 'sysLogServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.3', 'status': 'current', 'description': ''}, 'sysLogServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.3.1', 'create': 'true', 'status': 'current', 'linkage': ['sysLogServerAddress'], 'description': 'An entry in sysLogServerTable.'}, 'sysLogServerAddress': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'noaccess', 'description': ''}, 'sysLogServerLogLevel': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.3.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'level0': {'nodetype': 'namednumber', 'number': '0'}, 'level0-1': {'nodetype': 'namednumber', 'number': '1'}, 'level0-2': {'nodetype': 'namednumber', 'number': '2'}, 'level0-3': {'nodetype': 'namednumber', 'number': '3'}, 'level0-4': {'nodetype': 'namednumber', 'number': '4'}, 'level0-5': {'nodetype': 'namednumber', 'number': '5'}, 'level0-6': {'nodetype': 'namednumber', 'number': '6'}, 'level0-7': {'nodetype': 'namednumber', 'number': '7'}}}, 'access': 'readwrite', 'description': ''}, 'sysLogServerRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.41.3.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'mrstp': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42'}, 'mrstpSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1'}, 'mrstpBridgeTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1', 'status': 'current', 'description': ''}, 'mrstpBridgeEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1', 'status': 'current', 'linkage': ['mrstpBridgeIndex'], 'description': 'An entry in mrstpBridgeTable.'}, 'mrstpBridgeIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The tree index of the MRSTP.'}, 'mrstpState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Enabled/disabled on the mrstp bridge.'}, 'mrstpProtocolSpecification': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'unknown': {'nodetype': 'namednumber', 'number': '1'}, 'decLb100': {'nodetype': 'namednumber', 'number': '2'}, 'ieee8021d': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': "An indication of what version of the Spanning\nTree Protocol is being run. The value\n'decLb100(2)' indicates the DEC LANbridge 100\nSpanning Tree protocol. IEEE 802.1d\nimplementations will return 'ieee8021d(3)'. If\nfuture versions of the IEEE Spanning Tree Protocol\nare released that are incompatible with the\ncurrent version a new value will be defined."}, 'mrstpPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '65535'}], 'range': {'min': '0', 'max': '65535'}}}, 'access': 'readwrite', 'description': 'The value of the write-able portion of the Bridge\nID, i.e., the first two octets of the (8 octet\nlong) Bridge ID. The other (last) 6 octets of the\nBridge ID are given by the value of\ndot1dBaseBridgeAddress.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.7'}, 'mrstpTimeSinceTopologyChange': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.5', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'TimeTicks'}}, 'access': 'readonly', 'description': 'The time (in hundredths of a second) since the\nlast time a topology change was detected by the\nbridge entity.', 'reference>': 'IEEE 802.1D-1990: Section 6.8.1.1.3'}, 'mrstpTopChanges': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.6', 'status': 'current', 'access': 'readonly', 'description': 'The total number of topology changes detected by\nthis bridge since the management entity was last\nreset or initialized.', 'reference>': 'IEEE 802.1D-1990: Section 6.8.1.1.3'}, 'mrstpDesignatedRoot': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.7', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': 'The bridge identifier of the root of the spanning\ntree as determined by the Spanning Tree Protocol\nas executed by this node. This value is used as\nthe Root Identifier parameter in all Configuration\nBridge PDUs originated by this node.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.1'}, 'mrstpRootCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The cost of the path to the root as seen from\nthis bridge.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.2'}, 'mrstpRootPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The port number of the port which offers the\nlowest cost path from this bridge to the root\nbridge.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.3'}, 'mrstpMaxAge': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.10', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'Timeout'}}, 'access': 'readonly', 'description': 'The maximum age of Spanning Tree Protocol\ninformation learned from the network on any port\nbefore it is discarded, in units of hundredths of\na second. This is the actual value that this\nbridge is currently using.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.4'}, 'mrstpHelloTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.11', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'Timeout'}}, 'access': 'readonly', 'description': 'The amount of time between the transmission of\nConfiguration bridge PDUs by this node on any port\nwhen it is the root of the spanning tree or trying\nto become so, in units of hundredths of a second.\nThis is the actual value that this bridge is\ncurrently using.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.5'}, 'mrstpHoldTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.12', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'This time value determines the interval length\nduring which no more than two Configuration bridge\nPDUs shall be transmitted by this node, in units\nof hundredths of a second.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.14'}, 'mrstpForwardDelay': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.13', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'Timeout'}}, 'access': 'readonly', 'description': 'This time value, measured in units of hundredths\nof a second, controls how fast a port changes its\nspanning state when moving towards the Forwarding\nstate. The value determines how long the port\nstays in each of the Listening and Learning\nstates, which precede the Forwarding state. This\nvalue is also used, when a topology change has\nbeen detected and is underway, to age all dynamic\nentries in the Forwarding Database. [Note that\nthis value is the one that this bridge is\ncurrently using, in contrast to\nmrstpBridgeForwardDelay which is the value that\nthis bridge and all others would start using\nif/when this bridge were to become the root.]', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.6'}, 'mrstpBridgeMaxAge': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.14', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '600', 'max': '4000'}], 'range': {'min': '600', 'max': '4000'}}}, 'access': 'readwrite', 'description': 'The value that all bridges use for MaxAge when\nthis bridge is acting as the root. Note that\n802.1D-1990 specifies that the range for this\nparameter is related to the value of\nmrstpBridgeHelloTime. The granularity of this\ntimer is specified by 802.1D-1990 to be 1 second.\nAn agent may return a badValue error if a set is\nattempted to a value which is not a whole number\nof seconds.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.8'}, 'mrstpBridgeHelloTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.15', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '100', 'max': '1000'}], 'range': {'min': '100', 'max': '1000'}}}, 'access': 'readwrite', 'description': 'The value that all bridges use for HelloTime when\nthis bridge is acting as the root. The\ngranularity of this timer is specified by 802.1D-\n1990 to be 1 second. An agent may return a\nbadValue error if a set is attempted to a value\nwhich is not a whole number of seconds.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.9'}, 'mrstpBridgeForwardDelay': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.1.1.16', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '400', 'max': '3000'}], 'range': {'min': '400', 'max': '3000'}}}, 'access': 'readwrite', 'description': 'The value that all bridges use for ForwardDelay\nwhen this bridge is acting as the root. Note that\n802.1D-1990 specifies that the range for this\nparameter is related to the value of\nmrstpBridgeMaxAge. The granularity of this\ntimer is specified by 802.1D-1990 to be 1 second.\nAn agent may return a badValue error if a set is\nattempted to a value which is not a whole number\nof seconds.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.3.10'}, 'mrstpPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2', 'status': 'current', 'description': 'A table that contains port-specific information\nfor the Spanning Tree Protocol.'}, 'mrstpPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1', 'status': 'current', 'linkage': ['mrstpPort'], 'description': 'A list of information maintained by every port\nabout the Spanning Tree Protocol state for that\nport.'}, 'mrstpPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readonly', 'description': 'The port number of the port for which this entry\ncontains Spanning Tree Protocol management\ninformation.', 'reference>': 'IEEE 802.1D-1990: Section 6.8.2.1.2'}, 'mrstpPortPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '255'}], 'range': {'min': '0', 'max': '255'}}}, 'access': 'readwrite', 'description': 'The value of the priority field which is\ncontained in the first (in network byte order)\noctet of the (2 octet long) Port ID. The other\noctet of the Port ID is given by the value of\nmrstpPort.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.1'}, 'mrstpPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'disabled': {'nodetype': 'namednumber', 'number': '1'}, 'blocking': {'nodetype': 'namednumber', 'number': '2'}, 'listening': {'nodetype': 'namednumber', 'number': '3'}, 'learning': {'nodetype': 'namednumber', 'number': '4'}, 'forwarding': {'nodetype': 'namednumber', 'number': '5'}, 'broken': {'nodetype': 'namednumber', 'number': '6'}}}, 'access': 'readonly', 'description': "The port's current state as defined by\napplication of the Spanning Tree Protocol. This\nstate controls what action a port takes on\nreception of a frame. If the bridge has detected\na port that is malfunctioning it will place that\nport into the broken(6) state. For ports which\nare disabled (see mrstpPortEnable), this object\nwill have a value of disabled(1).", 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.2'}, 'mrstpPortEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'enabled': {'nodetype': 'namednumber', 'number': '1'}, 'disabled': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': 'The enabled/disabled status of the port.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.2'}, 'mrstpPortPathCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readwrite', 'description': 'The contribution of this port to the path cost of\npaths towards the spanning tree root which include\nthis port. 802.1D-1990 recommends that the\ndefault value of this parameter be in inverse\nproportion to the speed of the attached LAN.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.3'}, 'mrstpPortDesignatedRoot': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.6', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': 'The unique Bridge Identifier of the Bridge\nrecorded as the Root in the Configuration BPDUs\ntransmitted by the Designated Bridge for the\nsegment to which the port is attached.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.4'}, 'mrstpPortDesignatedCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.7', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'The path cost of the Designated Port of the\nsegment connected to this port. This value is\ncompared to the Root Path Cost field in received\nbridge PDUs.', 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.5'}, 'mrstpPortDesignatedBridge': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.8', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': "The Bridge Identifier of the bridge which this\nport considers to be the Designated Bridge for\nthis port's segment.", 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.6'}, 'mrstpPortDesignatedPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.9', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '2', 'max': '2'}], 'range': {'min': '2', 'max': '2'}}}, 'access': 'readonly', 'description': "The Port Identifier of the port on the Designated\nBridge for this port's segment.", 'reference>': 'IEEE 802.1D-1990: Section 4.5.5.7'}, 'mrstpPortForwardTransitions': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.10', 'status': 'current', 'access': 'readonly', 'description': 'The number of times this port has transitioned\nfrom the Learning state to the Forwarding state.'}, 'mrstpPortOnBridgeIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.1.2.1.11', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Indetify the bridge index that this port joined to in MRSTP.'}, 'mrstpNotifications': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.2'}, 'radiusServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43'}, 'radiusAuthServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1'}, 'radiusAuthServerTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'radiusAuthServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3', 'status': 'current', 'description': ''}, 'radiusAuthServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3.1', 'status': 'current', 'linkage': ['radiusAuthServerIndex'], 'description': 'An entry in radiusAuthServerTable.'}, 'radiusAuthServerIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'noaccess', 'description': ''}, 'radiusAuthServerIpAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'radiusAuthServerUdpPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'radiusAuthServerSharedSecret': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.1.3.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'radiusAcctServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2'}, 'radiusAcctServerTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'radiusAcctServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2', 'status': 'current', 'description': ''}, 'radiusAcctServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2.1', 'status': 'current', 'linkage': ['radiusAcctServerIndex'], 'description': 'An entry in radiusAcctServerTable.'}, 'radiusAcctServerIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'noaccess', 'description': ''}, 'radiusAcctServerIpAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'radiusAcctServerUdpPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'radiusAcctServerSharedSecret': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.43.2.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'tacacsServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44'}, 'tacacsAuthServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1'}, 'tacacsAuthServerTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAuthServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3', 'status': 'current', 'description': ''}, 'tacacsAuthServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3.1', 'status': 'current', 'linkage': ['tacacsAuthServerIndex'], 'description': 'An entry in tacacsAuthServerTable.'}, 'tacacsAuthServerIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'noaccess', 'description': ''}, 'tacacsAuthServerIpAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAuthServerTcpPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAuthServerSharedSecret': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.1.3.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAcctServerSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2'}, 'tacacsAcctServerTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAcctServerTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2', 'status': 'current', 'description': ''}, 'tacacsAcctServerEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2.1', 'status': 'current', 'linkage': ['tacacsAcctServerIndex'], 'description': 'An entry in tacacsAcctServerTable.'}, 'tacacsAcctServerIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'noaccess', 'description': ''}, 'tacacsAcctServerIpAddr': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAcctServerTcpPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'tacacsAcctServerSharedSecret': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.44.2.2.1.4', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'aaaSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45'}, 'authenticationSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.1'}, 'authenticationTypeTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.1.1', 'status': 'current', 'description': ''}, 'authenticationTypeEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.1.1.1', 'status': 'current', 'linkage': ['authenticationTypeName'], 'description': 'An entry in authenticationTypeTable.'}, 'authenticationTypeName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.1.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'authenticationTypeMethodList': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.1.1.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'OctetString'}}, 'access': 'readwrite', 'description': ''}, 'accountingSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2'}, 'accountingUpdatePeriod': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'accountingTypeTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2', 'status': 'current', 'description': ''}, 'accountingTypeEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1', 'status': 'current', 'linkage': ['accountingTypeName'], 'description': 'An entry in accountingTypeTable.'}, 'accountingTypeName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'accountingTypeActive': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'accountingTypeBroadcast': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'accountingTypeMode': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'start-stop': {'nodetype': 'namednumber', 'number': '1'}, 'stop-only': {'nodetype': 'namednumber', 'number': '2'}, 'not-available': {'nodetype': 'namednumber', 'number': '255'}}}, 'access': 'readwrite', 'description': ''}, 'accountingTypeMethod': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'radius': {'nodetype': 'namednumber', 'number': '1'}, 'tacacs': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'accountingTypePrivilege': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.45.2.2.1.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'privilege-0': {'nodetype': 'namednumber', 'number': '0'}, 'privilege-1': {'nodetype': 'namednumber', 'number': '1'}, 'privilege-2': {'nodetype': 'namednumber', 'number': '2'}, 'privilege-3': {'nodetype': 'namednumber', 'number': '3'}, 'privilege-4': {'nodetype': 'namednumber', 'number': '4'}, 'privilege-5': {'nodetype': 'namednumber', 'number': '5'}, 'privilege-6': {'nodetype': 'namednumber', 'number': '6'}, 'privilege-7': {'nodetype': 'namednumber', 'number': '7'}, 'privilege-8': {'nodetype': 'namednumber', 'number': '8'}, 'privilege-9': {'nodetype': 'namednumber', 'number': '9'}, 'privilege-10': {'nodetype': 'namednumber', 'number': '10'}, 'privilege-11': {'nodetype': 'namednumber', 'number': '11'}, 'privilege-12': {'nodetype': 'namednumber', 'number': '12'}, 'privilege-13': {'nodetype': 'namednumber', 'number': '13'}, 'privilege-14': {'nodetype': 'namednumber', 'number': '14'}, 'not-available': {'nodetype': 'namednumber', 'number': '255'}}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnp': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100'}, 'dhcpSnpVlanTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1', 'status': 'current', 'description': ''}, 'dhcpSnpVlanEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1.1', 'status': 'current', 'linkage': ['dhcpSnpVlanEntryVid'], 'description': ''}, 'dhcpSnpVlanEntryVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpVlanEntryEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpVlanEntryOption82Enable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpVlanEntryInfo': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.1.1.4', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.2', 'status': 'current', 'description': ''}, 'dhcpSnpPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.2.1', 'status': 'current', 'linkage': ['dhcpSnpPortEntryPort'], 'description': ''}, 'dhcpSnpPortEntryPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.2.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpPortEntryTrust': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.2.1.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpPortEntryRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.2.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '2048'}], 'range': {'min': '0', 'max': '2048'}}}, 'access': 'readwrite', 'description': '0 means unlimited'}, 'dhcpSnpBindTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3', 'status': 'current', 'description': ''}, 'dhcpSnpBindEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1', 'status': 'current', 'linkage': ['dhcpSnpBindEntryMac', 'dhcpSnpBindEntryVid'], 'description': ''}, 'dhcpSnpBindEntryMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpBindEntryVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpBindEntryIP': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpBindEntryLease': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpBindEntryType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'dynamic': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpBindEntryPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.3.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpEnable': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.4', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDb': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5'}, 'dhcpSnpDbAbort': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDbWriteDelay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDbUrl': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.3', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'parent module': {'name': 'RFC1213-MIB', 'type': 'DisplayString'}, 'ranges': [{'min': '0', 'max': '255'}], 'range': {'min': '0', 'max': '255'}}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDbUrlRenew': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.4', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'parent module': {'name': 'RFC1213-MIB', 'type': 'DisplayString'}, 'ranges': [{'min': '0', 'max': '255'}], 'range': {'min': '0', 'max': '255'}}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDbStat': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5'}, 'dhcpSnpDbStatClear': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'dhcpSnpDbStatDelayExpiry': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatAbortExpiry': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatLastSuccTime': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.5', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatLastFailTime': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.6', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatLastFailReason': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.7', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatTotalAttempt': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatStartupFail': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatSuccTrans': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.10', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatFailTrans': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.11', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatSuccRead': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.12', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatFailRead': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.13', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatSuccWrite': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.14', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatFailWrite': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.15', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDbStatLastIgnoreBindCol': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.17', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Last ignored: binding collision'}, 'dhcpSnpDbStatLastIgnoreExpireLease': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.18', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Last ignored: expired leases'}, 'dhcpSnpDbStatLastIgnoreInvalidIntf': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.19', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Last ignored: invalid interface'}, 'dhcpSnpDbStatLastIgnoreUnsuppVlan': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.20', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Last ignored: unsupported vlans'}, 'dhcpSnpDbStatLastIgnoreParse': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.21', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Last ignored: parsing error'}, 'dhcpSnpDbStatTotalIgnoreBindCol': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.22', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Total ignored: binding collision'}, 'dhcpSnpDbStatTotalIgnoreExpireLease': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.23', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Total ignored: expired leases'}, 'dhcpSnpDbStatTotalIgnoreInvalidIntf': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.24', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Total ignored: invalid interface'}, 'dhcpSnpDbStatTotalIgnoreUnsuppVlan': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.25', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Total ignored: unsupported vlans'}, 'dhcpSnpDbStatTotalIgnoreParse': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.26', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'Total ignored: parsing error'}, 'dhcpSnpDbStatLastIgnoreTime': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.5.5.27', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readonly', 'description': ''}, 'dhcpSnpDhcpVlan': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.6'}, 'dhcpSnpDhcpVlanVid': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.100.6.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '4094'}], 'range': {'min': '0', 'max': '4094'}}}, 'access': 'readwrite', 'description': '0: disable DHCP VLAN.'}, 'ipsg': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101'}, 'ipsgTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1', 'status': 'current', 'description': ''}, 'ipsgEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1', 'create': 'true', 'status': 'current', 'linkage': ['ipsgEntryMac', 'ipsgEntryVid'], 'description': ''}, 'ipsgEntryMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'ipsgEntryVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readonly', 'description': ''}, 'ipsgEntryIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readwrite', 'description': ''}, 'ipsgEntryLease': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': 'second'}, 'ipsgEntryType': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'static': {'nodetype': 'namednumber', 'number': '1'}, 'dhcp': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readonly', 'description': ''}, 'ipsgEntryPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0 means any port'}, 'ipsgEntryState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.101.1.1.7', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInspect': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102'}, 'arpInspectSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1'}, 'arpInspectState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInspectFilterAgingTime': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '2147483647'}], 'range': {'min': '0', 'max': '2147483647'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectLog': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.3'}, 'arpInspectLogEntries': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.3.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '1024'}], 'range': {'min': '0', 'max': '1024'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectLogRate': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.3.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '1024'}], 'range': {'min': '0', 'max': '1024'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectLogInterval': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.3.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '2147483647'}], 'range': {'min': '0', 'max': '2147483647'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectVlanTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.4', 'status': 'current', 'description': ''}, 'arpInspectVlanEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.4.1', 'status': 'current', 'linkage': ['arpInspectVlanVid'], 'description': ''}, 'arpInspectVlanVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readonly', 'description': ''}, 'arpInspectVlanLog': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'all': {'nodetype': 'namednumber', 'number': '1'}, 'none': {'nodetype': 'namednumber', 'number': '2'}, 'permit': {'nodetype': 'namednumber', 'number': '3'}, 'deny': {'nodetype': 'namednumber', 'number': '4'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectVlanStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.4.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'enabled': {'nodetype': 'namednumber', 'number': '1'}, 'disabled': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5', 'status': 'current', 'description': ''}, 'arpInspectPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5.1', 'status': 'current', 'linkage': ['arpInspectPortIndex'], 'description': ''}, 'arpInspectPortIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectPortTrust': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'trusted': {'nodetype': 'namednumber', 'number': '1'}, 'untrusted': {'nodetype': 'namednumber', 'number': '2'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectPortRate': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '2048'}], 'range': {'min': '0', 'max': '2048'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectPortInterval': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.1.5.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '15'}], 'range': {'min': '1', 'max': '15'}}}, 'access': 'readwrite', 'description': ''}, 'arpInspectStatus': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2'}, 'arpInspectFilterClear': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInspectLogClear': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInspectFilterTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3', 'status': 'current', 'description': ''}, 'arpInspectFilterEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1', 'create': 'true', 'status': 'current', 'linkage': ['arpInspectFilterMac', 'arpInspectFilterVid'], 'description': ''}, 'arpInspectFilterMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'arpInspectFilterVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readonly', 'description': ''}, 'arpInspectFilterPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectFilterExpiry': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectFilterReason': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'macVid': {'nodetype': 'namednumber', 'number': '1'}, 'port': {'nodetype': 'namednumber', 'number': '2'}, 'ip': {'nodetype': 'namednumber', 'number': '3'}}}, 'access': 'readonly', 'description': ''}, 'arpInspectFilterRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.3.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'arpInspectLogTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4', 'status': 'current', 'description': ''}, 'arpInspectLogEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1', 'status': 'current', 'linkage': ['arpInspectLogMac', 'arpInspectLogVid', 'arpInspectLogPort', 'arpInspectLogIp'], 'description': ''}, 'arpInspectLogMac': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'MacAddress'}}, 'access': 'readonly', 'description': ''}, 'arpInspectLogVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readonly', 'description': ''}, 'arpInspectLogPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectLogIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.4', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': ''}, 'arpInspectLogNumPkt': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectLogTime': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.4.1.7', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'DateAndTime'}}, 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5', 'status': 'current', 'description': ''}, 'arpInspectStatisticsEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1', 'status': 'current', 'linkage': ['arpInspectStatisticsVid'], 'description': ''}, 'arpInspectStatisticsVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.1', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsReceived': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.2', 'status': 'current', 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsRequest': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.3', 'status': 'current', 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsReply': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.4', 'status': 'current', 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsForward': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.5', 'status': 'current', 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsDrop': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.6', 'status': 'current', 'access': 'readonly', 'description': ''}, 'arpInspectStatisticsClear': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.102.2.5.1.7', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'trTCMSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103'}, 'trTCMState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Two-rate three color marker enabled/disabled for the switch.'}, 'trTCMMode': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'color-aware': {'nodetype': 'namednumber', 'number': '0'}, 'color-blind': {'nodetype': 'namednumber', 'number': '1'}}}, 'access': 'readwrite', 'description': ''}, 'trTCMPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3', 'status': 'current', 'description': ''}, 'trTCMPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1', 'create': 'true', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in trTCMPortTable.'}, 'trTCMPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': 'Two-rate three color marker enabled/disabled on the port.'}, 'trTCMPortCIR': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.2', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Allowed CIR in pkts/s.'}, 'trTCMPortPIR': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'Allowed PIR in pkts/s.'}, 'trTCMPortDscpGreen': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0-63'}, 'trTCMPortDscpYellow': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0-63'}, 'trTCMPortDscpRed': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.103.3.1.6', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': '0-63'}, 'loopGuardSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.104'}, 'loopGuardState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.104.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'loopGuardPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.104.2', 'status': 'current', 'description': ''}, 'loopGuardPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.104.2.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in loopGuardPortTable.'}, 'loopGuardPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.104.2.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'subnetBasedVlanSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105'}, 'subnetBasedVlanState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'subnet-based vlan feature enabled/disabled for the switch.'}, 'dhcpVlanOverrideState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.2', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'dhcp vlan override enabled/disabled when subnet-based vlan is enabled.'}, 'subnetBasedVlanTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3', 'status': 'current', 'description': ''}, 'subnetBasedVlanEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1', 'create': 'true', 'status': 'current', 'linkage': ['subnetBasedVlanSrcIp', 'subnetBasedVlanSrcMaskBit'], 'description': 'An entry in subnetBasedVlanTable.'}, 'subnetBasedVlanSrcIp': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.1', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'IpAddress'}}, 'access': 'readonly', 'description': 'source ip for subnet-based vlan entry'}, 'subnetBasedVlanSrcMaskBit': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '32'}], 'range': {'min': '1', 'max': '32'}}}, 'access': 'readonly', 'description': 'source ip mask-bits for subnet-based vlan entry'}, 'subnetBasedVlanName': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'parent module': {'name': 'RFC1213-MIB', 'type': 'DisplayString'}, 'ranges': [{'min': '0', 'max': '31'}], 'range': {'min': '0', 'max': '31'}}}, 'access': 'readwrite', 'description': 'name for subnet-based vlan entry'}, 'subnetBasedVlanVid': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'readwrite', 'description': 'vid for subnet-based vlan entry'}, 'subnetBasedVlanPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '7'}], 'range': {'min': '0', 'max': '7'}}}, 'access': 'readwrite', 'description': 'priority for subnet-based vlan entry'}, 'subnetBasedVlanEntryState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.105.3.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'macAuthenticationSetup': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106'}, 'macAuthenticationState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'macAuthenticationNamePrefix': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'macAuthenticationPassword': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.3', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': ''}, 'macAuthenticationTimeout': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': ''}, 'macAuthenticationPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.5', 'status': 'current', 'description': ''}, 'macAuthenticationPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.5.1', 'status': 'current', 'linkage': ['dot1dBasePort'], 'description': 'An entry in macAuthenticationPortTable.'}, 'macAuthenticationPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.106.5.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': ''}, 'mstp': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107'}, 'mstpGen': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1'}, 'mstpGenState': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.1', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': 'Enabled/disabled on the mrstp bridge.'}, 'mstpGenCfgIdName': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.2', 'status': 'current', 'syntax': {'type': {'module': 'RFC1213-MIB', 'name': 'DisplayString'}}, 'access': 'readwrite', 'description': 'The configuration name that identifies the MST\nregion and is used as one of the inputs in the \ncomputation of the MST Configuration Identifier.', 'reference>': '12.12.3.4.2.b)'}, 'mstpGenCfgIdRevLevel': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.3', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readwrite', 'description': 'This object identifies the MST revision that\nidentifies the MST region and is used as one\nof the inputs in the computation of the MST \nconfiguration Identifier.', 'reference>': '12.12.3.4.2.c)'}, 'mstpGenCfgIdCfgDigest': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '16', 'max': '16'}], 'range': {'min': '16', 'max': '16'}}}, 'access': 'readonly', 'description': 'Configuration Digest.', 'reference>': '12.12.3.3.3.a.4'}, 'mstpGenHelloTime': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '1', 'max': '10'}], 'range': {'min': '1', 'max': '10'}}}, 'access': 'readwrite', 'description': ''}, 'mstpGenMaxAge': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '6', 'max': '40'}], 'range': {'min': '6', 'max': '40'}}}, 'access': 'readwrite', 'description': ''}, 'mstpGenForwardDelay': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.7', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'parent module': {'name': 'BRIDGE-MIB', 'type': 'Timeout'}, 'ranges': [{'min': '4', 'max': '30'}], 'range': {'min': '4', 'max': '30'}}}, 'access': 'readwrite', 'description': ''}, 'mstpGenMaxHops': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.8', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '4', 'max': '30'}], 'range': {'min': '4', 'max': '30'}}}, 'access': 'readwrite', 'description': '13.22.f)'}, 'mstpGenCistRootPathCost': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.9', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '.'}, 'mstpGenCistRootBrid': {'nodetype': 'scalar', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.1.10', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '32', 'max': '32'}], 'range': {'min': '32', 'max': '32'}}}, 'access': 'readonly', 'description': '.'}, 'mstMapTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20', 'status': 'current', 'description': 'This table contains one entry for each instance of MSTP.'}, 'mstMapEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1', 'create': 'true', 'status': 'current', 'linkage': ['mstMapIndex'], 'description': 'A conceptual row containing the status of the MSTP instance.'}, 'mstMapIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.1', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'MstiOrCistInstanceIndex'}}, 'access': 'noaccess', 'description': 'Uniquely identifies an instance. The entry of this table with index 0\npresents always, represents CIST. When SET operation '}, 'mstMapVlans1k': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '0', 'max': '128'}], 'range': {'min': '0', 'max': '128'}}}, 'access': 'readwrite', 'description': "A string of octets containing one bit per VLAN. The\nfirst octet corresponds to VLANs with VlanIndex values\n1 through 8; the second octet to VLANs 9 through\n16 etc. The most significant bit of each octet\ncorresponds to the lowest VlanIndex value in that octet.\n\nFor each VLAN that is mapped to this MSTP instance,\nthe bit corresponding to that VLAN is set to '1'.\nEmpty (zero) most significant octes are not mandatory."}, 'mstMapVlans2k': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.3', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '0', 'max': '128'}], 'range': {'min': '0', 'max': '128'}}}, 'access': 'readwrite', 'description': "A string of octets containing one bit per VLAN for\nVLANS with VlanIndex values 1024 through 2047. The\nfirst octet corresponds to VLANs with VlanIndex values\n1024 through 1031; the second octet to VLANs 1032\nthrough 1039 etc. The most significant bit of each\noctet corresponds to the lowest VlanIndex value in that\noctet.\n\nFor each VLAN that is mapped to this MSTP instance,\nthe bit corresponding to that VLAN is set to '1'.\n\nEmpty (zero) most significant octes are not mandatory."}, 'mstMapVlans3k': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '0', 'max': '128'}], 'range': {'min': '0', 'max': '128'}}}, 'access': 'readwrite', 'description': "A string of octets containing one bit per VLAN for\nVLANS with VlanIndex values 2048 through 3071. The\nfirst octet corresponds to VLANs with VlanIndex values\nof 2048 through 2055; the second octet to VLANs 2056\nthrough 2063 etc. The most significant bit of each\noctet corresponds to the lowest VlanIndex value in that\noctet.\n\nFor each VLAN that is mapped to this MSTP instance,\nthe bit corresponding to that VLAN is set to '1'.\n\nEmpty (zero) most significant octes are not mandatory."}, 'mstMapVlans4k': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'OctetString', 'ranges': [{'min': '0', 'max': '128'}], 'range': {'min': '0', 'max': '128'}}}, 'access': 'readwrite', 'description': "A string of octets containing one bit per VLAN for\nVLANS with VlanIndex values 3072 through 4095. The\nfirst octet corresponds to VLANs with VlanIndex values\n3072 through 3079; the second octet to VLANs 3080\nthrough 3087 etc. The most significant bit of each\noctet corresponds to the lowest VlanIndex value in that\noctet.\n\nFor each VLAN that is mapped to this MSTP instance,\nthe bit corresponding to that VLAN is set to '1'.\n\nEmpty (zero) most significant octes are not mandatory."}, 'mstMapRowStatus': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.20.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'RowStatus'}}, 'access': 'readwrite', 'description': ''}, 'mstVlanTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.30', 'status': 'current', 'description': 'This table contains one entry for each VlanId.'}, 'mstVlanEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.30.1', 'status': 'current', 'linkage': ['mstVlanIndex'], 'description': 'Information regarding the instance to which each Vlan is mapped.'}, 'mstVlanIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.30.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '4094'}], 'range': {'min': '1', 'max': '4094'}}}, 'access': 'noaccess', 'description': 'The VlanId for which this entry contains the instance mapped.'}, 'mstVlanMstIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.30.1.2', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'MstiOrCistInstanceIndex'}}, 'access': 'readonly', 'description': 'An integer with values ranging from 0 to 64 that identify a \nthe CIST/MSTI instance to which this VLAN is mapped'}, 'mstpPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.40', 'status': 'current', 'description': 'A table that contains generic information about\nevery port that is associated with this bridge.'}, 'mstpPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.40.1', 'status': 'current', 'linkage': ['mstpPortIndex'], 'description': 'A list of information for each port of the\nbridge.'}, 'mstpPortIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.40.1.1', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'noaccess', 'description': "A unique value, greater than zero, for each Port.\nThe value for each interface sub-layer\nmust remain constant at least from one re-initialization\nof the entity's network management system to the next re-\ninitialization."}, 'mstpPortOperEdgePort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.40.1.2', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'TruthValue'}}, 'access': 'readonly', 'description': '', 'reference>': ''}, 'mstpPortOperPointToPointMAC': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.40.1.3', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-TC', 'name': 'TruthValue'}}, 'access': 'readonly', 'description': '', 'reference>': ''}, 'mstpXstTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50', 'status': 'current', 'description': '.'}, 'mstpXstEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1', 'status': 'current', 'linkage': ['mstpXstId'], 'description': '.'}, 'mstpXstId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.1', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'MstiOrCistInstanceIndex'}}, 'access': 'readonly', 'description': '0 means CIST.'}, 'mstpXstBridgePriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '61440'}], 'range': {'min': '0', 'max': '61440'}}}, 'access': 'readwrite', 'default': '32768', 'description': 'Bridge priority, in steps of 4096.'}, 'mstpXstBridgeId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.3', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstInternalRootCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.4', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstRootPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.5', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstTimeSinceTopologyChange': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.6', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'TimeTicks'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstTopologyChangesCount': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.50.1.7', 'status': 'current', 'syntax': {'type': {'module': 'SNMPv2-SMI', 'name': 'Counter32'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstPortTable': {'nodetype': 'table', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60', 'status': 'current', 'description': '.'}, 'mstpXstPortEntry': {'nodetype': 'row', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1', 'status': 'current', 'linkage': ['mstpXstPortXstId', 'mstpXstPortIndex'], 'description': '.', 'reference>': '.'}, 'mstpXstPortXstId': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.1', 'status': 'current', 'syntax': {'type': {'module': 'ZYXEL-GS4012F-MIB', 'name': 'MstiOrCistInstanceIndex'}}, 'access': 'noaccess', 'description': '0 means CIST.'}, 'mstpXstPortIndex': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.2', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readonly', 'description': 'The value of mstpPortIndex of the Port\nin mstpPortTable.'}, 'mstpXstPortEnable': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.3', 'status': 'current', 'syntax': {'type': {'module': 'P-BRIDGE-MIB', 'name': 'EnabledStatus'}}, 'access': 'readwrite', 'description': '.'}, 'mstpXstPortPriority': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.4', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '0', 'max': '255'}], 'range': {'min': '0', 'max': '255'}}}, 'access': 'readwrite', 'default': '128', 'description': 'Port priority, in steps of 16.'}, 'mstpXstPortPathCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.5', 'status': 'current', 'syntax': {'type': {'basetype': 'Integer32', 'ranges': [{'min': '1', 'max': '65535'}], 'range': {'min': '1', 'max': '65535'}}}, 'access': 'readwrite', 'description': '.'}, 'mstpXstPortState': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.6', 'status': 'current', 'syntax': {'type': {'basetype': 'Enumeration', 'disabled': {'nodetype': 'namednumber', 'number': '0'}, 'discarding': {'nodetype': 'namednumber', 'number': '1'}, 'learning': {'nodetype': 'namednumber', 'number': '2'}, 'forwarding': {'nodetype': 'namednumber', 'number': '3'}, 'unknown': {'nodetype': 'namednumber', 'number': '4'}}}, 'access': 'readonly', 'description': '.'}, 'mstpXstPortDesignatedRoot': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.7', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstPortDesignatedCost': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.8', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstPortDesignatedBridge': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.9', 'status': 'current', 'syntax': {'type': {'module': 'BRIDGE-MIB', 'name': 'BridgeId'}}, 'access': 'readonly', 'description': '.'}, 'mstpXstPortDesignatedPort': {'nodetype': 'column', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.60.1.10', 'status': 'current', 'syntax': {'type': {'module': '', 'name': 'Integer32'}}, 'access': 'readonly', 'description': '.'}, 'mstpNotifications': {'nodetype': 'node', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.70'}}, 'notifications': {'eventOnTrap': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.2.1', 'status': 'current', 'objects': {'eventSeqNum': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventEventId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventName': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventSetTime': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventSeverity': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventInstanceType': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventInstanceId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventInstanceName': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventServAffective': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventDescription': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'trapPersistence': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'trapSenderNodeId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'sysObjectID': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': 'This trap is used to inform network management system that a delta \nfault event (events that are automatically cleared) has occured \nor a normal fault event (not automatically cleared) state has \nbeen set on. \n\nObjects are used as follows:\n- eventSeqNum is the sequence number of the event. For normal \ntype of events must equal to the sequence number of the event \nin the events table. \n- eventEventId specifies what fault event has occured.\n- eventName specifies the name of the fault event.\n- eventSetTime indicates when fault event has occured \n(delta events) or when fault has been set on (normal events).\n- eventSeverity reports the severity level of the event.\n- eventInstanceType indicates what kind of object is faulty.\n- eventInstanceId specifies what instance is faulty.\n- eventInstanceName may contain textual description for \nthe faulty object.\n- eventServAffective specifies whether the event is \nimmediately service affcetive. \n- eventDescription reports possible additional information about the event. \n- trapPersistence tells whether this event is a delta or normal event. \n- trapSenderNodeId specifies the node ID of the sending network element if \nconfiguring it is supported for the network element, otherwise 0. \n- sysObjectID specifies what kind of equipment reports the fault event.\n\nFor more information see the eventTable specification'}, 'eventClearedTrap': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.37.2.2', 'status': 'current', 'objects': {'eventSeqNum': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventEventId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventSetTime': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventInstanceType': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'eventInstanceId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'trapRefSeqNum': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'trapSenderNodeId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}, 'sysObjectID': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': 'This trap is used to inform network management system that a normal \ntype fault event has been cleared (state set off). \n\nObjects are used as follows:\n- eventSeqNum is the sequence number of the this clearing event. Note that \nthe sequence number of the cleared event is reported in the trapRefSeqNum \nobject. \n- eventEventId specifies what event has been cleared.\n- eventSetTime indicates when fault event has been cleared.\n- eventInstanceType indicates what kind of object has been \nfaulty.\n- eventInstanceId specifies what instance has been faulty.\n- trapRefSeqNum specifies the sequence number of the cleared event (i.e. \nthe sequence number was assigned for the event in the events table). \n- trapSenderNodeId specifies the node ID of the sending network element if \nconfiguring it is supported for the network element, otherwise 0. \n- sysObjectID specifies what kind of equipment reports the clearing event.\n\nFor more information see the eventTable specification'}, 'newRoot': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.2.1', 'status': 'current', 'objects': {'mrstpBridgeIndex': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': ''}, 'topologyChange': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.42.2.2', 'status': 'current', 'objects': {'mrstpBridgeIndex': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': ''}, 'newRoot': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.70.1', 'status': 'current', 'objects': {'mstpXstId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': ''}, 'topologyChange': {'nodetype': 'notification', 'moduleName': 'ZYXEL-GS4012F-MIB', 'oid': '1.3.6.1.4.1.890.1.5.8.20.107.70.2', 'status': 'current', 'objects': {'mstpXstId': {'nodetype': 'object', 'module': 'ZYXEL-GS4012F-MIB'}}, 'description': ''}}} |
#!/usr/bin/env python3
def binary(code, max, bits):
ret = []
for i in range(max):
ret.append(bits[code[i]])
return int(''.join(ret), base=2)
mid = 0
with open('input5.txt') as f:
for line in f.readlines():
line = line[:-1]
row = binary(line[:7], 7, {'F': '0', 'B': '1'})
col = binary(line[7:], 3, {'R': '1', 'L': '0'})
sid = row * 8 + col
mid = sid if sid > mid else mid
print(mid)
| def binary(code, max, bits):
ret = []
for i in range(max):
ret.append(bits[code[i]])
return int(''.join(ret), base=2)
mid = 0
with open('input5.txt') as f:
for line in f.readlines():
line = line[:-1]
row = binary(line[:7], 7, {'F': '0', 'B': '1'})
col = binary(line[7:], 3, {'R': '1', 'L': '0'})
sid = row * 8 + col
mid = sid if sid > mid else mid
print(mid) |
"""
custom_stocks_py base module.
This is the principal module of the custom_stocks_py project.
here you put your main classes and objects.
Be creative! do whatever you want!
If you want to replace this with a Flask application run:
$ make init
and then choose `flask` as template.
"""
class BaseClass:
def base_method(self) -> str:
"""
Base method.
"""
return "hello from BaseClass"
def __call__(self) -> str:
return self.base_method()
def base_function() -> str:
"""
Base function.
"""
return "hello from base function"
| """
custom_stocks_py base module.
This is the principal module of the custom_stocks_py project.
here you put your main classes and objects.
Be creative! do whatever you want!
If you want to replace this with a Flask application run:
$ make init
and then choose `flask` as template.
"""
class Baseclass:
def base_method(self) -> str:
"""
Base method.
"""
return 'hello from BaseClass'
def __call__(self) -> str:
return self.base_method()
def base_function() -> str:
"""
Base function.
"""
return 'hello from base function' |
def test_list_example_directory(client):
response = client.get("/api/files")
assert response.status_code == 200
file_list = response.get_json()
assert len(file_list) == 5
assert file_list[0]['key'] == 'image_annotated.jpg'
assert file_list[1]['key'] == 'image.jpg'
assert file_list[2]['key'] == 'more_images/'
assert file_list[3]['key'] == 'more_images/01.jpg'
assert file_list[4]['key'] == 'more_images/02.png'
def test_list_example_directory_nested(client):
response = client.get("/api/files?path=more_images")
assert response.status_code == 200
file_list = response.get_json()
assert len(file_list) == 2
assert file_list[0]['key'] == '01.jpg'
assert file_list[1]['key'] == '02.png'
def test_get_example_image(client):
response = client.get("/api/files/image/x.jpg")
assert response.status_code == 404
response = client.get("/api/files/image/image.jpg")
assert response.status_code == 200
response = client.get("/api/files/image/more_images/01.jpg")
assert response.status_code == 200
def test_get_example_image_data(client):
response = client.get("/api/files/image_data/image.jpg")
assert response.status_code == 404
response = client.get("/api/files/image_data/image_annotated.jpg")
assert response.status_code == 200
data = response.get_json()
assert 'annotations' in data
assert 'tags' in data
def test_put_example_image_data(client):
response = client.get("/api/files/image_data/image.jpg")
assert response.status_code == 404
response = client.put("/api/files/image_data/image.jpg", json={
'annotations': [{'width': 10, 'height': 10, 'x': 0, 'y': 0}],
'tags': ['a', 'b']
})
assert response.status_code == 200
response = client.get("/api/files/image_data/image.jpg")
assert response.status_code == 200
data = response.get_json()
assert 'annotations' in data
assert 'tags' in data
| def test_list_example_directory(client):
response = client.get('/api/files')
assert response.status_code == 200
file_list = response.get_json()
assert len(file_list) == 5
assert file_list[0]['key'] == 'image_annotated.jpg'
assert file_list[1]['key'] == 'image.jpg'
assert file_list[2]['key'] == 'more_images/'
assert file_list[3]['key'] == 'more_images/01.jpg'
assert file_list[4]['key'] == 'more_images/02.png'
def test_list_example_directory_nested(client):
response = client.get('/api/files?path=more_images')
assert response.status_code == 200
file_list = response.get_json()
assert len(file_list) == 2
assert file_list[0]['key'] == '01.jpg'
assert file_list[1]['key'] == '02.png'
def test_get_example_image(client):
response = client.get('/api/files/image/x.jpg')
assert response.status_code == 404
response = client.get('/api/files/image/image.jpg')
assert response.status_code == 200
response = client.get('/api/files/image/more_images/01.jpg')
assert response.status_code == 200
def test_get_example_image_data(client):
response = client.get('/api/files/image_data/image.jpg')
assert response.status_code == 404
response = client.get('/api/files/image_data/image_annotated.jpg')
assert response.status_code == 200
data = response.get_json()
assert 'annotations' in data
assert 'tags' in data
def test_put_example_image_data(client):
response = client.get('/api/files/image_data/image.jpg')
assert response.status_code == 404
response = client.put('/api/files/image_data/image.jpg', json={'annotations': [{'width': 10, 'height': 10, 'x': 0, 'y': 0}], 'tags': ['a', 'b']})
assert response.status_code == 200
response = client.get('/api/files/image_data/image.jpg')
assert response.status_code == 200
data = response.get_json()
assert 'annotations' in data
assert 'tags' in data |
# This Part will gather Infos and demonstrate the use of Variables.
usrName = input("What is your Name?")
usrAge = int(input("What is your Age?"))
usrGPA = float(input("What is your GPA?"))
print () #cheap way to get a new line
print ("Hello, %s" % (usrName))
print ("Did you know that in two years you will be %d years old? " % (usrAge +2))
print ("Also you need to improve your GPA by %f points to have a perfect score." % (4.0 - usrGPA))
print ()
| usr_name = input('What is your Name?')
usr_age = int(input('What is your Age?'))
usr_gpa = float(input('What is your GPA?'))
print()
print('Hello, %s' % usrName)
print('Did you know that in two years you will be %d years old? ' % (usrAge + 2))
print('Also you need to improve your GPA by %f points to have a perfect score.' % (4.0 - usrGPA))
print() |
class Message:
def __init__(self, from_channel=None, **kwargs):
self._channel = from_channel
if kwargs is not None:
for key, value in kwargs.items():
setattr(self, key, value)
@property
def carrier(self):
return self._channel
def sender(self):
return self._channel.sender
def receiver(self):
return self._channel.receiver
class CallbackMessage(Message):
def __init__(self, function):
super(CallbackMessage, self).__init__(function=function)
if __name__ == "__main__":
msg = Message(sender="A", receiver="B")
assert msg.sender is "A"
assert msg.receiver is "B"
| class Message:
def __init__(self, from_channel=None, **kwargs):
self._channel = from_channel
if kwargs is not None:
for (key, value) in kwargs.items():
setattr(self, key, value)
@property
def carrier(self):
return self._channel
def sender(self):
return self._channel.sender
def receiver(self):
return self._channel.receiver
class Callbackmessage(Message):
def __init__(self, function):
super(CallbackMessage, self).__init__(function=function)
if __name__ == '__main__':
msg = message(sender='A', receiver='B')
assert msg.sender is 'A'
assert msg.receiver is 'B' |
"""
A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,
a2 + b2 = c2
For example, 32 + 42 = 9 + 16 = 25 = 52.
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
"""
solved = False
for a in range(1, 1000):
for b in range(1, 1000):
for c in range(1, 1000):
if a < b < c:
if a + b + c == 1000:
if a**2 + b**2 == c**2:
solved = True
break
if solved:
break
if solved:
break
product = a*b*c
print("The product of only triplet who exists is : ", product) | """
A Pythagorean triplet is a set of three natural numbers, a < b < c, for which,
a2 + b2 = c2
For example, 32 + 42 = 9 + 16 = 25 = 52.
There exists exactly one Pythagorean triplet for which a + b + c = 1000.
Find the product abc.
"""
solved = False
for a in range(1, 1000):
for b in range(1, 1000):
for c in range(1, 1000):
if a < b < c:
if a + b + c == 1000:
if a ** 2 + b ** 2 == c ** 2:
solved = True
break
if solved:
break
if solved:
break
product = a * b * c
print('The product of only triplet who exists is : ', product) |
def main():
print("|\_/|")
print("|q p| /}")
print("( 0 )\"\"\"\\")
print("|\"^\"` |")
print("||_/=\\\\__|")
if __name__ == "__main__":
main()
| def main():
print('|\\_/|')
print('|q p| /}')
print('( 0 )"""\\')
print('|"^"` |')
print('||_/=\\\\__|')
if __name__ == '__main__':
main() |
# -*- coding: utf-8 -*-
n, w = map(int, input().split())
for _ in range(n):
entrada = input()
last_space = entrada.rfind(' ')
if int(entrada[last_space:]) > w:
print(entrada[:last_space])
| (n, w) = map(int, input().split())
for _ in range(n):
entrada = input()
last_space = entrada.rfind(' ')
if int(entrada[last_space:]) > w:
print(entrada[:last_space]) |
def marcs_cakewalk(calorie):
"""Hackerrank Problem: https://www.hackerrank.com/challenges/marcs-cakewalk/problem
Marc loves cupcakes, but he also likes to stay fit. Each cupcake has a calorie count, and Marc can walk a distance
to expend those calories. If Marc has eaten j cupcakes so far, after eating a cupcake with c calories he must walk
at least 2**j x c miles to maintain his weight.
Solve:
To calculate the minimum miles, you solve based on the highest calorie to lowest calorie cupcake
Args:
calorie (list): List of integers denoting the calories for each cupcake
Returns:
int: The minimum number of miels Marc must walk to maintain his weight
"""
calories = 0
for i, c in enumerate(sorted(calorie, reverse=True)):
calories += (2 ** i * c)
return calories
if __name__ == "__main__":
assert marcs_cakewalk([5, 10, 7]) == 44
assert marcs_cakewalk([1, 3, 2]) == 11
assert marcs_cakewalk([7, 4, 9, 6]) == 79
| def marcs_cakewalk(calorie):
"""Hackerrank Problem: https://www.hackerrank.com/challenges/marcs-cakewalk/problem
Marc loves cupcakes, but he also likes to stay fit. Each cupcake has a calorie count, and Marc can walk a distance
to expend those calories. If Marc has eaten j cupcakes so far, after eating a cupcake with c calories he must walk
at least 2**j x c miles to maintain his weight.
Solve:
To calculate the minimum miles, you solve based on the highest calorie to lowest calorie cupcake
Args:
calorie (list): List of integers denoting the calories for each cupcake
Returns:
int: The minimum number of miels Marc must walk to maintain his weight
"""
calories = 0
for (i, c) in enumerate(sorted(calorie, reverse=True)):
calories += 2 ** i * c
return calories
if __name__ == '__main__':
assert marcs_cakewalk([5, 10, 7]) == 44
assert marcs_cakewalk([1, 3, 2]) == 11
assert marcs_cakewalk([7, 4, 9, 6]) == 79 |